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>4.4. さまざまな検索条件 — Groonga v5.0.
|
10
|
+
<title>4.4. さまざまな検索条件 — Groonga v5.0.3ドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v5.0.
|
29
|
+
<link rel="top" title="Groonga v5.0.3ドキュメント" href="../index.html" />
|
30
30
|
<link rel="up" title="4. チュートリアル" href="../tutorial.html" />
|
31
31
|
<link rel="next" title="4.5. ドリルダウン" href="drilldown.html" />
|
32
32
|
<link rel="prev" title="4.3. いろいろなデータの保存" href="data.html" />
|
@@ -43,7 +43,7 @@
|
|
43
43
|
|
44
44
|
<div class="other-language-links">
|
45
45
|
<ul>
|
46
|
-
<li><a href="../../../en/html/tutorial/search.html"
|
46
|
+
<li><a href="../../../en/html/tutorial/search.html">English</a></li>
|
47
47
|
</ul>
|
48
48
|
</div>
|
49
49
|
</div>
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<li class="right" >
|
62
62
|
<a href="data.html" title="4.3. いろいろなデータの保存"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li><a href="../index.html">Groonga v5.0.
|
64
|
+
<li><a href="../index.html">Groonga v5.0.3ドキュメント</a> »</li>
|
65
65
|
<li><a href="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li>
|
66
66
|
</ul>
|
67
67
|
</div>
|
@@ -614,7 +614,7 @@ select --table Site --query "_id:1 OR _id:2" --output_columns _key,loc
|
|
614
614
|
<li class="right" >
|
615
615
|
<a href="data.html" title="4.3. いろいろなデータの保存"
|
616
616
|
>前へ</a> |</li>
|
617
|
-
<li><a href="../index.html">Groonga v5.0.
|
617
|
+
<li><a href="../index.html">Groonga v5.0.3ドキュメント</a> »</li>
|
618
618
|
<li><a href="../tutorial.html" >4. チュートリアル</a> »</li>
|
619
619
|
</ul>
|
620
620
|
</div>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css
RENAMED
File without changes
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,297 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
2
|
+
"http://www.w3.org/TR/html4/strict.dtd">
|
3
|
+
<html lang="ja">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
6
|
+
<meta http-equiv="Content-Style-Type" content="text/css">
|
7
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
8
|
+
<meta name="robots" content="noindex,nofollow,noarchive">
|
9
|
+
<title>groonga admin</title>
|
10
|
+
<link rel="shortcut icon" href="favicon.ico">
|
11
|
+
<link rel="icon" href="favicon.png">
|
12
|
+
<link rel="stylesheet" type="text/css" href="css/groonga-admin.css">
|
13
|
+
<link rel="stylesheet" type="text/css" href="css/redmond/jquery-ui-1.8.18.custom.css">
|
14
|
+
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
|
15
|
+
<script type="text/javascript" src="js/jquery-ui-1.8.18.custom.js"></script>
|
16
|
+
<script type="text/javascript" src="js/jquery.flot-0.7.js"></script>
|
17
|
+
<script type="text/javascript" src="js/groonga-admin.js"></script>
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<div id="header">
|
21
|
+
<ul id="locale-list">
|
22
|
+
<li>en</li>
|
23
|
+
<li><a href="index.ja.html">ja</a>
|
24
|
+
</ul>
|
25
|
+
</div>
|
26
|
+
<div id="body">
|
27
|
+
<table>
|
28
|
+
<tr>
|
29
|
+
<td id="left-column">
|
30
|
+
<div id="side-menu">
|
31
|
+
<h2>List of view</h2>
|
32
|
+
<ul id="side-menu-view-list">
|
33
|
+
<li><a href="#side-menu-summary" id="side-menu-summary">Summary</a></li>
|
34
|
+
<li><a href="#side-menu-suggest" id="side-menu-suggest">Suggest</a></li>
|
35
|
+
</ul>
|
36
|
+
<h2>List of table</h2>
|
37
|
+
<ul id="side-menu-tablelist" />
|
38
|
+
</div>
|
39
|
+
</td>
|
40
|
+
|
41
|
+
<td id="right-column">
|
42
|
+
<!-- database view -->
|
43
|
+
<div id="database-tabs">
|
44
|
+
<ul>
|
45
|
+
<li><a href="#database-tab-summary">Summary</a></li>
|
46
|
+
<li><a href="#database-tab-tablelist" id="tab-tablelist-link">List table</a></li>
|
47
|
+
<li><a href="#database-tab-createtable">Create table</a></li>
|
48
|
+
</ul>
|
49
|
+
<div id="database-tab-summary">
|
50
|
+
<p>
|
51
|
+
Groonga administration tool.
|
52
|
+
</p>
|
53
|
+
<ul>
|
54
|
+
<li>Start time: <span id="status-starttime"></span></li>
|
55
|
+
<li>Uptime: <span id="status-uptime"></span></li>
|
56
|
+
<li>Number of query: <span id="status-n-queries"></span></li>
|
57
|
+
<li>Cache hit rate: <span id="status-cache-hit-rate"></span></li>
|
58
|
+
</ul>
|
59
|
+
<div id="throughput-chart" style="height: 300px; max-width: 500px;">
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
<div id="database-tab-tablelist">
|
63
|
+
<div id="tab-tablelist-table">
|
64
|
+
</div>
|
65
|
+
<input type="button" id="tablelist-remove-table" value="Remove table">
|
66
|
+
</div>
|
67
|
+
<div id="database-tab-createtable">
|
68
|
+
<table>
|
69
|
+
<tr>
|
70
|
+
<td>
|
71
|
+
<label for="createtable-name">Table name</label>
|
72
|
+
</td>
|
73
|
+
<td>
|
74
|
+
<input type="text" id="createtable-name">
|
75
|
+
</td>
|
76
|
+
</tr>
|
77
|
+
<tr>
|
78
|
+
<td>
|
79
|
+
Primary key
|
80
|
+
</td>
|
81
|
+
<td>
|
82
|
+
<label for="createtable-key-type">Key type:</label>
|
83
|
+
<select id="createtable-key-type">
|
84
|
+
<optgroup label="Built-in types" id="createtable-key-type-builtin">
|
85
|
+
</optgroup>
|
86
|
+
<optgroup label="Key of Table" id="createtable-key-type-table">
|
87
|
+
</optgroup>
|
88
|
+
</select>
|
89
|
+
<label for="createtable-key-index">Key index types:</label>
|
90
|
+
<select id="createtable-key-index">
|
91
|
+
<option value="GRN_OBJ_TABLE_PAT_KEY">Patricia trie</option>
|
92
|
+
<option value="GRN_OBJ_TABLE_HASH_KEY">Hash table</option>
|
93
|
+
<option value="GRN_OBJ_TABLE_NO_KEY">No key</option>
|
94
|
+
</select>
|
95
|
+
</td>
|
96
|
+
</tr>
|
97
|
+
<tr>
|
98
|
+
<td>
|
99
|
+
Flags
|
100
|
+
</td>
|
101
|
+
<td id="createtable-flags">
|
102
|
+
<input type="checkbox" value="GRN_OBJ_PERSISTENT" checked>Persistent</input>
|
103
|
+
<input type="checkbox" value="GRN_OBJ_KEY_NORMALIZE">Normalize key</input>
|
104
|
+
<input type="checkbox" value="GRN_OBJ_KEY_WITH_SIS">Key with suffix</input>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td>
|
109
|
+
Value types
|
110
|
+
</td>
|
111
|
+
<td>
|
112
|
+
<select id="createtable-value-type">
|
113
|
+
<optgroup label="Built-in types" id="createtable-value-type-builtin">
|
114
|
+
</optgroup>
|
115
|
+
<optgroup label="Use table as value type" id="createtable-value-type-table">
|
116
|
+
</optgroup>
|
117
|
+
</select>
|
118
|
+
</td>
|
119
|
+
</tr>
|
120
|
+
<tr>
|
121
|
+
<td>
|
122
|
+
Default tokenizer
|
123
|
+
</td>
|
124
|
+
<td>
|
125
|
+
<select id="createtable-default-tokenizer">
|
126
|
+
<optgroup label="Built-in tokenizer" id="createtable-default-tokenizer-builtin">
|
127
|
+
</optgroup>
|
128
|
+
</select>
|
129
|
+
</td>
|
130
|
+
</tr>
|
131
|
+
</table>
|
132
|
+
<input type="button" id="createtable-add-table" value="Create table">
|
133
|
+
</div>
|
134
|
+
</div>
|
135
|
+
|
136
|
+
<!-- table view -->
|
137
|
+
<div id="table-tabs">
|
138
|
+
<ul>
|
139
|
+
<li><a href="#table-tab-recordlist" id="tab-recordlist-link">List records</a></li>
|
140
|
+
<li><a href="#table-tab-columnlist" id="tab-columnlist-link">List columns</a></li>
|
141
|
+
<li><a href="#table-tab-createrecord" id="tab-createrecord-link">Create record</a></li>
|
142
|
+
<li><a href="#table-tab-createcolumn">Create columns</a></li>
|
143
|
+
</ul>
|
144
|
+
<div id="table-tab-recordlist">
|
145
|
+
<input type="checkbox" id="table-tab-recordlist-full-checkbox" /><label for="table-tab-recordlist-full-checkbox">Advanced search</label>
|
146
|
+
<form id="tab-recordlist-form">
|
147
|
+
<div id="table-tab-recordlist-form-simple">
|
148
|
+
<label for="tab-recordlist-simplequery">Query: </label><input type="text" id="tab-recordlist-simplequery">
|
149
|
+
<select id="tab-recordlist-simplequerytype">
|
150
|
+
<option value="query" data-placeholder="e.g.)column:@value">query</option>
|
151
|
+
<option value="filter" data-placeholder="e.g.)column == "value"">filter</option>
|
152
|
+
</select>
|
153
|
+
<input type="checkbox" id="tab-recordlist-incremental" /><label for="tab-recordlist-incremental" id="tab-recordlist-incremental-label">Incremental search</label>
|
154
|
+
</div>
|
155
|
+
<div id="table-tab-recordlist-form-full">
|
156
|
+
<table>
|
157
|
+
<tr><td>match_columns</td><td><input type="text" id="tab-recordlist-match_columns" /></td></tr>
|
158
|
+
<tr><td>query</td><td><input type="text" id="tab-recordlist-query" /></td></tr>
|
159
|
+
<tr><td>filter</td><td><input type="text" id="tab-recordlist-filter" /></td></tr>
|
160
|
+
<tr><td>scorer</td><td><input type="text" id="tab-recordlist-scorer" /></td></tr>
|
161
|
+
<tr><td>sortby</td><td><input type="text" id="tab-recordlist-sortby" /></td></tr>
|
162
|
+
<tr><td>output_columns</td><td><input type="text" id="tab-recordlist-output_columns" /></td></tr>
|
163
|
+
<tr><td>offset</td><td><input type="text" id="tab-recordlist-offset" /></td></tr>
|
164
|
+
<tr><td>limit</td><td><input type="text" id="tab-recordlist-limit" /></td></tr>
|
165
|
+
<tr><td>drilldown</td><td><input type="text" id="tab-recordlist-drilldown" /></td></tr>
|
166
|
+
<tr><td>drilldown_sortby</td><td><input type="text" id="tab-recordlist-drilldown_sortby" /></td></tr>
|
167
|
+
<tr><td>drilldown_output_columns</td><td><input type="text" id="tab-recordlist-drilldown_output_columns" /></td></tr>
|
168
|
+
<tr><td>drilldown_offset</td><td><input type="text" id="tab-recordlist-drilldown_offset" /></td></tr>
|
169
|
+
<tr><td>drilldown_limit</td><td><input type="text" id="tab-recordlist-drilldown_limit" /></td></tr>
|
170
|
+
</table>
|
171
|
+
</div>
|
172
|
+
<input type="submit" id="tab-recordlist-submit" value="Search"/>
|
173
|
+
</form>
|
174
|
+
<div id="tab-recordlist-table">
|
175
|
+
</div>
|
176
|
+
<input type="button" id="recordlist-remove-record" value="Remove records">
|
177
|
+
</div>
|
178
|
+
<div id="table-tab-columnlist">
|
179
|
+
<div id="tab-columnlist-table">
|
180
|
+
</div>
|
181
|
+
<input type="button" id="columnlist-remove-column" value="Remove columns">
|
182
|
+
</div>
|
183
|
+
<div id="table-tab-createrecord">
|
184
|
+
<table id="table-createrecord">
|
185
|
+
</table>
|
186
|
+
<input type="button" id="createrecord-add-record" value="Create record">
|
187
|
+
</div>
|
188
|
+
<div id="table-tab-createcolumn">
|
189
|
+
<table>
|
190
|
+
<tr>
|
191
|
+
<td>
|
192
|
+
<label for="createcolumn-name">Column name</label>
|
193
|
+
</td>
|
194
|
+
<td>
|
195
|
+
<input type="text" id="createcolumn-name">
|
196
|
+
</td>
|
197
|
+
</tr>
|
198
|
+
<tr>
|
199
|
+
<td>
|
200
|
+
Column types
|
201
|
+
</td>
|
202
|
+
<td>
|
203
|
+
<label for="createcolumn-type">Types:</label>
|
204
|
+
<select id="createcolumn-type">
|
205
|
+
<optgroup label="Built-in types" id="createcolumn-type-builtin">
|
206
|
+
</optgroup>
|
207
|
+
<optgroup label="Table" id="createcolumn-type-table">
|
208
|
+
</optgroup>
|
209
|
+
</select>
|
210
|
+
|
211
|
+
<label for="createcolumn-column-type">Column stores:</label>
|
212
|
+
<select id="createcolumn-column-type">
|
213
|
+
<option value="GRN_OBJ_COLUMN_SCALAR">Scalar</option>
|
214
|
+
<option value="GRN_OBJ_COLUMN_VECTOR">Vector</option>
|
215
|
+
<option value="GRN_OBJ_COLUMN_INDEX">Inverted index</option>
|
216
|
+
</select>
|
217
|
+
|
218
|
+
<label for="createcolumn-compress">Compression:</label>
|
219
|
+
<select id="createcolumn-compress" disabled>
|
220
|
+
<option value="GRN_OBJ_COMPRESS_NONE">No compression</option>
|
221
|
+
<option value="GRN_OBJ_COMPRESS_ZLIB">zlib</option>
|
222
|
+
<option value="GRN_OBJ_COMPRESS_LZO">lzo</option>
|
223
|
+
</select>
|
224
|
+
</td>
|
225
|
+
</tr>
|
226
|
+
<tr>
|
227
|
+
<td>
|
228
|
+
Flags
|
229
|
+
</td>
|
230
|
+
<td id="createcolumn-flags">
|
231
|
+
<input type="checkbox" value="GRN_OBJ_PERSISTENT" checked>Persistent</input>
|
232
|
+
</td>
|
233
|
+
</tr>
|
234
|
+
<tr>
|
235
|
+
<td>
|
236
|
+
Flags for inverted index
|
237
|
+
</td>
|
238
|
+
<td id="createcolumn-ii-flags">
|
239
|
+
<input type="checkbox" value="GRN_OBJ_WITH_SECTION">With section information</input>
|
240
|
+
<input type="checkbox" value="GRN_OBJ_WITH_WEIGHT">With weight information</input>
|
241
|
+
<input type="checkbox" value="GRN_OBJ_WITH_POSITION">With position information</input>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
</table>
|
245
|
+
<input type="button" id="createcolumn-add-column" value="Create column">
|
246
|
+
</div>
|
247
|
+
</div>
|
248
|
+
|
249
|
+
<!-- suggest view -->
|
250
|
+
<div id="suggest-tabs">
|
251
|
+
<ul>
|
252
|
+
<li><a href="#suggest-tab-search">Search</a></li>
|
253
|
+
</ul>
|
254
|
+
<div id="suggest-tab-search">
|
255
|
+
<form id="suggest-tab-search-form">
|
256
|
+
<p>
|
257
|
+
<label for="suggest-dataset">Dataset: </label>
|
258
|
+
<input type="text" id="suggest-dataset">
|
259
|
+
</p>
|
260
|
+
<label for="suggest-query">Suggest query: </label>
|
261
|
+
<input type="text" id="suggest-query">
|
262
|
+
<input type="button" id="suggest-submit" value="Search" />
|
263
|
+
</form>
|
264
|
+
<div id="suggest-result-tabs">
|
265
|
+
<ul>
|
266
|
+
<li><a href="#suggest-result-tab-suggest">Suggestion</a></li>
|
267
|
+
<li><a href="#suggest-result-tab-complete">Completion</a></li>
|
268
|
+
<li><a href="#suggest-result-tab-correct">Correction</a></li>
|
269
|
+
</ul>
|
270
|
+
<div id="suggest-result-tab-suggest">
|
271
|
+
</div>
|
272
|
+
<div id="suggest-result-tab-complete">
|
273
|
+
</div>
|
274
|
+
<div id="suggest-result-tab-correct">
|
275
|
+
</div>
|
276
|
+
</div>
|
277
|
+
</div>
|
278
|
+
</div>
|
279
|
+
</td>
|
280
|
+
</tr>
|
281
|
+
</table>
|
282
|
+
</div>
|
283
|
+
<div id="footer">
|
284
|
+
Powered by <a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQuery UI</a>.
|
285
|
+
</div>
|
286
|
+
<script type="text/javascript">
|
287
|
+
$(function() {
|
288
|
+
var admin = new GroongaAdmin();
|
289
|
+
$(location.hash).click();
|
290
|
+
$.ajaxSetup({
|
291
|
+
timeout: 10000,
|
292
|
+
cache: false
|
293
|
+
});
|
294
|
+
});
|
295
|
+
</script>
|
296
|
+
</body>
|
297
|
+
</html>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,543 @@
|
|
1
|
+
# Apache Configuration File
|
2
|
+
|
3
|
+
# (!) Using `.htaccess` files slows down Apache, therefore, if you have access
|
4
|
+
# to the main server config file (usually called `httpd.conf`), you should add
|
5
|
+
# this logic there: http://httpd.apache.org/docs/current/howto/htaccess.html.
|
6
|
+
|
7
|
+
# ##############################################################################
|
8
|
+
# # CROSS-ORIGIN RESOURCE SHARING (CORS) #
|
9
|
+
# ##############################################################################
|
10
|
+
|
11
|
+
# ------------------------------------------------------------------------------
|
12
|
+
# | Cross-domain AJAX requests |
|
13
|
+
# ------------------------------------------------------------------------------
|
14
|
+
|
15
|
+
# Enable cross-origin AJAX requests.
|
16
|
+
# http://code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
|
17
|
+
# http://enable-cors.org/
|
18
|
+
|
19
|
+
# <IfModule mod_headers.c>
|
20
|
+
# Header set Access-Control-Allow-Origin "*"
|
21
|
+
# </IfModule>
|
22
|
+
|
23
|
+
# ------------------------------------------------------------------------------
|
24
|
+
# | CORS-enabled images |
|
25
|
+
# ------------------------------------------------------------------------------
|
26
|
+
|
27
|
+
# Send the CORS header for images when browsers request it.
|
28
|
+
# https://developer.mozilla.org/en/CORS_Enabled_Image
|
29
|
+
# http://blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
|
30
|
+
# http://hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
|
31
|
+
|
32
|
+
<IfModule mod_setenvif.c>
|
33
|
+
<IfModule mod_headers.c>
|
34
|
+
<FilesMatch "\.(gif|ico|jpe?g|png|svg|svgz|webp)$">
|
35
|
+
SetEnvIf Origin ":" IS_CORS
|
36
|
+
Header set Access-Control-Allow-Origin "*" env=IS_CORS
|
37
|
+
</FilesMatch>
|
38
|
+
</IfModule>
|
39
|
+
</IfModule>
|
40
|
+
|
41
|
+
# ------------------------------------------------------------------------------
|
42
|
+
# | Web fonts access |
|
43
|
+
# ------------------------------------------------------------------------------
|
44
|
+
|
45
|
+
# Allow access from all domains for web fonts
|
46
|
+
|
47
|
+
<IfModule mod_headers.c>
|
48
|
+
<FilesMatch "\.(eot|font.css|otf|ttc|ttf|woff)$">
|
49
|
+
Header set Access-Control-Allow-Origin "*"
|
50
|
+
</FilesMatch>
|
51
|
+
</IfModule>
|
52
|
+
|
53
|
+
|
54
|
+
# ##############################################################################
|
55
|
+
# # ERRORS #
|
56
|
+
# ##############################################################################
|
57
|
+
|
58
|
+
# ------------------------------------------------------------------------------
|
59
|
+
# | 404 error prevention for non-existing redirected folders |
|
60
|
+
# ------------------------------------------------------------------------------
|
61
|
+
|
62
|
+
# Prevent Apache from returning a 404 error for a rewrite if a directory
|
63
|
+
# with the same name does not exist.
|
64
|
+
# http://httpd.apache.org/docs/current/content-negotiation.html#multiviews
|
65
|
+
# http://www.webmasterworld.com/apache/3808792.htm
|
66
|
+
|
67
|
+
Options -MultiViews
|
68
|
+
|
69
|
+
# ------------------------------------------------------------------------------
|
70
|
+
# | Custom error messages / pages |
|
71
|
+
# ------------------------------------------------------------------------------
|
72
|
+
|
73
|
+
# You can customize what Apache returns to the client in case of an error (see
|
74
|
+
# http://httpd.apache.org/docs/current/mod/core.html#errordocument), e.g.:
|
75
|
+
|
76
|
+
ErrorDocument 404 /404.html
|
77
|
+
|
78
|
+
|
79
|
+
# ##############################################################################
|
80
|
+
# # INTERNET EXPLORER #
|
81
|
+
# ##############################################################################
|
82
|
+
|
83
|
+
# ------------------------------------------------------------------------------
|
84
|
+
# | Better website experience |
|
85
|
+
# ------------------------------------------------------------------------------
|
86
|
+
|
87
|
+
# Force IE to render pages in the highest available mode in the various
|
88
|
+
# cases when it may not: http://hsivonen.iki.fi/doctype/ie-mode.pdf.
|
89
|
+
|
90
|
+
<IfModule mod_headers.c>
|
91
|
+
Header set X-UA-Compatible "IE=edge"
|
92
|
+
# `mod_headers` can't match based on the content-type, however, we only
|
93
|
+
# want to send this header for HTML pages and not for the other resources
|
94
|
+
<FilesMatch "\.(appcache|crx|css|eot|gif|htc|ico|jpe?g|js|m4a|m4v|manifest|mp4|oex|oga|ogg|ogv|otf|pdf|png|safariextz|svg|svgz|ttf|vcf|webapp|webm|webp|woff|xml|xpi)$">
|
95
|
+
Header unset X-UA-Compatible
|
96
|
+
</FilesMatch>
|
97
|
+
</IfModule>
|
98
|
+
|
99
|
+
# ------------------------------------------------------------------------------
|
100
|
+
# | Cookie setting from iframes |
|
101
|
+
# ------------------------------------------------------------------------------
|
102
|
+
|
103
|
+
# Allow cookies to be set from iframes in IE.
|
104
|
+
|
105
|
+
# <IfModule mod_headers.c>
|
106
|
+
# Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
|
107
|
+
# </IfModule>
|
108
|
+
|
109
|
+
# ------------------------------------------------------------------------------
|
110
|
+
# | Screen flicker |
|
111
|
+
# ------------------------------------------------------------------------------
|
112
|
+
|
113
|
+
# Stop screen flicker in IE on CSS rollovers (this only works in
|
114
|
+
# combination with the `ExpiresByType` directives for images from below).
|
115
|
+
|
116
|
+
# BrowserMatch "MSIE" brokenvary=1
|
117
|
+
# BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
|
118
|
+
# BrowserMatch "Opera" !brokenvary
|
119
|
+
# SetEnvIf brokenvary 1 force-no-vary
|
120
|
+
|
121
|
+
|
122
|
+
# ##############################################################################
|
123
|
+
# # MIME TYPES AND ENCODING #
|
124
|
+
# ##############################################################################
|
125
|
+
|
126
|
+
# ------------------------------------------------------------------------------
|
127
|
+
# | Proper MIME types for all files |
|
128
|
+
# ------------------------------------------------------------------------------
|
129
|
+
|
130
|
+
<IfModule mod_mime.c>
|
131
|
+
|
132
|
+
# Audio
|
133
|
+
AddType audio/mp4 m4a f4a f4b
|
134
|
+
AddType audio/ogg oga ogg
|
135
|
+
|
136
|
+
# JavaScript
|
137
|
+
# Normalize to standard type (it's sniffed in IE anyways):
|
138
|
+
# http://tools.ietf.org/html/rfc4329#section-7.2
|
139
|
+
AddType application/javascript js jsonp
|
140
|
+
AddType application/json json
|
141
|
+
|
142
|
+
# Video
|
143
|
+
AddType video/mp4 mp4 m4v f4v f4p
|
144
|
+
AddType video/ogg ogv
|
145
|
+
AddType video/webm webm
|
146
|
+
AddType video/x-flv flv
|
147
|
+
|
148
|
+
# Web fonts
|
149
|
+
AddType application/font-woff woff
|
150
|
+
AddType application/vnd.ms-fontobject eot
|
151
|
+
|
152
|
+
# Browsers usually ignore the font MIME types and sniff the content,
|
153
|
+
# however, Chrome shows a warning if other MIME types are used for the
|
154
|
+
# following fonts.
|
155
|
+
AddType application/x-font-ttf ttc ttf
|
156
|
+
AddType font/opentype otf
|
157
|
+
|
158
|
+
# Make SVGZ fonts work on iPad:
|
159
|
+
# https://twitter.com/FontSquirrel/status/14855840545
|
160
|
+
AddType image/svg+xml svg svgz
|
161
|
+
AddEncoding gzip svgz
|
162
|
+
|
163
|
+
# Other
|
164
|
+
AddType application/octet-stream safariextz
|
165
|
+
AddType application/x-chrome-extension crx
|
166
|
+
AddType application/x-opera-extension oex
|
167
|
+
AddType application/x-shockwave-flash swf
|
168
|
+
AddType application/x-web-app-manifest+json webapp
|
169
|
+
AddType application/x-xpinstall xpi
|
170
|
+
AddType application/xml atom rdf rss xml
|
171
|
+
AddType image/webp webp
|
172
|
+
AddType image/x-icon ico
|
173
|
+
AddType text/cache-manifest appcache manifest
|
174
|
+
AddType text/vtt vtt
|
175
|
+
AddType text/x-component htc
|
176
|
+
AddType text/x-vcard vcf
|
177
|
+
|
178
|
+
</IfModule>
|
179
|
+
|
180
|
+
# ------------------------------------------------------------------------------
|
181
|
+
# | UTF-8 encoding |
|
182
|
+
# ------------------------------------------------------------------------------
|
183
|
+
|
184
|
+
# Use UTF-8 encoding for anything served as `text/html` or `text/plain`.
|
185
|
+
AddDefaultCharset utf-8
|
186
|
+
|
187
|
+
# Force UTF-8 for certain file formats.
|
188
|
+
<IfModule mod_mime.c>
|
189
|
+
AddCharset utf-8 .atom .css .js .json .rss .vtt .webapp .xml
|
190
|
+
</IfModule>
|
191
|
+
|
192
|
+
|
193
|
+
# ##############################################################################
|
194
|
+
# # URL REWRITES #
|
195
|
+
# ##############################################################################
|
196
|
+
|
197
|
+
# ------------------------------------------------------------------------------
|
198
|
+
# | Rewrite engine |
|
199
|
+
# ------------------------------------------------------------------------------
|
200
|
+
|
201
|
+
# Turning on the rewrite engine and enabling the `FollowSymLinks` option is
|
202
|
+
# necessary for the following directives to work.
|
203
|
+
|
204
|
+
# If your web host doesn't allow the `FollowSymlinks` option, you may need to
|
205
|
+
# comment it out and use `Options +SymLinksIfOwnerMatch` but, be aware of the
|
206
|
+
# performance impact: http://httpd.apache.org/docs/current/misc/perf-tuning.html#symlinks
|
207
|
+
|
208
|
+
# Also, some cloud hosting services require `RewriteBase` to be set:
|
209
|
+
# http://www.rackspace.com/knowledge_center/frequently-asked-question/why-is-mod-rewrite-not-working-on-my-site
|
210
|
+
|
211
|
+
<IfModule mod_rewrite.c>
|
212
|
+
Options +FollowSymlinks
|
213
|
+
# Options +SymLinksIfOwnerMatch
|
214
|
+
RewriteEngine On
|
215
|
+
# RewriteBase /
|
216
|
+
</IfModule>
|
217
|
+
|
218
|
+
# ------------------------------------------------------------------------------
|
219
|
+
# | Suppressing / Forcing the "www." at the beginning of URLs |
|
220
|
+
# ------------------------------------------------------------------------------
|
221
|
+
|
222
|
+
# The same content should never be available under two different URLs especially
|
223
|
+
# not with and without "www." at the beginning. This can cause SEO problems
|
224
|
+
# (duplicate content), therefore, you should choose one of the alternatives and
|
225
|
+
# redirect the other one.
|
226
|
+
|
227
|
+
# By default option 1 (no "www.") is activated:
|
228
|
+
# http://no-www.org/faq.php?q=class_b
|
229
|
+
|
230
|
+
# If you'd prefer to use option 2, just comment out all the lines from option 1
|
231
|
+
# and uncomment the ones from option 2.
|
232
|
+
|
233
|
+
# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
|
234
|
+
|
235
|
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
236
|
+
|
237
|
+
# Option 1: rewrite www.example.com → example.com
|
238
|
+
|
239
|
+
<IfModule mod_rewrite.c>
|
240
|
+
RewriteCond %{HTTPS} !=on
|
241
|
+
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
|
242
|
+
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
|
243
|
+
</IfModule>
|
244
|
+
|
245
|
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
246
|
+
|
247
|
+
# Option 2: rewrite example.com → www.example.com
|
248
|
+
|
249
|
+
# Be aware that the following might not be a good idea if you use "real"
|
250
|
+
# subdomains for certain parts of your website.
|
251
|
+
|
252
|
+
# <IfModule mod_rewrite.c>
|
253
|
+
# RewriteCond %{HTTPS} !=on
|
254
|
+
# RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
|
255
|
+
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
256
|
+
# </IfModule>
|
257
|
+
|
258
|
+
|
259
|
+
# ##############################################################################
|
260
|
+
# # SECURITY #
|
261
|
+
# ##############################################################################
|
262
|
+
|
263
|
+
# ------------------------------------------------------------------------------
|
264
|
+
# | Content Security Policy (CSP) |
|
265
|
+
# ------------------------------------------------------------------------------
|
266
|
+
|
267
|
+
# You can mitigate the risk of cross-site scripting and other content-injection
|
268
|
+
# attacks by setting a Content Security Policy which whitelists trusted sources
|
269
|
+
# of content for your site.
|
270
|
+
|
271
|
+
# The example header below allows ONLY scripts that are loaded from the current
|
272
|
+
# site's origin (no inline scripts, no CDN, etc). This almost certainly won't
|
273
|
+
# work as-is for your site!
|
274
|
+
|
275
|
+
# To get all the details you'll need to craft a reasonable policy for your site,
|
276
|
+
# read: http://html5rocks.com/en/tutorials/security/content-security-policy (or
|
277
|
+
# see the specification: http://w3.org/TR/CSP).
|
278
|
+
|
279
|
+
# <IfModule mod_headers.c>
|
280
|
+
# Header set Content-Security-Policy "script-src 'self'; object-src 'self'"
|
281
|
+
# <FilesMatch "\.(appcache|crx|css|eot|gif|htc|ico|jpe?g|js|m4a|m4v|manifest|mp4|oex|oga|ogg|ogv|otf|pdf|png|safariextz|svg|svgz|ttf|vcf|webapp|webm|webp|woff|xml|xpi)$">
|
282
|
+
# Header unset Content-Security-Policy
|
283
|
+
# </FilesMatch>
|
284
|
+
# </IfModule>
|
285
|
+
|
286
|
+
# ------------------------------------------------------------------------------
|
287
|
+
# | File access |
|
288
|
+
# ------------------------------------------------------------------------------
|
289
|
+
|
290
|
+
# Block access to directories without a default document.
|
291
|
+
# Usually you should leave this uncommented because you shouldn't allow anyone
|
292
|
+
# to surf through every directory on your server (which may includes rather
|
293
|
+
# private places like the CMS's directories).
|
294
|
+
|
295
|
+
<IfModule mod_autoindex.c>
|
296
|
+
Options -Indexes
|
297
|
+
</IfModule>
|
298
|
+
|
299
|
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
300
|
+
|
301
|
+
# Block access to hidden files and directories.
|
302
|
+
# This includes directories used by version control systems such as Git and SVN.
|
303
|
+
|
304
|
+
<IfModule mod_rewrite.c>
|
305
|
+
RewriteCond %{SCRIPT_FILENAME} -d [OR]
|
306
|
+
RewriteCond %{SCRIPT_FILENAME} -f
|
307
|
+
RewriteRule "(^|/)\." - [F]
|
308
|
+
</IfModule>
|
309
|
+
|
310
|
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
311
|
+
|
312
|
+
# Block access to backup and source files.
|
313
|
+
# These files may be left by some text editors and can pose a great security
|
314
|
+
# danger when anyone has access to them.
|
315
|
+
|
316
|
+
<FilesMatch "(^#.*#|\.(bak|config|dist|fla|inc|ini|log|psd|sh|sql|sw[op])|~)$">
|
317
|
+
Order allow,deny
|
318
|
+
Deny from all
|
319
|
+
Satisfy All
|
320
|
+
</FilesMatch>
|
321
|
+
|
322
|
+
# ------------------------------------------------------------------------------
|
323
|
+
# | Secure Sockets Layer (SSL) |
|
324
|
+
# ------------------------------------------------------------------------------
|
325
|
+
|
326
|
+
# Rewrite secure requests properly to prevent SSL certificate warnings, e.g.:
|
327
|
+
# prevent `https://www.example.com` when your certificate only allows
|
328
|
+
# `https://secure.example.com`.
|
329
|
+
|
330
|
+
# <IfModule mod_rewrite.c>
|
331
|
+
# RewriteCond %{SERVER_PORT} !^443
|
332
|
+
# RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
|
333
|
+
# </IfModule>
|
334
|
+
|
335
|
+
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
336
|
+
|
337
|
+
# Force client-side SSL redirection.
|
338
|
+
|
339
|
+
# If a user types "example.com" in his browser, the above rule will redirect him
|
340
|
+
# to the secure version of the site. That still leaves a window of opportunity
|
341
|
+
# (the initial HTTP connection) for an attacker to downgrade or redirect the
|
342
|
+
# request. The following header ensures that browser will ONLY connect to your
|
343
|
+
# server via HTTPS, regardless of what the users type in the address bar.
|
344
|
+
# http://www.html5rocks.com/en/tutorials/security/transport-layer-security/
|
345
|
+
|
346
|
+
# <IfModule mod_headers.c>
|
347
|
+
# Header set Strict-Transport-Security max-age=16070400;
|
348
|
+
# </IfModule>
|
349
|
+
|
350
|
+
# ------------------------------------------------------------------------------
|
351
|
+
# | Server software information |
|
352
|
+
# ------------------------------------------------------------------------------
|
353
|
+
|
354
|
+
# Avoid displaying the exact Apache version number, the description of the
|
355
|
+
# generic OS-type and the information about Apache's compiled-in modules.
|
356
|
+
|
357
|
+
# ADD THIS DIRECTIVE IN THE `httpd.conf` AS IT WILL NOT WORK IN THE `.htaccess`!
|
358
|
+
|
359
|
+
# ServerTokens Prod
|
360
|
+
|
361
|
+
|
362
|
+
# ##############################################################################
|
363
|
+
# # WEB PERFORMANCE #
|
364
|
+
# ##############################################################################
|
365
|
+
|
366
|
+
# ------------------------------------------------------------------------------
|
367
|
+
# | Compression |
|
368
|
+
# ------------------------------------------------------------------------------
|
369
|
+
|
370
|
+
<IfModule mod_deflate.c>
|
371
|
+
|
372
|
+
# Force compression for mangled headers.
|
373
|
+
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
|
374
|
+
<IfModule mod_setenvif.c>
|
375
|
+
<IfModule mod_headers.c>
|
376
|
+
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
|
377
|
+
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
|
378
|
+
</IfModule>
|
379
|
+
</IfModule>
|
380
|
+
|
381
|
+
# Compress all output labeled with one of the following MIME-types
|
382
|
+
# (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
|
383
|
+
# and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
|
384
|
+
# as `AddOutputFilterByType` is still in the core directives).
|
385
|
+
<IfModule mod_filter.c>
|
386
|
+
AddOutputFilterByType DEFLATE application/atom+xml \
|
387
|
+
application/javascript \
|
388
|
+
application/json \
|
389
|
+
application/rss+xml \
|
390
|
+
application/vnd.ms-fontobject \
|
391
|
+
application/x-font-ttf \
|
392
|
+
application/x-web-app-manifest+json \
|
393
|
+
application/xhtml+xml \
|
394
|
+
application/xml \
|
395
|
+
font/opentype \
|
396
|
+
image/svg+xml \
|
397
|
+
image/x-icon \
|
398
|
+
text/css \
|
399
|
+
text/html \
|
400
|
+
text/plain \
|
401
|
+
text/x-component \
|
402
|
+
text/xml
|
403
|
+
</IfModule>
|
404
|
+
|
405
|
+
</IfModule>
|
406
|
+
|
407
|
+
# ------------------------------------------------------------------------------
|
408
|
+
# | Content transformations |
|
409
|
+
# ------------------------------------------------------------------------------
|
410
|
+
|
411
|
+
# Prevent some of the mobile network providers from modifying the content of
|
412
|
+
# your site: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.5.
|
413
|
+
|
414
|
+
# <IfModule mod_headers.c>
|
415
|
+
# Header set Cache-Control "no-transform"
|
416
|
+
# </IfModule>
|
417
|
+
|
418
|
+
# ------------------------------------------------------------------------------
|
419
|
+
# | ETag removal |
|
420
|
+
# ------------------------------------------------------------------------------
|
421
|
+
|
422
|
+
# Since we're sending far-future expires headers (see below), ETags can
|
423
|
+
# be removed: http://developer.yahoo.com/performance/rules.html#etags.
|
424
|
+
|
425
|
+
# `FileETag None` is not enough for every server.
|
426
|
+
<IfModule mod_headers.c>
|
427
|
+
Header unset ETag
|
428
|
+
</IfModule>
|
429
|
+
|
430
|
+
FileETag None
|
431
|
+
|
432
|
+
# ------------------------------------------------------------------------------
|
433
|
+
# | Expires headers (for better cache control) |
|
434
|
+
# ------------------------------------------------------------------------------
|
435
|
+
|
436
|
+
# The following expires headers are set pretty far in the future. If you don't
|
437
|
+
# control versioning with filename-based cache busting, consider lowering the
|
438
|
+
# cache time for resources like CSS and JS to something like 1 week.
|
439
|
+
|
440
|
+
<IfModule mod_expires.c>
|
441
|
+
|
442
|
+
ExpiresActive on
|
443
|
+
ExpiresDefault "access plus 1 month"
|
444
|
+
|
445
|
+
# CSS
|
446
|
+
ExpiresByType text/css "access plus 1 year"
|
447
|
+
|
448
|
+
# Data interchange
|
449
|
+
ExpiresByType application/json "access plus 0 seconds"
|
450
|
+
ExpiresByType application/xml "access plus 0 seconds"
|
451
|
+
ExpiresByType text/xml "access plus 0 seconds"
|
452
|
+
|
453
|
+
# Favicon (cannot be renamed!)
|
454
|
+
ExpiresByType image/x-icon "access plus 1 week"
|
455
|
+
|
456
|
+
# HTML components (HTCs)
|
457
|
+
ExpiresByType text/x-component "access plus 1 month"
|
458
|
+
|
459
|
+
# HTML
|
460
|
+
ExpiresByType text/html "access plus 0 seconds"
|
461
|
+
|
462
|
+
# JavaScript
|
463
|
+
ExpiresByType application/javascript "access plus 1 year"
|
464
|
+
|
465
|
+
# Manifest files
|
466
|
+
ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
|
467
|
+
ExpiresByType text/cache-manifest "access plus 0 seconds"
|
468
|
+
|
469
|
+
# Media
|
470
|
+
ExpiresByType audio/ogg "access plus 1 month"
|
471
|
+
ExpiresByType image/gif "access plus 1 month"
|
472
|
+
ExpiresByType image/jpeg "access plus 1 month"
|
473
|
+
ExpiresByType image/png "access plus 1 month"
|
474
|
+
ExpiresByType video/mp4 "access plus 1 month"
|
475
|
+
ExpiresByType video/ogg "access plus 1 month"
|
476
|
+
ExpiresByType video/webm "access plus 1 month"
|
477
|
+
|
478
|
+
# Web feeds
|
479
|
+
ExpiresByType application/atom+xml "access plus 1 hour"
|
480
|
+
ExpiresByType application/rss+xml "access plus 1 hour"
|
481
|
+
|
482
|
+
# Web fonts
|
483
|
+
ExpiresByType application/font-woff "access plus 1 month"
|
484
|
+
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
|
485
|
+
ExpiresByType application/x-font-ttf "access plus 1 month"
|
486
|
+
ExpiresByType font/opentype "access plus 1 month"
|
487
|
+
ExpiresByType image/svg+xml "access plus 1 month"
|
488
|
+
|
489
|
+
</IfModule>
|
490
|
+
|
491
|
+
# ------------------------------------------------------------------------------
|
492
|
+
# | Filename-based cache busting |
|
493
|
+
# ------------------------------------------------------------------------------
|
494
|
+
|
495
|
+
# If you're not using a build process to manage your filename version revving,
|
496
|
+
# you might want to consider enabling the following directives to route all
|
497
|
+
# requests such as `/css/style.12345.css` to `/css/style.css`.
|
498
|
+
|
499
|
+
# To understand why this is important and a better idea than `*.css?v231`, read:
|
500
|
+
# http://stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring
|
501
|
+
|
502
|
+
# <IfModule mod_rewrite.c>
|
503
|
+
# RewriteCond %{REQUEST_FILENAME} !-f
|
504
|
+
# RewriteCond %{REQUEST_FILENAME} !-d
|
505
|
+
# RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
|
506
|
+
# </IfModule>
|
507
|
+
|
508
|
+
# ------------------------------------------------------------------------------
|
509
|
+
# | File concatenation |
|
510
|
+
# ------------------------------------------------------------------------------
|
511
|
+
|
512
|
+
# Allow concatenation from within specific CSS and JS files, e.g.:
|
513
|
+
# Inside of `script.combined.js` you could have
|
514
|
+
# <!--#include file="libs/jquery.js" -->
|
515
|
+
# <!--#include file="plugins/jquery.idletimer.js" -->
|
516
|
+
# and they would be included into this single file.
|
517
|
+
|
518
|
+
# <IfModule mod_include.c>
|
519
|
+
# <FilesMatch "\.combined\.js$">
|
520
|
+
# Options +Includes
|
521
|
+
# AddOutputFilterByType INCLUDES application/javascript application/json
|
522
|
+
# SetOutputFilter INCLUDES
|
523
|
+
# </FilesMatch>
|
524
|
+
# <FilesMatch "\.combined\.css$">
|
525
|
+
# Options +Includes
|
526
|
+
# AddOutputFilterByType INCLUDES text/css
|
527
|
+
# SetOutputFilter INCLUDES
|
528
|
+
# </FilesMatch>
|
529
|
+
# </IfModule>
|
530
|
+
|
531
|
+
# ------------------------------------------------------------------------------
|
532
|
+
# | Persistent connections |
|
533
|
+
# ------------------------------------------------------------------------------
|
534
|
+
|
535
|
+
# Allow multiple requests to be sent over the same TCP connection:
|
536
|
+
# http://httpd.apache.org/docs/current/en/mod/core.html#keepalive.
|
537
|
+
|
538
|
+
# Enable if you serve a lot of static content but, be aware of the
|
539
|
+
# possible disadvantages!
|
540
|
+
|
541
|
+
# <IfModule mod_headers.c>
|
542
|
+
# Header set Connection Keep-Alive
|
543
|
+
# </IfModule>
|