diff --git a/doc/user/plugins.xml b/doc/user/plugins.xml index dee8c756402214d5bc275ccaeeacb0af6a571f5c..8c27b79452d77b31a4047be26ae22275bba4a305 100644 --- a/doc/user/plugins.xml +++ b/doc/user/plugins.xml @@ -57,7 +57,7 @@ This example assumes that MySQL 5.5 or MySQL 5.6 has been installed <para> The example was run on a Linux machine where the base directory -had a copy of the Tarantool source on ~/tarantool-stable, and +had a copy of the Tarantool source on ~/tarantool, and a copy of MySQL on ~/mysql-5.5. The mysqld server is already running on the local host 127.0.0.1. </para> @@ -95,7 +95,7 @@ Bye # Build the Tarantool server. Make certain that "cmake" gets the right # paths for the MySQL include directory and the MySQL libmysqlclient # library which were checked earlier. -<prompt>$ </prompt><userinput>cd ~/tarantool-stable</userinput> +<prompt>$ </prompt><userinput>cd ~/tarantool</userinput> <prompt>$ </prompt><userinput>make clean</userinput> <prompt>$ </prompt><userinput>rm CMakeCache.txt</userinput> <prompt>$ </prompt><userinput>cmake . -DWITH_MYSQL=on -DMYSQL_INCLUDE_DIR=~/mysql-5.5/include\</userinput> @@ -108,7 +108,7 @@ Bye ... -- Configuring done -- Generating done --- Build files have been written to: ~/tarantool-stable +-- Build files have been written to: ~/tarantool <prompt>$ </prompt><userinput>make</userinput> ... [ 49%] Built target core @@ -137,8 +137,8 @@ Linking CXX shared library libmysql.so # The script_dir is the directory where the init.lua file must be. # Now create a file named /home/pgulutzan/tarantool_test/init.lua # and put the following lines in it (again, change "/home/pgulutzan" -# to whatever the real directory is that contains tarantool-stable): -package.path = "/home/pgulutzan/tarantool-stable/src/module/sql/?.lua;"..package.path +# to whatever the real directory is that contains tarantool): +package.path = "/home/pgulutzan/tarantool/src/module/sql/?.lua;"..package.path require("sql") if type(box.net.sql) ~= "table" then error("net.sql load failed") @@ -149,19 +149,19 @@ require("box.net.mysql") <userinput>cd /home/pgulutzan/tarantool_test</userinput> <userinput>mkdir box</userinput> <userinput>mkdir box/net</userinput> -<userinput>cp ~/tarantool-stable/src/module/mysql/mysql.so ./box/net/mysql.so</userinput> +<userinput>cp ~/tarantool/src/module/mysql/mysql.so ./box/net/mysql.so</userinput> # Start the Tarantool server. # Run it in the background but let the initial display be in the foreground. # So it's possible to see the message that the plugin was loaded. -<prompt>$ </prompt><userinput>~/tarantool-stable/src/box/tarantool&</userinput> +<prompt>$ </prompt><userinput>~/tarantool/src/box/tarantool&</userinput> 2013-12-03 17:46:16.239 [12957] 1/sched C> version 1.5.1-271-g610930e ... loading /home/pgulutzan/tarantool_test/init.lua ... ... 2013-12-03 17:46:16.244 [12957] 1/sched C> entering event loop # Type 'Enter' and then start the Tarantool client. -<prompt>$ </prompt><userinput>~/tarantool-stable/client/tarantool/tarantool</userinput> +<prompt>$ </prompt><userinput>~/tarantool/client/tarantool/tarantool</userinput> <prompt>localhost> </prompt> # Create a Lua function that will connect to the MySQL server, @@ -207,7 +207,7 @@ must explicitly state where they are when building Tarantool from source. <para> The example was run on a Linux machine where the base directory -had a copy of the Tarantool source on ~/tarantool-stable, and +had a copy of the Tarantool source on ~/tarantool, and a copy of PostgreSQL on /usr. The postgres server is already running on the local host 127.0.0.1. </para> @@ -242,7 +242,7 @@ INSERT 0 1 # Build the Tarantool server. Make certain that "cmake" gets the right # paths for the PostgreSQL include directory and the PostgreSQL libpq # library which were checked earlier. -<prompt>$ </prompt><userinput>cd ~/tarantool-stable</userinput> +<prompt>$ </prompt><userinput>cd ~/tarantool</userinput> <prompt>$ </prompt><userinput>make clean</userinput> <prompt>$ </prompt><userinput>rm CMakeCache.txt</userinput> <prompt>$ </prompt><userinput>cmake . -DWITH_POSTGRESQL=on -DPostgreSQL_LIBRARY=/usr/lib/libpq.so\</userinput> @@ -254,7 +254,7 @@ INSERT 0 1 ... -- Configuring done -- Generating done --- Build files have been written to: ~/tarantool-stable +-- Build files have been written to: ~/tarantool <prompt>$ </prompt><userinput>make</userinput> ... [ 49%] Built target core @@ -267,21 +267,21 @@ Linking CXX shared library libpg.so <prompt>$ </prompt> # Before starting Tarantool server, tell it where the PostgreSQL plugin is. -<prompt>$ </prompt><userinput>export TARANTOOL_PLUGIN_DIR=~/tarantool-stable/src/plugin/pg</userinput> +<prompt>$ </prompt><userinput>export TARANTOOL_PLUGIN_DIR=~/tarantool/src/plugin/pg</userinput> <prompt>$ </prompt> # Start the Tarantool server. # Run it in the background but let the initial display be in the foreground. # So it's possible to see the message that the plugin was loaded. -<prompt>$ </prompt><userinput>~/tarantool-stable/src/box/tarantool&</userinput> +<prompt>$ </prompt><userinput>~/tarantool/src/box/tarantool&</userinput> 2013-12-06 13:01:51.518 [23978] 1/sched C> version 1.5.1-290-g45b93e7 -... Loading plugin: ~/tarantool-stable/src/plugin/pg/libpg.so ... +... Loading plugin: ~/tarantool/src/plugin/pg/libpg.so ... ... Plugin 'postgresql' was loaded, version: 1 ... 2013-12-06 13:01:51.531 [23978] 1/sched C> entering event loop # Type 'Enter' and then start the Tarantool client. -<prompt>$ </prompt><userinput>~/tarantool-stable/client/tarantool/tarantool</userinput> +<prompt>$ </prompt><userinput>~/tarantool/client/tarantool/tarantool</userinput> <prompt>localhost> </prompt> # Create a Lua function that will connect to the PostgreSQL server, diff --git a/doc/www-data.in/_text/index.md b/doc/www-data.in/_text/index.md index 7a7d17f7a9317d8da2ab3b347651d39141cd7e8e..cf11e157caa28f616ccf47e15fa513e711d9910d 100644 --- a/doc/www-data.in/_text/index.md +++ b/doc/www-data.in/_text/index.md @@ -42,4 +42,5 @@ index: - [YCSB benchmark results](benchmark.html) - [FAQ](faq.html) - [Source repository](http://github.com/tarantool/tarantool) - - [Lua stored procedures repository]( http://github.com/mailru/tntlua) + - [Lua stored procedures repository](http://github.com/mailru/tntlua) + - [1.5 web site and downloads](http://stable.tarantool.org) diff --git a/doc/www-data.in/download.cmake b/doc/www-data.in/download.cmake index 75cc5d743c4e8e677617b3268c09f0d60da03b4e..0cf3c2adb527e9b70ab053f1056169b6ba701330 100644 --- a/doc/www-data.in/download.cmake +++ b/doc/www-data.in/download.cmake @@ -15,10 +15,10 @@ download: The version string may also contain a git revision id, to ease identification of the unqiue commit used to generate the build. - The current version of the stable branch is **@PACKAGE_VERSION@**. + The current version of the master branch is **@PACKAGE_VERSION@**. An automatic build system creates, tests and publishes packages - for every push into the stable branch. All binary packages contain + for every push into the master branch. All binary packages contain symbol information. Additionally, **-debug-** packages contain asserts and are compiled without optimization. @@ -129,15 +129,15 @@ download: [Apple Developer]: https://developer.apple.com/downloads/ - # Development branch + # Old master branch - In the same manner as for [the stable branch][stable], every push into - [the master branch][master] is [available online][builds-m]. - The server roadmap is maintained on [Github][issues]. + In the same manner as for [the master branch][master], every push into + [the old master][stable] is [available online][builds-s]. + The server bugs database is maintained on [Github][issues]. [stable]: http://github.com/tarantool/tarantool/tree/stable [master]: http://github.com/tarantool/tarantool/tree/master - [builds-m]: http://tarantool.org/dist/master + [builds-s]: http://tarantool.org/dist/stable [issues]: http://github.com/tarantool/tarantool/issues ## Connectors