rroonga 3.0.2-x86-mingw32 → 3.0.4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/text/news.textile +30 -1
- data/ext/groonga/extconf.rb +49 -26
- data/ext/groonga/rb-grn-array.c +56 -1
- data/ext/groonga/rb-grn-column.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +3 -3
- data/ext/groonga/rb-grn-expression.c +14 -9
- data/ext/groonga/rb-grn-index-column.c +1 -1
- data/ext/groonga/rb-grn-operator.c +10 -3
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-table.c +71 -25
- data/ext/groonga/rb-grn-utils.c +3 -1
- data/ext/groonga/rb-grn-variable.c +17 -4
- data/ext/groonga/rb-grn.h +2 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/groonga/record.rb +9 -2
- data/lib/groonga/sub-records.rb +62 -0
- data/rroonga-build.rb +2 -1
- data/rroonga.gemspec +1 -1
- data/test/test-array.rb +35 -0
- data/test/test-context.rb +2 -1
- data/test/test-database.rb +2 -1
- data/test/test-expression.rb +14 -4
- data/test/test-sub-records.rb +109 -0
- data/test/test-table.rb +104 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +20 -2
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +187 -137
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +16 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +514 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -49
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +10 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +29 -11
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +17 -12
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +25 -15
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +21 -13
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +38 -23
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/news.html +885 -481
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +280 -146
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +12 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +43 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +558 -75
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +10 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +15 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +13 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +83 -46
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +71 -38
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +55 -30
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +19 -12
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +27 -16
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +24 -16
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +31 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +16 -12
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +847 -160
- data/vendor/local/share/man/man1/groonga.1 +826 -97
- metadata +10 -2
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>2.7. Oracle Solaris — groonga v3.0.
|
10
|
+
<title>2.7. Oracle Solaris — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../index.html" />
|
29
29
|
<link rel="up" title="2. Install" href="../install.html" />
|
30
30
|
<link rel="next" title="2.8. Others" href="others.html" />
|
31
31
|
<link rel="prev" title="2.6. Fedora" href="fedora.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="fedora.html" title="2.6. Fedora"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../index.html">groonga v3.0.
|
63
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../install.html" accesskey="U">2. Install</a> »</li>
|
65
65
|
</ul>
|
66
66
|
</div>
|
@@ -81,9 +81,9 @@ Solaris.</p>
|
|
81
81
|
</pre></div>
|
82
82
|
</div>
|
83
83
|
<p>Download source:</p>
|
84
|
-
<div class="highlight-none"><div class="highlight"><pre>% wget http://packages.groonga.org/source/groonga/groonga-3.0.
|
85
|
-
% gtar xvzf groonga-3.0.
|
86
|
-
% cd groonga-3.0.
|
84
|
+
<div class="highlight-none"><div class="highlight"><pre>% wget http://packages.groonga.org/source/groonga/groonga-3.0.5.tar.gz
|
85
|
+
% gtar xvzf groonga-3.0.5.tar.gz
|
86
|
+
% cd groonga-3.0.5
|
87
87
|
</pre></div>
|
88
88
|
</div>
|
89
89
|
<p>Configure with <tt class="docutils literal"><span class="pre">CFLAGS="-m64"</span> <span class="pre">CXXFLAGS="-m64"</span></tt> variables. They are
|
@@ -158,7 +158,7 @@ options):</p>
|
|
158
158
|
<li class="right" >
|
159
159
|
<a href="fedora.html" title="2.6. Fedora"
|
160
160
|
>previous</a> |</li>
|
161
|
-
<li><a href="../index.html">groonga v3.0.
|
161
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
162
162
|
<li><a href="../install.html" >2. Install</a> »</li>
|
163
163
|
</ul>
|
164
164
|
</div>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>2.4. Ubuntu — groonga v3.0.
|
10
|
+
<title>2.4. Ubuntu — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../index.html" />
|
29
29
|
<link rel="up" title="2. Install" href="../install.html" />
|
30
30
|
<link rel="next" title="2.5. CentOS" href="centos.html" />
|
31
31
|
<link rel="prev" title="2.3. Debian GNU/Linux" href="debian.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="debian.html" title="2.3. Debian GNU/Linux"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../index.html">groonga v3.0.
|
63
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../install.html" accesskey="U">2. Install</a> »</li>
|
65
65
|
</ul>
|
66
66
|
</div>
|
@@ -271,9 +271,9 @@ If you want to use that one, install groonga-normalizer-mysql package.</p>
|
|
271
271
|
</pre></div>
|
272
272
|
</div>
|
273
273
|
<p>Download source:</p>
|
274
|
-
<div class="highlight-none"><div class="highlight"><pre>% wget http://packages.groonga.org/source/groonga/groonga-3.0.
|
275
|
-
% tar xvzf groonga-3.0.
|
276
|
-
% cd groonga-3.0.
|
274
|
+
<div class="highlight-none"><div class="highlight"><pre>% wget http://packages.groonga.org/source/groonga/groonga-3.0.5.tar.gz
|
275
|
+
% tar xvzf groonga-3.0.5.tar.gz
|
276
|
+
% cd groonga-3.0.5
|
277
277
|
</pre></div>
|
278
278
|
</div>
|
279
279
|
<p>Configure (see <a class="reference internal" href="others.html#source-configure"><em>configure</em></a> about <tt class="docutils literal"><span class="pre">configure</span></tt> options):</p>
|
@@ -349,7 +349,7 @@ If you want to use that one, install groonga-normalizer-mysql package.</p>
|
|
349
349
|
<li class="right" >
|
350
350
|
<a href="debian.html" title="2.3. Debian GNU/Linux"
|
351
351
|
>previous</a> |</li>
|
352
|
-
<li><a href="../index.html">groonga v3.0.
|
352
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
353
353
|
<li><a href="../install.html" >2. Install</a> »</li>
|
354
354
|
</ul>
|
355
355
|
</div>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>2.1. Windows — groonga v3.0.
|
10
|
+
<title>2.1. Windows — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../index.html" />
|
29
29
|
<link rel="up" title="2. Install" href="../install.html" />
|
30
30
|
<link rel="next" title="2.2. Mac OS X" href="mac_os_x.html" />
|
31
31
|
<link rel="prev" title="2. Install" href="../install.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="../install.html" title="2. Install"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../index.html">groonga v3.0.
|
63
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../install.html" accesskey="U">2. Install</a> »</li>
|
65
65
|
</ul>
|
66
66
|
</div>
|
@@ -84,13 +84,13 @@ size data.</p>
|
|
84
84
|
<p>For 32-bit environment, download x86 executable binary from packages.groonga.org.</p>
|
85
85
|
<p>You can download such a binary by command line operation.</p>
|
86
86
|
<p>Start command prompt <tt class="docutils literal"><span class="pre">cmd.exe</span></tt> and download x86 executable binary by default browser:</p>
|
87
|
-
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.
|
87
|
+
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.5-x86.exe
|
88
88
|
</pre></div>
|
89
89
|
</div>
|
90
90
|
<p>Then run it.</p>
|
91
91
|
<p>For 64-bit environment, download x64 executable binary from packages.groonga.org.</p>
|
92
92
|
<p>Start command prompt <tt class="docutils literal"><span class="pre">cmd.exe</span></tt> and download x64 executable binary by default browser:</p>
|
93
|
-
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.
|
93
|
+
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.5-x64.exe
|
94
94
|
</pre></div>
|
95
95
|
</div>
|
96
96
|
<p>Then run it.</p>
|
@@ -101,13 +101,13 @@ size data.</p>
|
|
101
101
|
<p>For 32-bit environment, download x86 zip archive from packages.groonga.org.</p>
|
102
102
|
<p>You can download such a binary by command line operation.</p>
|
103
103
|
<p>Start command prompt <tt class="docutils literal"><span class="pre">cmd.exe</span></tt> and download x86 zip archive by default browser:</p>
|
104
|
-
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.
|
104
|
+
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.5-x86.zip
|
105
105
|
</pre></div>
|
106
106
|
</div>
|
107
107
|
<p>Then extract it.</p>
|
108
108
|
<p>For 64-bit environment, download x64 zip archive from packages.groonga.org.</p>
|
109
109
|
<p>Start command prompt <tt class="docutils literal"><span class="pre">cmd.exe</span></tt> and download x64 zip archive by default browser:</p>
|
110
|
-
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.
|
110
|
+
<div class="highlight-none"><div class="highlight"><pre>> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/windows/groonga/groonga-3.0.5-x64.zip
|
111
111
|
</pre></div>
|
112
112
|
</div>
|
113
113
|
<p>Then extract it.</p>
|
@@ -128,26 +128,26 @@ Windows. Here are required tools:</p>
|
|
128
128
|
<p>Start <tt class="docutils literal"><span class="pre">Visual</span> <span class="pre">Studio</span> <span class="pre">Command</span> <span class="pre">Prompt</span> <span class="pre">(2010)</span></tt> installed by Microsoft
|
129
129
|
Visual Studio 2010 Express and download it by default browser:</p>
|
130
130
|
<div class="highlight-none"><div class="highlight"><pre>> cd c:\Users\%USERNAME%\Downloads
|
131
|
-
> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/source/groonga/groonga-3.0.
|
131
|
+
> "c:\\Program Files\\Internet Explorer\\iexplore.exe" http://packages.groonga.org/source/groonga/groonga-3.0.5.zip
|
132
132
|
</pre></div>
|
133
133
|
</div>
|
134
134
|
<p>Then extract it.</p>
|
135
135
|
<p>Move to the groonga's source folder:</p>
|
136
|
-
<div class="highlight-none"><div class="highlight"><pre>> cd c:\Users\%USERNAME%\Downloads\groonga-3.0.
|
136
|
+
<div class="highlight-none"><div class="highlight"><pre>> cd c:\Users\%USERNAME%\Downloads\groonga-3.0.5
|
137
137
|
</pre></div>
|
138
138
|
</div>
|
139
139
|
<p>Configure by <tt class="docutils literal"><span class="pre">cmake</span></tt>. The following commnad line is for 64-bit
|
140
140
|
version. To build 32-bit version, use <tt class="docutils literal"><span class="pre">-G</span> <span class="pre">"Visual</span> <span class="pre">Studio</span> <span class="pre">10"</span></tt>
|
141
141
|
parameter instead:</p>
|
142
|
-
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.
|
142
|
+
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.5> cmake . -G "Visual Studio 10 Win64" -DCMAKE_INSTALL_PREFIX=C:\groonga
|
143
143
|
</pre></div>
|
144
144
|
</div>
|
145
145
|
<p>Build:</p>
|
146
|
-
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.
|
146
|
+
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.5> cmake --build . --config Release
|
147
147
|
</pre></div>
|
148
148
|
</div>
|
149
149
|
<p>Install:</p>
|
150
|
-
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.
|
150
|
+
<div class="highlight-none"><div class="highlight"><pre>groonga-3.0.5> cmake --build . --config Release --target Install
|
151
151
|
</pre></div>
|
152
152
|
</div>
|
153
153
|
<p>After the above steps, <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga command</em></a> is found in
|
@@ -211,7 +211,7 @@ parameter instead:</p>
|
|
211
211
|
<li class="right" >
|
212
212
|
<a href="../install.html" title="2. Install"
|
213
213
|
>previous</a> |</li>
|
214
|
-
<li><a href="../index.html">groonga v3.0.
|
214
|
+
<li><a href="../index.html">groonga v3.0.5 documentation</a> »</li>
|
215
215
|
<li><a href="../install.html" >2. Install</a> »</li>
|
216
216
|
</ul>
|
217
217
|
</div>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>10. Limitations — groonga v3.0.
|
10
|
+
<title>10. Limitations — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="index.html" />
|
29
29
|
<link rel="next" title="11. トラブルシューティング" href="troubleshooting.html" />
|
30
30
|
<link rel="prev" title="9.2. 検索" href="spec/search.html" />
|
31
31
|
</head>
|
@@ -59,7 +59,7 @@
|
|
59
59
|
<li class="right" >
|
60
60
|
<a href="spec/search.html" title="9.2. 検索"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">groonga v3.0.
|
62
|
+
<li><a href="index.html">groonga v3.0.5 documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
@@ -147,7 +147,7 @@
|
|
147
147
|
<li class="right" >
|
148
148
|
<a href="spec/search.html" title="9.2. 検索"
|
149
149
|
>previous</a> |</li>
|
150
|
-
<li><a href="index.html">groonga v3.0.
|
150
|
+
<li><a href="index.html">groonga v3.0.5 documentation</a> »</li>
|
151
151
|
</ul>
|
152
152
|
</div>
|
153
153
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>News — groonga v3.0.
|
10
|
+
<title>News — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="index.html" />
|
29
29
|
</head>
|
30
30
|
<body>
|
31
31
|
<div class="header">
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<li class="right" style="margin-right: 10px">
|
52
52
|
<a href="genindex.html" title="General Index"
|
53
53
|
accesskey="I">index</a></li>
|
54
|
-
<li><a href="index.html">groonga v3.0.
|
54
|
+
<li><a href="index.html">groonga v3.0.5 documentation</a> »</li>
|
55
55
|
</ul>
|
56
56
|
</div>
|
57
57
|
|
@@ -62,11 +62,53 @@
|
|
62
62
|
|
63
63
|
<div class="section" id="news">
|
64
64
|
<h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
|
65
|
-
<div class="section" id="release-3-0-
|
66
|
-
<span id="release-3-0-
|
65
|
+
<div class="section" id="release-3-0-5-2013-06-29">
|
66
|
+
<span id="release-3-0-5"></span><h2>Release 3.0.5 - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="Permalink to this headline">¶</a></h2>
|
67
67
|
<div class="section" id="improvements">
|
68
68
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
69
|
<ul class="simple">
|
70
|
+
<li>[doc] Added summary about <tt class="docutils literal"><span class="pre">match_column</span></tt> and <tt class="docutils literal"><span class="pre">query_string</span></tt> parameters in <tt class="docutils literal"><span class="pre">query()</span></tt>.</li>
|
71
|
+
<li>Added subrecord information to table inspection.</li>
|
72
|
+
<li>Supported single quoted string literal in <tt class="docutils literal"><span class="pre">output_columns</span></tt> expression.
|
73
|
+
This means that "XXX, '...'" expression is supported.</li>
|
74
|
+
<li>[doc] Added notification about root privileges and well known port
|
75
|
+
when starting groonga server. [Reported by Kosuke Asami]</li>
|
76
|
+
<li>[experimental] Added <a class="reference internal" href="reference/functions/html_untag.html"><em>html_untag</em></a> function.</li>
|
77
|
+
</ul>
|
78
|
+
</div>
|
79
|
+
<div class="section" id="fixes">
|
80
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
81
|
+
<ul class="simple">
|
82
|
+
<li>Fixed a crash bug of mroonga which is caused by missing lock for table creation.
|
83
|
+
[Reported by Y.Kentaro]</li>
|
84
|
+
<li>Fixed a lot of compilation warnings by clang and gcc.</li>
|
85
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">sub_filter(...)</span></tt> is ignored if you use "XXX && sub_filter(...)"
|
86
|
+
expression.</li>
|
87
|
+
<li>Fixed a bug that wrong tag name is used in XML output.
|
88
|
+
This bug affects the case if you use "REFERENCE_VECTOR_COLUMN._key" expression
|
89
|
+
for <tt class="docutils literal"><span class="pre">output_columns</span></tt>. Reference column isn't contained in XML ouput.</li>
|
90
|
+
<li>[doc] Fixed wrong arguments in <tt class="docutils literal"><span class="pre">sub_filter()</span></tt> documentation.</li>
|
91
|
+
<li>[deb] Fixed a bug that status action returns wrong exit code
|
92
|
+
when services are stopped. [GitHub#62] [Patch by @orangain]</li>
|
93
|
+
<li>Fixed a bug that the value of arithmetic operation is broken.
|
94
|
+
This bug affects the case if you assign calculated value to
|
95
|
+
<tt class="docutils literal"><span class="pre">_score</span></tt> pseudo column for example.</li>
|
96
|
+
</ul>
|
97
|
+
</div>
|
98
|
+
<div class="section" id="thanks">
|
99
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
100
|
+
<ul class="simple">
|
101
|
+
<li>Y.Kentaro</li>
|
102
|
+
<li>Kosuke Asami</li>
|
103
|
+
<li>@orangain</li>
|
104
|
+
</ul>
|
105
|
+
</div>
|
106
|
+
</div>
|
107
|
+
<div class="section" id="release-3-0-4-2013-05-29">
|
108
|
+
<span id="release-3-0-4"></span><h2>Release 3.0.4 - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="Permalink to this headline">¶</a></h2>
|
109
|
+
<div class="section" id="id1">
|
110
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
111
|
+
<ul class="simple">
|
70
112
|
<li>[tokenizer] Improved to show log message when normalized string is not given.</li>
|
71
113
|
<li>Supported <tt class="docutils literal"><span class="pre">_key</span></tt> as an argument of <tt class="docutils literal"><span class="pre">geo_in_circle</span></tt>. [Reported by @ceekz]</li>
|
72
114
|
<li>Supported to cast vector elements when groonga is used as a library.</li>
|
@@ -88,8 +130,8 @@ It supports to exclude specific tables from monitoring results.</li>
|
|
88
130
|
system plugins.</li>
|
89
131
|
</ul>
|
90
132
|
</div>
|
91
|
-
<div class="section" id="
|
92
|
-
<h3>Fixes<a class="headerlink" href="#
|
133
|
+
<div class="section" id="id2">
|
134
|
+
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
93
135
|
<ul class="simple">
|
94
136
|
<li>[tokenizer] Fixed a memory leak on error.</li>
|
95
137
|
<li>Fixed a bug that empty string for similar search causes SEGV.
|
@@ -101,23 +143,25 @@ expressions are used.</li>
|
|
101
143
|
[Reported by Y.Kentaro]</li>
|
102
144
|
<li>Fixed a bug that daemonize process doesn't work on OS X.
|
103
145
|
[groonga-dev,01440] [Reported by Masahiro KONISHI]</li>
|
146
|
+
<li>[deb] Fixed a bug that HTTP/GQTP process is excuted as root user.</li>
|
104
147
|
</ul>
|
105
148
|
</div>
|
106
|
-
<div class="section" id="
|
107
|
-
<h3>Thanks<a class="headerlink" href="#
|
149
|
+
<div class="section" id="id3">
|
150
|
+
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
108
151
|
<ul class="simple">
|
109
152
|
<li>@ceekz</li>
|
110
153
|
<li>Nakai Kanako</li>
|
111
154
|
<li>firewood</li>
|
112
155
|
<li>Y.Kentaro</li>
|
113
156
|
<li>Masahiro KONISHI</li>
|
157
|
+
<li>@orangain</li>
|
114
158
|
</ul>
|
115
159
|
</div>
|
116
160
|
</div>
|
117
161
|
<div class="section" id="release-3-0-3-2013-04-29">
|
118
162
|
<span id="release-3-0-3"></span><h2>Release 3.0.3 - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="Permalink to this headline">¶</a></h2>
|
119
|
-
<div class="section" id="
|
120
|
-
<h3>Improvements<a class="headerlink" href="#
|
163
|
+
<div class="section" id="id4">
|
164
|
+
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
121
165
|
<ul class="simple">
|
122
166
|
<li>[suggest] Supported to learn with the value of customized weight
|
123
167
|
by using <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> configuration.</li>
|
@@ -135,8 +179,8 @@ for building customized groonga without changing spec file.</li>
|
|
135
179
|
</div>
|
136
180
|
<div class="section" id="release-3-0-2-2013-03-29">
|
137
181
|
<span id="release-3-0-2"></span><h2>Release 3.0.2 - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="Permalink to this headline">¶</a></h2>
|
138
|
-
<div class="section" id="
|
139
|
-
<h3>Improvements<a class="headerlink" href="#
|
182
|
+
<div class="section" id="id5">
|
183
|
+
<h3>Improvements<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
140
184
|
<ul class="simple">
|
141
185
|
<li>Supported two or more indexes for a table key.
|
142
186
|
This change affects to eliminate potential crash case when loading a new key
|
@@ -160,8 +204,8 @@ This change supports the query such as
|
|
160
204
|
<tt class="docutils literal"><span class="pre">--query_expansion</span></tt> is regarded as deprecated.</li>
|
161
205
|
</ul>
|
162
206
|
</div>
|
163
|
-
<div class="section" id="
|
164
|
-
<h3>Fixes<a class="headerlink" href="#
|
207
|
+
<div class="section" id="id6">
|
208
|
+
<h3>Fixes<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
165
209
|
<ul class="simple">
|
166
210
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">snippet_html(XXX),</span> <span class="pre">XXX</span></tt> fails with "stack error".
|
167
211
|
This bug affects a query such as <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'snippet_html(title),</span> <span class="pre">content'</span></tt>.
|
@@ -177,8 +221,8 @@ Reference key size is 25 byte or lager.</li>
|
|
177
221
|
This affects the case if GARBAGE does not exist.</li>
|
178
222
|
</ul>
|
179
223
|
</div>
|
180
|
-
<div class="section" id="
|
181
|
-
<h3>Thanks<a class="headerlink" href="#
|
224
|
+
<div class="section" id="id7">
|
225
|
+
<h3>Thanks<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
182
226
|
<ul class="simple">
|
183
227
|
<li>Hendro Wibowo</li>
|
184
228
|
<li>hino</li>
|
@@ -188,8 +232,8 @@ This affects the case if GARBAGE does not exist.</li>
|
|
188
232
|
</div>
|
189
233
|
<div class="section" id="release-3-0-1-2013-02-28">
|
190
234
|
<span id="release-3-0-1"></span><h2>Release 3.0.1 - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="Permalink to this headline">¶</a></h2>
|
191
|
-
<div class="section" id="
|
192
|
-
<h3>Improvements<a class="headerlink" href="#
|
235
|
+
<div class="section" id="id8">
|
236
|
+
<h3>Improvements<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
193
237
|
<ul class="simple">
|
194
238
|
<li>Supported to set Bool to reference column when loading dataset by load command.</li>
|
195
239
|
<li>Supported AND operation for nested index.
|
@@ -206,8 +250,8 @@ based nested index of _key.</li>
|
|
206
250
|
<li>[doc] Added missing documentation of commands such as <tt class="docutils literal"><span class="pre">column_rename</span></tt> or <tt class="docutils literal"><span class="pre">truncate</span></tt>.</li>
|
207
251
|
</ul>
|
208
252
|
</div>
|
209
|
-
<div class="section" id="
|
210
|
-
<h3>Fixes<a class="headerlink" href="#
|
253
|
+
<div class="section" id="id9">
|
254
|
+
<h3>Fixes<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
211
255
|
<ul class="simple">
|
212
256
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> returns NULL unexpectedly.
|
213
257
|
It causes that invalid index entry is returned after deleting entries.
|
@@ -217,8 +261,8 @@ This bug occurs by wrong the number of found records.</li>
|
|
217
261
|
<li>[httpd] Enabled default owner/group of database setting as groonga/groonga.</li>
|
218
262
|
</ul>
|
219
263
|
</div>
|
220
|
-
<div class="section" id="
|
221
|
-
<h3>Thanks<a class="headerlink" href="#
|
264
|
+
<div class="section" id="id10">
|
265
|
+
<h3>Thanks<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
222
266
|
<ul class="simple">
|
223
267
|
<li>b senboku</li>
|
224
268
|
</ul>
|
@@ -229,8 +273,8 @@ This bug occurs by wrong the number of found records.</li>
|
|
229
273
|
<ul class="simple">
|
230
274
|
<li>Bump version to 3.0.0!</li>
|
231
275
|
</ul>
|
232
|
-
<div class="section" id="
|
233
|
-
<h3>Fixes<a class="headerlink" href="#
|
276
|
+
<div class="section" id="id11">
|
277
|
+
<h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
234
278
|
<ul class="simple">
|
235
279
|
<li>[deb] Fixed to install missing not EUC-JP, but UTF-8 encoding dictionary
|
236
280
|
when <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> package is installed.</li>
|
@@ -240,8 +284,8 @@ If you use string literal for int64, this bug does not affects.</li>
|
|
240
284
|
by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li>
|
241
285
|
</ul>
|
242
286
|
</div>
|
243
|
-
<div class="section" id="
|
244
|
-
<h3>Thanks<a class="headerlink" href="#
|
287
|
+
<div class="section" id="id12">
|
288
|
+
<h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
245
289
|
<ul class="simple">
|
246
290
|
<li>IWAI, Masaharu</li>
|
247
291
|
</ul>
|
@@ -249,8 +293,8 @@ by init script is failed. [GitHub#53] [Patch by IWAI, Masaharu]</li>
|
|
249
293
|
</div>
|
250
294
|
<div class="section" id="release-2-1-2-2013-01-29">
|
251
295
|
<span id="release-2-1-2"></span><h2>Release 2.1.2 - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="Permalink to this headline">¶</a></h2>
|
252
|
-
<div class="section" id="
|
253
|
-
<h3>Improvements<a class="headerlink" href="#
|
296
|
+
<div class="section" id="id13">
|
297
|
+
<h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
254
298
|
<ul class="simple">
|
255
299
|
<li>Supported multiple <tt class="docutils literal"><span class="pre">query()</span></tt> in a select command.
|
256
300
|
For example, you can specify the keyword which has different weight such as
|
@@ -276,8 +320,8 @@ in <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
|
276
320
|
<li>[doc] Added documentation for <a class="reference internal" href="reference/functions/query.html"><em>query</em></a>.</li>
|
277
321
|
</ul>
|
278
322
|
</div>
|
279
|
-
<div class="section" id="
|
280
|
-
<h3>Fixes<a class="headerlink" href="#
|
323
|
+
<div class="section" id="id14">
|
324
|
+
<h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
281
325
|
<ul class="simple">
|
282
326
|
<li>Fixed not to report an error even though MeCab tokenizer shared object
|
283
327
|
isn't found. [groonga-dev,01174] [Reported by wing]</li>
|
@@ -287,8 +331,8 @@ isn't found. [groonga-dev,01174] [Reported by wing]</li>
|
|
287
331
|
by select command.</li>
|
288
332
|
</ul>
|
289
333
|
</div>
|
290
|
-
<div class="section" id="
|
291
|
-
<h3>Thanks<a class="headerlink" href="#
|
334
|
+
<div class="section" id="id15">
|
335
|
+
<h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
292
336
|
<ul class="simple">
|
293
337
|
<li>wing</li>
|
294
338
|
</ul>
|
@@ -298,8 +342,8 @@ by select command.</li>
|
|
298
342
|
<span id="release-2-1-1"></span><h2>Release 2.1.1 - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="Permalink to this headline">¶</a></h2>
|
299
343
|
<p>This is bug fix release of 2.1.0. All of 2.1.0 users should use 2.1.1
|
300
344
|
instead.</p>
|
301
|
-
<div class="section" id="
|
302
|
-
<h3>Fixes<a class="headerlink" href="#
|
345
|
+
<div class="section" id="id16">
|
346
|
+
<h3>Fixes<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
303
347
|
<ul class="simple">
|
304
348
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> information in database that is
|
305
349
|
created by groonga 2.0.8 or ealier is dropped.</li>
|
@@ -326,8 +370,8 @@ version of groonga.</p>
|
|
326
370
|
tokenizer. The argument of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> API has changed.
|
327
371
|
This API change affects developer of tokenizer plugin.</p>
|
328
372
|
</div>
|
329
|
-
<div class="section" id="
|
330
|
-
<h3>Improvements<a class="headerlink" href="#
|
373
|
+
<div class="section" id="id17">
|
374
|
+
<h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
331
375
|
<ul class="simple">
|
332
376
|
<li>[doc] Added documentation about <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
333
377
|
<li>Supported the expression as <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> arguments.
|
@@ -349,8 +393,8 @@ of <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span
|
|
349
393
|
and double array trie for <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>Nested index search among related table by column index</em></a>.</li>
|
350
394
|
</ul>
|
351
395
|
</div>
|
352
|
-
<div class="section" id="
|
353
|
-
<h3>Fixes<a class="headerlink" href="#
|
396
|
+
<div class="section" id="id18">
|
397
|
+
<h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
354
398
|
<ul class="simple">
|
355
399
|
<li>[windows] Added missing <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> flag to open file correctly.
|
356
400
|
This change fixes the infinite loop problem about groonga HTTP server.
|
@@ -362,8 +406,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop
|
|
362
406
|
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">_score</span></tt> after "*" is ignored in <tt class="docutils literal"><span class="pre">--output_columns</span></tt>.</li>
|
363
407
|
</ul>
|
364
408
|
</div>
|
365
|
-
<div class="section" id="
|
366
|
-
<h3>Thanks<a class="headerlink" href="#
|
409
|
+
<div class="section" id="id19">
|
410
|
+
<h3>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
367
411
|
<ul class="simple">
|
368
412
|
<li>Tomoatsu Shimada</li>
|
369
413
|
<li>Shimomura Tatsuya</li>
|
@@ -372,8 +416,8 @@ see <a class="reference internal" href="reference/executables/groonga.html#cmdop
|
|
372
416
|
</div>
|
373
417
|
<div class="section" id="release-2-0-9-2012-11-29">
|
374
418
|
<span id="release-2-0-9"></span><h2>Release 2.0.9 - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="Permalink to this headline">¶</a></h2>
|
375
|
-
<div class="section" id="
|
376
|
-
<h3>Improvements<a class="headerlink" href="#
|
419
|
+
<div class="section" id="id20">
|
420
|
+
<h3>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
377
421
|
<ul class="simple">
|
378
422
|
<li>Supported to calculate the value of distance accross border
|
379
423
|
in <tt class="docutils literal"><span class="pre">geo_distance</span></tt> with <tt class="docutils literal"><span class="pre">rectangle</span></tt> as approximate type. [#1534]</li>
|
@@ -396,8 +440,8 @@ This change is incompatibility change, but does not affects existing program.</l
|
|
396
440
|
<li>Supported range search by using index.</li>
|
397
441
|
</ul>
|
398
442
|
</div>
|
399
|
-
<div class="section" id="
|
400
|
-
<h3>Fixes<a class="headerlink" href="#
|
443
|
+
<div class="section" id="id21">
|
444
|
+
<h3>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
401
445
|
<ul class="simple">
|
402
446
|
<li>Fixed to use network byte order for status code of <a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTP header</em></a> to follow
|
403
447
|
the normal network protocol convention.
|
@@ -421,8 +465,8 @@ referenced by <tt class="docutils literal"><span class="pre">select</span></tt>
|
|
421
465
|
This change not to contain such a metadata as search results.</li>
|
422
466
|
</ul>
|
423
467
|
</div>
|
424
|
-
<div class="section" id="
|
425
|
-
<h3>Thanks<a class="headerlink" href="#
|
468
|
+
<div class="section" id="id22">
|
469
|
+
<h3>Thanks<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
|
426
470
|
<ul class="simple">
|
427
471
|
<li>Tomoatsu Shimada</li>
|
428
472
|
<li>Akio Tajima</li>
|
@@ -432,8 +476,8 @@ This change not to contain such a metadata as search results.</li>
|
|
432
476
|
</div>
|
433
477
|
<div class="section" id="release-2-0-8-2012-10-29">
|
434
478
|
<span id="release-2-0-8"></span><h2>Release 2.0.8 - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="Permalink to this headline">¶</a></h2>
|
435
|
-
<div class="section" id="
|
436
|
-
<h3>Improvements<a class="headerlink" href="#
|
479
|
+
<div class="section" id="id23">
|
480
|
+
<h3>Improvements<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
437
481
|
<ul class="simple">
|
438
482
|
<li>[rpm] Improved the description of server-http and httpd packages.
|
439
483
|
[Suggested by Daiki Ueno]</li>
|
@@ -445,8 +489,8 @@ This change not to contain such a metadata as search results.</li>
|
|
445
489
|
[Reported by serihiro]</li>
|
446
490
|
</ul>
|
447
491
|
</div>
|
448
|
-
<div class="section" id="
|
449
|
-
<h3>Fixes<a class="headerlink" href="#
|
492
|
+
<div class="section" id="id24">
|
493
|
+
<h3>Fixes<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
450
494
|
<ul class="simple">
|
451
495
|
<li>[rpm] Fixed to remove needless "Requires" from spec file.
|
452
496
|
[Reported by Daiki Ueno]</li>
|
@@ -457,8 +501,8 @@ This change not to contain such a metadata as search results.</li>
|
|
457
501
|
<li>[deb] Fixed to bundle missing table plugin.</li>
|
458
502
|
</ul>
|
459
503
|
</div>
|
460
|
-
<div class="section" id="
|
461
|
-
<h3>Thanks<a class="headerlink" href="#
|
504
|
+
<div class="section" id="id25">
|
505
|
+
<h3>Thanks<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
462
506
|
<ul class="simple">
|
463
507
|
<li>Daiki Ueno</li>
|
464
508
|
<li>firewood</li>
|
@@ -468,8 +512,8 @@ This change not to contain such a metadata as search results.</li>
|
|
468
512
|
</div>
|
469
513
|
<div class="section" id="release-2-0-7-2012-09-29">
|
470
514
|
<span id="release-2-0-7"></span><h2>Release 2.0.7 - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="Permalink to this headline">¶</a></h2>
|
471
|
-
<div class="section" id="
|
472
|
-
<h3>Improvements<a class="headerlink" href="#
|
515
|
+
<div class="section" id="id26">
|
516
|
+
<h3>Improvements<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
|
473
517
|
<ul class="simple">
|
474
518
|
<li>[doc] Added more descriptions about <tt class="docutils literal"><span class="pre">--query_flags</span></tt>.</li>
|
475
519
|
<li>[doc][httpd] Added sample configuration for gzip compression.</li>
|
@@ -485,8 +529,8 @@ This change not to contain such a metadata as search results.</li>
|
|
485
529
|
<li>Added <tt class="docutils literal"><span class="pre">min()</span></tt> function.</li>
|
486
530
|
</ul>
|
487
531
|
</div>
|
488
|
-
<div class="section" id="
|
489
|
-
<h3>Fixes<a class="headerlink" href="#
|
532
|
+
<div class="section" id="id27">
|
533
|
+
<h3>Fixes<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
490
534
|
<ul class="simple">
|
491
535
|
<li>Fixed to set domain to vector elements to <tt class="docutils literal"><span class="pre">load</span></tt> command. [GitHub#30]</li>
|
492
536
|
<li>[httpd] Fixed missing NULL initialization. [Reported by @Kiske]</li>
|
@@ -497,8 +541,8 @@ This change not to contain such a metadata as search results.</li>
|
|
497
541
|
<li>Fixed a bug that Time -> Float cast breaks value.</li>
|
498
542
|
</ul>
|
499
543
|
</div>
|
500
|
-
<div class="section" id="
|
501
|
-
<h3>Thanks<a class="headerlink" href="#
|
544
|
+
<div class="section" id="id28">
|
545
|
+
<h3>Thanks<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
502
546
|
<ul class="simple">
|
503
547
|
<li>@Kiske</li>
|
504
548
|
</ul>
|
@@ -506,8 +550,8 @@ This change not to contain such a metadata as search results.</li>
|
|
506
550
|
</div>
|
507
551
|
<div class="section" id="release-2-0-6-2012-08-29">
|
508
552
|
<span id="release-2-0-6"></span><h2>Release 2.0.6 - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="Permalink to this headline">¶</a></h2>
|
509
|
-
<div class="section" id="
|
510
|
-
<h3>Improvements<a class="headerlink" href="#
|
553
|
+
<div class="section" id="id29">
|
554
|
+
<h3>Improvements<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
511
555
|
<ul class="simple">
|
512
556
|
<li>[deb][rpm] Added <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> meta package. [#1451]</li>
|
513
557
|
<li>Supported <tt class="docutils literal"><span class="pre">--query_flags</span></tt> option to <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
@@ -528,8 +572,8 @@ This change not to contain such a metadata as search results.</li>
|
|
528
572
|
<li>Supported '-WORD' in <tt class="docutils literal"><span class="pre">--query</span></tt> of the select command.</li>
|
529
573
|
</ul>
|
530
574
|
</div>
|
531
|
-
<div class="section" id="
|
532
|
-
<h3>Fixes<a class="headerlink" href="#
|
575
|
+
<div class="section" id="id30">
|
576
|
+
<h3>Fixes<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
533
577
|
<ul class="simple">
|
534
578
|
<li>[doc] Fixed the execution examples. [#1428]
|
535
579
|
[Reported by IWAI, Masaharu]</li>
|
@@ -544,8 +588,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt
|
|
544
588
|
[Reported by @yito]</li>
|
545
589
|
</ul>
|
546
590
|
</div>
|
547
|
-
<div class="section" id="
|
548
|
-
<h3>Thanks<a class="headerlink" href="#
|
591
|
+
<div class="section" id="id31">
|
592
|
+
<h3>Thanks<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
|
549
593
|
<ul class="simple">
|
550
594
|
<li>IWAI, Masaharu</li>
|
551
595
|
<li>@yito</li>
|
@@ -554,8 +598,8 @@ by executing <tt class="docutils literal"><span class="pre">clearlock</span></tt
|
|
554
598
|
</div>
|
555
599
|
<div class="section" id="release-2-0-5-2012-07-29">
|
556
600
|
<span id="release-2-0-5"></span><h2>Release 2.0.5 - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="Permalink to this headline">¶</a></h2>
|
557
|
-
<div class="section" id="
|
558
|
-
<h3>Improvements<a class="headerlink" href="#
|
601
|
+
<div class="section" id="id32">
|
602
|
+
<h3>Improvements<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
|
559
603
|
<ul class="simple">
|
560
604
|
<li>Supported calculating the value of distance with "rect" or "rectangle"
|
561
605
|
argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
@@ -580,8 +624,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
580
624
|
<li>Supported to open locked database. [GitHub#21]</li>
|
581
625
|
</ul>
|
582
626
|
</div>
|
583
|
-
<div class="section" id="
|
584
|
-
<h3>Fixes<a class="headerlink" href="#
|
627
|
+
<div class="section" id="id33">
|
628
|
+
<h3>Fixes<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
|
585
629
|
<ul class="simple">
|
586
630
|
<li>Fixed a build problem about groonga-httpd on Mac OS X.
|
587
631
|
[Reported by SHIMADA Koji]</li>
|
@@ -597,8 +641,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
597
641
|
[#1429] [Reported by IWAI, Masaharu]</li>
|
598
642
|
</ul>
|
599
643
|
</div>
|
600
|
-
<div class="section" id="
|
601
|
-
<h3>Thanks<a class="headerlink" href="#
|
644
|
+
<div class="section" id="id34">
|
645
|
+
<h3>Thanks<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
|
602
646
|
<ul class="simple">
|
603
647
|
<li>SHIMADA Koji</li>
|
604
648
|
<li>IWAI, Masaharu</li>
|
@@ -607,8 +651,8 @@ argument in southern hemisphere. [#1418] [#1419] [#1420] [#1421]</li>
|
|
607
651
|
</div>
|
608
652
|
<div class="section" id="release-2-0-4-2012-06-29">
|
609
653
|
<span id="release-2-0-4"></span><h2>Release 2.0.4 - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="Permalink to this headline">¶</a></h2>
|
610
|
-
<div class="section" id="
|
611
|
-
<h3>Improvements<a class="headerlink" href="#
|
654
|
+
<div class="section" id="id35">
|
655
|
+
<h3>Improvements<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
|
612
656
|
<ul class="simple">
|
613
657
|
<li>Supported only KyTea 0.4.2.</li>
|
614
658
|
<li>Dropped KyTea 0.4.1 or ealier support.</li>
|
@@ -635,8 +679,8 @@ See <a class="reference internal" href="reference/grn_expr/query_syntax.html#con
|
|
635
679
|
[GitHub#18] [Patch by IWAI, Masaharu]</li>
|
636
680
|
</ul>
|
637
681
|
</div>
|
638
|
-
<div class="section" id="
|
639
|
-
<h3>Fixes<a class="headerlink" href="#
|
682
|
+
<div class="section" id="id36">
|
683
|
+
<h3>Fixes<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
|
640
684
|
<ul class="simple">
|
641
685
|
<li>Fixed a problem that display of command prompt changes to not intended state
|
642
686
|
by using batch mode on Mac OS X.
|
@@ -645,8 +689,8 @@ by using batch mode on Mac OS X.
|
|
645
689
|
<li>Fixed a problem that '=R' is treated as 'OR' in <tt class="docutils literal"><span class="pre">--query</span></tt> syntax. [#1393]</li>
|
646
690
|
</ul>
|
647
691
|
</div>
|
648
|
-
<div class="section" id="
|
649
|
-
<h3>Thanks<a class="headerlink" href="#
|
692
|
+
<div class="section" id="id37">
|
693
|
+
<h3>Thanks<a class="headerlink" href="#id37" title="Permalink to this headline">¶</a></h3>
|
650
694
|
<ul class="simple">
|
651
695
|
<li>@soundkitchen</li>
|
652
696
|
<li>IWAI, Masaharu</li>
|
@@ -655,8 +699,8 @@ by using batch mode on Mac OS X.
|
|
655
699
|
</div>
|
656
700
|
<div class="section" id="release-2-0-3-2012-05-29">
|
657
701
|
<span id="release-2-0-3"></span><h2>Release 2.0.3 - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="Permalink to this headline">¶</a></h2>
|
658
|
-
<div class="section" id="
|
659
|
-
<h3>Improvements<a class="headerlink" href="#
|
702
|
+
<div class="section" id="id38">
|
703
|
+
<h3>Improvements<a class="headerlink" href="#id38" title="Permalink to this headline">¶</a></h3>
|
660
704
|
<ul class="simple">
|
661
705
|
<li>[doc] Added about release procedure.</li>
|
662
706
|
<li>Removed restriction that the max number of opened files is 4096.</li>
|
@@ -680,8 +724,8 @@ groonga-repository to groonga-release to follow RPM package name
|
|
680
724
|
convension such as centos-release and fedora-release.</li>
|
681
725
|
</ul>
|
682
726
|
</div>
|
683
|
-
<div class="section" id="
|
684
|
-
<h3>Fixes<a class="headerlink" href="#
|
727
|
+
<div class="section" id="id39">
|
728
|
+
<h3>Fixes<a class="headerlink" href="#id39" title="Permalink to this headline">¶</a></h3>
|
685
729
|
<ul class="simple">
|
686
730
|
<li>[doc] Fixed a command to update yum repository.
|
687
731
|
[Suggested by IWAI, Masaharu]</li>
|
@@ -694,8 +738,8 @@ expression. [#1372]</li>
|
|
694
738
|
<li>Fixed a bug that a record key registered via index source isn't normalized.</li>
|
695
739
|
</ul>
|
696
740
|
</div>
|
697
|
-
<div class="section" id="
|
698
|
-
<h3>Thanks<a class="headerlink" href="#
|
741
|
+
<div class="section" id="id40">
|
742
|
+
<h3>Thanks<a class="headerlink" href="#id40" title="Permalink to this headline">¶</a></h3>
|
699
743
|
<ul class="simple">
|
700
744
|
<li>IWAI, Masaharu</li>
|
701
745
|
</ul>
|
@@ -718,8 +762,8 @@ package sign key before updating groogna packages.</p>
|
|
718
762
|
</pre></div>
|
719
763
|
</div>
|
720
764
|
</div>
|
721
|
-
<div class="section" id="
|
722
|
-
<h3>Improvements<a class="headerlink" href="#
|
765
|
+
<div class="section" id="id41">
|
766
|
+
<h3>Improvements<a class="headerlink" href="#id41" title="Permalink to this headline">¶</a></h3>
|
723
767
|
<ul class="simple">
|
724
768
|
<li>[pkg-config] Removed needless MessagePack dependency.</li>
|
725
769
|
<li>[rpm][fedora] Supported libedit. [#1325] [Suggested by IWAI, Masaharu]</li>
|
@@ -739,8 +783,8 @@ is the similar search syntax. [#1342]</li>
|
|
739
783
|
package sign key.</li>
|
740
784
|
</ul>
|
741
785
|
</div>
|
742
|
-
<div class="section" id="
|
743
|
-
<h3>Fixes<a class="headerlink" href="#
|
786
|
+
<div class="section" id="id42">
|
787
|
+
<h3>Fixes<a class="headerlink" href="#id42" title="Permalink to this headline">¶</a></h3>
|
744
788
|
<ul class="simple">
|
745
789
|
<li>[deb][rpm] Used <tt class="docutils literal"><span class="pre">--bind-address</span></tt> option instead of deprecated
|
746
790
|
<tt class="docutils literal"><span class="pre">--address</span></tt> option.
|
@@ -762,8 +806,8 @@ inverted index. [#1329]</li>
|
|
762
806
|
[#1340] [Reported by Shinya Kawaji]</li>
|
763
807
|
</ul>
|
764
808
|
</div>
|
765
|
-
<div class="section" id="
|
766
|
-
<h3>Thanks<a class="headerlink" href="#
|
809
|
+
<div class="section" id="id43">
|
810
|
+
<h3>Thanks<a class="headerlink" href="#id43" title="Permalink to this headline">¶</a></h3>
|
767
811
|
<ul class="simple">
|
768
812
|
<li>IWAI, Masaharu</li>
|
769
813
|
<li>Daiki Ueno</li>
|
@@ -773,8 +817,8 @@ inverted index. [#1329]</li>
|
|
773
817
|
</div>
|
774
818
|
<div class="section" id="release-2-0-1-2012-03-29">
|
775
819
|
<span id="release-2-0-1"></span><h2>Release 2.0.1 - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="Permalink to this headline">¶</a></h2>
|
776
|
-
<div class="section" id="
|
777
|
-
<h3>Improvements<a class="headerlink" href="#
|
820
|
+
<div class="section" id="id44">
|
821
|
+
<h3>Improvements<a class="headerlink" href="#id44" title="Permalink to this headline">¶</a></h3>
|
778
822
|
<ul class="simple">
|
779
823
|
<li>Supported build in other directory.
|
780
824
|
[#1298] [Reported by Kazuhiko]</li>
|
@@ -796,8 +840,8 @@ check. [#1289]</li>
|
|
796
840
|
<li><tt class="docutils literal"><span class="pre">grn_snip</span></tt> uses <tt class="docutils literal"><span class="pre">grn_obj</span></tt> mechanism. [#1054]</li>
|
797
841
|
</ul>
|
798
842
|
</div>
|
799
|
-
<div class="section" id="
|
800
|
-
<h3>Fixes<a class="headerlink" href="#
|
843
|
+
<div class="section" id="id45">
|
844
|
+
<h3>Fixes<a class="headerlink" href="#id45" title="Permalink to this headline">¶</a></h3>
|
801
845
|
<ul class="simple">
|
802
846
|
<li>Fixed a bug that uninstall task doesn't uninstall installed Ruby
|
803
847
|
scripts. [#1299] [Reported by Kazuhiko]</li>
|
@@ -808,8 +852,8 @@ only used by mroonga. [#1303]</li>
|
|
808
852
|
<li>Fixed a bug that latin1 normalization may access unexpected memory.</li>
|
809
853
|
</ul>
|
810
854
|
</div>
|
811
|
-
<div class="section" id="
|
812
|
-
<h3>Thanks<a class="headerlink" href="#
|
855
|
+
<div class="section" id="id46">
|
856
|
+
<h3>Thanks<a class="headerlink" href="#id46" title="Permalink to this headline">¶</a></h3>
|
813
857
|
<ul class="simple">
|
814
858
|
<li>Kazuhiko</li>
|
815
859
|
<li>Markus Elfring</li>
|
@@ -818,8 +862,8 @@ only used by mroonga. [#1303]</li>
|
|
818
862
|
</div>
|
819
863
|
<div class="section" id="release-2-0-0-2012-02-29">
|
820
864
|
<span id="release-2-0-0"></span><h2>Release 2.0.0 - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="Permalink to this headline">¶</a></h2>
|
821
|
-
<div class="section" id="
|
822
|
-
<h3>Improvements<a class="headerlink" href="#
|
865
|
+
<div class="section" id="id47">
|
866
|
+
<h3>Improvements<a class="headerlink" href="#id47" title="Permalink to this headline">¶</a></h3>
|
823
867
|
<ul class="simple">
|
824
868
|
<li>[dat] Added 0 length key check.</li>
|
825
869
|
<li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
|
@@ -843,8 +887,8 @@ only used by mroonga. [#1303]</li>
|
|
843
887
|
<li>[windows] Supported MessagePack.</li>
|
844
888
|
</ul>
|
845
889
|
</div>
|
846
|
-
<div class="section" id="
|
847
|
-
<h3>Fixes<a class="headerlink" href="#
|
890
|
+
<div class="section" id="id48">
|
891
|
+
<h3>Fixes<a class="headerlink" href="#id48" title="Permalink to this headline">¶</a></h3>
|
848
892
|
<ul class="simple">
|
849
893
|
<li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
|
850
894
|
<li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
|
@@ -854,8 +898,8 @@ only used by mroonga. [#1303]</li>
|
|
854
898
|
[Reported by @wareohji]</li>
|
855
899
|
</ul>
|
856
900
|
</div>
|
857
|
-
<div class="section" id="
|
858
|
-
<h3>Thanks<a class="headerlink" href="#
|
901
|
+
<div class="section" id="id49">
|
902
|
+
<h3>Thanks<a class="headerlink" href="#id49" title="Permalink to this headline">¶</a></h3>
|
859
903
|
<ul class="simple">
|
860
904
|
<li>Suzuki</li>
|
861
905
|
<li>Daiki Ueno</li>
|
@@ -868,8 +912,8 @@ only used by mroonga. [#1303]</li>
|
|
868
912
|
</div>
|
869
913
|
<div class="section" id="release-1-3-0-2012-01-29">
|
870
914
|
<span id="release-1-3-0"></span><h2>Release 1.3.0 - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="Permalink to this headline">¶</a></h2>
|
871
|
-
<div class="section" id="
|
872
|
-
<h3>Improvements<a class="headerlink" href="#
|
915
|
+
<div class="section" id="id50">
|
916
|
+
<h3>Improvements<a class="headerlink" href="#id50" title="Permalink to this headline">¶</a></h3>
|
873
917
|
<ul class="simple">
|
874
918
|
<li>Supported dynamic DB key table change by
|
875
919
|
GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
|
@@ -904,8 +948,8 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
904
948
|
<li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
|
905
949
|
</ul>
|
906
950
|
</div>
|
907
|
-
<div class="section" id="
|
908
|
-
<h3>Thanks<a class="headerlink" href="#
|
951
|
+
<div class="section" id="id51">
|
952
|
+
<h3>Thanks<a class="headerlink" href="#id51" title="Permalink to this headline">¶</a></h3>
|
909
953
|
<ul class="simple">
|
910
954
|
<li>montywi</li>
|
911
955
|
<li>Masaharu IWAI</li>
|
@@ -1026,112 +1070,118 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
1026
1070
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
1027
1071
|
<ul>
|
1028
1072
|
<li><a class="reference internal" href="#">News</a><ul>
|
1029
|
-
<li><a class="reference internal" href="#release-3-0-
|
1073
|
+
<li><a class="reference internal" href="#release-3-0-5-2013-06-29">Release 3.0.5 - 2013/06/29</a><ul>
|
1030
1074
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
1031
1075
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
1032
1076
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
1033
1077
|
</ul>
|
1034
1078
|
</li>
|
1035
|
-
<li><a class="reference internal" href="#release-3-0-
|
1079
|
+
<li><a class="reference internal" href="#release-3-0-4-2013-05-29">Release 3.0.4 - 2013/05/29</a><ul>
|
1036
1080
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
1081
|
+
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
1082
|
+
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
1037
1083
|
</ul>
|
1038
1084
|
</li>
|
1039
|
-
<li><a class="reference internal" href="#release-3-0-
|
1040
|
-
<li><a class="reference internal" href="#
|
1041
|
-
<li><a class="reference internal" href="#id3">Fixes</a></li>
|
1042
|
-
<li><a class="reference internal" href="#id4">Thanks</a></li>
|
1085
|
+
<li><a class="reference internal" href="#release-3-0-3-2013-04-29">Release 3.0.3 - 2013/04/29</a><ul>
|
1086
|
+
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
1043
1087
|
</ul>
|
1044
1088
|
</li>
|
1045
|
-
<li><a class="reference internal" href="#release-3-0-
|
1089
|
+
<li><a class="reference internal" href="#release-3-0-2-2013-03-29">Release 3.0.2 - 2013/03/29</a><ul>
|
1046
1090
|
<li><a class="reference internal" href="#id5">Improvements</a></li>
|
1047
1091
|
<li><a class="reference internal" href="#id6">Fixes</a></li>
|
1048
1092
|
<li><a class="reference internal" href="#id7">Thanks</a></li>
|
1049
1093
|
</ul>
|
1050
1094
|
</li>
|
1051
|
-
<li><a class="reference internal" href="#release-3-0-
|
1052
|
-
<li><a class="reference internal" href="#id8">
|
1053
|
-
<li><a class="reference internal" href="#id9">
|
1095
|
+
<li><a class="reference internal" href="#release-3-0-1-2013-02-28">Release 3.0.1 - 2013/02/28</a><ul>
|
1096
|
+
<li><a class="reference internal" href="#id8">Improvements</a></li>
|
1097
|
+
<li><a class="reference internal" href="#id9">Fixes</a></li>
|
1098
|
+
<li><a class="reference internal" href="#id10">Thanks</a></li>
|
1054
1099
|
</ul>
|
1055
1100
|
</li>
|
1056
|
-
<li><a class="reference internal" href="#release-
|
1057
|
-
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
1101
|
+
<li><a class="reference internal" href="#release-3-0-0-2013-02-09">Release 3.0.0 - 2013/02/09</a><ul>
|
1058
1102
|
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
1059
1103
|
<li><a class="reference internal" href="#id12">Thanks</a></li>
|
1060
1104
|
</ul>
|
1061
1105
|
</li>
|
1062
|
-
<li><a class="reference internal" href="#release-2-1-
|
1063
|
-
<li><a class="reference internal" href="#id13">
|
1106
|
+
<li><a class="reference internal" href="#release-2-1-2-2013-01-29">Release 2.1.2 - 2013/01/29</a><ul>
|
1107
|
+
<li><a class="reference internal" href="#id13">Improvements</a></li>
|
1108
|
+
<li><a class="reference internal" href="#id14">Fixes</a></li>
|
1109
|
+
<li><a class="reference internal" href="#id15">Thanks</a></li>
|
1064
1110
|
</ul>
|
1065
1111
|
</li>
|
1066
|
-
<li><a class="reference internal" href="#release-2-1-
|
1067
|
-
<li><a class="reference internal" href="#
|
1068
|
-
<li><a class="reference internal" href="#id15">Fixes</a></li>
|
1069
|
-
<li><a class="reference internal" href="#id16">Thanks</a></li>
|
1112
|
+
<li><a class="reference internal" href="#release-2-1-1-2012-12-29">Release 2.1.1 - 2012/12/29</a><ul>
|
1113
|
+
<li><a class="reference internal" href="#id16">Fixes</a></li>
|
1070
1114
|
</ul>
|
1071
1115
|
</li>
|
1072
|
-
<li><a class="reference internal" href="#release-2-0-
|
1116
|
+
<li><a class="reference internal" href="#release-2-1-0-2012-12-29">Release 2.1.0 - 2012/12/29</a><ul>
|
1073
1117
|
<li><a class="reference internal" href="#id17">Improvements</a></li>
|
1074
1118
|
<li><a class="reference internal" href="#id18">Fixes</a></li>
|
1075
1119
|
<li><a class="reference internal" href="#id19">Thanks</a></li>
|
1076
1120
|
</ul>
|
1077
1121
|
</li>
|
1078
|
-
<li><a class="reference internal" href="#release-2-0-
|
1122
|
+
<li><a class="reference internal" href="#release-2-0-9-2012-11-29">Release 2.0.9 - 2012/11/29</a><ul>
|
1079
1123
|
<li><a class="reference internal" href="#id20">Improvements</a></li>
|
1080
1124
|
<li><a class="reference internal" href="#id21">Fixes</a></li>
|
1081
1125
|
<li><a class="reference internal" href="#id22">Thanks</a></li>
|
1082
1126
|
</ul>
|
1083
1127
|
</li>
|
1084
|
-
<li><a class="reference internal" href="#release-2-0-
|
1128
|
+
<li><a class="reference internal" href="#release-2-0-8-2012-10-29">Release 2.0.8 - 2012/10/29</a><ul>
|
1085
1129
|
<li><a class="reference internal" href="#id23">Improvements</a></li>
|
1086
1130
|
<li><a class="reference internal" href="#id24">Fixes</a></li>
|
1087
1131
|
<li><a class="reference internal" href="#id25">Thanks</a></li>
|
1088
1132
|
</ul>
|
1089
1133
|
</li>
|
1090
|
-
<li><a class="reference internal" href="#release-2-0-
|
1134
|
+
<li><a class="reference internal" href="#release-2-0-7-2012-09-29">Release 2.0.7 - 2012/09/29</a><ul>
|
1091
1135
|
<li><a class="reference internal" href="#id26">Improvements</a></li>
|
1092
1136
|
<li><a class="reference internal" href="#id27">Fixes</a></li>
|
1093
1137
|
<li><a class="reference internal" href="#id28">Thanks</a></li>
|
1094
1138
|
</ul>
|
1095
1139
|
</li>
|
1096
|
-
<li><a class="reference internal" href="#release-2-0-
|
1140
|
+
<li><a class="reference internal" href="#release-2-0-6-2012-08-29">Release 2.0.6 - 2012/08/29</a><ul>
|
1097
1141
|
<li><a class="reference internal" href="#id29">Improvements</a></li>
|
1098
1142
|
<li><a class="reference internal" href="#id30">Fixes</a></li>
|
1099
1143
|
<li><a class="reference internal" href="#id31">Thanks</a></li>
|
1100
1144
|
</ul>
|
1101
1145
|
</li>
|
1102
|
-
<li><a class="reference internal" href="#release-2-0-
|
1146
|
+
<li><a class="reference internal" href="#release-2-0-5-2012-07-29">Release 2.0.5 - 2012/07/29</a><ul>
|
1103
1147
|
<li><a class="reference internal" href="#id32">Improvements</a></li>
|
1104
1148
|
<li><a class="reference internal" href="#id33">Fixes</a></li>
|
1105
1149
|
<li><a class="reference internal" href="#id34">Thanks</a></li>
|
1106
1150
|
</ul>
|
1107
1151
|
</li>
|
1108
|
-
<li><a class="reference internal" href="#release-2-0-
|
1152
|
+
<li><a class="reference internal" href="#release-2-0-4-2012-06-29">Release 2.0.4 - 2012/06/29</a><ul>
|
1109
1153
|
<li><a class="reference internal" href="#id35">Improvements</a></li>
|
1110
1154
|
<li><a class="reference internal" href="#id36">Fixes</a></li>
|
1111
1155
|
<li><a class="reference internal" href="#id37">Thanks</a></li>
|
1112
1156
|
</ul>
|
1113
1157
|
</li>
|
1114
|
-
<li><a class="reference internal" href="#release-2-0-
|
1158
|
+
<li><a class="reference internal" href="#release-2-0-3-2012-05-29">Release 2.0.3 - 2012/05/29</a><ul>
|
1115
1159
|
<li><a class="reference internal" href="#id38">Improvements</a></li>
|
1116
1160
|
<li><a class="reference internal" href="#id39">Fixes</a></li>
|
1117
1161
|
<li><a class="reference internal" href="#id40">Thanks</a></li>
|
1118
1162
|
</ul>
|
1119
1163
|
</li>
|
1120
|
-
<li><a class="reference internal" href="#release-2-0-
|
1164
|
+
<li><a class="reference internal" href="#release-2-0-2-2012-04-29">Release 2.0.2 - 2012/04/29</a><ul>
|
1121
1165
|
<li><a class="reference internal" href="#id41">Improvements</a></li>
|
1122
1166
|
<li><a class="reference internal" href="#id42">Fixes</a></li>
|
1123
1167
|
<li><a class="reference internal" href="#id43">Thanks</a></li>
|
1124
1168
|
</ul>
|
1125
1169
|
</li>
|
1126
|
-
<li><a class="reference internal" href="#release-2-0-
|
1170
|
+
<li><a class="reference internal" href="#release-2-0-1-2012-03-29">Release 2.0.1 - 2012/03/29</a><ul>
|
1127
1171
|
<li><a class="reference internal" href="#id44">Improvements</a></li>
|
1128
1172
|
<li><a class="reference internal" href="#id45">Fixes</a></li>
|
1129
1173
|
<li><a class="reference internal" href="#id46">Thanks</a></li>
|
1130
1174
|
</ul>
|
1131
1175
|
</li>
|
1132
|
-
<li><a class="reference internal" href="#release-
|
1176
|
+
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
|
1133
1177
|
<li><a class="reference internal" href="#id47">Improvements</a></li>
|
1134
|
-
<li><a class="reference internal" href="#id48">
|
1178
|
+
<li><a class="reference internal" href="#id48">Fixes</a></li>
|
1179
|
+
<li><a class="reference internal" href="#id49">Thanks</a></li>
|
1180
|
+
</ul>
|
1181
|
+
</li>
|
1182
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
|
1183
|
+
<li><a class="reference internal" href="#id50">Improvements</a></li>
|
1184
|
+
<li><a class="reference internal" href="#id51">Thanks</a></li>
|
1135
1185
|
</ul>
|
1136
1186
|
</li>
|
1137
1187
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a><ul>
|
@@ -1169,7 +1219,7 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
1169
1219
|
<li class="right" style="margin-right: 10px">
|
1170
1220
|
<a href="genindex.html" title="General Index"
|
1171
1221
|
>index</a></li>
|
1172
|
-
<li><a href="index.html">groonga v3.0.
|
1222
|
+
<li><a href="index.html">groonga v3.0.5 documentation</a> »</li>
|
1173
1223
|
</ul>
|
1174
1224
|
</div>
|
1175
1225
|
<div class="footer">
|