rroonga 5.0.1-x64-mingw32 → 5.0.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +1 -1
- data/ext/groonga/rb-grn-logger.c +159 -3
- data/ext/groonga/rb-grn-plugin.c +17 -1
- data/ext/groonga/rb-grn-query-logger.c +129 -3
- data/ext/groonga/rb-grn.h +1 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/groonga/query-logger.rb +48 -3
- data/lib/groonga/schema.rb +16 -3
- data/rroonga-build.rb +3 -3
- data/test/test-logger.rb +97 -2
- data/test/test-plugin.rb +5 -1
- data/test/test-query-logger.rb +149 -0
- data/test/test-schema.rb +19 -0
- data/vendor/local/bin/grndb.exe +0 -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-4.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +1 -0
- data/vendor/local/include/groonga/groonga/groonga.h +12 -6
- data/vendor/local/include/groonga/groonga/portability.h +158 -0
- data/vendor/local/include/msgpack.h +1 -0
- data/vendor/local/include/msgpack.hpp +2 -1
- data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
- data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
- data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
- data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
- data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
- data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
- data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
- data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
- data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
- data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
- data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
- data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
- data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
- data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
- data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
- data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
- data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
- data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
- data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
- data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
- data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
- data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
- data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
- data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
- data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
- data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
- data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
- data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
- data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
- data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
- data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
- data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
- data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
- data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
- data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
- data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
- data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
- data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
- data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
- data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
- data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
- data/vendor/local/include/msgpack/fbuffer.h +3 -4
- data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
- data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
- data/vendor/local/include/msgpack/iterator.hpp +42 -0
- data/vendor/local/include/msgpack/object.h +51 -30
- data/vendor/local/include/msgpack/object.hpp +564 -273
- data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
- data/vendor/local/include/msgpack/pack.h +23 -17
- data/vendor/local/include/msgpack/pack.hpp +889 -164
- data/vendor/local/include/msgpack/pack_define.h +2 -2
- data/vendor/local/include/msgpack/pack_template.h +452 -356
- data/vendor/local/include/msgpack/sbuffer.h +43 -37
- data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
- data/vendor/local/include/msgpack/sysdep.h +48 -53
- data/vendor/local/include/msgpack/type.hpp +35 -17
- data/vendor/local/include/msgpack/unpack.h +62 -44
- data/vendor/local/include/msgpack/unpack.hpp +1578 -217
- data/vendor/local/include/msgpack/unpack_define.h +49 -47
- data/vendor/local/include/msgpack/unpack_template.h +344 -284
- data/vendor/local/include/msgpack/util.h +23 -0
- data/vendor/local/include/msgpack/version.h +12 -6
- data/vendor/local/include/msgpack/version.hpp +44 -0
- data/vendor/local/include/msgpack/version_master.h +3 -0
- data/vendor/local/include/msgpack/versioning.hpp +77 -0
- data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
- data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
- data/vendor/local/include/msgpack/zbuffer.h +79 -79
- data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
- data/vendor/local/include/msgpack/zone.h +65 -42
- data/vendor/local/include/msgpack/zone.hpp +10 -445
- data/vendor/local/include/msgpack_fwd.hpp +28 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
- 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/query_expanders/tsv.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
- data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
- data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -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/suggest/suggest.la +2 -2
- 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/table/table.la +2 -2
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
- 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/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +4 -4
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +2 -2
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- 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/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.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 +69 -52
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
- 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 +7 -7
- 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 +6 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
- 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 +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
- data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
- 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 +7 -7
- 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 +6 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
- data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
- data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
- data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
- data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
- data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
- data/vendor/local/share/groonga/html/admin/404.html +133 -0
- data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
- data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
- data/vendor/local/share/groonga/html/admin/index.html +9 -297
- data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
- data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
- data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
- data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
- data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
- data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
- data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
- data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
- data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
- data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
- data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
- data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
- data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
- data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
- data/vendor/local/share/license/groonga-admin/README.md +79 -0
- data/vendor/local/share/license/msgpack/AUTHORS +0 -1
- data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
- data/vendor/local/share/man/man1/groonga.1 +812 -99
- metadata +138 -55
- data/doc/text/install.textile +0 -145
- data/doc/text/tutorial.textile +0 -510
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/include/msgpack/type/define.hpp +0 -3465
- data/vendor/local/include/msgpack/type/deque.hpp +0 -77
- data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
- data/vendor/local/include/msgpack/type/float.hpp +0 -102
- data/vendor/local/include/msgpack/type/int.hpp +0 -276
- data/vendor/local/include/msgpack/type/list.hpp +0 -77
- data/vendor/local/include/msgpack/type/map.hpp +0 -205
- data/vendor/local/include/msgpack/type/raw.hpp +0 -94
- data/vendor/local/include/msgpack/type/set.hpp +0 -122
- data/vendor/local/include/msgpack/type/string.hpp +0 -62
- data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
- data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
- data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
- data/vendor/local/include/msgpack/type/vector.hpp +0 -81
- data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>9. Limitations — Groonga v5.0.
|
10
|
+
<title>9. Limitations — Groonga v5.0.3 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: '5.0.
|
18
|
+
VERSION: '5.0.3',
|
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 v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.3 documentation" href="index.html" />
|
29
29
|
<link rel="next" title="10. トラブルシューティング" href="troubleshooting.html" />
|
30
30
|
<link rel="prev" title="8.2. 検索" href="spec/search.html" />
|
31
31
|
</head>
|
@@ -41,7 +41,7 @@
|
|
41
41
|
|
42
42
|
<div class="other-language-links">
|
43
43
|
<ul>
|
44
|
-
<li><a href="../../ja/html/limitations.html"
|
44
|
+
<li><a href="../../ja/html/limitations.html">日本語</a></li>
|
45
45
|
</ul>
|
46
46
|
</div>
|
47
47
|
</div>
|
@@ -59,7 +59,7 @@
|
|
59
59
|
<li class="right" >
|
60
60
|
<a href="spec/search.html" title="8.2. 検索"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">Groonga v5.0.
|
62
|
+
<li><a href="index.html">Groonga v5.0.3 documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
@@ -155,7 +155,7 @@
|
|
155
155
|
<li class="right" >
|
156
156
|
<a href="spec/search.html" title="8.2. 検索"
|
157
157
|
>previous</a> |</li>
|
158
|
-
<li><a href="index.html">Groonga v5.0.
|
158
|
+
<li><a href="index.html">Groonga v5.0.3 documentation</a> »</li>
|
159
159
|
</ul>
|
160
160
|
</div>
|
161
161
|
<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 v5.0.
|
10
|
+
<title>News — Groonga v5.0.3 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: '5.0.
|
18
|
+
VERSION: '5.0.3',
|
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 v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.3 documentation" href="index.html" />
|
29
29
|
</head>
|
30
30
|
<body>
|
31
31
|
<div class="header">
|
@@ -39,7 +39,7 @@
|
|
39
39
|
|
40
40
|
<div class="other-language-links">
|
41
41
|
<ul>
|
42
|
-
<li><a href="../../ja/html/news.html"
|
42
|
+
<li><a href="../../ja/html/news.html">日本語</a></li>
|
43
43
|
</ul>
|
44
44
|
</div>
|
45
45
|
</div>
|
@@ -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 v5.0.
|
54
|
+
<li><a href="index.html">Groonga v5.0.3 documentation</a> »</li>
|
55
55
|
</ul>
|
56
56
|
</div>
|
57
57
|
|
@@ -62,20 +62,111 @@
|
|
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-5-0-
|
66
|
-
<span id="release-5-0-
|
67
|
-
<p>It's a bug fix release of 5.0.1.</p>
|
65
|
+
<div class="section" id="release-5-0-3-2015-04-29">
|
66
|
+
<span id="release-5-0-3"></span><h2>Release 5.0.3 - 2015-04-29<a class="headerlink" href="#release-5-0-3-2015-04-29" title="Permalink to this headline">¶</a></h2>
|
68
67
|
<div class="section" id="improvements">
|
69
68
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
70
69
|
<ul class="simple">
|
70
|
+
<li>[<a class="reference internal" href="reference/tokenizers.html"><em>Tokenizers</em></a>][<a class="reference internal" href="reference/regular_expression.html"><em>Regular expression</em></a>]
|
71
|
+
Skip the last one character token.</li>
|
72
|
+
<li>[mruby] Supported regexp pattern for estimating size.</li>
|
73
|
+
<li>[mruby] Supported size estimation for accessor.</li>
|
74
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Removed <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></tt>
|
75
|
+
environment variable which is introduced since Groonga 5.0.2.
|
76
|
+
Use <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></tt> to disable range index search
|
77
|
+
feature.</li>
|
78
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported negative limit and offset.</li>
|
79
|
+
<li>[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Used <a class="reference external" href="https://github.com/groonga/groonga-admin">Groonga Admin</a> in package.</li>
|
80
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Changed threshold meaning:<ul>
|
81
|
+
<li>threshold <= 0.0: always use range index</li>
|
82
|
+
<li>threshold >= 1.0: never use range index</li>
|
83
|
+
</ul>
|
84
|
+
</li>
|
85
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Supported plugin.</li>
|
86
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Added the following options:<ul>
|
87
|
+
<li><tt class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></tt></li>
|
88
|
+
<li><tt class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></tt></li>
|
89
|
+
<li><tt class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></tt></li>
|
90
|
+
<li><tt class="docutils literal"><span class="pre">--dump_indexes</span> <span class="pre">[yes(default)/no]</span></tt></li>
|
91
|
+
</ul>
|
92
|
+
</li>
|
93
|
+
<li>[API] Added <tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></tt>.</li>
|
94
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Fixed order to put index columns after reference columns
|
95
|
+
because index column may refer reference columns.</li>
|
96
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Don't dump records of lexicon.</li>
|
97
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Show <tt class="docutils literal"><span class="pre">_id</span></tt> for <tt class="docutils literal"><span class="pre">TABLE_NO_KEY</span></tt> again.</li>
|
98
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Used offline index construnction.</li>
|
99
|
+
<li>Increased max hash key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
100
|
+
<li>Increased max cache key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
101
|
+
<li>Improved performance for nested index search.</li>
|
102
|
+
<li>Used index for nonexistent reference column value.</li>
|
103
|
+
<li>[experimental] Added plugin functions/vector. It includes <a class="reference internal" href="reference/functions/vector_size.html"><em>vector_size</em></a> function.</li>
|
104
|
+
<li>[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Updated Visual Studio version
|
105
|
+
[GitHub groonga/meetup#4] [Reported by Hiroyuki Mizuhara]</li>
|
106
|
+
<li>[<a class="reference internal" href="reference/commands/cache_limit.html"><em>cache_limit</em></a>] Expired old caches when the max N caches is decreased.
|
107
|
+
[Suggested by Gurunavi, Inc.]</li>
|
108
|
+
<li>Show more information such as errno for errors.</li>
|
109
|
+
<li>[windows] Used secure functions on Windows.</li>
|
110
|
+
<li>Added the following APIs to change log rotate threshold in file size.<ul>
|
111
|
+
<li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_logger_set_rotate_threshold_size()</span></tt></li>
|
112
|
+
<li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_logger_get_rotate_threshold_size()</span></tt></li>
|
113
|
+
<li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_set_rotate_threshold_size()</span></tt></li>
|
114
|
+
<li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_get_rotate_threshold_size()</span></tt></li>
|
115
|
+
</ul>
|
116
|
+
</li>
|
117
|
+
<li>[experimental] Supported log rotation. The feature is disabled by default.
|
118
|
+
You can enable log rotation by the following options:<ul>
|
119
|
+
<li><tt class="docutils literal"><span class="pre">--log-rotate-threshold-size</span></tt></li>
|
120
|
+
<li><tt class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></tt></li>
|
121
|
+
</ul>
|
122
|
+
</li>
|
123
|
+
<li>[<a class="reference internal" href="server/gqtp.html"><em>GQTP</em></a>] Documented about GQTP server.</li>
|
124
|
+
<li>[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Documented groonga executable file partially.</li>
|
125
|
+
<li>Supported Ubuntu 15.04 (Vivid Vervet).</li>
|
126
|
+
<li>Supported Debian 8.0 (Jessie).</li>
|
127
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] Updated bundled nginx version to the latest mainline (1.8.0).</li>
|
128
|
+
</ul>
|
129
|
+
</div>
|
130
|
+
<div class="section" id="fixes">
|
131
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
132
|
+
<ul class="simple">
|
133
|
+
<li>[windows] Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>Offline index construction</em></a> is
|
134
|
+
failed for large data (at least 1GB or larger) with Groonga built by
|
135
|
+
Microsoft Visual C++. [Reported by Hideki ARAI]</li>
|
136
|
+
<li>[mruby] Made <tt class="docutils literal"><span class="pre">\\</span></tt> index searchable in regular expression.</li>
|
137
|
+
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE=yes</span></tt> doesn't return some matched records.</li>
|
138
|
+
<li>[sharding] Fixed a bug that partial range is handled as all range.</li>
|
139
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Fixed a bug that <tt class="docutils literal"><span class="pre">:order</span> <span class="pre">=></span> <span class="pre">"descending"</span></tt> doesn't work.</li>
|
140
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] Re-supported counting with range index.</li>
|
141
|
+
<li>Fixed a bug causing malfunction of <tt class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></tt>
|
142
|
+
and added a test for invalid patricia trie node add case.
|
143
|
+
[groonga-dev,03177] [Reported by yuya sako]</li>
|
144
|
+
</ul>
|
145
|
+
</div>
|
146
|
+
<div class="section" id="thanks">
|
147
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
148
|
+
<ul class="simple">
|
149
|
+
<li>Hideki ARAI</li>
|
150
|
+
<li>Hiroyuki Mizuhara</li>
|
151
|
+
<li>Gurunavi, Inc.</li>
|
152
|
+
<li>yuya sako</li>
|
153
|
+
</ul>
|
154
|
+
</div>
|
155
|
+
</div>
|
156
|
+
<div class="section" id="release-5-0-2-2015-03-31">
|
157
|
+
<span id="release-5-0-2"></span><h2>Release 5.0.2 - 2015-03-31<a class="headerlink" href="#release-5-0-2-2015-03-31" title="Permalink to this headline">¶</a></h2>
|
158
|
+
<p>It's a bug fix release of 5.0.1.</p>
|
159
|
+
<div class="section" id="id1">
|
160
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
161
|
+
<ul class="simple">
|
71
162
|
<li>Supported MessagePack 1.0.1. [Reported by Hiroshi Hatake]</li>
|
72
163
|
<li>[logical_range_filter] Disabled range index by default. It's enabled
|
73
164
|
when you set the enviromnent variable <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></tt>
|
74
165
|
to <tt class="docutils literal"><span class="pre">yes</span></tt>.</li>
|
75
166
|
</ul>
|
76
167
|
</div>
|
77
|
-
<div class="section" id="
|
78
|
-
<h3>Fixes<a class="headerlink" href="#
|
168
|
+
<div class="section" id="id2">
|
169
|
+
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
79
170
|
<ul class="simple">
|
80
171
|
<li>Fixed a regression bug that JSONP doesn't work. It was introduced
|
81
172
|
in Groonga 4.1.1.</li>
|
@@ -85,8 +176,8 @@ in Groonga 4.1.1.</li>
|
|
85
176
|
problem is fixed in the environment such as CentOS 7.</li>
|
86
177
|
</ul>
|
87
178
|
</div>
|
88
|
-
<div class="section" id="
|
89
|
-
<h3>Thanks<a class="headerlink" href="#
|
179
|
+
<div class="section" id="id3">
|
180
|
+
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
90
181
|
<ul class="simple">
|
91
182
|
<li>Atsushi Shinoda</li>
|
92
183
|
<li>Hiroshi Hatake</li>
|
@@ -94,9 +185,9 @@ problem is fixed in the environment such as CentOS 7.</li>
|
|
94
185
|
</div>
|
95
186
|
</div>
|
96
187
|
<div class="section" id="release-5-0-1-2015-03-29">
|
97
|
-
<span id="release-5-0-1"></span><h2>Release 5.0.1 - 2015
|
98
|
-
<div class="section" id="
|
99
|
-
<h3>Improvements<a class="headerlink" href="#
|
188
|
+
<span id="release-5-0-1"></span><h2>Release 5.0.1 - 2015-03-29<a class="headerlink" href="#release-5-0-1-2015-03-29" title="Permalink to this headline">¶</a></h2>
|
189
|
+
<div class="section" id="id4">
|
190
|
+
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
100
191
|
<ul>
|
101
192
|
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported filter
|
102
193
|
and sort.</p>
|
@@ -201,7 +292,7 @@ occurred. Additionally, you can customize chunk threshold bytes by
|
|
201
292
|
characters.</p>
|
202
293
|
</li>
|
203
294
|
<li><p class="first">Supported <tt class="docutils literal"><span class="pre">--pid-file</span></tt> in server mode of
|
204
|
-
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga
|
295
|
+
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>.</p>
|
205
296
|
</li>
|
206
297
|
<li><p class="first">[groonga-httpd] Supported graceful stop to clean Groonga. It doesn't
|
207
298
|
terminate the open connections immediately.</p>
|
@@ -237,8 +328,8 @@ Murakami]</p>
|
|
237
328
|
</li>
|
238
329
|
</ul>
|
239
330
|
</div>
|
240
|
-
<div class="section" id="
|
241
|
-
<h3>Fixes<a class="headerlink" href="#
|
331
|
+
<div class="section" id="id5">
|
332
|
+
<h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
242
333
|
<ul class="simple">
|
243
334
|
<li>Fixed not to use obsolete <tt class="docutils literal"><span class="pre">--address</span></tt> parameter in the default
|
244
335
|
groonga.conf. <tt class="docutils literal"><span class="pre">--bind-address</span></tt> is used instead. [Groonga-talk]
|
@@ -258,7 +349,7 @@ multi-column indexes, source column orders are different in them.</li>
|
|
258
349
|
</ul>
|
259
350
|
</li>
|
260
351
|
<li>Fixed a bug that passing Groonga command line to
|
261
|
-
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga
|
352
|
+
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> from shell command line style
|
262
353
|
usage always returns <tt class="docutils literal"><span class="pre">0</span></tt> as exit code. For example, <tt class="docutils literal"><span class="pre">groonga</span>
|
263
354
|
<span class="pre">DB_PATH</span> <span class="pre">nonexistent_command</span></tt> always returned <tt class="docutils literal"><span class="pre">0</span></tt> as exist code.</li>
|
264
355
|
<li>Fixed a bug that plugin path may be broken when two or more plugins
|
@@ -269,8 +360,8 @@ column specified by <tt class="docutils literal"><span class="pre">source_column
|
|
269
360
|
indexes. [Reported by Naoya Murakami]</li>
|
270
361
|
</ul>
|
271
362
|
</div>
|
272
|
-
<div class="section" id="
|
273
|
-
<h3>Thanks<a class="headerlink" href="#
|
363
|
+
<div class="section" id="id6">
|
364
|
+
<h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
274
365
|
<ul class="simple">
|
275
366
|
<li>Masatoshi Teruya</li>
|
276
367
|
<li>Tasuku SUENAGA</li>
|
@@ -282,12 +373,12 @@ indexes. [Reported by Naoya Murakami]</li>
|
|
282
373
|
</div>
|
283
374
|
</div>
|
284
375
|
<div class="section" id="release-5-0-0-2015-02-09">
|
285
|
-
<span id="release-5-0-0"></span><h2>Release 5.0.0 - 2015
|
376
|
+
<span id="release-5-0-0"></span><h2>Release 5.0.0 - 2015-02-09<a class="headerlink" href="#release-5-0-0-2015-02-09" title="Permalink to this headline">¶</a></h2>
|
286
377
|
<ul class="simple">
|
287
378
|
<li>Bump version to 5.0.0!</li>
|
288
379
|
</ul>
|
289
|
-
<div class="section" id="
|
290
|
-
<h3>Improvements<a class="headerlink" href="#
|
380
|
+
<div class="section" id="id7">
|
381
|
+
<h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
291
382
|
<ul class="simple">
|
292
383
|
<li>[doc] Added <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><em>Security</em></a> about <a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>Script syntax</em></a>.</li>
|
293
384
|
<li>[experimental] Added sharding plugin. Execute <cite>register sharding</cite> to
|
@@ -298,16 +389,16 @@ on FreeBSD 10.1. <a class="reference external" href="https://mariadb.atlassian.n
|
|
298
389
|
<li>Supported to customize plugins directory. Set <cite>GRN_PLUGINS_DIR</cite> environment variable.</li>
|
299
390
|
</ul>
|
300
391
|
</div>
|
301
|
-
<div class="section" id="
|
302
|
-
<h3>Fixes<a class="headerlink" href="#
|
392
|
+
<div class="section" id="id8">
|
393
|
+
<h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
303
394
|
<ul class="simple">
|
304
395
|
<li>Fixed build failure when system has an incompatible version of onigmo/oniguruma
|
305
396
|
headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
306
397
|
<li>Fixed time related build failure on MSVC [GitHub#237]</li>
|
307
398
|
</ul>
|
308
399
|
</div>
|
309
|
-
<div class="section" id="
|
310
|
-
<h3>Thanks<a class="headerlink" href="#
|
400
|
+
<div class="section" id="id9">
|
401
|
+
<h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
311
402
|
<ul class="simple">
|
312
403
|
<li>Akinori MUSHA</li>
|
313
404
|
<li>Bernard Spil</li>
|
@@ -334,269 +425,269 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
334
425
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id4">Thanks</a></li>
|
335
426
|
</ul>
|
336
427
|
</li>
|
337
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-8-2014-11-29">Release 4.0.8 - 2014
|
428
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-8-2014-11-29">Release 4.0.8 - 2014-11-29</a><ul>
|
338
429
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id5">Improvements</a></li>
|
339
430
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id6">Fixes</a></li>
|
340
431
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id7">Thanks</a></li>
|
341
432
|
</ul>
|
342
433
|
</li>
|
343
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-7-2014-10-29">Release 4.0.7 - 2014
|
434
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-7-2014-10-29">Release 4.0.7 - 2014-10-29</a><ul>
|
344
435
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id8">Improvements</a></li>
|
345
436
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id9">Fixes</a></li>
|
346
437
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id10">Thanks</a></li>
|
347
438
|
</ul>
|
348
439
|
</li>
|
349
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-6-2014-09-29">Release 4.0.6 - 2014
|
440
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-6-2014-09-29">Release 4.0.6 - 2014-09-29</a><ul>
|
350
441
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id11">Improvements</a></li>
|
351
442
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id12">Fixes</a></li>
|
352
443
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id13">Thanks</a></li>
|
353
444
|
</ul>
|
354
445
|
</li>
|
355
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-5-2014-08-29">Release 4.0.5 - 2014
|
446
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-5-2014-08-29">Release 4.0.5 - 2014-08-29</a><ul>
|
356
447
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id14">Improvements</a></li>
|
357
448
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id15">Fixes</a></li>
|
358
449
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id16">Thanks</a></li>
|
359
450
|
</ul>
|
360
451
|
</li>
|
361
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-4-2014-07-29">Release 4.0.4 - 2014
|
452
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-4-2014-07-29">Release 4.0.4 - 2014-07-29</a><ul>
|
362
453
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id17">Improvements</a></li>
|
363
454
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id18">Fixes</a></li>
|
364
455
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id19">Thanks</a></li>
|
365
456
|
</ul>
|
366
457
|
</li>
|
367
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-3-2014-06-29">Release 4.0.3 - 2014
|
458
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-3-2014-06-29">Release 4.0.3 - 2014-06-29</a><ul>
|
368
459
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id20">Improvements</a></li>
|
369
460
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id21">Fixes</a></li>
|
370
461
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id22">Thanks</a></li>
|
371
462
|
</ul>
|
372
463
|
</li>
|
373
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-2-2014-05-29">Release 4.0.2 - 2014
|
464
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-2-2014-05-29">Release 4.0.2 - 2014-05-29</a><ul>
|
374
465
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id23">Improvements</a></li>
|
375
466
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id24">Fixes</a></li>
|
376
467
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id25">Thanks</a></li>
|
377
468
|
</ul>
|
378
469
|
</li>
|
379
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-1-2014-03-29">Release 4.0.1 - 2014
|
470
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-1-2014-03-29">Release 4.0.1 - 2014-03-29</a><ul>
|
380
471
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id26">Improvements</a></li>
|
381
472
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id27">Fixes</a></li>
|
382
473
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id28">Thanks</a></li>
|
383
474
|
</ul>
|
384
475
|
</li>
|
385
|
-
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-0-2014-02-09">Release 4.0.0 - 2014
|
476
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-0-2014-02-09">Release 4.0.0 - 2014-02-09</a><ul>
|
386
477
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id29">Improvements</a></li>
|
387
478
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id30">Fixes</a></li>
|
388
479
|
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id31">Thanks</a></li>
|
389
480
|
</ul>
|
390
481
|
</li>
|
391
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html">Release 3.1.2 - 2014
|
482
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html">Release 3.1.2 - 2014-01-29</a><ul>
|
392
483
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#improvements">Improvements</a></li>
|
393
484
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#fixes">Fixes</a></li>
|
394
485
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#thanks">Thanks</a></li>
|
395
486
|
</ul>
|
396
487
|
</li>
|
397
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-1-2013-12-29">Release 3.1.1 - 2013
|
488
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-1-2013-12-29">Release 3.1.1 - 2013-12-29</a><ul>
|
398
489
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id1">Improvements</a></li>
|
399
490
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id2">Fixes</a></li>
|
400
491
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id3">Thanks</a></li>
|
401
492
|
</ul>
|
402
493
|
</li>
|
403
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-0-2013-11-29">Release 3.1.0 - 2013
|
494
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-0-2013-11-29">Release 3.1.0 - 2013-11-29</a><ul>
|
404
495
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id4">Improvements</a></li>
|
405
496
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id5">Fixes</a></li>
|
406
497
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id6">Thanks</a></li>
|
407
498
|
</ul>
|
408
499
|
</li>
|
409
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-9-2013-10-29">Release 3.0.9 - 2013
|
500
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-9-2013-10-29">Release 3.0.9 - 2013-10-29</a><ul>
|
410
501
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id7">Improvements</a></li>
|
411
502
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id8">Fixes</a></li>
|
412
503
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id9">Thanks</a></li>
|
413
504
|
</ul>
|
414
505
|
</li>
|
415
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-8-2013-09-29">Release 3.0.8 - 2013
|
506
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-8-2013-09-29">Release 3.0.8 - 2013-09-29</a><ul>
|
416
507
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id10">Improvements</a></li>
|
417
508
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id11">Fixes</a></li>
|
418
509
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id12">Thanks</a></li>
|
419
510
|
</ul>
|
420
511
|
</li>
|
421
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-7-2013-08-29">Release 3.0.7 - 2013
|
512
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-7-2013-08-29">Release 3.0.7 - 2013-08-29</a><ul>
|
422
513
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id13">Improvements</a></li>
|
423
514
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id14">Fixes</a></li>
|
424
515
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id15">Thanks</a></li>
|
425
516
|
</ul>
|
426
517
|
</li>
|
427
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-6-2013-07-29">Release 3.0.6 - 2013
|
518
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-6-2013-07-29">Release 3.0.6 - 2013-07-29</a><ul>
|
428
519
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id16">Improvements</a></li>
|
429
520
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id17">Fixes</a></li>
|
430
521
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id18">Thanks</a></li>
|
431
522
|
</ul>
|
432
523
|
</li>
|
433
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-5-2013-06-29">Release 3.0.5 - 2013
|
524
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-5-2013-06-29">Release 3.0.5 - 2013-06-29</a><ul>
|
434
525
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id19">Improvements</a></li>
|
435
526
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id20">Fixes</a></li>
|
436
527
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id21">Thanks</a></li>
|
437
528
|
</ul>
|
438
529
|
</li>
|
439
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-4-2013-05-29">Release 3.0.4 - 2013
|
530
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-4-2013-05-29">Release 3.0.4 - 2013-05-29</a><ul>
|
440
531
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id22">Improvements</a></li>
|
441
532
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id23">Fixes</a></li>
|
442
533
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id24">Thanks</a></li>
|
443
534
|
</ul>
|
444
535
|
</li>
|
445
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-3-2013-04-29">Release 3.0.3 - 2013
|
536
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-3-2013-04-29">Release 3.0.3 - 2013-04-29</a><ul>
|
446
537
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id25">Improvements</a></li>
|
447
538
|
</ul>
|
448
539
|
</li>
|
449
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-2-2013-03-29">Release 3.0.2 - 2013
|
540
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-2-2013-03-29">Release 3.0.2 - 2013-03-29</a><ul>
|
450
541
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id26">Improvements</a></li>
|
451
542
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id27">Fixes</a></li>
|
452
543
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id28">Thanks</a></li>
|
453
544
|
</ul>
|
454
545
|
</li>
|
455
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-1-2013-02-28">Release 3.0.1 - 2013
|
546
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-1-2013-02-28">Release 3.0.1 - 2013-02-28</a><ul>
|
456
547
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id29">Improvements</a></li>
|
457
548
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id30">Fixes</a></li>
|
458
549
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id31">Thanks</a></li>
|
459
550
|
</ul>
|
460
551
|
</li>
|
461
|
-
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-0-2013-02-09">Release 3.0.0 - 2013
|
552
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-0-2013-02-09">Release 3.0.0 - 2013-02-09</a><ul>
|
462
553
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id32">Fixes</a></li>
|
463
554
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id33">Thanks</a></li>
|
464
555
|
</ul>
|
465
556
|
</li>
|
466
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html">Release 2.1.2 - 2013
|
557
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html">Release 2.1.2 - 2013-01-29</a><ul>
|
467
558
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#improvements">Improvements</a></li>
|
468
559
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#fixes">Fixes</a></li>
|
469
560
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#thanks">Thanks</a></li>
|
470
561
|
</ul>
|
471
562
|
</li>
|
472
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-1-2012-12-29">Release 2.1.1 - 2012
|
563
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-1-2012-12-29">Release 2.1.1 - 2012-12-29</a><ul>
|
473
564
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id1">Fixes</a></li>
|
474
565
|
</ul>
|
475
566
|
</li>
|
476
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-0-2012-12-29">Release 2.1.0 - 2012
|
567
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-0-2012-12-29">Release 2.1.0 - 2012-12-29</a><ul>
|
477
568
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id2">Improvements</a></li>
|
478
569
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id3">Fixes</a></li>
|
479
570
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id4">Thanks</a></li>
|
480
571
|
</ul>
|
481
572
|
</li>
|
482
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-9-2012-11-29">Release 2.0.9 - 2012
|
573
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-9-2012-11-29">Release 2.0.9 - 2012-11-29</a><ul>
|
483
574
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id5">Improvements</a></li>
|
484
575
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id6">Fixes</a></li>
|
485
576
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id7">Thanks</a></li>
|
486
577
|
</ul>
|
487
578
|
</li>
|
488
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-8-2012-10-29">Release 2.0.8 - 2012
|
579
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-8-2012-10-29">Release 2.0.8 - 2012-10-29</a><ul>
|
489
580
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id8">Improvements</a></li>
|
490
581
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id9">Fixes</a></li>
|
491
582
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id10">Thanks</a></li>
|
492
583
|
</ul>
|
493
584
|
</li>
|
494
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-7-2012-09-29">Release 2.0.7 - 2012
|
585
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-7-2012-09-29">Release 2.0.7 - 2012-09-29</a><ul>
|
495
586
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id11">Improvements</a></li>
|
496
587
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id12">Fixes</a></li>
|
497
588
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id13">Thanks</a></li>
|
498
589
|
</ul>
|
499
590
|
</li>
|
500
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-6-2012-08-29">Release 2.0.6 - 2012
|
591
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-6-2012-08-29">Release 2.0.6 - 2012-08-29</a><ul>
|
501
592
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id14">Improvements</a></li>
|
502
593
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id15">Fixes</a></li>
|
503
594
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id16">Thanks</a></li>
|
504
595
|
</ul>
|
505
596
|
</li>
|
506
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-5-2012-07-29">Release 2.0.5 - 2012
|
597
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-5-2012-07-29">Release 2.0.5 - 2012-07-29</a><ul>
|
507
598
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id17">Improvements</a></li>
|
508
599
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id18">Fixes</a></li>
|
509
600
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id19">Thanks</a></li>
|
510
601
|
</ul>
|
511
602
|
</li>
|
512
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-4-2012-06-29">Release 2.0.4 - 2012
|
603
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-4-2012-06-29">Release 2.0.4 - 2012-06-29</a><ul>
|
513
604
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id20">Improvements</a></li>
|
514
605
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id21">Fixes</a></li>
|
515
606
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id22">Thanks</a></li>
|
516
607
|
</ul>
|
517
608
|
</li>
|
518
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-3-2012-05-29">Release 2.0.3 - 2012
|
609
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-3-2012-05-29">Release 2.0.3 - 2012-05-29</a><ul>
|
519
610
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id23">Improvements</a></li>
|
520
611
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id24">Fixes</a></li>
|
521
612
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id25">Thanks</a></li>
|
522
613
|
</ul>
|
523
614
|
</li>
|
524
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-2-2012-04-29">Release 2.0.2 - 2012
|
615
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-2-2012-04-29">Release 2.0.2 - 2012-04-29</a><ul>
|
525
616
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id26">Improvements</a></li>
|
526
617
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id27">Fixes</a></li>
|
527
618
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id28">Thanks</a></li>
|
528
619
|
</ul>
|
529
620
|
</li>
|
530
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-1-2012-03-29">Release 2.0.1 - 2012
|
621
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-1-2012-03-29">Release 2.0.1 - 2012-03-29</a><ul>
|
531
622
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id29">Improvements</a></li>
|
532
623
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id30">Fixes</a></li>
|
533
624
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id31">Thanks</a></li>
|
534
625
|
</ul>
|
535
626
|
</li>
|
536
|
-
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-0-2012-02-29">Release 2.0.0 - 2012
|
627
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-0-2012-02-29">Release 2.0.0 - 2012-02-29</a><ul>
|
537
628
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id32">Improvements</a></li>
|
538
629
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id33">Fixes</a></li>
|
539
630
|
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id34">Thanks</a></li>
|
540
631
|
</ul>
|
541
632
|
</li>
|
542
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.3.x.html">Release 1.3.0 - 2012
|
633
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.3.x.html">Release 1.3.0 - 2012-01-29</a><ul>
|
543
634
|
<li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#improvements">Improvements</a></li>
|
544
635
|
<li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#thanks">Thanks</a></li>
|
545
636
|
</ul>
|
546
637
|
</li>
|
547
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html">Release 1.2.9 - 2011
|
638
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html">Release 1.2.9 - 2011-12-29</a><ul>
|
548
639
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#improvements">Improvements</a></li>
|
549
640
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#fixes">Fixes</a></li>
|
550
641
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#thanks">Thanks</a></li>
|
551
642
|
</ul>
|
552
643
|
</li>
|
553
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-8-2011-11-29">Release 1.2.8 - 2011
|
644
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-8-2011-11-29">Release 1.2.8 - 2011-11-29</a><ul>
|
554
645
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id1">Improvements</a></li>
|
555
646
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id2">Fixes</a></li>
|
556
647
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id3">Thanks</a></li>
|
557
648
|
</ul>
|
558
649
|
</li>
|
559
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-7-2011-10-29">Release 1.2.7 - 2011
|
650
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-7-2011-10-29">Release 1.2.7 - 2011-10-29</a><ul>
|
560
651
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id4">Improvements</a></li>
|
561
652
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id5">Fixes</a></li>
|
562
653
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id6">Thanks</a></li>
|
563
654
|
</ul>
|
564
655
|
</li>
|
565
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-6-2011-09-29">Release 1.2.6 - 2011
|
656
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-6-2011-09-29">Release 1.2.6 - 2011-09-29</a><ul>
|
566
657
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id7">Improvements</a></li>
|
567
658
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id8">Fixes</a></li>
|
568
659
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id9">Thanks</a></li>
|
569
660
|
</ul>
|
570
661
|
</li>
|
571
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-5-2011-08-29">Release 1.2.5 - 2011
|
662
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-5-2011-08-29">Release 1.2.5 - 2011-08-29</a><ul>
|
572
663
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id10">Improvements</a></li>
|
573
664
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id11">Fixes</a></li>
|
574
665
|
</ul>
|
575
666
|
</li>
|
576
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-4-2011-07-29">Release 1.2.4 - 2011
|
667
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-4-2011-07-29">Release 1.2.4 - 2011-07-29</a><ul>
|
577
668
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id12">Improvements</a></li>
|
578
669
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id13">Fixes</a></li>
|
579
670
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id14">Thanks</a></li>
|
580
671
|
</ul>
|
581
672
|
</li>
|
582
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-3-2011-06-29">Release 1.2.3 - 2011
|
673
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-3-2011-06-29">Release 1.2.3 - 2011-06-29</a><ul>
|
583
674
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id15">Improvements</a></li>
|
584
675
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id16">Fixes</a></li>
|
585
676
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id17">Thanks</a></li>
|
586
677
|
</ul>
|
587
678
|
</li>
|
588
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-2-2011-05-29">Release 1.2.2 - 2011
|
679
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-2-2011-05-29">Release 1.2.2 - 2011-05-29</a><ul>
|
589
680
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id18">Improvements</a></li>
|
590
681
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id19">Fixes</a></li>
|
591
682
|
</ul>
|
592
683
|
</li>
|
593
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id20">1.2.1リリース - 2011
|
684
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id20">1.2.1リリース - 2011-04-29</a><ul>
|
594
685
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id21">改良</a></li>
|
595
686
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id22">修正</a></li>
|
596
687
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id23">感謝</a></li>
|
597
688
|
</ul>
|
598
689
|
</li>
|
599
|
-
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id24">1.2.0リリース - 2011
|
690
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id24">1.2.0リリース - 2011-03-29</a><ul>
|
600
691
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id25">改良</a></li>
|
601
692
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id26">修正</a></li>
|
602
693
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id27">実験的</a></li>
|
@@ -604,40 +695,40 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
604
695
|
</ul>
|
605
696
|
</li>
|
606
697
|
<li class="toctree-l1"><a class="reference internal" href="news/1.1.x.html">バージョン1.1.xのお知らせ</a><ul>
|
607
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.1.x.html#id1">1.1.0リリース - 2011
|
698
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.1.x.html#id1">1.1.0リリース - 2011-02-09</a></li>
|
608
699
|
</ul>
|
609
700
|
</li>
|
610
701
|
<li class="toctree-l1"><a class="reference internal" href="news/1.0.x.html">バージョン1.0.xのお知らせ</a><ul>
|
611
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id1">1.0.8リリース - 2011
|
612
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id4">1.0.7リリース - 2011
|
613
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id8">1.0.6リリース - 2010
|
614
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id11">1.0.5リリース - 2010
|
615
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id16">1.0.4リリース - 2010
|
616
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id21">1.0.3リリース - 2010
|
617
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id26">1.0.2リリース - 2010
|
618
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id31">1.0.1リリース - 2010
|
619
|
-
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id35">1.0.0リリース - 2010
|
702
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id1">1.0.8リリース - 2011-02-02</a></li>
|
703
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id4">1.0.7リリース - 2011-01-29</a></li>
|
704
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id8">1.0.6リリース - 2010-12-31</a></li>
|
705
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id11">1.0.5リリース - 2010-12-29</a></li>
|
706
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id16">1.0.4リリース - 2010-11-29</a></li>
|
707
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id21">1.0.3リリース - 2010-10-29</a></li>
|
708
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id26">1.0.2リリース - 2010-09-09</a></li>
|
709
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id31">1.0.1リリース - 2010-09-06</a></li>
|
710
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id35">1.0.0リリース - 2010-08-29</a></li>
|
620
711
|
</ul>
|
621
712
|
</li>
|
622
713
|
<li class="toctree-l1"><a class="reference internal" href="news/0.x.html">バージョン0.xのお知らせ</a><ul>
|
623
|
-
<li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id1">0.7.7リリース - 2010
|
624
|
-
<li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id4">0.7.6リリース - 2010
|
714
|
+
<li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id1">0.7.7リリース - 2010-08-25</a></li>
|
715
|
+
<li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id4">0.7.6リリース - 2010-08-19</a></li>
|
625
716
|
</ul>
|
626
717
|
</li>
|
627
718
|
<li class="toctree-l1"><a class="reference internal" href="news/senna.html">News in Senna period</a><ul>
|
628
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#senna-groonga-2009-01-14">Senna -> groonga - 2009
|
629
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id1">2006
|
630
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id2">2006
|
631
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id4">2006
|
632
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id5">2006
|
633
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id7">2005
|
634
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id9">2005
|
635
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id11">2005
|
636
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id13">2005
|
637
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id15">2005
|
638
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id17">2005
|
639
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id18">2005
|
640
|
-
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id20">2005
|
719
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#senna-groonga-2009-01-14">Senna -> groonga - 2009-01-14</a></li>
|
720
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id1">2006-04-05</a></li>
|
721
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id2">2006-03-03</a></li>
|
722
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id4">2006-01-16</a></li>
|
723
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id5">2006-01-12</a></li>
|
724
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id7">2005-12-22</a></li>
|
725
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id9">2005-10-27</a></li>
|
726
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id11">2005-09-17</a></li>
|
727
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id13">2005-09-08</a></li>
|
728
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id15">2005-08-16</a></li>
|
729
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id17">2005-07-05</a></li>
|
730
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id18">2005-06-23</a></li>
|
731
|
+
<li class="toctree-l2"><a class="reference internal" href="news/senna.html#id20">2005-04-12</a></li>
|
641
732
|
</ul>
|
642
733
|
</li>
|
643
734
|
</ul>
|
@@ -654,24 +745,30 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
654
745
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
655
746
|
<ul>
|
656
747
|
<li><a class="reference internal" href="#">News</a><ul>
|
657
|
-
<li><a class="reference internal" href="#release-5-0-
|
748
|
+
<li><a class="reference internal" href="#release-5-0-3-2015-04-29">Release 5.0.3 - 2015-04-29</a><ul>
|
658
749
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
659
750
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
660
751
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
661
752
|
</ul>
|
662
753
|
</li>
|
663
|
-
<li><a class="reference internal" href="#release-5-0-
|
754
|
+
<li><a class="reference internal" href="#release-5-0-2-2015-03-31">Release 5.0.2 - 2015-03-31</a><ul>
|
664
755
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
665
756
|
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
666
757
|
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
667
758
|
</ul>
|
668
759
|
</li>
|
669
|
-
<li><a class="reference internal" href="#release-5-0-
|
760
|
+
<li><a class="reference internal" href="#release-5-0-1-2015-03-29">Release 5.0.1 - 2015-03-29</a><ul>
|
670
761
|
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
671
762
|
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
672
763
|
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
673
764
|
</ul>
|
674
765
|
</li>
|
766
|
+
<li><a class="reference internal" href="#release-5-0-0-2015-02-09">Release 5.0.0 - 2015-02-09</a><ul>
|
767
|
+
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
768
|
+
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
769
|
+
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
770
|
+
</ul>
|
771
|
+
</li>
|
675
772
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
|
676
773
|
</ul>
|
677
774
|
</li>
|
@@ -705,7 +802,7 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
705
802
|
<li class="right" style="margin-right: 10px">
|
706
803
|
<a href="genindex.html" title="General Index"
|
707
804
|
>index</a></li>
|
708
|
-
<li><a href="index.html">Groonga v5.0.
|
805
|
+
<li><a href="index.html">Groonga v5.0.3 documentation</a> »</li>
|
709
806
|
</ul>
|
710
807
|
</div>
|
711
808
|
<div class="footer">
|