- Apr 14, 2014
- Apr 11, 2014
-
-
Dmitry Simonenko authored
-
Dmitry Simonenko authored
-
- Apr 10, 2014
-
-
Konstantin Osipov authored
Update mans, docs. A lot of resources still need to be updated (build scripts, etc).
-
Konstantin Osipov authored
-
- Mar 25, 2014
-
-
Roman Tsisyk authored
-
- Mar 20, 2014
-
-
Roman Tsisyk authored
* Install *.lua modules into ${DATADIR}/tarantool/1.5 and *.so modules into ${LIBDIR}/tarantool/1.5 * Fix default package.path and package.cpath * Install Lua headers to ${INCLUDE_DIR}/tarantool/1.5 * Install config.h to ${INCLUDE_DIR}/tarantool/1.5 * Add a new package - tarantool-dev (server development headers) * Use RPM Macroses in rpm.spec * Fix tarball generation for Debian * Use GNUInstallDirs.cmake to setup directories
-
- Mar 13, 2014
-
-
Dmitry Simonenko authored
-
- Mar 11, 2014
-
-
Konstantin Osipov authored
Add new system spaces _user and _priv to store users, their passwords and their privileges. Implement an authentication request in iproto protocol Add a system space _func to store presistent information about Lua functions. A function is now a subject to ownership and privilege control. Use MySQL-style sha1-double-hashing authentication by default. Implement new Lua functions: box.session.su() box.session.uid() box.schema.user.create() box.schema.user.drop() box.schema.user.grant() box.schema.user.revoke() box.schema.func.create() box.schema.func.drop() Store space creator in space definition. What this patch doesn't implement: - privilege checks in replication - authentication of replication slaves - exhaustive test coverage
-
- Feb 25, 2014
-
-
Dmitry Simonenko authored
-
- Feb 21, 2014
-
-
Dmitry Simonenko authored
packages.
-
Dmitry Simonenko authored
-
- Feb 12, 2014
-
-
Dmitry Simonenko authored
-
- Feb 10, 2014
-
-
Dmitry Simonenko authored
move module related tests from test/box/ to test/module/.
-
- Feb 06, 2014
-
-
Dmitry Simonenko authored
-
- Jan 27, 2014
-
-
Konstantin Osipov authored
-
- Jan 24, 2014
-
-
Dmitry Simonenko authored
closes #171
-
- Jan 23, 2014
-
-
Konstantin Osipov authored
Change: box.space.name:insert() to box.space.name:insert{} box.space.name:replace() to box.space.name:replace{} box.space.name:delete() to box.space.name:delete{} box.space.name:auto_increment() to box.space.name:auto_increment{} box.space.name:select() to box.space.name:select{} box.space.name:update() now requires an explicit key and ops table. Remove ellipsis from wrappers which don't strictly need it. Remove backward-compatible next_equal/next/prev_equal/next/prev iteration functions. Cleanup hot_standby.test
-
- Jan 03, 2014
-
-
Konstantin Osipov authored
Introduce constants for ids. Update tests.
-
- Dec 26, 2013
-
-
Eugine Blikh authored
1. Unified blurb for every site page 2. remove tnt-html.xsl.cmake tnt-html-chunk.xsl.cmake in favor of --stringparam and -param flags of xsltproc and saxon 3. Create flags for input/output in static.py script for OOS build
-
- Dec 24, 2013
-
-
Eugine Blikh authored
All layouts are in doc/www-data.in/_layout and are written in Jinja1 (django-like templates). All texts are in doc/www-data.in/_texts Text files contains YAML files with chunks of markdown strings: ``` $module: $uno: | some text in markdown $dos: | it may be multiline $tres: | # header 1 ``` may have some embedded code ``` e.t.c ... ``` where `$module` is name of layout file, `$uno`, `$dos`, `$tres`... are name of parts (template parts `{{ $module.$part }}`) Site still stores files in `doc/www-data` for copying on server. Also it integrates documentation (only on stable/master branches) into site (still templlates) Usage of new `extra/static.py`: ```bash $ cmake . -DENABLE-DOC=TRUE $ make $ cd /doc/www-data.in/ $ ../../extra/static.py site `# build site` $ ../../extra/static.py docs `# embed docs` ``` ### documentation building Add `html-saxon-chunk` and `html-chunk` targets for building chunked html documentation. `make` in `doc/user` now builds `html-saxon` and `html-saxon-chunk` targets
-
Eugine Blikh authored
> remove script/ directory and move it's content to extra/
-
- Dec 18, 2013
-
-
Dmitry Simonenko authored
-
- Dec 05, 2013
-
-
Dmitry Simonenko authored
-
Dmitry Simonenko authored
-related distributions due to libbfd crash
-
- Nov 15, 2013
-
-
Dmitry Simonenko authored
Fedora includes debug package by default and will trigger an error if sees the duplicate.
-
- Nov 13, 2013
-
-
Roman Tsisyk authored
-
- Nov 08, 2013
-
-
Dmitry Simonenko authored
binutils-devel for build.
-
Dmitry Simonenko authored
-
- Nov 03, 2013
-
-
Veniamin Gvozdikov authored
Removed html files and added rtf files which uses in the DMG package, also enable readme section at an installer
-
- Nov 02, 2013
-
-
Veniamin Gvozdikov authored
-
- Nov 01, 2013
-
-
Veniamin Gvozdikov authored
-
- Oct 01, 2013
-
-
Dmitry Simonenko authored
-
- Sep 24, 2013
-
-
Dmitry Simonenko authored
-
Dmitry Simonenko authored
-
- Sep 06, 2013
-
-
Dmitry Simonenko authored
before starting another one.
-
- Aug 26, 2013
-
-
Konstantin Osipov authored
Still some issues with Lua console to fix, but transfer big/sql.test to the new data dictionary at least. Fix a bug found in the process that when altering an index from unique to non unique the index is not rebuilt. Remove 'lua ' prefix from schema_erase/schema_fill classes.
-
Konstantin Osipov authored
Store the information about spaces in a pre-recreated system space. https://blueprints.launchpad.net/tarantool/+spec/space-ddl Remove space configuration from confetti. Use transaction and space triggers to run post-DML actions to perform DDL changes. Implement a Lua FFI binding to disable tests. Temporarily disable space-loading code in tarancheck and tarantar (this breaks them). Mostly all tests are broken. Memcached is disabled (non-functional).
-
- Aug 20, 2013
-
-
Konstantin Osipov authored
Rewrite --init-storage to dump a compiled-in blob instead of firing off the entire save snapshot machinery. This should simplify bootstrap in presence of system spaces: there's going to be no need to implement the code which creates system, they will be created simply by recovery from a snapshot.
-