rroonga 2.0.4-x86-mingw32 → 2.0.7-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +29 -2
- data/bin/grndump +3 -2
- data/ext/groonga/extconf.rb +37 -10
- data/ext/groonga/rb-grn-accessor.c +8 -10
- data/ext/groonga/rb-grn-array-cursor.c +2 -2
- data/ext/groonga/rb-grn-array.c +39 -36
- data/ext/groonga/rb-grn-column.c +185 -200
- data/ext/groonga/rb-grn-context.c +104 -93
- data/ext/groonga/rb-grn-database.c +116 -114
- data/ext/groonga/rb-grn-double-array-trie-cursor.c +3 -3
- data/ext/groonga/rb-grn-double-array-trie.c +159 -168
- data/ext/groonga/rb-grn-encoding-support.c +2 -3
- data/ext/groonga/rb-grn-encoding.c +39 -34
- data/ext/groonga/rb-grn-exception.c +1 -1
- data/ext/groonga/rb-grn-expression.c +141 -159
- data/ext/groonga/rb-grn-fix-size-column.c +12 -13
- data/ext/groonga/rb-grn-geo-point.c +55 -0
- data/ext/groonga/rb-grn-hash-cursor.c +3 -3
- data/ext/groonga/rb-grn-hash.c +73 -86
- data/ext/groonga/rb-grn-index-column.c +80 -90
- data/ext/groonga/rb-grn-index-cursor.c +48 -15
- data/ext/groonga/rb-grn-logger.c +42 -63
- data/ext/groonga/rb-grn-object.c +73 -100
- data/ext/groonga/rb-grn-operator.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie-cursor.c +2 -2
- data/ext/groonga/rb-grn-patricia-trie.c +200 -260
- data/ext/groonga/rb-grn-plugin.c +17 -24
- data/ext/groonga/rb-grn-posting.c +6 -1
- data/ext/groonga/rb-grn-snippet.c +37 -54
- data/ext/groonga/rb-grn-table-cursor-key-support.c +3 -3
- data/ext/groonga/rb-grn-table-cursor.c +21 -26
- data/ext/groonga/rb-grn-table-key-support.c +53 -63
- data/ext/groonga/rb-grn-table.c +366 -393
- data/ext/groonga/rb-grn-type.c +122 -26
- data/ext/groonga/rb-grn-utils.c +77 -7
- data/ext/groonga/rb-grn-variable-size-column.c +12 -20
- data/ext/groonga/rb-grn-variable.c +6 -7
- data/ext/groonga/rb-grn-view-accessor.c +1 -1
- data/ext/groonga/rb-grn-view-cursor.c +2 -2
- data/ext/groonga/rb-grn-view.c +46 -58
- data/ext/groonga/rb-grn.h +36 -4
- data/ext/groonga/rb-groonga.c +7 -6
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/command.rb +3 -1
- data/lib/groonga/database.rb +27 -0
- data/lib/groonga/dumper.rb +201 -46
- data/lib/groonga/expression-builder.rb +24 -0
- data/lib/groonga/geo-point.rb +216 -0
- data/lib/groonga/pagination.rb +30 -24
- data/lib/groonga/posting.rb +29 -1
- data/lib/groonga/record.rb +21 -18
- data/lib/groonga/schema.rb +185 -186
- data/lib/groonga.rb +3 -1
- data/rroonga-build.rb +1 -1
- data/rroonga.gemspec +90 -0
- data/test/groonga-test-utils.rb +168 -0
- data/test/run-test.rb +60 -0
- data/test/test-accessor.rb +36 -0
- data/test/test-array.rb +146 -0
- data/test/test-column.rb +350 -0
- data/test/test-command-select.rb +246 -0
- data/test/test-context.rb +130 -0
- data/test/test-database-dumper.rb +299 -0
- data/test/test-database.rb +173 -0
- data/test/test-double-array-trie.rb +189 -0
- data/test/test-encoding.rb +33 -0
- data/test/test-exception.rb +230 -0
- data/test/test-expression-builder.rb +643 -0
- data/test/test-expression.rb +134 -0
- data/test/test-fix-size-column.rb +77 -0
- data/test/test-geo-point.rb +190 -0
- data/test/test-gqtp.rb +70 -0
- data/test/test-hash.rb +367 -0
- data/test/test-index-column.rb +180 -0
- data/test/test-index-cursor.rb +149 -0
- data/test/test-logger.rb +37 -0
- data/test/test-pagination.rb +249 -0
- data/test/test-patricia-trie.rb +440 -0
- data/test/test-plugin.rb +35 -0
- data/test/test-procedure.rb +37 -0
- data/test/test-record.rb +577 -0
- data/test/test-remote.rb +63 -0
- data/test/test-schema-create-table.rb +267 -0
- data/test/test-schema-dumper.rb +235 -0
- data/test/test-schema-type.rb +208 -0
- data/test/test-schema-view.rb +90 -0
- data/test/test-schema.rb +886 -0
- data/test/test-snippet.rb +130 -0
- data/test/test-table-dumper.rb +353 -0
- data/test/test-table-offset-and-limit.rb +100 -0
- data/test/test-table-select-mecab.rb +80 -0
- data/test/test-table-select-normalize.rb +57 -0
- data/test/test-table-select-weight.rb +123 -0
- data/test/test-table-select.rb +191 -0
- data/test/test-table-traverse.rb +304 -0
- data/test/test-table.rb +711 -0
- data/test/test-type.rb +136 -0
- data/test/test-variable-size-column.rb +147 -0
- data/test/test-variable.rb +28 -0
- data/test/test-vector-column.rb +76 -0
- data/test/test-version.rb +61 -0
- data/test/test-view.rb +72 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +49 -0
- data/vendor/local/include/groonga/groonga/plugin.h +1 -1
- data/vendor/local/include/groonga/groonga.h +83 -7
- 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 +3 -3
- 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 +41 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +3 -3
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- 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/pkgconfig/groonga.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 +64 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/community.txt +17 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +638 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +21 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution.txt +0 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +61 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/development.txt +15 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +131 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +136 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +72 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +53 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +267 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +43 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +196 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +77 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +21 -346
- data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +16 -16
- 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 +17 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +235 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/check.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/define_selector.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/delete.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/dump.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/quit.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +892 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/status.txt +5 -6
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/suggest.txt +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_list.txt +3 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_remove.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{commands.txt → reference/commands.txt} +0 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/add.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/get.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/set.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/grntest.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +209 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources/executables/groonga-http.txt → en/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
- data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/executables/groonga.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/{executables.txt → reference/executables.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +284 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/now.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/rand.txt +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{functions.txt → reference/functions.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +59 -0
- data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/indexing.txt +7 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/{log.txt → reference/log.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{output.txt → reference/output.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/{type.txt → reference/type.txt} +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +12 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +16 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +288 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +29 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +12 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/spec.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +11 -11
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +23 -23
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +3 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +8 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -154
- data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +29 -21
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.html +25 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +67 -67
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +742 -0
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +47 -47
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +23 -22
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +46 -21
- data/vendor/local/share/doc/groonga/en/html/contribution.html +85 -50
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +191 -0
- data/vendor/local/share/doc/groonga/en/html/{executables.html → development.html} +27 -28
- data/vendor/local/share/doc/groonga/en/html/genindex.html +61 -61
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/index.html +167 -108
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +251 -0
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +260 -0
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +202 -0
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +186 -0
- data/vendor/local/share/doc/groonga/en/html/install/others.html +394 -0
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +171 -0
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +321 -0
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +200 -0
- data/vendor/local/share/doc/groonga/en/html/install.html +91 -349
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +301 -37
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +111 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +134 -0
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +111 -0
- data/vendor/local/share/doc/groonga/en/html/{command_version.html → reference/command_version.html} +44 -44
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/cache_limit.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/check.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/clearlock.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_create.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_list.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_remove.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/define_selector.html +51 -51
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/defrag.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/delete.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/dump.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/load.html +51 -51
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_level.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_put.html +50 -50
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_reopen.html +52 -52
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/quit.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +2340 -0
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/shutdown.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/status.html +67 -51
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/suggest.html +246 -246
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_create.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_list.html +140 -72
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_remove.html +51 -51
- data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/view_add.html +48 -48
- data/vendor/local/share/doc/groonga/en/html/{commands.html → reference/commands.html} +55 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +201 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +182 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +203 -0
- data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grnslap.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grntest.html +62 -62
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +367 -0
- data/vendor/local/share/doc/groonga/en/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +46 -46
- data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga-suggest-create-dataset.html +53 -53
- data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga.html +54 -54
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +144 -0
- data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/edit_distance.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +551 -0
- data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_circle.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_rectangle.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/now.html +44 -44
- data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/rand.html +46 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions.html +143 -0
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +1365 -0
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +1977 -0
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +192 -0
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +318 -0
- data/vendor/local/share/doc/groonga/en/html/{log.html → reference/log.html} +42 -42
- data/vendor/local/share/doc/groonga/en/html/{output.html → reference/output.html} +39 -39
- data/vendor/local/share/doc/groonga/en/html/{pseudo_column.html → reference/pseudo_column.html} +38 -38
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +134 -0
- data/vendor/local/share/doc/groonga/en/html/{type.html → reference/type.html} +45 -45
- data/vendor/local/share/doc/groonga/en/html/reference.html +84 -76
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +135 -0
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +452 -0
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +136 -0
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +136 -0
- data/vendor/local/share/doc/groonga/en/html/server/http.html +168 -0
- data/vendor/local/share/doc/groonga/en/html/{functions.html → server.html} +26 -28
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/spec.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +35 -35
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +13 -11
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +39 -39
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +340 -340
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +452 -36
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +382 -382
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +755 -79
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +311 -311
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +561 -535
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +107 -107
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +145 -143
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +176 -176
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +415 -34
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/community.txt +17 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +638 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +21 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt +0 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +61 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/development.txt +15 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +131 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +136 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +72 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +53 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +267 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +43 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +196 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +77 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +21 -346
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +16 -16
- 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 +17 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +235 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/check.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/commands/define_selector.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/delete.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/dump.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/quit.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +892 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/status.txt +5 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/suggest.txt +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
- data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_list.txt +3 -26
- data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_remove.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{commands.txt → reference/commands.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/add.txt +104 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/get.txt +80 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/set.txt +105 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/grntest.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +209 -0
- data/vendor/local/share/doc/groonga/{source/executables/groonga-http.txt → ja/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
- data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/{executables.txt → reference/executables.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +284 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/now.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/rand.txt +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{functions.txt → reference/functions.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +59 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{indexing.txt → reference/indexing.txt} +7 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/{log.txt → reference/log.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{output.txt → reference/output.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +8 -0
- data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/type.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +12 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +16 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +288 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +29 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +12 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +11 -11
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +23 -23
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +3 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +8 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -154
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +29 -21
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.html +22 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +67 -67
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +743 -0
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +23 -22
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +41 -17
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +85 -50
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +180 -0
- data/vendor/local/share/doc/groonga/ja/html/{executables.html → development.html} +25 -28
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +61 -61
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/index.html +167 -108
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +236 -0
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +250 -0
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +190 -0
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +182 -0
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +348 -0
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +168 -0
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +309 -0
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +186 -0
- data/vendor/local/share/doc/groonga/ja/html/install.html +83 -340
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +23 -23
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news.html +273 -40
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +112 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +135 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +112 -0
- data/vendor/local/share/doc/groonga/ja/html/{command_version.html → reference/command_version.html} +45 -45
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/cache_limit.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/check.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/clearlock.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_create.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_list.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_remove.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/define_selector.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/defrag.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/delete.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/dump.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/load.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_level.html +51 -51
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_put.html +51 -51
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_reopen.html +53 -53
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/quit.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2134 -0
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/shutdown.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/status.html +68 -52
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/suggest.html +254 -254
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_create.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_list.html +141 -73
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_remove.html +52 -52
- data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/view_add.html +49 -49
- data/vendor/local/share/doc/groonga/ja/html/{commands.html → reference/commands.html} +56 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +202 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +183 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +204 -0
- data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grnslap.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grntest.html +63 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +339 -0
- data/vendor/local/share/doc/groonga/ja/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +47 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +187 -0
- data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/groonga.html +55 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +145 -0
- data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/edit_distance.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +510 -0
- data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_circle.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_rectangle.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/now.html +45 -45
- data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/rand.html +47 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/functions.html +144 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +1210 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +1819 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +169 -0
- data/vendor/local/share/doc/groonga/ja/html/{indexing.html → reference/indexing.html} +147 -147
- data/vendor/local/share/doc/groonga/ja/html/{log.html → reference/log.html} +55 -55
- data/vendor/local/share/doc/groonga/ja/html/{output.html → reference/output.html} +40 -40
- data/vendor/local/share/doc/groonga/ja/html/{pseudo_column.html → reference/pseudo_column.html} +39 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +135 -0
- data/vendor/local/share/doc/groonga/ja/html/{type.html → reference/type.html} +48 -48
- data/vendor/local/share/doc/groonga/ja/html/reference.html +84 -76
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +136 -0
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +406 -0
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +137 -0
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +137 -0
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +166 -0
- data/vendor/local/share/doc/groonga/ja/html/{functions.html → server.html} +26 -28
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/spec.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +35 -35
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +15 -13
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +39 -39
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +339 -339
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +452 -36
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +382 -382
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +756 -80
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +311 -311
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +561 -535
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +108 -108
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +145 -143
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +176 -176
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +415 -34
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/source/community.txt +17 -0
- data/vendor/local/share/doc/groonga/source/conf.py +3 -16
- data/vendor/local/share/doc/groonga/source/contribution/development/release.txt +638 -0
- data/vendor/local/share/doc/groonga/source/contribution/report.txt +21 -6
- data/vendor/local/share/doc/groonga/source/contribution.txt +0 -1
- data/vendor/local/share/doc/groonga/source/development/travis-ci.txt +61 -0
- data/vendor/local/share/doc/groonga/source/development.txt +15 -0
- data/vendor/local/share/doc/groonga/source/example/completion-1.log +29 -30
- data/vendor/local/share/doc/groonga/source/example/correction-1.log +29 -30
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log +65 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log +32 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log +31 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log +74 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log +29 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log +29 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log +36 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log +31 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log +52 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log +131 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log +12 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log +90 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log +65 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log +65 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log +65 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log +18 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log +33 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/status.log +21 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log +31 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log +31 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log +12 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log +14 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log +8 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log +77 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log +94 -0
- data/vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log +21 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log +16 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log +26 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log +15 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log +26 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log +26 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log +26 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log +13 -0
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log +16 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log +33 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log +92 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log +53 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log +51 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log +53 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log +92 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log +47 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log +29 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log +52 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log +59 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log +29 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log +29 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log +51 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log +39 -0
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log +41 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-data.log +9 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log +4 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log +8 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log +8 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log +31 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log +35 -0
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log +27 -0
- data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +33 -34
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +2 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +44 -45
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +53 -54
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-4.log +43 -44
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-5.log +43 -44
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-6.log +43 -44
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-7.log +44 -45
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-8.log +52 -53
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log +21 -22
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +76 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log +83 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +111 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log +84 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log +72 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +22 -23
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-2.log +103 -104
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +18 -19
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-4.log +82 -83
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-5.log +76 -77
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-6.log +37 -38
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-7.log +39 -40
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +0 -1
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +2 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log +2 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log +34 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +34 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +74 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +127 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +74 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log +74 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log +74 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +19 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +2 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +25 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log +31 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log +13 -14
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log +74 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log +34 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +34 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log +19 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log +135 -136
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log +17 -18
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log +135 -136
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log +57 -34
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log +96 -97
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log +33 -34
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log +33 -34
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log +87 -88
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log +33 -34
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +71 -72
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log +52 -53
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log +56 -57
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log +35 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +19 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-2.log +0 -1
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-3.log +82 -83
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log +41 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log +98 -98
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +24 -25
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +68 -69
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +78 -79
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-1.log +29 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +82 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +148 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-4.log +41 -11
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-5.log +39 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +39 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-7.log +29 -3
- data/vendor/local/share/doc/groonga/source/index.txt +2 -0
- data/vendor/local/share/doc/groonga/source/install/centos.txt +131 -0
- data/vendor/local/share/doc/groonga/source/install/debian.txt +136 -0
- data/vendor/local/share/doc/groonga/source/install/fedora.txt +72 -0
- data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +53 -0
- data/vendor/local/share/doc/groonga/source/install/others.txt +267 -0
- data/vendor/local/share/doc/groonga/source/install/solaris.txt +43 -0
- data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +196 -0
- data/vendor/local/share/doc/groonga/source/install/windows.txt +77 -0
- data/vendor/local/share/doc/groonga/source/install.txt +21 -346
- data/vendor/local/share/doc/groonga/source/news/0.x.txt +3 -3
- data/vendor/local/share/doc/groonga/source/news/1.0.x.txt +16 -16
- data/vendor/local/share/doc/groonga/source/news/1.1.x.txt +1 -1
- data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +17 -17
- data/vendor/local/share/doc/groonga/source/news.txt +235 -4
- data/vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt +8 -0
- data/vendor/local/share/doc/groonga/source/reference/api.txt +8 -0
- data/vendor/local/share/doc/groonga/source/reference/cast.txt +8 -0
- data/vendor/local/share/doc/groonga/source/{command_version.txt → reference/command_version.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/cache_limit.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/check.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/clearlock.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_create.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_list.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_remove.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/define_selector.txt +1 -1
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/defrag.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/delete.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/dump.txt +0 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_level.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_put.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_reopen.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/quit.txt +0 -0
- data/vendor/local/share/doc/groonga/source/reference/commands/select.txt +892 -0
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/shutdown.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/status.txt +5 -6
- data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/suggest.txt +8 -8
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/table_create.txt +0 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_list.txt +3 -26
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_remove.txt +3 -3
- data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/view_add.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{commands.txt → reference/commands.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt +104 -0
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt +80 -0
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt +105 -0
- data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grnslap.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grntest.txt +1 -1
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt +209 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources/executables/groonga-http.txt → source/reference/executables/groonga-server-http.txt} +3 -3
- data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/groonga-suggest-create-dataset.txt +1 -1
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/executables/groonga.txt +4 -4
- data/vendor/local/share/doc/groonga/source/{executables.txt → reference/executables.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/edit_distance.txt +0 -0
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt +284 -0
- data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_circle.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/now.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/rand.txt +0 -0
- data/vendor/local/share/doc/groonga/source/{functions.txt → reference/functions.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt +584 -0
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt +805 -0
- data/vendor/local/share/doc/groonga/source/reference/grn_expr.txt +59 -0
- data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/indexing.txt +7 -7
- data/vendor/local/share/doc/groonga/source/{log.txt → reference/log.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/{output.txt → reference/output.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
- data/vendor/local/share/doc/groonga/source/reference/tokenizers.txt +8 -0
- data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/type.txt +4 -4
- data/vendor/local/share/doc/groonga/source/reference.txt +12 -9
- data/vendor/local/share/doc/groonga/source/server/gqtp.txt +16 -0
- data/vendor/local/share/doc/groonga/source/server/http/comparison.txt +288 -0
- data/vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt +8 -0
- data/vendor/local/share/doc/groonga/source/server/http/groonga.txt +8 -0
- data/vendor/local/share/doc/groonga/source/server/http.txt +29 -0
- data/vendor/local/share/doc/groonga/source/server.txt +12 -0
- data/vendor/local/share/doc/groonga/source/spec/search.txt +1 -1
- data/vendor/local/share/doc/groonga/source/spec.txt +2 -2
- data/vendor/local/share/doc/groonga/source/suggest/completion.txt +1 -1
- data/vendor/local/share/doc/groonga/source/suggest/correction.txt +2 -2
- data/vendor/local/share/doc/groonga/source/suggest/introduction.txt +2 -0
- data/vendor/local/share/doc/groonga/source/suggest/suggestion.txt +1 -1
- data/vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
- data/vendor/local/share/doc/groonga/source/tutorial/data.txt +11 -11
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +23 -23
- data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +3 -1
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +1 -1
- data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +8 -6
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +1 -1
- data/vendor/local/share/doc/groonga/source/tutorial/search.txt +3 -3
- data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +12354 -3896
- data/vendor/local/share/man/man1/groonga.1 +16934 -7750
- data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
- data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
- metadata +1251 -905
- data/lib/groonga/query-log.rb +0 -348
- data/vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt +0 -504
- data/vendor/local/share/doc/groonga/en/html/_sources/expr.txt +0 -45
- data/vendor/local/share/doc/groonga/en/html/_sources/functions/geo_distance.txt +0 -92
- data/vendor/local/share/doc/groonga/en/html/commands/select.html +0 -891
- data/vendor/local/share/doc/groonga/en/html/expr.html +0 -178
- data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +0 -226
- data/vendor/local/share/doc/groonga/en/html/indexing.html +0 -318
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt +0 -504
- data/vendor/local/share/doc/groonga/ja/html/_sources/expr.txt +0 -45
- data/vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_distance.txt +0 -92
- data/vendor/local/share/doc/groonga/ja/html/commands/select.html +0 -810
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +0 -187
- data/vendor/local/share/doc/groonga/ja/html/expr.html +0 -179
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +0 -227
- data/vendor/local/share/doc/groonga/source/commands/select.txt +0 -504
- data/vendor/local/share/doc/groonga/source/commands/suggest-completion.log +0 -32
- data/vendor/local/share/doc/groonga/source/commands/suggest-correction.log +0 -32
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log +0 -13
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log +0 -15
- data/vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log +0 -9
- data/vendor/local/share/doc/groonga/source/commands/suggest-mixed.log +0 -78
- data/vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log +0 -36
- data/vendor/local/share/doc/groonga/source/expr.txt +0 -45
- data/vendor/local/share/doc/groonga/source/functions/geo_distance.txt +0 -92
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rroonga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 2.0.
|
9
|
+
- 7
|
10
|
+
version: 2.0.7
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Kouhei Sutou
|
@@ -16,9 +16,10 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2012-
|
19
|
+
date: 2012-12-02 00:00:00 Z
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
+
name: pkg-config
|
22
23
|
version_requirements: &id001 !ruby/object:Gem::Requirement
|
23
24
|
none: false
|
24
25
|
requirements:
|
@@ -28,11 +29,11 @@ dependencies:
|
|
28
29
|
segments:
|
29
30
|
- 0
|
30
31
|
version: "0"
|
31
|
-
name: pkg-config
|
32
32
|
prerelease: false
|
33
33
|
type: :runtime
|
34
34
|
requirement: *id001
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
|
+
name: json
|
36
37
|
version_requirements: &id002 !ruby/object:Gem::Requirement
|
37
38
|
none: false
|
38
39
|
requirements:
|
@@ -42,11 +43,11 @@ dependencies:
|
|
42
43
|
segments:
|
43
44
|
- 0
|
44
45
|
version: "0"
|
45
|
-
name: json
|
46
46
|
prerelease: false
|
47
47
|
type: :runtime
|
48
48
|
requirement: *id002
|
49
49
|
- !ruby/object:Gem::Dependency
|
50
|
+
name: archive-zip
|
50
51
|
version_requirements: &id003 !ruby/object:Gem::Requirement
|
51
52
|
none: false
|
52
53
|
requirements:
|
@@ -56,11 +57,11 @@ dependencies:
|
|
56
57
|
segments:
|
57
58
|
- 0
|
58
59
|
version: "0"
|
59
|
-
name: archive-zip
|
60
60
|
prerelease: false
|
61
61
|
type: :runtime
|
62
62
|
requirement: *id003
|
63
63
|
- !ruby/object:Gem::Dependency
|
64
|
+
name: test-unit
|
64
65
|
version_requirements: &id004 !ruby/object:Gem::Requirement
|
65
66
|
none: false
|
66
67
|
requirements:
|
@@ -72,11 +73,11 @@ dependencies:
|
|
72
73
|
- 4
|
73
74
|
- 6
|
74
75
|
version: 2.4.6
|
75
|
-
name: test-unit
|
76
76
|
prerelease: false
|
77
77
|
type: :development
|
78
78
|
requirement: *id004
|
79
79
|
- !ruby/object:Gem::Dependency
|
80
|
+
name: test-unit-notify
|
80
81
|
version_requirements: &id005 !ruby/object:Gem::Requirement
|
81
82
|
none: false
|
82
83
|
requirements:
|
@@ -86,11 +87,11 @@ dependencies:
|
|
86
87
|
segments:
|
87
88
|
- 0
|
88
89
|
version: "0"
|
89
|
-
name: test-unit-notify
|
90
90
|
prerelease: false
|
91
91
|
type: :development
|
92
92
|
requirement: *id005
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
|
+
name: rake
|
94
95
|
version_requirements: &id006 !ruby/object:Gem::Requirement
|
95
96
|
none: false
|
96
97
|
requirements:
|
@@ -100,11 +101,11 @@ dependencies:
|
|
100
101
|
segments:
|
101
102
|
- 0
|
102
103
|
version: "0"
|
103
|
-
name: rake
|
104
104
|
prerelease: false
|
105
105
|
type: :development
|
106
106
|
requirement: *id006
|
107
107
|
- !ruby/object:Gem::Dependency
|
108
|
+
name: rake-compiler
|
108
109
|
version_requirements: &id007 !ruby/object:Gem::Requirement
|
109
110
|
none: false
|
110
111
|
requirements:
|
@@ -114,11 +115,11 @@ dependencies:
|
|
114
115
|
segments:
|
115
116
|
- 0
|
116
117
|
version: "0"
|
117
|
-
name: rake-compiler
|
118
118
|
prerelease: false
|
119
119
|
type: :development
|
120
120
|
requirement: *id007
|
121
121
|
- !ruby/object:Gem::Dependency
|
122
|
+
name: bundler
|
122
123
|
version_requirements: &id008 !ruby/object:Gem::Requirement
|
123
124
|
none: false
|
124
125
|
requirements:
|
@@ -128,11 +129,11 @@ dependencies:
|
|
128
129
|
segments:
|
129
130
|
- 0
|
130
131
|
version: "0"
|
131
|
-
name: bundler
|
132
132
|
prerelease: false
|
133
133
|
type: :development
|
134
134
|
requirement: *id008
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
|
+
name: yard
|
136
137
|
version_requirements: &id009 !ruby/object:Gem::Requirement
|
137
138
|
none: false
|
138
139
|
requirements:
|
@@ -142,12 +143,28 @@ dependencies:
|
|
142
143
|
segments:
|
143
144
|
- 0
|
144
145
|
version: "0"
|
145
|
-
name: yard
|
146
146
|
prerelease: false
|
147
147
|
type: :development
|
148
148
|
requirement: *id009
|
149
149
|
- !ruby/object:Gem::Dependency
|
150
|
+
name: packnga
|
150
151
|
version_requirements: &id010 !ruby/object:Gem::Requirement
|
152
|
+
none: false
|
153
|
+
requirements:
|
154
|
+
- - "="
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 51
|
157
|
+
segments:
|
158
|
+
- 0
|
159
|
+
- 9
|
160
|
+
- 4
|
161
|
+
version: 0.9.4
|
162
|
+
prerelease: false
|
163
|
+
type: :development
|
164
|
+
requirement: *id010
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
name: RedCloth
|
167
|
+
version_requirements: &id011 !ruby/object:Gem::Requirement
|
151
168
|
none: false
|
152
169
|
requirements:
|
153
170
|
- - ">="
|
@@ -156,10 +173,9 @@ dependencies:
|
|
156
173
|
segments:
|
157
174
|
- 0
|
158
175
|
version: "0"
|
159
|
-
name: packnga
|
160
176
|
prerelease: false
|
161
177
|
type: :development
|
162
|
-
requirement: *
|
178
|
+
requirement: *id011
|
163
179
|
description: |-
|
164
180
|
rroonga is an extension library to use groonga's DB-API
|
165
181
|
layer. rroonga provides Rubyish readable and writable API
|
@@ -170,8 +186,8 @@ email:
|
|
170
186
|
- a@razil.jp
|
171
187
|
executables:
|
172
188
|
- grntest-log-analyze
|
173
|
-
- grndump
|
174
189
|
- groonga-query-log-extract
|
190
|
+
- grndump
|
175
191
|
extensions: []
|
176
192
|
|
177
193
|
extra_rdoc_files:
|
@@ -181,970 +197,1254 @@ files:
|
|
181
197
|
- AUTHORS
|
182
198
|
- Rakefile
|
183
199
|
- Gemfile
|
200
|
+
- rroonga.gemspec
|
184
201
|
- rroonga-build.rb
|
185
202
|
- extconf.rb
|
186
|
-
- lib/groonga
|
187
|
-
- lib/groonga/
|
188
|
-
- lib/groonga/
|
203
|
+
- lib/groonga.rb
|
204
|
+
- lib/groonga/geo-point.rb
|
205
|
+
- lib/groonga/record.rb
|
189
206
|
- lib/groonga/view-record.rb
|
190
|
-
- lib/groonga/
|
191
|
-
- lib/groonga/patricia-trie.rb
|
207
|
+
- lib/groonga/context.rb
|
192
208
|
- lib/groonga/grntest-log.rb
|
209
|
+
- lib/groonga/pagination.rb
|
210
|
+
- lib/groonga/database.rb
|
211
|
+
- lib/groonga/schema.rb
|
193
212
|
- lib/groonga/command.rb
|
194
|
-
- lib/groonga/dumper.rb
|
195
213
|
- lib/groonga/posting.rb
|
196
|
-
- lib/groonga/
|
197
|
-
- lib/groonga/record.rb
|
214
|
+
- lib/groonga/patricia-trie.rb
|
198
215
|
- lib/groonga/expression-builder.rb
|
199
|
-
- lib/groonga.rb
|
200
|
-
-
|
201
|
-
- benchmark/repeat-load.rb
|
202
|
-
- benchmark/read-write-many-small-items.rb
|
216
|
+
- lib/groonga/dumper.rb
|
217
|
+
- lib/groonga/expression-builder-19.rb
|
203
218
|
- benchmark/create-wikipedia-database.rb
|
219
|
+
- benchmark/common.rb
|
204
220
|
- benchmark/write-many-small-items.rb
|
221
|
+
- benchmark/read-write-many-small-items.rb
|
205
222
|
- benchmark/select.rb
|
223
|
+
- benchmark/repeat-load.rb
|
206
224
|
- misc/grnop2ruby.rb
|
207
225
|
- example/index-html.rb
|
208
226
|
- example/bookmark.rb
|
209
|
-
- ext/groonga/rb-grn-
|
210
|
-
- ext/groonga/rb-grn-column.c
|
211
|
-
- ext/groonga/rb-grn-index-column.c
|
212
|
-
- ext/groonga/rb-grn-encoding-support.c
|
213
|
-
- ext/groonga/rb-grn-variable.c
|
214
|
-
- ext/groonga/rb-grn-table.c
|
215
|
-
- ext/groonga/rb-grn-hash-cursor.c
|
216
|
-
- ext/groonga/rb-grn-table-cursor-key-support.c
|
217
|
-
- ext/groonga/rb-grn-object.c
|
218
|
-
- ext/groonga/rb-grn-double-array-trie.c
|
227
|
+
- ext/groonga/rb-grn-exception.c
|
219
228
|
- ext/groonga/rb-grn-view-accessor.c
|
220
|
-
- ext/groonga/rb-grn-
|
221
|
-
- ext/groonga/rb-grn-array.c
|
222
|
-
- ext/groonga/rb-grn-patricia-trie.c
|
223
|
-
- ext/groonga/rb-grn-double-array-trie-cursor.c
|
224
|
-
- ext/groonga/rb-grn-utils.c
|
229
|
+
- ext/groonga/rb-grn-hash-cursor.c
|
225
230
|
- ext/groonga/rb-grn-record.c
|
226
|
-
- ext/groonga/rb-
|
227
|
-
- ext/groonga/rb-grn-
|
231
|
+
- ext/groonga/rb-grn-variable.c
|
232
|
+
- ext/groonga/rb-grn-view.c
|
233
|
+
- ext/groonga/rb-grn-table-cursor-key-support.c
|
234
|
+
- ext/groonga/rb-grn-fix-size-column.c
|
235
|
+
- ext/groonga/rb-grn-context.c
|
236
|
+
- ext/groonga/rb-grn-plugin.c
|
237
|
+
- ext/groonga/rb-grn-hash.c
|
228
238
|
- ext/groonga/rb-grn-variable-size-column.c
|
229
|
-
- ext/groonga/rb-grn-
|
230
|
-
- ext/groonga/rb-grn-expression-builder.c
|
239
|
+
- ext/groonga/rb-grn-index-column.c
|
231
240
|
- ext/groonga/rb-grn-operator.c
|
232
|
-
- ext/groonga/rb-grn-
|
233
|
-
- ext/groonga/rb-grn-
|
234
|
-
- ext/groonga/rb-grn-type.c
|
241
|
+
- ext/groonga/rb-grn-table-key-support.c
|
242
|
+
- ext/groonga/rb-grn-patricia-trie.c
|
235
243
|
- ext/groonga/rb-grn-table-cursor.c
|
236
|
-
- ext/groonga/rb-grn-
|
237
|
-
- ext/groonga/rb-grn-
|
238
|
-
- ext/groonga/rb-grn-
|
239
|
-
- ext/groonga/rb-grn-
|
240
|
-
- ext/groonga/rb-grn-
|
244
|
+
- ext/groonga/rb-grn-object.c
|
245
|
+
- ext/groonga/rb-grn-table.c
|
246
|
+
- ext/groonga/rb-grn-procedure.c
|
247
|
+
- ext/groonga/rb-grn-snippet.c
|
248
|
+
- ext/groonga/rb-grn-encoding-support.c
|
241
249
|
- ext/groonga/rb-grn-view-record.c
|
242
250
|
- ext/groonga/rb-grn-patricia-trie-cursor.c
|
251
|
+
- ext/groonga/rb-grn-array.c
|
252
|
+
- ext/groonga/rb-grn-database.c
|
253
|
+
- ext/groonga/rb-grn-view-cursor.c
|
254
|
+
- ext/groonga/rb-grn-column.c
|
243
255
|
- ext/groonga/rb-grn-index-cursor.c
|
244
|
-
- ext/groonga/rb-grn-
|
256
|
+
- ext/groonga/rb-grn-type.c
|
245
257
|
- ext/groonga/rb-grn-accessor.c
|
246
|
-
- ext/groonga/rb-grn-
|
258
|
+
- ext/groonga/rb-grn-double-array-trie-cursor.c
|
247
259
|
- ext/groonga/rb-grn-posting.c
|
260
|
+
- ext/groonga/rb-groonga.c
|
261
|
+
- ext/groonga/rb-grn-geo-point.c
|
262
|
+
- ext/groonga/rb-grn-array-cursor.c
|
263
|
+
- ext/groonga/rb-grn-utils.c
|
264
|
+
- ext/groonga/rb-grn-logger.c
|
248
265
|
- ext/groonga/rb-grn-expression.c
|
249
|
-
- ext/groonga/rb-grn-
|
266
|
+
- ext/groonga/rb-grn-encoding.c
|
267
|
+
- ext/groonga/rb-grn-expression-builder.c
|
268
|
+
- ext/groonga/rb-grn-double-array-trie.c
|
250
269
|
- ext/groonga/rb-grn.h
|
251
270
|
- ext/groonga/extconf.rb
|
252
271
|
- ext/groonga/groonga.def
|
272
|
+
- test/test-remote.rb
|
273
|
+
- test/test-accessor.rb
|
274
|
+
- test/test-database-dumper.rb
|
275
|
+
- test/test-index-column.rb
|
276
|
+
- test/groonga-test-utils.rb
|
277
|
+
- test/test-pagination.rb
|
278
|
+
- test/test-table.rb
|
279
|
+
- test/test-variable-size-column.rb
|
280
|
+
- test/test-plugin.rb
|
281
|
+
- test/test-hash.rb
|
282
|
+
- test/test-table-traverse.rb
|
283
|
+
- test/test-encoding.rb
|
284
|
+
- test/test-schema-create-table.rb
|
285
|
+
- test/test-type.rb
|
286
|
+
- test/test-database.rb
|
287
|
+
- test/test-variable.rb
|
288
|
+
- test/test-table-select.rb
|
289
|
+
- test/test-patricia-trie.rb
|
290
|
+
- test/test-geo-point.rb
|
291
|
+
- test/test-expression-builder.rb
|
292
|
+
- test/test-logger.rb
|
293
|
+
- test/test-array.rb
|
294
|
+
- test/test-record.rb
|
295
|
+
- test/test-column.rb
|
296
|
+
- test/test-fix-size-column.rb
|
297
|
+
- test/run-test.rb
|
298
|
+
- test/test-procedure.rb
|
299
|
+
- test/test-table-dumper.rb
|
300
|
+
- test/test-schema.rb
|
301
|
+
- test/test-view.rb
|
302
|
+
- test/test-table-select-mecab.rb
|
303
|
+
- test/test-command-select.rb
|
304
|
+
- test/test-table-select-normalize.rb
|
305
|
+
- test/test-expression.rb
|
306
|
+
- test/test-vector-column.rb
|
307
|
+
- test/test-version.rb
|
308
|
+
- test/test-schema-view.rb
|
309
|
+
- test/test-index-cursor.rb
|
310
|
+
- test/test-double-array-trie.rb
|
311
|
+
- test/test-exception.rb
|
312
|
+
- test/test-schema-dumper.rb
|
313
|
+
- test/test-schema-type.rb
|
314
|
+
- test/test-table-select-weight.rb
|
315
|
+
- test/test-gqtp.rb
|
316
|
+
- test/test-context.rb
|
317
|
+
- test/test-snippet.rb
|
318
|
+
- test/test-table-offset-and-limit.rb
|
253
319
|
- bin/grntest-log-analyze
|
254
|
-
- bin/grndump
|
255
320
|
- bin/groonga-query-log-extract
|
321
|
+
- bin/grndump
|
256
322
|
- lib/1.8/groonga.so
|
257
323
|
- lib/1.9/groonga.so
|
258
|
-
- vendor/local/
|
259
|
-
- vendor/local/bin/libgroonga-0.dll
|
260
|
-
- vendor/local/bin/groonga-benchmark.exe
|
261
|
-
- vendor/local/bin/libmsgpackc-2.dll
|
262
|
-
- vendor/local/bin/mecab-config
|
263
|
-
- vendor/local/bin/mecab.exe
|
264
|
-
- vendor/local/bin/mecabrc
|
265
|
-
- vendor/local/bin/groonga.exe
|
266
|
-
- vendor/local/bin/libgcc_s_sjlj-1.dll
|
267
|
-
- vendor/local/bin/libmecab-1.dll
|
268
|
-
- vendor/local/bin/libmsgpack-3.dll
|
269
|
-
- vendor/local/share/mecab/dic/naist-jdic/unk.dic
|
270
|
-
- vendor/local/share/mecab/dic/naist-jdic/unk.def
|
271
|
-
- vendor/local/share/mecab/dic/naist-jdic/pos-id.def
|
272
|
-
- vendor/local/share/mecab/dic/naist-jdic/feature.def
|
273
|
-
- vendor/local/share/mecab/dic/naist-jdic/char.bin
|
274
|
-
- vendor/local/share/mecab/dic/naist-jdic/matrix.def
|
275
|
-
- vendor/local/share/mecab/dic/naist-jdic/rewrite.def
|
276
|
-
- vendor/local/share/mecab/dic/naist-jdic/naist-jdic.csv
|
277
|
-
- vendor/local/share/mecab/dic/naist-jdic/dicrc
|
278
|
-
- vendor/local/share/mecab/dic/naist-jdic/sys.dic
|
279
|
-
- vendor/local/share/mecab/dic/naist-jdic/right-id.def
|
280
|
-
- vendor/local/share/mecab/dic/naist-jdic/left-id.def
|
281
|
-
- vendor/local/share/mecab/dic/naist-jdic/char.def
|
282
|
-
- vendor/local/share/mecab/dic/naist-jdic/matrix.bin
|
283
|
-
- vendor/local/share/license/mecab/COPYING
|
324
|
+
- vendor/local/sbin/groonga-httpd-restart
|
284
325
|
- vendor/local/share/license/mecab/GPL
|
326
|
+
- vendor/local/share/license/mecab/AUTHORS
|
285
327
|
- vendor/local/share/license/mecab/LGPL
|
328
|
+
- vendor/local/share/license/mecab/COPYING
|
286
329
|
- vendor/local/share/license/mecab/BSD
|
287
|
-
- vendor/local/share/license/
|
288
|
-
- vendor/local/share/license/
|
330
|
+
- vendor/local/share/license/groonga/AUTHORS
|
331
|
+
- vendor/local/share/license/groonga/COPYING
|
289
332
|
- vendor/local/share/license/naist-jdic/AUTHORS
|
333
|
+
- vendor/local/share/license/naist-jdic/COPYING
|
334
|
+
- vendor/local/share/license/msgpack/AUTHORS
|
290
335
|
- vendor/local/share/license/msgpack/COPYING
|
291
336
|
- vendor/local/share/license/msgpack/LICENSE
|
292
|
-
- vendor/local/share/
|
293
|
-
- vendor/local/share/
|
294
|
-
- vendor/local/share/
|
295
|
-
- vendor/local/share/
|
296
|
-
- vendor/local/share/
|
297
|
-
- vendor/local/share/
|
298
|
-
- vendor/local/share/
|
299
|
-
- vendor/local/share/
|
300
|
-
- vendor/local/share/
|
301
|
-
- vendor/local/share/
|
302
|
-
- vendor/local/share/
|
303
|
-
- vendor/local/share/
|
304
|
-
- vendor/local/share/
|
305
|
-
- vendor/local/share/
|
306
|
-
- vendor/local/share/
|
307
|
-
- vendor/local/share/
|
308
|
-
- vendor/local/share/
|
309
|
-
- vendor/local/share/
|
310
|
-
- vendor/local/share/
|
311
|
-
- vendor/local/share/
|
312
|
-
- vendor/local/share/
|
313
|
-
- vendor/local/share/
|
314
|
-
- vendor/local/share/
|
315
|
-
- vendor/local/share/
|
316
|
-
- vendor/local/share/
|
317
|
-
- vendor/local/share/
|
318
|
-
- vendor/local/share/
|
319
|
-
- vendor/local/share/
|
320
|
-
- vendor/local/share/
|
321
|
-
- vendor/local/share/
|
322
|
-
- vendor/local/share/
|
323
|
-
- vendor/local/share/
|
324
|
-
- vendor/local/share/
|
325
|
-
- vendor/local/share/
|
326
|
-
- vendor/local/share/
|
327
|
-
- vendor/local/share/
|
328
|
-
- vendor/local/share/
|
329
|
-
- vendor/local/share/
|
330
|
-
- vendor/local/share/
|
331
|
-
- vendor/local/share/
|
332
|
-
- vendor/local/share/
|
333
|
-
- vendor/local/share/
|
334
|
-
- vendor/local/share/
|
335
|
-
- vendor/local/share/
|
336
|
-
- vendor/local/share/
|
337
|
-
- vendor/local/share/
|
338
|
-
- vendor/local/share/
|
339
|
-
- vendor/local/share/
|
340
|
-
- vendor/local/share/
|
341
|
-
- vendor/local/share/
|
342
|
-
- vendor/local/share/
|
343
|
-
- vendor/local/share/
|
344
|
-
- vendor/local/share/
|
345
|
-
- vendor/local/share/
|
346
|
-
- vendor/local/share/
|
347
|
-
- vendor/local/share/
|
348
|
-
- vendor/local/share/
|
349
|
-
- vendor/local/share/
|
350
|
-
- vendor/local/share/
|
351
|
-
- vendor/local/share/
|
352
|
-
- vendor/local/share/
|
353
|
-
- vendor/local/share/
|
354
|
-
- vendor/local/share/
|
355
|
-
- vendor/local/share/
|
356
|
-
- vendor/local/share/
|
357
|
-
- vendor/local/share/
|
358
|
-
- vendor/local/share/
|
359
|
-
- vendor/local/share/
|
360
|
-
- vendor/local/share/
|
361
|
-
- vendor/local/share/
|
362
|
-
- vendor/local/share/
|
363
|
-
- vendor/local/share/
|
364
|
-
- vendor/local/share/
|
365
|
-
- vendor/local/share/
|
366
|
-
- vendor/local/share/
|
367
|
-
- vendor/local/share/
|
368
|
-
- vendor/local/share/
|
369
|
-
- vendor/local/share/
|
370
|
-
- vendor/local/share/
|
371
|
-
- vendor/local/share/
|
372
|
-
- vendor/local/share/
|
373
|
-
- vendor/local/share/
|
374
|
-
- vendor/local/share/
|
375
|
-
- vendor/local/share/
|
376
|
-
- vendor/local/share/
|
377
|
-
- vendor/local/share/
|
378
|
-
- vendor/local/share/
|
379
|
-
- vendor/local/share/
|
380
|
-
- vendor/local/share/
|
381
|
-
- vendor/local/share/
|
382
|
-
- vendor/local/share/
|
383
|
-
- vendor/local/share/
|
384
|
-
- vendor/local/share/
|
385
|
-
- vendor/local/share/
|
386
|
-
- vendor/local/share/
|
387
|
-
- vendor/local/share/
|
388
|
-
- vendor/local/share/
|
389
|
-
- vendor/local/share/
|
390
|
-
- vendor/local/share/
|
391
|
-
- vendor/local/share/
|
392
|
-
- vendor/local/share/
|
393
|
-
- vendor/local/share/
|
394
|
-
- vendor/local/share/
|
395
|
-
- vendor/local/share/
|
396
|
-
- vendor/local/share/
|
397
|
-
- vendor/local/share/
|
398
|
-
- vendor/local/share/
|
399
|
-
- vendor/local/share/
|
400
|
-
- vendor/local/share/
|
401
|
-
- vendor/local/share/
|
402
|
-
- vendor/local/share/
|
403
|
-
- vendor/local/share/
|
404
|
-
- vendor/local/share/
|
405
|
-
- vendor/local/share/
|
406
|
-
- vendor/local/share/
|
407
|
-
- vendor/local/share/
|
408
|
-
- vendor/local/share/
|
409
|
-
- vendor/local/share/
|
410
|
-
- vendor/local/share/
|
411
|
-
- vendor/local/share/
|
412
|
-
- vendor/local/share/
|
413
|
-
- vendor/local/share/
|
414
|
-
- vendor/local/share/doc/groonga/
|
415
|
-
- vendor/local/share/doc/groonga/
|
416
|
-
- vendor/local/share/doc/groonga/
|
417
|
-
- vendor/local/share/doc/groonga/
|
418
|
-
- vendor/local/share/doc/groonga/
|
419
|
-
- vendor/local/share/doc/groonga/
|
420
|
-
- vendor/local/share/doc/groonga/
|
421
|
-
- vendor/local/share/doc/groonga/
|
422
|
-
- vendor/local/share/doc/groonga/
|
423
|
-
- vendor/local/share/doc/groonga/
|
424
|
-
- vendor/local/share/doc/groonga/
|
425
|
-
- vendor/local/share/doc/groonga/
|
426
|
-
- vendor/local/share/doc/groonga/
|
427
|
-
- vendor/local/share/doc/groonga/
|
428
|
-
- vendor/local/share/doc/groonga/
|
429
|
-
- vendor/local/share/doc/groonga/
|
430
|
-
- vendor/local/share/doc/groonga/
|
431
|
-
- vendor/local/share/doc/groonga/
|
432
|
-
- vendor/local/share/doc/groonga/
|
433
|
-
- vendor/local/share/doc/groonga/
|
434
|
-
- vendor/local/share/doc/groonga/
|
435
|
-
- vendor/local/share/doc/groonga/
|
436
|
-
- vendor/local/share/doc/groonga/
|
437
|
-
- vendor/local/share/doc/groonga/
|
438
|
-
- vendor/local/share/doc/groonga/
|
439
|
-
- vendor/local/share/doc/groonga/
|
440
|
-
- vendor/local/share/doc/groonga/
|
441
|
-
- vendor/local/share/doc/groonga/
|
442
|
-
- vendor/local/share/doc/groonga/
|
443
|
-
- vendor/local/share/doc/groonga/
|
444
|
-
- vendor/local/share/doc/groonga/
|
445
|
-
- vendor/local/share/doc/groonga/
|
446
|
-
- vendor/local/share/doc/groonga/
|
447
|
-
- vendor/local/share/doc/groonga/
|
448
|
-
- vendor/local/share/doc/groonga/
|
449
|
-
- vendor/local/share/doc/groonga/
|
450
|
-
- vendor/local/share/doc/groonga/
|
451
|
-
- vendor/local/share/doc/groonga/
|
452
|
-
- vendor/local/share/doc/groonga/
|
453
|
-
- vendor/local/share/doc/groonga/
|
454
|
-
- vendor/local/share/doc/groonga/
|
455
|
-
- vendor/local/share/doc/groonga/
|
456
|
-
- vendor/local/share/doc/groonga/
|
457
|
-
- vendor/local/share/doc/groonga/
|
458
|
-
- vendor/local/share/doc/groonga/
|
459
|
-
- vendor/local/share/doc/groonga/
|
460
|
-
- vendor/local/share/doc/groonga/
|
461
|
-
- vendor/local/share/doc/groonga/
|
462
|
-
- vendor/local/share/doc/groonga/
|
463
|
-
- vendor/local/share/doc/groonga/
|
464
|
-
- vendor/local/share/doc/groonga/
|
465
|
-
- vendor/local/share/doc/groonga/
|
466
|
-
- vendor/local/share/doc/groonga/
|
467
|
-
- vendor/local/share/doc/groonga/
|
468
|
-
- vendor/local/share/doc/groonga/
|
469
|
-
- vendor/local/share/doc/groonga/
|
470
|
-
- vendor/local/share/doc/groonga/
|
471
|
-
- vendor/local/share/doc/groonga/
|
472
|
-
- vendor/local/share/doc/groonga/
|
473
|
-
- vendor/local/share/doc/groonga/
|
474
|
-
- vendor/local/share/doc/groonga/
|
475
|
-
- vendor/local/share/doc/groonga/
|
476
|
-
- vendor/local/share/doc/groonga/
|
477
|
-
- vendor/local/share/doc/groonga/
|
478
|
-
- vendor/local/share/doc/groonga/
|
479
|
-
- vendor/local/share/doc/groonga/
|
480
|
-
- vendor/local/share/doc/groonga/
|
481
|
-
- vendor/local/share/doc/groonga/
|
482
|
-
- vendor/local/share/doc/groonga/
|
483
|
-
- vendor/local/share/doc/groonga/
|
484
|
-
- vendor/local/share/doc/groonga/
|
485
|
-
- vendor/local/share/doc/groonga/
|
486
|
-
- vendor/local/share/doc/groonga/
|
487
|
-
- vendor/local/share/doc/groonga/
|
488
|
-
- vendor/local/share/doc/groonga/
|
489
|
-
- vendor/local/share/doc/groonga/
|
490
|
-
- vendor/local/share/doc/groonga/
|
491
|
-
- vendor/local/share/doc/groonga/
|
492
|
-
- vendor/local/share/doc/groonga/
|
493
|
-
- vendor/local/share/doc/groonga/
|
494
|
-
- vendor/local/share/doc/groonga/
|
495
|
-
- vendor/local/share/doc/groonga/
|
496
|
-
- vendor/local/share/doc/groonga/
|
497
|
-
- vendor/local/share/doc/groonga/
|
498
|
-
- vendor/local/share/doc/groonga/
|
499
|
-
- vendor/local/share/doc/groonga/
|
500
|
-
- vendor/local/share/doc/groonga/
|
501
|
-
- vendor/local/share/doc/groonga/
|
502
|
-
- vendor/local/share/doc/groonga/
|
503
|
-
- vendor/local/share/doc/groonga/
|
504
|
-
- vendor/local/share/doc/groonga/
|
505
|
-
- vendor/local/share/doc/groonga/
|
506
|
-
- vendor/local/share/doc/groonga/
|
507
|
-
- vendor/local/share/doc/groonga/
|
508
|
-
- vendor/local/share/doc/groonga/
|
509
|
-
- vendor/local/share/doc/groonga/
|
510
|
-
- vendor/local/share/doc/groonga/
|
511
|
-
- vendor/local/share/doc/groonga/
|
512
|
-
- vendor/local/share/doc/groonga/
|
513
|
-
- vendor/local/share/doc/groonga/
|
514
|
-
- vendor/local/share/doc/groonga/
|
515
|
-
- vendor/local/share/doc/groonga/
|
516
|
-
- vendor/local/share/doc/groonga/
|
517
|
-
- vendor/local/share/doc/groonga/
|
518
|
-
- vendor/local/share/doc/groonga/
|
519
|
-
- vendor/local/share/doc/groonga/
|
520
|
-
- vendor/local/share/doc/groonga/
|
521
|
-
- vendor/local/share/doc/groonga/
|
522
|
-
- vendor/local/share/doc/groonga/
|
523
|
-
- vendor/local/share/doc/groonga/
|
524
|
-
- vendor/local/share/doc/groonga/
|
525
|
-
- vendor/local/share/doc/groonga/
|
526
|
-
- vendor/local/share/doc/groonga/
|
527
|
-
- vendor/local/share/doc/groonga/
|
528
|
-
- vendor/local/share/doc/groonga/
|
529
|
-
- vendor/local/share/doc/groonga/
|
530
|
-
- vendor/local/share/doc/groonga/
|
531
|
-
- vendor/local/share/doc/groonga/
|
532
|
-
- vendor/local/share/doc/groonga/
|
533
|
-
- vendor/local/share/doc/groonga/
|
534
|
-
- vendor/local/share/doc/groonga/
|
535
|
-
- vendor/local/share/doc/groonga/
|
536
|
-
- vendor/local/share/doc/groonga/
|
537
|
-
- vendor/local/share/doc/groonga/
|
538
|
-
- vendor/local/share/doc/groonga/
|
539
|
-
- vendor/local/share/doc/groonga/
|
540
|
-
- vendor/local/share/doc/groonga/
|
541
|
-
- vendor/local/share/doc/groonga/
|
542
|
-
- vendor/local/share/doc/groonga/
|
543
|
-
- vendor/local/share/doc/groonga/
|
544
|
-
- vendor/local/share/doc/groonga/
|
545
|
-
- vendor/local/share/doc/groonga/
|
546
|
-
- vendor/local/share/doc/groonga/
|
547
|
-
- vendor/local/share/doc/groonga/
|
548
|
-
- vendor/local/share/doc/groonga/
|
549
|
-
- vendor/local/share/doc/groonga/
|
550
|
-
- vendor/local/share/doc/groonga/
|
551
|
-
- vendor/local/share/doc/groonga/
|
552
|
-
- vendor/local/share/doc/groonga/
|
553
|
-
- vendor/local/share/doc/groonga/
|
554
|
-
- vendor/local/share/doc/groonga/
|
555
|
-
- vendor/local/share/doc/groonga/
|
556
|
-
- vendor/local/share/doc/groonga/
|
557
|
-
- vendor/local/share/doc/groonga/
|
558
|
-
- vendor/local/share/doc/groonga/
|
559
|
-
- vendor/local/share/doc/groonga/
|
560
|
-
- vendor/local/share/doc/groonga/
|
561
|
-
- vendor/local/share/doc/groonga/
|
562
|
-
- vendor/local/share/doc/groonga/
|
563
|
-
- vendor/local/share/doc/groonga/
|
564
|
-
- vendor/local/share/doc/groonga/
|
565
|
-
- vendor/local/share/doc/groonga/
|
566
|
-
- vendor/local/share/doc/groonga/
|
567
|
-
- vendor/local/share/doc/groonga/
|
568
|
-
- vendor/local/share/doc/groonga/
|
569
|
-
- vendor/local/share/doc/groonga/
|
570
|
-
- vendor/local/share/doc/groonga/
|
571
|
-
- vendor/local/share/doc/groonga/
|
572
|
-
- vendor/local/share/doc/groonga/
|
573
|
-
- vendor/local/share/doc/groonga/
|
574
|
-
- vendor/local/share/doc/groonga/
|
575
|
-
- vendor/local/share/doc/groonga/
|
576
|
-
- vendor/local/share/doc/groonga/
|
577
|
-
- vendor/local/share/doc/groonga/
|
578
|
-
- vendor/local/share/doc/groonga/
|
579
|
-
- vendor/local/share/doc/groonga/
|
580
|
-
- vendor/local/share/doc/groonga/
|
581
|
-
- vendor/local/share/doc/groonga/
|
582
|
-
- vendor/local/share/doc/groonga/
|
583
|
-
- vendor/local/share/doc/groonga/
|
584
|
-
- vendor/local/share/doc/groonga/
|
585
|
-
- vendor/local/share/doc/groonga/
|
586
|
-
- vendor/local/share/doc/groonga/
|
587
|
-
- vendor/local/share/doc/groonga/
|
588
|
-
- vendor/local/share/doc/groonga/
|
589
|
-
- vendor/local/share/doc/groonga/
|
590
|
-
- vendor/local/share/doc/groonga/
|
591
|
-
- vendor/local/share/doc/groonga/
|
592
|
-
- vendor/local/share/doc/groonga/
|
593
|
-
- vendor/local/share/doc/groonga/
|
594
|
-
- vendor/local/share/doc/groonga/
|
595
|
-
- vendor/local/share/doc/groonga/
|
596
|
-
- vendor/local/share/doc/groonga/
|
597
|
-
- vendor/local/share/doc/groonga/
|
598
|
-
- vendor/local/share/doc/groonga/
|
599
|
-
- vendor/local/share/doc/groonga/
|
600
|
-
- vendor/local/share/doc/groonga/
|
601
|
-
- vendor/local/share/doc/groonga/
|
602
|
-
- vendor/local/share/doc/groonga/
|
603
|
-
- vendor/local/share/doc/groonga/
|
604
|
-
- vendor/local/share/doc/groonga/
|
605
|
-
- vendor/local/share/doc/groonga/
|
606
|
-
- vendor/local/share/doc/groonga/
|
607
|
-
- vendor/local/share/doc/groonga/
|
608
|
-
- vendor/local/share/doc/groonga/
|
609
|
-
- vendor/local/share/doc/groonga/
|
610
|
-
- vendor/local/share/doc/groonga/
|
611
|
-
- vendor/local/share/doc/groonga/
|
612
|
-
- vendor/local/share/doc/groonga/
|
613
|
-
- vendor/local/share/doc/groonga/
|
614
|
-
- vendor/local/share/doc/groonga/
|
615
|
-
- vendor/local/share/doc/groonga/
|
616
|
-
- vendor/local/share/doc/groonga/
|
617
|
-
- vendor/local/share/doc/groonga/
|
618
|
-
- vendor/local/share/doc/groonga/
|
619
|
-
- vendor/local/share/doc/groonga/
|
620
|
-
- vendor/local/share/doc/groonga/
|
621
|
-
- vendor/local/share/doc/groonga/
|
622
|
-
- vendor/local/share/doc/groonga/
|
623
|
-
- vendor/local/share/doc/groonga/
|
624
|
-
- vendor/local/share/doc/groonga/
|
625
|
-
- vendor/local/share/doc/groonga/
|
626
|
-
- vendor/local/share/doc/groonga/
|
627
|
-
- vendor/local/share/doc/groonga/
|
628
|
-
- vendor/local/share/doc/groonga/
|
629
|
-
- vendor/local/share/doc/groonga/
|
630
|
-
- vendor/local/share/doc/groonga/
|
631
|
-
- vendor/local/share/doc/groonga/
|
632
|
-
- vendor/local/share/doc/groonga/
|
633
|
-
- vendor/local/share/doc/groonga/
|
634
|
-
- vendor/local/share/doc/groonga/
|
635
|
-
- vendor/local/share/doc/groonga/
|
636
|
-
- vendor/local/share/doc/groonga/
|
637
|
-
- vendor/local/share/doc/groonga/
|
638
|
-
- vendor/local/share/doc/groonga/
|
639
|
-
- vendor/local/share/doc/groonga/
|
640
|
-
- vendor/local/share/doc/groonga/
|
641
|
-
- vendor/local/share/doc/groonga/
|
642
|
-
- vendor/local/share/doc/groonga/
|
643
|
-
- vendor/local/share/doc/groonga/
|
644
|
-
- vendor/local/share/doc/groonga/
|
645
|
-
- vendor/local/share/doc/groonga/
|
646
|
-
- vendor/local/share/doc/groonga/
|
647
|
-
- vendor/local/share/doc/groonga/
|
648
|
-
- vendor/local/share/doc/groonga/
|
649
|
-
- vendor/local/share/doc/groonga/
|
650
|
-
- vendor/local/share/doc/groonga/
|
651
|
-
- vendor/local/share/doc/groonga/
|
652
|
-
- vendor/local/share/doc/groonga/
|
653
|
-
- vendor/local/share/doc/groonga/
|
654
|
-
- vendor/local/share/doc/groonga/
|
655
|
-
- vendor/local/share/doc/groonga/
|
656
|
-
- vendor/local/share/doc/groonga/
|
657
|
-
- vendor/local/share/doc/groonga/
|
658
|
-
- vendor/local/share/doc/groonga/
|
659
|
-
- vendor/local/share/doc/groonga/
|
660
|
-
- vendor/local/share/doc/groonga/
|
661
|
-
- vendor/local/share/doc/groonga/
|
662
|
-
- vendor/local/share/doc/groonga/
|
663
|
-
- vendor/local/share/doc/groonga/
|
664
|
-
- vendor/local/share/doc/groonga/
|
665
|
-
- vendor/local/share/doc/groonga/
|
666
|
-
- vendor/local/share/doc/groonga/
|
667
|
-
- vendor/local/share/doc/groonga/ja/html/install.html
|
668
|
-
- vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
|
669
|
-
- vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html
|
670
|
-
- vendor/local/share/doc/groonga/ja/html/commands/column_remove.html
|
671
|
-
- vendor/local/share/doc/groonga/ja/html/commands/status.html
|
672
|
-
- vendor/local/share/doc/groonga/ja/html/commands/defrag.html
|
673
|
-
- vendor/local/share/doc/groonga/ja/html/commands/define_selector.html
|
674
|
-
- vendor/local/share/doc/groonga/ja/html/commands/table_list.html
|
675
|
-
- vendor/local/share/doc/groonga/ja/html/commands/table_remove.html
|
676
|
-
- vendor/local/share/doc/groonga/ja/html/commands/log_level.html
|
677
|
-
- vendor/local/share/doc/groonga/ja/html/commands/load.html
|
678
|
-
- vendor/local/share/doc/groonga/ja/html/commands/shutdown.html
|
679
|
-
- vendor/local/share/doc/groonga/ja/html/commands/dump.html
|
680
|
-
- vendor/local/share/doc/groonga/ja/html/commands/column_list.html
|
681
|
-
- vendor/local/share/doc/groonga/ja/html/commands/suggest.html
|
682
|
-
- vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html
|
683
|
-
- vendor/local/share/doc/groonga/ja/html/commands/select.html
|
684
|
-
- vendor/local/share/doc/groonga/ja/html/commands/clearlock.html
|
685
|
-
- vendor/local/share/doc/groonga/ja/html/commands/check.html
|
686
|
-
- vendor/local/share/doc/groonga/ja/html/commands/column_create.html
|
687
|
-
- vendor/local/share/doc/groonga/ja/html/commands/log_put.html
|
688
|
-
- vendor/local/share/doc/groonga/ja/html/commands/view_add.html
|
689
|
-
- vendor/local/share/doc/groonga/ja/html/commands/quit.html
|
690
|
-
- vendor/local/share/doc/groonga/ja/html/commands/delete.html
|
691
|
-
- vendor/local/share/doc/groonga/ja/html/commands/table_create.html
|
692
|
-
- vendor/local/share/doc/groonga/ja/html/command_version.html
|
693
|
-
- vendor/local/share/doc/groonga/ja/html/executables/grntest.html
|
694
|
-
- vendor/local/share/doc/groonga/ja/html/executables/grnslap.html
|
695
|
-
- vendor/local/share/doc/groonga/ja/html/executables/groonga.html
|
696
|
-
- vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html
|
697
|
-
- vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html
|
698
|
-
- vendor/local/share/doc/groonga/ja/html/characteristic.html
|
699
|
-
- vendor/local/share/doc/groonga/ja/html/spec/search.html
|
700
|
-
- vendor/local/share/doc/groonga/ja/html/spec.html
|
701
|
-
- vendor/local/share/doc/groonga/ja/html/suggest/correction.html
|
702
|
-
- vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html
|
703
|
-
- vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html
|
704
|
-
- vendor/local/share/doc/groonga/ja/html/suggest/introduction.html
|
705
|
-
- vendor/local/share/doc/groonga/ja/html/suggest/completion.html
|
706
|
-
- vendor/local/share/doc/groonga/ja/html/functions/rand.html
|
707
|
-
- vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html
|
708
|
-
- vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html
|
709
|
-
- vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html
|
710
|
-
- vendor/local/share/doc/groonga/ja/html/functions/now.html
|
711
|
-
- vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html
|
712
|
-
- vendor/local/share/doc/groonga/ja/html/log.html
|
713
|
-
- vendor/local/share/doc/groonga/source/output.txt
|
337
|
+
- vendor/local/share/mecab/dic/naist-jdic/char.def
|
338
|
+
- vendor/local/share/mecab/dic/naist-jdic/matrix.bin
|
339
|
+
- vendor/local/share/mecab/dic/naist-jdic/unk.dic
|
340
|
+
- vendor/local/share/mecab/dic/naist-jdic/sys.dic
|
341
|
+
- vendor/local/share/mecab/dic/naist-jdic/matrix.def
|
342
|
+
- vendor/local/share/mecab/dic/naist-jdic/left-id.def
|
343
|
+
- vendor/local/share/mecab/dic/naist-jdic/feature.def
|
344
|
+
- vendor/local/share/mecab/dic/naist-jdic/pos-id.def
|
345
|
+
- vendor/local/share/mecab/dic/naist-jdic/dicrc
|
346
|
+
- vendor/local/share/mecab/dic/naist-jdic/unk.def
|
347
|
+
- vendor/local/share/mecab/dic/naist-jdic/char.bin
|
348
|
+
- vendor/local/share/mecab/dic/naist-jdic/right-id.def
|
349
|
+
- vendor/local/share/mecab/dic/naist-jdic/naist-jdic.csv
|
350
|
+
- vendor/local/share/mecab/dic/naist-jdic/rewrite.def
|
351
|
+
- vendor/local/share/groonga/examples/dictionary/readme.txt
|
352
|
+
- vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh
|
353
|
+
- vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb
|
354
|
+
- vendor/local/share/groonga/examples/dictionary/init-db.sh
|
355
|
+
- vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
|
356
|
+
- vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh
|
357
|
+
- vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js
|
358
|
+
- vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
|
359
|
+
- vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js
|
360
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
|
361
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css
|
362
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
363
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
364
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
365
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
366
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png
|
367
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png
|
368
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
369
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
370
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png
|
371
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png
|
372
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png
|
373
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
374
|
+
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
375
|
+
- vendor/local/share/groonga/examples/dictionary/html/index.html
|
376
|
+
- vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
|
377
|
+
- vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
|
378
|
+
- vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh
|
379
|
+
- vendor/local/share/groonga/images/logo/groonga-logo.png
|
380
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon.png
|
381
|
+
- vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
|
382
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.svg
|
383
|
+
- vendor/local/share/groonga/images/logo/groonga-icon-full-size.svg
|
384
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon-full-size.png
|
385
|
+
- vendor/local/share/groonga/images/logo/nroonga-logo.svg
|
386
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.png
|
387
|
+
- vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.png
|
388
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.svg
|
389
|
+
- vendor/local/share/groonga/images/logo/groonga-icon.png
|
390
|
+
- vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.svg
|
391
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg
|
392
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-large.png
|
393
|
+
- vendor/local/share/groonga/images/logo/rroonga-logo.svg
|
394
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png
|
395
|
+
- vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.svg
|
396
|
+
- vendor/local/share/groonga/images/logo/rroonga-logo.png
|
397
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon-full-size.svg
|
398
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon-foreground-white.svg
|
399
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.png
|
400
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner.png
|
401
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon-full-size.png
|
402
|
+
- vendor/local/share/groonga/images/logo/groonga-logo.svg
|
403
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.svg
|
404
|
+
- vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.png
|
405
|
+
- vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
|
406
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.png
|
407
|
+
- vendor/local/share/groonga/images/logo/mroonga-logo.svg
|
408
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.svg
|
409
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon.svg
|
410
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon.png
|
411
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon-full-size.svg
|
412
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon.svg
|
413
|
+
- vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.svg
|
414
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.svg
|
415
|
+
- vendor/local/share/groonga/images/logo/rroonga-icon-full-size.png
|
416
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon.svg
|
417
|
+
- vendor/local/share/groonga/images/logo/mroonga-logo.png
|
418
|
+
- vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.png
|
419
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon-full-size.svg
|
420
|
+
- vendor/local/share/groonga/images/logo/nroonga-logo.png
|
421
|
+
- vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
|
422
|
+
- vendor/local/share/groonga/images/logo/nroonga-logo-foreground-white.svg
|
423
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon.png
|
424
|
+
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner.svg
|
425
|
+
- vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.png
|
426
|
+
- vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.png
|
427
|
+
- vendor/local/share/groonga/images/logo/mroonga-icon-foreground-white.png
|
428
|
+
- vendor/local/share/groonga/images/logo/groonga-icon.svg
|
429
|
+
- vendor/local/share/groonga/html/admin/favicon.ico
|
430
|
+
- vendor/local/share/groonga/html/admin/favicon.png
|
431
|
+
- vendor/local/share/groonga/html/admin/favicon.svg
|
432
|
+
- vendor/local/share/groonga/html/admin/js/groonga-admin.js
|
433
|
+
- vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js
|
434
|
+
- vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt
|
435
|
+
- vendor/local/share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js
|
436
|
+
- vendor/local/share/groonga/html/admin/js/jquery-1.7.2.min.js
|
437
|
+
- vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js
|
438
|
+
- vendor/local/share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
|
439
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
|
440
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
|
441
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_2e83ff_256x240.png
|
442
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_cd0a0a_256x240.png
|
443
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
|
444
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
|
445
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
|
446
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
|
447
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
|
448
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
|
449
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
|
450
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_469bdd_256x240.png
|
451
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_6da8d5_256x240.png
|
452
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
|
453
|
+
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
|
454
|
+
- vendor/local/share/groonga/html/admin/css/groonga-admin.css
|
455
|
+
- vendor/local/share/groonga/html/admin/index.html
|
456
|
+
- vendor/local/share/groonga/html/admin/images/groonga.svg
|
457
|
+
- vendor/local/share/groonga/html/admin/images/groonga.png
|
458
|
+
- vendor/local/share/groonga/html/admin/images/loading.gif
|
459
|
+
- vendor/local/share/doc/groonga/source/index.txt
|
460
|
+
- vendor/local/share/doc/groonga/source/install/mac_os_x.txt
|
461
|
+
- vendor/local/share/doc/groonga/source/install/debian.txt
|
462
|
+
- vendor/local/share/doc/groonga/source/install/others.txt
|
463
|
+
- vendor/local/share/doc/groonga/source/install/ubuntu.txt
|
464
|
+
- vendor/local/share/doc/groonga/source/install/windows.txt
|
465
|
+
- vendor/local/share/doc/groonga/source/install/fedora.txt
|
466
|
+
- vendor/local/share/doc/groonga/source/install/centos.txt
|
467
|
+
- vendor/local/share/doc/groonga/source/install/solaris.txt
|
468
|
+
- vendor/local/share/doc/groonga/source/rdoc.py
|
469
|
+
- vendor/local/share/doc/groonga/source/reference/api.txt
|
470
|
+
- vendor/local/share/doc/groonga/source/reference/commands/clearlock.txt
|
471
|
+
- vendor/local/share/doc/groonga/source/reference/commands/check.txt
|
472
|
+
- vendor/local/share/doc/groonga/source/reference/commands/column_remove.txt
|
473
|
+
- vendor/local/share/doc/groonga/source/reference/commands/define_selector.txt
|
474
|
+
- vendor/local/share/doc/groonga/source/reference/commands/column_list.txt
|
475
|
+
- vendor/local/share/doc/groonga/source/reference/commands/shutdown.txt
|
476
|
+
- vendor/local/share/doc/groonga/source/reference/commands/table_create.txt
|
477
|
+
- vendor/local/share/doc/groonga/source/reference/commands/log_reopen.txt
|
478
|
+
- vendor/local/share/doc/groonga/source/reference/commands/quit.txt
|
479
|
+
- vendor/local/share/doc/groonga/source/reference/commands/dump.txt
|
480
|
+
- vendor/local/share/doc/groonga/source/reference/commands/delete.txt
|
481
|
+
- vendor/local/share/doc/groonga/source/reference/commands/table_remove.txt
|
482
|
+
- vendor/local/share/doc/groonga/source/reference/commands/table_list.txt
|
483
|
+
- vendor/local/share/doc/groonga/source/reference/commands/log_level.txt
|
484
|
+
- vendor/local/share/doc/groonga/source/reference/commands/suggest.txt
|
485
|
+
- vendor/local/share/doc/groonga/source/reference/commands/cache_limit.txt
|
486
|
+
- vendor/local/share/doc/groonga/source/reference/commands/select.txt
|
487
|
+
- vendor/local/share/doc/groonga/source/reference/commands/load.txt
|
488
|
+
- vendor/local/share/doc/groonga/source/reference/commands/log_put.txt
|
489
|
+
- vendor/local/share/doc/groonga/source/reference/commands/defrag.txt
|
490
|
+
- vendor/local/share/doc/groonga/source/reference/commands/column_create.txt
|
491
|
+
- vendor/local/share/doc/groonga/source/reference/commands/status.txt
|
492
|
+
- vendor/local/share/doc/groonga/source/reference/commands/view_add.txt
|
493
|
+
- vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt
|
494
|
+
- vendor/local/share/doc/groonga/source/reference/indexing.txt
|
495
|
+
- vendor/local/share/doc/groonga/source/reference/pseudo_column.txt
|
496
|
+
- vendor/local/share/doc/groonga/source/reference/tokenizers.txt
|
497
|
+
- vendor/local/share/doc/groonga/source/reference/functions.txt
|
498
|
+
- vendor/local/share/doc/groonga/source/reference/grn_expr.txt
|
499
|
+
- vendor/local/share/doc/groonga/source/reference/commands.txt
|
500
|
+
- vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt
|
501
|
+
- vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt
|
502
|
+
- vendor/local/share/doc/groonga/source/reference/functions/edit_distance.txt
|
503
|
+
- vendor/local/share/doc/groonga/source/reference/functions/now.txt
|
504
|
+
- vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt
|
505
|
+
- vendor/local/share/doc/groonga/source/reference/functions/geo_in_circle.txt
|
506
|
+
- vendor/local/share/doc/groonga/source/reference/functions/geo_in_rectangle.txt
|
507
|
+
- vendor/local/share/doc/groonga/source/reference/functions/rand.txt
|
508
|
+
- vendor/local/share/doc/groonga/source/reference/cast.txt
|
509
|
+
- vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt
|
510
|
+
- vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt
|
511
|
+
- vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt
|
512
|
+
- vendor/local/share/doc/groonga/source/reference/log.txt
|
513
|
+
- vendor/local/share/doc/groonga/source/reference/output.txt
|
514
|
+
- vendor/local/share/doc/groonga/source/reference/executables/groonga-suggest-create-dataset.txt
|
515
|
+
- vendor/local/share/doc/groonga/source/reference/executables/groonga.txt
|
516
|
+
- vendor/local/share/doc/groonga/source/reference/executables/groonga-server-http.txt
|
517
|
+
- vendor/local/share/doc/groonga/source/reference/executables/grnslap.txt
|
518
|
+
- vendor/local/share/doc/groonga/source/reference/executables/grntest.txt
|
519
|
+
- vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt
|
520
|
+
- vendor/local/share/doc/groonga/source/reference/command_version.txt
|
521
|
+
- vendor/local/share/doc/groonga/source/reference/executables.txt
|
522
|
+
- vendor/local/share/doc/groonga/source/reference/type.txt
|
523
|
+
- vendor/local/share/doc/groonga/source/server/http.txt
|
524
|
+
- vendor/local/share/doc/groonga/source/server/gqtp.txt
|
525
|
+
- vendor/local/share/doc/groonga/source/server/http/groonga.txt
|
526
|
+
- vendor/local/share/doc/groonga/source/server/http/comparison.txt
|
527
|
+
- vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt
|
528
|
+
- vendor/local/share/doc/groonga/source/server.txt
|
529
|
+
- vendor/local/share/doc/groonga/source/conf.py
|
530
|
+
- vendor/local/share/doc/groonga/source/development/travis-ci.txt
|
531
|
+
- vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt
|
532
|
+
- vendor/local/share/doc/groonga/source/troubleshooting.txt
|
533
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log
|
534
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log
|
535
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log
|
536
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log
|
537
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/status.log
|
538
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log
|
539
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log
|
540
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log
|
541
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log
|
542
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log
|
543
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log
|
544
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log
|
545
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log
|
546
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log
|
547
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log
|
548
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log
|
549
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log
|
550
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log
|
551
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log
|
552
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log
|
553
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log
|
554
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log
|
555
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log
|
556
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log
|
557
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log
|
558
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log
|
559
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log
|
560
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log
|
561
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log
|
562
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log
|
563
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log
|
564
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log
|
565
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log
|
566
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log
|
567
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log
|
568
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log
|
569
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log
|
570
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log
|
571
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log
|
572
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log
|
573
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log
|
574
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log
|
575
|
+
- vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log
|
576
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log
|
577
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-data.log
|
578
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log
|
579
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log
|
580
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log
|
581
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log
|
582
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log
|
583
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log
|
584
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log
|
585
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log
|
586
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log
|
587
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log
|
588
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log
|
589
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log
|
590
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log
|
591
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log
|
592
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log
|
593
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log
|
594
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log
|
595
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log
|
596
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log
|
597
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log
|
598
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log
|
599
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log
|
600
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log
|
601
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log
|
602
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log
|
603
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log
|
604
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log
|
605
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log
|
606
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log
|
607
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log
|
608
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log
|
609
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log
|
610
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log
|
611
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log
|
612
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log
|
613
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log
|
614
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log
|
615
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log
|
616
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log
|
617
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log
|
618
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log
|
619
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log
|
620
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log
|
621
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log
|
622
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log
|
623
|
+
- vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log
|
624
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log
|
625
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log
|
626
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log
|
627
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log
|
628
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log
|
629
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log
|
630
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log
|
631
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log
|
632
|
+
- vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log
|
633
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log
|
634
|
+
- vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log
|
635
|
+
- vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log
|
636
|
+
- vendor/local/share/doc/groonga/source/example/suggestion-1.log
|
637
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log
|
638
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log
|
639
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/network-3.log
|
640
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-1.log
|
641
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-5.log
|
642
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log
|
643
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/network-2.log
|
644
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log
|
645
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log
|
646
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-6.log
|
647
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log
|
648
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-7.log
|
649
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log
|
650
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log
|
651
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-2.log
|
652
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log
|
653
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log
|
654
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log
|
655
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-5.log
|
656
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-7.log
|
657
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log
|
658
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-3.log
|
659
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-5.log
|
660
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-3.log
|
661
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log
|
662
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-4.log
|
663
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log
|
664
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log
|
665
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log
|
666
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-8.log
|
667
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log
|
668
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log
|
669
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log
|
670
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log
|
671
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-1.log
|
672
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log
|
673
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log
|
674
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log
|
675
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-6.log
|
676
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-4.log
|
677
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-2.log
|
678
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log
|
679
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log
|
680
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-2.log
|
681
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log
|
682
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log
|
683
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log
|
684
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log
|
685
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-3.log
|
686
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log
|
687
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log
|
688
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log
|
689
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-6.log
|
690
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log
|
691
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log
|
692
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log
|
693
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log
|
694
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/network-1.log
|
695
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log
|
696
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/data-7.log
|
697
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log
|
698
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/search-4.log
|
699
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log
|
700
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log
|
701
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log
|
702
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log
|
703
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log
|
704
|
+
- vendor/local/share/doc/groonga/source/example/tutorial/index-1.log
|
705
|
+
- vendor/local/share/doc/groonga/source/example/correction-1.log
|
706
|
+
- vendor/local/share/doc/groonga/source/example/completion-1.log
|
707
|
+
- vendor/local/share/doc/groonga/source/limitations.txt
|
708
|
+
- vendor/local/share/doc/groonga/source/geolocation_search.txt
|
709
|
+
- vendor/local/share/doc/groonga/source/contribution.txt
|
710
|
+
- vendor/local/share/doc/groonga/source/tutorial/index.txt
|
711
|
+
- vendor/local/share/doc/groonga/source/tutorial/network.txt
|
714
712
|
- vendor/local/share/doc/groonga/source/tutorial/lexicon.txt
|
715
|
-
- vendor/local/share/doc/groonga/source/tutorial/drilldown.txt
|
716
713
|
- vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt
|
717
|
-
- vendor/local/share/doc/groonga/source/tutorial/search.txt
|
718
|
-
- vendor/local/share/doc/groonga/source/tutorial/network.txt
|
719
|
-
- vendor/local/share/doc/groonga/source/tutorial/introduction.txt
|
720
|
-
- vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt
|
721
|
-
- vendor/local/share/doc/groonga/source/tutorial/index.txt
|
722
714
|
- vendor/local/share/doc/groonga/source/tutorial/match_columns.txt
|
723
715
|
- vendor/local/share/doc/groonga/source/tutorial/data.txt
|
716
|
+
- vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt
|
717
|
+
- vendor/local/share/doc/groonga/source/tutorial/drilldown.txt
|
718
|
+
- vendor/local/share/doc/groonga/source/tutorial/search.txt
|
724
719
|
- vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt
|
725
|
-
- vendor/local/share/doc/groonga/source/
|
726
|
-
- vendor/local/share/doc/groonga/source/
|
727
|
-
- vendor/local/share/doc/groonga/source/
|
728
|
-
- vendor/local/share/doc/groonga/source/
|
720
|
+
- vendor/local/share/doc/groonga/source/tutorial/introduction.txt
|
721
|
+
- vendor/local/share/doc/groonga/source/news.txt
|
722
|
+
- vendor/local/share/doc/groonga/source/suggest.txt
|
723
|
+
- vendor/local/share/doc/groonga/source/install.txt
|
724
|
+
- vendor/local/share/doc/groonga/source/development.txt
|
725
|
+
- vendor/local/share/doc/groonga/source/tutorial.txt
|
726
|
+
- vendor/local/share/doc/groonga/source/community.txt
|
727
|
+
- vendor/local/share/doc/groonga/source/suggest/suggestion.txt
|
728
|
+
- vendor/local/share/doc/groonga/source/suggest/tutorial.txt
|
729
|
+
- vendor/local/share/doc/groonga/source/suggest/correction.txt
|
730
|
+
- vendor/local/share/doc/groonga/source/suggest/completion.txt
|
731
|
+
- vendor/local/share/doc/groonga/source/suggest/introduction.txt
|
732
|
+
- vendor/local/share/doc/groonga/source/spec.txt
|
733
|
+
- vendor/local/share/doc/groonga/source/contribution/development/com.txt
|
734
|
+
- vendor/local/share/doc/groonga/source/contribution/development/document.txt
|
735
|
+
- vendor/local/share/doc/groonga/source/contribution/development/query.txt
|
736
|
+
- vendor/local/share/doc/groonga/source/contribution/development/release.txt
|
737
|
+
- vendor/local/share/doc/groonga/source/contribution/development/test.txt
|
738
|
+
- vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt
|
739
|
+
- vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt
|
740
|
+
- vendor/local/share/doc/groonga/source/contribution/development.txt
|
741
|
+
- vendor/local/share/doc/groonga/source/contribution/report.txt
|
742
|
+
- vendor/local/share/doc/groonga/source/contribution/documentation.txt
|
743
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png
|
744
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-sort.png
|
745
|
+
- vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png
|
746
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-distance.svg
|
747
|
+
- vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg
|
729
748
|
- vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg
|
730
|
-
- vendor/local/share/doc/groonga/source/images/geo-
|
731
|
-
- vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png
|
749
|
+
- vendor/local/share/doc/groonga/source/images/geo-points.svg
|
750
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png
|
751
|
+
- vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png
|
752
|
+
- vendor/local/share/doc/groonga/source/images/geo-points.png
|
753
|
+
- vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg
|
754
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-distance.png
|
732
755
|
- vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png
|
733
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
734
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-
|
735
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
736
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png
|
756
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png
|
757
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg
|
758
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png
|
737
759
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg
|
738
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg
|
739
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png
|
740
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png
|
741
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png
|
742
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png
|
743
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg
|
744
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg
|
745
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png
|
746
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png
|
747
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg
|
748
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg
|
749
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg
|
750
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png
|
751
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png
|
752
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg
|
753
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png
|
754
760
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png
|
755
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-
|
756
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png
|
757
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg
|
758
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg
|
759
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg
|
760
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg
|
761
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png
|
762
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png
|
763
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg
|
764
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg
|
765
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png
|
766
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg
|
767
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg
|
768
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png
|
761
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png
|
769
762
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg
|
763
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png
|
770
764
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png
|
771
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
765
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg
|
766
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg
|
767
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg
|
768
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png
|
772
769
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png
|
773
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
774
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
775
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search
|
770
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png
|
771
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg
|
772
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg
|
776
773
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg
|
777
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
774
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg
|
775
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg
|
776
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg
|
777
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg
|
778
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png
|
779
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png
|
780
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png
|
781
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png
|
782
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png
|
783
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg
|
784
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg
|
785
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png
|
786
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg
|
787
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg
|
788
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png
|
778
789
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg
|
779
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
790
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg
|
791
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png
|
780
792
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg
|
793
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg
|
794
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png
|
781
795
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg
|
782
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-
|
783
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
784
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
785
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png
|
786
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png
|
787
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png
|
788
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png
|
789
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png
|
796
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png
|
797
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg
|
798
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png
|
790
799
|
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png
|
791
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
792
|
-
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/
|
793
|
-
- vendor/local/share/doc/groonga/source/images/
|
794
|
-
- vendor/local/share/doc/groonga/source/images/
|
795
|
-
- vendor/local/share/doc/groonga/source/images/
|
796
|
-
- vendor/local/share/doc/groonga/source/images/
|
797
|
-
- vendor/local/share/doc/groonga/source/images/
|
798
|
-
- vendor/local/share/doc/groonga/source/images/
|
799
|
-
- vendor/local/share/doc/groonga/source/images/
|
800
|
-
- vendor/local/share/doc/groonga/source/images/
|
801
|
-
- vendor/local/share/doc/groonga/source/images/
|
802
|
-
- vendor/local/share/doc/groonga/source/images/
|
803
|
-
- vendor/local/share/doc/groonga/source/images/
|
804
|
-
- vendor/local/share/doc/groonga/source/images/
|
805
|
-
- vendor/local/share/doc/groonga/source/images/
|
806
|
-
- vendor/local/share/doc/groonga/source/images/
|
807
|
-
- vendor/local/share/doc/groonga/source/
|
808
|
-
- vendor/local/share/doc/groonga/source/
|
809
|
-
- vendor/local/share/doc/groonga/source/
|
810
|
-
- vendor/local/share/doc/groonga/source/
|
811
|
-
- vendor/local/share/doc/groonga/source/
|
812
|
-
- vendor/local/share/doc/groonga/source/
|
813
|
-
- vendor/local/share/doc/groonga/source/commands_not_implemented/set.txt
|
814
|
-
- vendor/local/share/doc/groonga/source/news/senna.txt
|
815
|
-
- vendor/local/share/doc/groonga/source/news/1.1.x.txt
|
816
|
-
- vendor/local/share/doc/groonga/source/news/0.x.txt
|
817
|
-
- vendor/local/share/doc/groonga/source/news/1.0.x.txt
|
818
|
-
- vendor/local/share/doc/groonga/source/news/1.2.x.txt
|
819
|
-
- vendor/local/share/doc/groonga/source/characteristic.txt
|
820
|
-
- vendor/local/share/doc/groonga/source/reference.txt
|
821
|
-
- vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt
|
822
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log
|
823
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log
|
824
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log
|
825
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-5.log
|
826
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-7.log
|
827
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log
|
828
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-5.log
|
829
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log
|
830
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log
|
831
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log
|
832
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-6.log
|
833
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log
|
834
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log
|
835
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log
|
836
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-1.log
|
837
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log
|
838
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/network-1.log
|
839
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log
|
840
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log
|
841
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-2.log
|
842
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log
|
843
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-3.log
|
844
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-1.log
|
845
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log
|
846
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-3.log
|
847
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log
|
848
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log
|
849
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log
|
850
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log
|
851
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-2.log
|
852
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log
|
853
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log
|
854
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/network-3.log
|
855
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log
|
856
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log
|
857
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log
|
858
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log
|
859
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log
|
860
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-8.log
|
861
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-6.log
|
862
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log
|
863
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-1.log
|
864
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log
|
865
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log
|
866
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log
|
867
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log
|
868
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-7.log
|
869
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log
|
870
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log
|
871
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log
|
872
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/network-2.log
|
873
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-7.log
|
874
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-2.log
|
875
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log
|
876
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log
|
877
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log
|
878
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-6.log
|
879
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log
|
880
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-4.log
|
881
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log
|
882
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/data-5.log
|
883
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-4.log
|
884
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log
|
885
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log
|
886
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/search-4.log
|
887
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/index-3.log
|
888
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log
|
889
|
-
- vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log
|
890
|
-
- vendor/local/share/doc/groonga/source/example/correction-1.log
|
891
|
-
- vendor/local/share/doc/groonga/source/example/suggestion-1.log
|
892
|
-
- vendor/local/share/doc/groonga/source/example/completion-1.log
|
893
|
-
- vendor/local/share/doc/groonga/source/functions.txt
|
800
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg
|
801
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg
|
802
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png
|
803
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png
|
804
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg
|
805
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png
|
806
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png
|
807
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg
|
808
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png
|
809
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg
|
810
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png
|
811
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png
|
812
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png
|
813
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg
|
814
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png
|
815
|
+
- vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg
|
816
|
+
- vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg
|
817
|
+
- vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png
|
818
|
+
- vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png
|
819
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg
|
820
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg
|
821
|
+
- vendor/local/share/doc/groonga/source/images/geo-points-sort.svg
|
894
822
|
- vendor/local/share/doc/groonga/source/textile.py
|
895
|
-
- vendor/local/share/doc/groonga/source/
|
896
|
-
- vendor/local/share/doc/groonga/source/
|
897
|
-
- vendor/local/share/doc/groonga/source/
|
898
|
-
- vendor/local/share/doc/groonga/source/
|
899
|
-
- vendor/local/share/doc/groonga/source/
|
900
|
-
- vendor/local/share/doc/groonga/source/news.txt
|
901
|
-
- vendor/local/share/doc/groonga/source/pseudo_column.txt
|
902
|
-
- vendor/local/share/doc/groonga/source/contribution/development.txt
|
903
|
-
- vendor/local/share/doc/groonga/source/contribution/report.txt
|
904
|
-
- vendor/local/share/doc/groonga/source/contribution/development/com.txt
|
905
|
-
- vendor/local/share/doc/groonga/source/contribution/development/query.txt
|
906
|
-
- vendor/local/share/doc/groonga/source/contribution/development/test.txt
|
907
|
-
- vendor/local/share/doc/groonga/source/contribution/development/document.txt
|
908
|
-
- vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt
|
909
|
-
- vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt
|
910
|
-
- vendor/local/share/doc/groonga/source/contribution/documentation.txt
|
911
|
-
- vendor/local/share/doc/groonga/source/commands/table_list.txt
|
912
|
-
- vendor/local/share/doc/groonga/source/commands/define_selector.txt
|
913
|
-
- vendor/local/share/doc/groonga/source/commands/log_put.txt
|
914
|
-
- vendor/local/share/doc/groonga/source/commands/view_add.txt
|
915
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-completion.log
|
916
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log
|
917
|
-
- vendor/local/share/doc/groonga/source/commands/shutdown.txt
|
918
|
-
- vendor/local/share/doc/groonga/source/commands/cache_limit.txt
|
919
|
-
- vendor/local/share/doc/groonga/source/commands/check.txt
|
920
|
-
- vendor/local/share/doc/groonga/source/commands/delete.txt
|
921
|
-
- vendor/local/share/doc/groonga/source/commands/select.txt
|
922
|
-
- vendor/local/share/doc/groonga/source/commands/column_create.txt
|
923
|
-
- vendor/local/share/doc/groonga/source/commands/log_level.txt
|
924
|
-
- vendor/local/share/doc/groonga/source/commands/table_remove.txt
|
925
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log
|
926
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-correction.log
|
927
|
-
- vendor/local/share/doc/groonga/source/commands/clearlock.txt
|
928
|
-
- vendor/local/share/doc/groonga/source/commands/load.txt
|
929
|
-
- vendor/local/share/doc/groonga/source/commands/column_remove.txt
|
930
|
-
- vendor/local/share/doc/groonga/source/commands/dump.txt
|
931
|
-
- vendor/local/share/doc/groonga/source/commands/quit.txt
|
932
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log
|
933
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-mixed.log
|
934
|
-
- vendor/local/share/doc/groonga/source/commands/defrag.txt
|
935
|
-
- vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log
|
936
|
-
- vendor/local/share/doc/groonga/source/commands/log_reopen.txt
|
937
|
-
- vendor/local/share/doc/groonga/source/commands/table_create.txt
|
938
|
-
- vendor/local/share/doc/groonga/source/commands/status.txt
|
939
|
-
- vendor/local/share/doc/groonga/source/commands/suggest.txt
|
940
|
-
- vendor/local/share/doc/groonga/source/commands/column_list.txt
|
941
|
-
- vendor/local/share/doc/groonga/source/executables/groonga-http.txt
|
942
|
-
- vendor/local/share/doc/groonga/source/executables/grntest.txt
|
943
|
-
- vendor/local/share/doc/groonga/source/executables/groonga-suggest-create-dataset.txt
|
944
|
-
- vendor/local/share/doc/groonga/source/executables/grnslap.txt
|
945
|
-
- vendor/local/share/doc/groonga/source/executables/groonga.txt
|
946
|
-
- vendor/local/share/doc/groonga/source/executables.txt
|
823
|
+
- vendor/local/share/doc/groonga/source/news/0.x.txt
|
824
|
+
- vendor/local/share/doc/groonga/source/news/1.1.x.txt
|
825
|
+
- vendor/local/share/doc/groonga/source/news/1.0.x.txt
|
826
|
+
- vendor/local/share/doc/groonga/source/news/senna.txt
|
827
|
+
- vendor/local/share/doc/groonga/source/news/1.2.x.txt
|
947
828
|
- vendor/local/share/doc/groonga/source/spec/search.txt
|
829
|
+
- vendor/local/share/doc/groonga/source/reference.txt
|
830
|
+
- vendor/local/share/doc/groonga/source/characteristic.txt
|
948
831
|
- vendor/local/share/doc/groonga/source/__init__.py
|
949
|
-
- vendor/local/share/doc/groonga/
|
950
|
-
- vendor/local/share/doc/groonga/
|
951
|
-
- vendor/local/share/doc/groonga/
|
952
|
-
- vendor/local/share/doc/groonga/
|
953
|
-
- vendor/local/share/doc/groonga/
|
954
|
-
- vendor/local/share/doc/groonga/
|
955
|
-
- vendor/local/share/doc/groonga/
|
956
|
-
- vendor/local/share/doc/groonga/
|
957
|
-
- vendor/local/share/doc/groonga/
|
958
|
-
- vendor/local/share/doc/groonga/
|
959
|
-
- vendor/local/share/doc/groonga/
|
960
|
-
- vendor/local/share/doc/groonga/
|
961
|
-
- vendor/local/share/doc/groonga/
|
962
|
-
- vendor/local/share/doc/groonga/
|
963
|
-
- vendor/local/share/doc/groonga/
|
964
|
-
- vendor/local/share/doc/groonga/
|
965
|
-
- vendor/local/share/doc/groonga/
|
966
|
-
- vendor/local/share/
|
967
|
-
- vendor/local/share/
|
832
|
+
- vendor/local/share/doc/groonga/ja/html/development.html
|
833
|
+
- vendor/local/share/doc/groonga/ja/html/install/others.html
|
834
|
+
- vendor/local/share/doc/groonga/ja/html/install/solaris.html
|
835
|
+
- vendor/local/share/doc/groonga/ja/html/install/centos.html
|
836
|
+
- vendor/local/share/doc/groonga/ja/html/install/fedora.html
|
837
|
+
- vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html
|
838
|
+
- vendor/local/share/doc/groonga/ja/html/install/windows.html
|
839
|
+
- vendor/local/share/doc/groonga/ja/html/install/ubuntu.html
|
840
|
+
- vendor/local/share/doc/groonga/ja/html/install/debian.html
|
841
|
+
- vendor/local/share/doc/groonga/ja/html/reference/output.html
|
842
|
+
- vendor/local/share/doc/groonga/ja/html/reference/api.html
|
843
|
+
- vendor/local/share/doc/groonga/ja/html/reference/log.html
|
844
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html
|
845
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html
|
846
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html
|
847
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html
|
848
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html
|
849
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html
|
850
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html
|
851
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html
|
852
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html
|
853
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html
|
854
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html
|
855
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html
|
856
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html
|
857
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/status.html
|
858
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/check.html
|
859
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html
|
860
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/select.html
|
861
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html
|
862
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html
|
863
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html
|
864
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/load.html
|
865
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html
|
866
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html
|
867
|
+
- vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html
|
868
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables.html
|
869
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands.html
|
870
|
+
- vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
|
871
|
+
- vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
|
872
|
+
- vendor/local/share/doc/groonga/ja/html/reference/type.html
|
873
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html
|
874
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html
|
875
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/now.html
|
876
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html
|
877
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html
|
878
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html
|
879
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html
|
880
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html
|
881
|
+
- vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html
|
882
|
+
- vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html
|
883
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html
|
884
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html
|
885
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html
|
886
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html
|
887
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html
|
888
|
+
- vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html
|
889
|
+
- vendor/local/share/doc/groonga/ja/html/reference/functions.html
|
890
|
+
- vendor/local/share/doc/groonga/ja/html/reference/indexing.html
|
891
|
+
- vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html
|
892
|
+
- vendor/local/share/doc/groonga/ja/html/reference/cast.html
|
893
|
+
- vendor/local/share/doc/groonga/ja/html/reference/command_version.html
|
894
|
+
- vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html
|
895
|
+
- vendor/local/share/doc/groonga/ja/html/server/gqtp.html
|
896
|
+
- vendor/local/share/doc/groonga/ja/html/server/http.html
|
897
|
+
- vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html
|
898
|
+
- vendor/local/share/doc/groonga/ja/html/server/http/comparison.html
|
899
|
+
- vendor/local/share/doc/groonga/ja/html/server/http/groonga.html
|
900
|
+
- vendor/local/share/doc/groonga/ja/html/troubleshooting.html
|
901
|
+
- vendor/local/share/doc/groonga/ja/html/development/travis-ci.html
|
902
|
+
- vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
|
903
|
+
- vendor/local/share/doc/groonga/ja/html/objects.inv
|
904
|
+
- vendor/local/share/doc/groonga/ja/html/genindex.html
|
905
|
+
- vendor/local/share/doc/groonga/ja/html/spec.html
|
906
|
+
- vendor/local/share/doc/groonga/ja/html/reference.html
|
907
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html
|
908
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html
|
909
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html
|
910
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/data.html
|
911
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html
|
912
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html
|
913
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html
|
914
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/index.html
|
915
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/search.html
|
916
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html
|
917
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial/network.html
|
918
|
+
- vendor/local/share/doc/groonga/ja/html/index.html
|
919
|
+
- vendor/local/share/doc/groonga/ja/html/searchindex.js
|
920
|
+
- vendor/local/share/doc/groonga/ja/html/news.html
|
921
|
+
- vendor/local/share/doc/groonga/ja/html/limitations.html
|
922
|
+
- vendor/local/share/doc/groonga/ja/html/tutorial.html
|
923
|
+
- vendor/local/share/doc/groonga/ja/html/suggest.html
|
924
|
+
- vendor/local/share/doc/groonga/ja/html/characteristic.html
|
925
|
+
- vendor/local/share/doc/groonga/ja/html/suggest/introduction.html
|
926
|
+
- vendor/local/share/doc/groonga/ja/html/suggest/correction.html
|
927
|
+
- vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html
|
928
|
+
- vendor/local/share/doc/groonga/ja/html/suggest/completion.html
|
929
|
+
- vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html
|
930
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development.html
|
931
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development/query.html
|
932
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development/release.html
|
933
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development/test.html
|
934
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development/com.html
|
935
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/development/document.html
|
936
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html
|
937
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html
|
938
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/documentation.html
|
939
|
+
- vendor/local/share/doc/groonga/ja/html/contribution/report.html
|
940
|
+
- vendor/local/share/doc/groonga/ja/html/geolocation_search.html
|
941
|
+
- vendor/local/share/doc/groonga/ja/html/search.html
|
942
|
+
- vendor/local/share/doc/groonga/ja/html/news/senna.html
|
943
|
+
- vendor/local/share/doc/groonga/ja/html/news/1.0.x.html
|
944
|
+
- vendor/local/share/doc/groonga/ja/html/news/0.x.html
|
945
|
+
- vendor/local/share/doc/groonga/ja/html/news/1.1.x.html
|
946
|
+
- vendor/local/share/doc/groonga/ja/html/news/1.2.x.html
|
947
|
+
- vendor/local/share/doc/groonga/ja/html/contribution.html
|
948
|
+
- vendor/local/share/doc/groonga/ja/html/spec/search.html
|
949
|
+
- vendor/local/share/doc/groonga/ja/html/.buildinfo
|
950
|
+
- vendor/local/share/doc/groonga/ja/html/install.html
|
951
|
+
- vendor/local/share/doc/groonga/ja/html/community.html
|
952
|
+
- vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
|
953
|
+
- vendor/local/share/doc/groonga/ja/html/server.html
|
954
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/index.txt
|
955
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt
|
956
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt
|
957
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt
|
958
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt
|
959
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt
|
960
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt
|
961
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt
|
962
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt
|
963
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt
|
964
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt
|
965
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt
|
966
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt
|
967
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt
|
968
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt
|
969
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt
|
970
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt
|
971
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt
|
972
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
|
973
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt
|
974
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt
|
975
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt
|
976
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt
|
977
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt
|
978
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt
|
979
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt
|
980
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt
|
981
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt
|
982
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt
|
983
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt
|
984
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt
|
985
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt
|
986
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/view_add.txt
|
987
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt
|
988
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt
|
989
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/pseudo_column.txt
|
990
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
|
991
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions.txt
|
992
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
|
993
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands.txt
|
994
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
|
995
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
|
996
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt
|
997
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/now.txt
|
998
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt
|
999
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt
|
1000
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt
|
1001
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
|
1002
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt
|
1003
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/set.txt
|
1004
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/get.txt
|
1005
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/add.txt
|
1006
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/log.txt
|
1007
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/output.txt
|
1008
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
|
1009
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt
|
1010
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-server-http.txt
|
1011
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt
|
1012
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grntest.txt
|
1013
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt
|
1014
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/command_version.txt
|
1015
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/executables.txt
|
1016
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference/type.txt
|
1017
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt
|
1018
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt
|
1019
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt
|
1020
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt
|
1021
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
|
1022
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/server.txt
|
1023
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt
|
1024
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
|
1025
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting.txt
|
1026
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt
|
1027
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/geolocation_search.txt
|
1028
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt
|
1029
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt
|
1030
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt
|
1031
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt
|
1032
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt
|
1033
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt
|
1034
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt
|
1035
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt
|
1036
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
|
1037
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt
|
1038
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
|
1039
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt
|
1040
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news.txt
|
1041
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest.txt
|
1042
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/install.txt
|
1043
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/development.txt
|
1044
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt
|
1045
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/community.txt
|
1046
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt
|
1047
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest/tutorial.txt
|
1048
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt
|
1049
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt
|
1050
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt
|
1051
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/spec.txt
|
1052
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/com.txt
|
1053
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt
|
1054
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/query.txt
|
1055
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt
|
1056
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt
|
1057
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt
|
1058
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/c-api.txt
|
1059
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt
|
1060
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt
|
1061
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt
|
1062
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt
|
1063
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt
|
1064
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt
|
1065
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt
|
1066
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt
|
1067
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt
|
1068
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/reference.txt
|
1069
|
+
- vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt
|
1070
|
+
- vendor/local/share/doc/groonga/ja/html/_static/file.png
|
1071
|
+
- vendor/local/share/doc/groonga/ja/html/_static/basic.css
|
1072
|
+
- vendor/local/share/doc/groonga/ja/html/_static/websupport.js
|
1073
|
+
- vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png
|
1074
|
+
- vendor/local/share/doc/groonga/ja/html/_static/favicon.ico
|
1075
|
+
- vendor/local/share/doc/groonga/ja/html/_static/doctools.js
|
1076
|
+
- vendor/local/share/doc/groonga/ja/html/_static/navigation-bar.png
|
1077
|
+
- vendor/local/share/doc/groonga/ja/html/_static/comment-close.png
|
1078
|
+
- vendor/local/share/doc/groonga/ja/html/_static/underscore.js
|
1079
|
+
- vendor/local/share/doc/groonga/ja/html/_static/us.png
|
1080
|
+
- vendor/local/share/doc/groonga/ja/html/_static/logo.png
|
1081
|
+
- vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif
|
1082
|
+
- vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png
|
1083
|
+
- vendor/local/share/doc/groonga/ja/html/_static/header-background.png
|
1084
|
+
- vendor/local/share/doc/groonga/ja/html/_static/comment.png
|
1085
|
+
- vendor/local/share/doc/groonga/ja/html/_static/searchtools.js
|
1086
|
+
- vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png
|
1087
|
+
- vendor/local/share/doc/groonga/ja/html/_static/down.png
|
1088
|
+
- vendor/local/share/doc/groonga/ja/html/_static/jquery.js
|
1089
|
+
- vendor/local/share/doc/groonga/ja/html/_static/plus.png
|
1090
|
+
- vendor/local/share/doc/groonga/ja/html/_static/minus.png
|
1091
|
+
- vendor/local/share/doc/groonga/ja/html/_static/jp.png
|
1092
|
+
- vendor/local/share/doc/groonga/ja/html/_static/groonga.css
|
1093
|
+
- vendor/local/share/doc/groonga/ja/html/_static/up.png
|
1094
|
+
- vendor/local/share/doc/groonga/ja/html/_static/pygments.css
|
1095
|
+
- vendor/local/share/doc/groonga/en/html/development.html
|
1096
|
+
- vendor/local/share/doc/groonga/en/html/install/others.html
|
1097
|
+
- vendor/local/share/doc/groonga/en/html/install/solaris.html
|
1098
|
+
- vendor/local/share/doc/groonga/en/html/install/centos.html
|
1099
|
+
- vendor/local/share/doc/groonga/en/html/install/fedora.html
|
1100
|
+
- vendor/local/share/doc/groonga/en/html/install/mac_os_x.html
|
1101
|
+
- vendor/local/share/doc/groonga/en/html/install/windows.html
|
1102
|
+
- vendor/local/share/doc/groonga/en/html/install/ubuntu.html
|
1103
|
+
- vendor/local/share/doc/groonga/en/html/install/debian.html
|
1104
|
+
- vendor/local/share/doc/groonga/en/html/reference/output.html
|
1105
|
+
- vendor/local/share/doc/groonga/en/html/reference/api.html
|
1106
|
+
- vendor/local/share/doc/groonga/en/html/reference/log.html
|
1107
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/dump.html
|
1108
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html
|
1109
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html
|
1110
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html
|
1111
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html
|
1112
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/delete.html
|
1113
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html
|
1114
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html
|
1115
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/quit.html
|
1116
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html
|
1117
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html
|
1118
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html
|
1119
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html
|
1120
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/status.html
|
1121
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/check.html
|
1122
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html
|
1123
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/select.html
|
1124
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html
|
1125
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html
|
1126
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html
|
1127
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/load.html
|
1128
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html
|
1129
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html
|
1130
|
+
- vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html
|
1131
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables.html
|
1132
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands.html
|
1133
|
+
- vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
|
1134
|
+
- vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
|
1135
|
+
- vendor/local/share/doc/groonga/en/html/reference/type.html
|
1136
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html
|
1137
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html
|
1138
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/now.html
|
1139
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/rand.html
|
1140
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html
|
1141
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html
|
1142
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html
|
1143
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html
|
1144
|
+
- vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html
|
1145
|
+
- vendor/local/share/doc/groonga/en/html/reference/grn_expr.html
|
1146
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html
|
1147
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html
|
1148
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html
|
1149
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html
|
1150
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html
|
1151
|
+
- vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html
|
1152
|
+
- vendor/local/share/doc/groonga/en/html/reference/functions.html
|
1153
|
+
- vendor/local/share/doc/groonga/en/html/reference/indexing.html
|
1154
|
+
- vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html
|
1155
|
+
- vendor/local/share/doc/groonga/en/html/reference/cast.html
|
1156
|
+
- vendor/local/share/doc/groonga/en/html/reference/command_version.html
|
1157
|
+
- vendor/local/share/doc/groonga/en/html/reference/tokenizers.html
|
1158
|
+
- vendor/local/share/doc/groonga/en/html/server/gqtp.html
|
1159
|
+
- vendor/local/share/doc/groonga/en/html/server/http.html
|
1160
|
+
- vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html
|
1161
|
+
- vendor/local/share/doc/groonga/en/html/server/http/comparison.html
|
1162
|
+
- vendor/local/share/doc/groonga/en/html/server/http/groonga.html
|
1163
|
+
- vendor/local/share/doc/groonga/en/html/troubleshooting.html
|
1164
|
+
- vendor/local/share/doc/groonga/en/html/development/travis-ci.html
|
1165
|
+
- vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
|
1166
|
+
- vendor/local/share/doc/groonga/en/html/objects.inv
|
1167
|
+
- vendor/local/share/doc/groonga/en/html/genindex.html
|
1168
|
+
- vendor/local/share/doc/groonga/en/html/spec.html
|
1169
|
+
- vendor/local/share/doc/groonga/en/html/reference.html
|
1170
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html
|
1171
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/introduction.html
|
1172
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html
|
1173
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/data.html
|
1174
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html
|
1175
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html
|
1176
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html
|
1177
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/index.html
|
1178
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/search.html
|
1179
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html
|
1180
|
+
- vendor/local/share/doc/groonga/en/html/tutorial/network.html
|
1181
|
+
- vendor/local/share/doc/groonga/en/html/index.html
|
1182
|
+
- vendor/local/share/doc/groonga/en/html/searchindex.js
|
1183
|
+
- vendor/local/share/doc/groonga/en/html/news.html
|
1184
|
+
- vendor/local/share/doc/groonga/en/html/limitations.html
|
1185
|
+
- vendor/local/share/doc/groonga/en/html/tutorial.html
|
1186
|
+
- vendor/local/share/doc/groonga/en/html/suggest.html
|
1187
|
+
- vendor/local/share/doc/groonga/en/html/characteristic.html
|
1188
|
+
- vendor/local/share/doc/groonga/en/html/suggest/introduction.html
|
1189
|
+
- vendor/local/share/doc/groonga/en/html/suggest/correction.html
|
1190
|
+
- vendor/local/share/doc/groonga/en/html/suggest/suggestion.html
|
1191
|
+
- vendor/local/share/doc/groonga/en/html/suggest/completion.html
|
1192
|
+
- vendor/local/share/doc/groonga/en/html/suggest/tutorial.html
|
1193
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development.html
|
1194
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development/query.html
|
1195
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development/release.html
|
1196
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development/test.html
|
1197
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development/com.html
|
1198
|
+
- vendor/local/share/doc/groonga/en/html/contribution/development/document.html
|
1199
|
+
- vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html
|
1200
|
+
- vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html
|
1201
|
+
- vendor/local/share/doc/groonga/en/html/contribution/documentation.html
|
1202
|
+
- vendor/local/share/doc/groonga/en/html/contribution/report.html
|
1203
|
+
- vendor/local/share/doc/groonga/en/html/geolocation_search.html
|
1204
|
+
- vendor/local/share/doc/groonga/en/html/search.html
|
1205
|
+
- vendor/local/share/doc/groonga/en/html/news/senna.html
|
1206
|
+
- vendor/local/share/doc/groonga/en/html/news/1.0.x.html
|
1207
|
+
- vendor/local/share/doc/groonga/en/html/news/0.x.html
|
1208
|
+
- vendor/local/share/doc/groonga/en/html/news/1.1.x.html
|
1209
|
+
- vendor/local/share/doc/groonga/en/html/news/1.2.x.html
|
1210
|
+
- vendor/local/share/doc/groonga/en/html/contribution.html
|
1211
|
+
- vendor/local/share/doc/groonga/en/html/spec/search.html
|
1212
|
+
- vendor/local/share/doc/groonga/en/html/.buildinfo
|
1213
|
+
- vendor/local/share/doc/groonga/en/html/install.html
|
1214
|
+
- vendor/local/share/doc/groonga/en/html/community.html
|
1215
|
+
- vendor/local/share/doc/groonga/en/html/_images/geo-points.png
|
1216
|
+
- vendor/local/share/doc/groonga/en/html/server.html
|
1217
|
+
- vendor/local/share/doc/groonga/en/html/_sources/index.txt
|
1218
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt
|
1219
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt
|
1220
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/others.txt
|
1221
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt
|
1222
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt
|
1223
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt
|
1224
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt
|
1225
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt
|
1226
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt
|
1227
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt
|
1228
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt
|
1229
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt
|
1230
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt
|
1231
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt
|
1232
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt
|
1233
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt
|
1234
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt
|
1235
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt
|
1236
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt
|
1237
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt
|
1238
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt
|
1239
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt
|
1240
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt
|
1241
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt
|
1242
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt
|
1243
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt
|
1244
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt
|
1245
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt
|
1246
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt
|
1247
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt
|
1248
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt
|
1249
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands/view_add.txt
|
1250
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt
|
1251
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt
|
1252
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/pseudo_column.txt
|
1253
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt
|
1254
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions.txt
|
1255
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt
|
1256
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands.txt
|
1257
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
|
1258
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
|
1259
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt
|
1260
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/now.txt
|
1261
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt
|
1262
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt
|
1263
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt
|
1264
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/functions/rand.txt
|
1265
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt
|
1266
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/set.txt
|
1267
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/get.txt
|
1268
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/commands_not_implemented/add.txt
|
1269
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/log.txt
|
1270
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/output.txt
|
1271
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
|
1272
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt
|
1273
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-server-http.txt
|
1274
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt
|
1275
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grntest.txt
|
1276
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt
|
1277
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/command_version.txt
|
1278
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/executables.txt
|
1279
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference/type.txt
|
1280
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server/http.txt
|
1281
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt
|
1282
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt
|
1283
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt
|
1284
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
|
1285
|
+
- vendor/local/share/doc/groonga/en/html/_sources/server.txt
|
1286
|
+
- vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt
|
1287
|
+
- vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
|
1288
|
+
- vendor/local/share/doc/groonga/en/html/_sources/troubleshooting.txt
|
1289
|
+
- vendor/local/share/doc/groonga/en/html/_sources/limitations.txt
|
1290
|
+
- vendor/local/share/doc/groonga/en/html/_sources/geolocation_search.txt
|
1291
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution.txt
|
1292
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt
|
1293
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt
|
1294
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/lexicon.txt
|
1295
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt
|
1296
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt
|
1297
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt
|
1298
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt
|
1299
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
|
1300
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt
|
1301
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
|
1302
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt
|
1303
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news.txt
|
1304
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest.txt
|
1305
|
+
- vendor/local/share/doc/groonga/en/html/_sources/install.txt
|
1306
|
+
- vendor/local/share/doc/groonga/en/html/_sources/development.txt
|
1307
|
+
- vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt
|
1308
|
+
- vendor/local/share/doc/groonga/en/html/_sources/community.txt
|
1309
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt
|
1310
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest/tutorial.txt
|
1311
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt
|
1312
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt
|
1313
|
+
- vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt
|
1314
|
+
- vendor/local/share/doc/groonga/en/html/_sources/spec.txt
|
1315
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development/com.txt
|
1316
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt
|
1317
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development/query.txt
|
1318
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt
|
1319
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt
|
1320
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt
|
1321
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/c-api.txt
|
1322
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt
|
1323
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt
|
1324
|
+
- vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt
|
1325
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt
|
1326
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt
|
1327
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt
|
1328
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt
|
1329
|
+
- vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt
|
1330
|
+
- vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt
|
1331
|
+
- vendor/local/share/doc/groonga/en/html/_sources/reference.txt
|
1332
|
+
- vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt
|
1333
|
+
- vendor/local/share/doc/groonga/en/html/_static/file.png
|
1334
|
+
- vendor/local/share/doc/groonga/en/html/_static/basic.css
|
1335
|
+
- vendor/local/share/doc/groonga/en/html/_static/websupport.js
|
1336
|
+
- vendor/local/share/doc/groonga/en/html/_static/comment-bright.png
|
1337
|
+
- vendor/local/share/doc/groonga/en/html/_static/favicon.ico
|
1338
|
+
- vendor/local/share/doc/groonga/en/html/_static/doctools.js
|
1339
|
+
- vendor/local/share/doc/groonga/en/html/_static/navigation-bar.png
|
1340
|
+
- vendor/local/share/doc/groonga/en/html/_static/comment-close.png
|
1341
|
+
- vendor/local/share/doc/groonga/en/html/_static/underscore.js
|
1342
|
+
- vendor/local/share/doc/groonga/en/html/_static/us.png
|
1343
|
+
- vendor/local/share/doc/groonga/en/html/_static/logo.png
|
1344
|
+
- vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif
|
1345
|
+
- vendor/local/share/doc/groonga/en/html/_static/down-pressed.png
|
1346
|
+
- vendor/local/share/doc/groonga/en/html/_static/header-background.png
|
1347
|
+
- vendor/local/share/doc/groonga/en/html/_static/comment.png
|
1348
|
+
- vendor/local/share/doc/groonga/en/html/_static/searchtools.js
|
1349
|
+
- vendor/local/share/doc/groonga/en/html/_static/up-pressed.png
|
1350
|
+
- vendor/local/share/doc/groonga/en/html/_static/down.png
|
1351
|
+
- vendor/local/share/doc/groonga/en/html/_static/jquery.js
|
1352
|
+
- vendor/local/share/doc/groonga/en/html/_static/plus.png
|
1353
|
+
- vendor/local/share/doc/groonga/en/html/_static/minus.png
|
1354
|
+
- vendor/local/share/doc/groonga/en/html/_static/jp.png
|
1355
|
+
- vendor/local/share/doc/groonga/en/html/_static/groonga.css
|
1356
|
+
- vendor/local/share/doc/groonga/en/html/_static/up.png
|
1357
|
+
- vendor/local/share/doc/groonga/en/html/_static/pygments.css
|
968
1358
|
- vendor/local/share/man/ja/man1/groonga.1
|
969
|
-
- vendor/local/share/
|
970
|
-
- vendor/local/share/
|
971
|
-
- vendor/local/
|
972
|
-
- vendor/local/
|
973
|
-
- vendor/local/
|
974
|
-
- vendor/local/
|
975
|
-
- vendor/local/
|
976
|
-
- vendor/local/
|
977
|
-
- vendor/local/
|
978
|
-
- vendor/local/
|
979
|
-
- vendor/local/
|
980
|
-
- vendor/local/
|
981
|
-
- vendor/local/
|
982
|
-
- vendor/local/
|
983
|
-
- vendor/local/
|
984
|
-
- vendor/local/
|
985
|
-
- vendor/local/
|
986
|
-
- vendor/local/
|
987
|
-
- vendor/local/
|
988
|
-
- vendor/local/
|
989
|
-
- vendor/local/
|
990
|
-
- vendor/local/
|
991
|
-
- vendor/local/
|
992
|
-
- vendor/local/
|
993
|
-
- vendor/local/
|
994
|
-
- vendor/local/
|
995
|
-
- vendor/local/
|
996
|
-
- vendor/local/
|
997
|
-
- vendor/local/
|
998
|
-
- vendor/local/
|
999
|
-
- vendor/local/share/groonga/images/logo/nroonga-logo.svg
|
1000
|
-
- vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.svg
|
1001
|
-
- vendor/local/share/groonga/images/logo/nroonga-icon-foreground-white.svg
|
1002
|
-
- vendor/local/share/groonga/images/logo/mroonga-icon.png
|
1003
|
-
- vendor/local/share/groonga/images/logo/mroonga-logo-foreground-white.svg
|
1004
|
-
- vendor/local/share/groonga/images/logo/nroonga-logo.png
|
1005
|
-
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner.png
|
1006
|
-
- vendor/local/share/groonga/images/logo/rroonga-logo-foreground-white.svg
|
1007
|
-
- vendor/local/share/groonga/images/logo/mroonga-icon.svg
|
1008
|
-
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-bar.svg
|
1009
|
-
- vendor/local/share/groonga/images/logo/groonga-logo.png
|
1010
|
-
- vendor/local/share/groonga/images/logo/nroonga-icon-full-size.png
|
1011
|
-
- vendor/local/share/groonga/images/logo/groonga-powered-by-banner-foreground-white.png
|
1012
|
-
- vendor/local/share/groonga/images/logo/groonga-icon-foreground-white.png
|
1013
|
-
- vendor/local/share/groonga/images/logo/groonga-icon.svg
|
1014
|
-
- vendor/local/share/groonga/images/logo/groonga-icon-full-size.png
|
1015
|
-
- vendor/local/share/groonga/images/logo/rroonga-icon.svg
|
1016
|
-
- vendor/local/share/groonga/images/logo/mroonga-logo.png
|
1017
|
-
- vendor/local/share/groonga/images/logo/rroonga-logo.png
|
1018
|
-
- vendor/local/share/groonga/images/logo/groonga-logo-foreground-white.svg
|
1019
|
-
- vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh
|
1020
|
-
- vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb
|
1021
|
-
- vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
|
1022
|
-
- vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh
|
1023
|
-
- vendor/local/share/groonga/examples/dictionary/html/index.html
|
1024
|
-
- vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js
|
1025
|
-
- vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js
|
1026
|
-
- vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js
|
1027
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css
|
1028
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
|
1029
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png
|
1030
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png
|
1031
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
|
1032
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png
|
1033
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
|
1034
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
|
1035
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png
|
1036
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png
|
1037
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
|
1038
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
1039
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
|
1040
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
|
1041
|
-
- vendor/local/share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css
|
1042
|
-
- vendor/local/share/groonga/examples/dictionary/init-db.sh
|
1043
|
-
- vendor/local/share/groonga/examples/dictionary/readme.txt
|
1044
|
-
- vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb
|
1045
|
-
- vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh
|
1046
|
-
- vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb
|
1047
|
-
- vendor/local/share/groonga/html/admin/images/groonga.svg
|
1048
|
-
- vendor/local/share/groonga/html/admin/images/loading.gif
|
1049
|
-
- vendor/local/share/groonga/html/admin/images/groonga.png
|
1050
|
-
- vendor/local/share/groonga/html/admin/favicon.ico
|
1051
|
-
- vendor/local/share/groonga/html/admin/favicon.png
|
1052
|
-
- vendor/local/share/groonga/html/admin/index.html
|
1053
|
-
- vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js
|
1054
|
-
- vendor/local/share/groonga/html/admin/js/groonga-admin.js
|
1055
|
-
- vendor/local/share/groonga/html/admin/js/jquery-1.7.2.min.js
|
1056
|
-
- vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt
|
1057
|
-
- vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js
|
1058
|
-
- vendor/local/share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js
|
1059
|
-
- vendor/local/share/groonga/html/admin/css/groonga-admin.css
|
1060
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
|
1061
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
|
1062
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
|
1063
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
|
1064
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_6da8d5_256x240.png
|
1065
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_cd0a0a_256x240.png
|
1066
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
|
1067
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
|
1068
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_2e83ff_256x240.png
|
1069
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
|
1070
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
|
1071
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
|
1072
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
|
1073
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
|
1074
|
-
- vendor/local/share/groonga/html/admin/css/redmond/images/ui-icons_469bdd_256x240.png
|
1075
|
-
- vendor/local/share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
|
1076
|
-
- vendor/local/share/groonga/html/admin/favicon.svg
|
1359
|
+
- vendor/local/share/man/man1/groonga.1
|
1360
|
+
- vendor/local/share/man/man1/mecab.1
|
1361
|
+
- vendor/local/bin/libstdc++-6.dll
|
1362
|
+
- vendor/local/bin/groonga-benchmark.exe
|
1363
|
+
- vendor/local/bin/mecab-config
|
1364
|
+
- vendor/local/bin/mecabrc
|
1365
|
+
- vendor/local/bin/libmecab-1.dll
|
1366
|
+
- vendor/local/bin/libmsgpack-3.dll
|
1367
|
+
- vendor/local/bin/libgcc_s_sjlj-1.dll
|
1368
|
+
- vendor/local/bin/groonga.exe
|
1369
|
+
- vendor/local/bin/libmsgpackc-2.dll
|
1370
|
+
- vendor/local/bin/libgroonga-0.dll
|
1371
|
+
- vendor/local/bin/mecab.exe
|
1372
|
+
- vendor/local/lib/libmsgpack.a
|
1373
|
+
- vendor/local/lib/libgroonga.la
|
1374
|
+
- vendor/local/lib/groonga/plugins/suggest/suggest.dll
|
1375
|
+
- vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
|
1376
|
+
- vendor/local/lib/groonga/plugins/suggest/suggest.a
|
1377
|
+
- vendor/local/lib/groonga/plugins/suggest/suggest.la
|
1378
|
+
- vendor/local/lib/groonga/plugins/tokenizers/mecab.a
|
1379
|
+
- vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a
|
1380
|
+
- vendor/local/lib/groonga/plugins/tokenizers/mecab.dll
|
1381
|
+
- vendor/local/lib/groonga/plugins/tokenizers/mecab.la
|
1382
|
+
- vendor/local/lib/groonga/plugins/table/table.dll.a
|
1383
|
+
- vendor/local/lib/groonga/plugins/table/table.la
|
1384
|
+
- vendor/local/lib/groonga/plugins/table/table.a
|
1385
|
+
- vendor/local/lib/groonga/plugins/table/table.dll
|
1386
|
+
- vendor/local/lib/libgroonga.a
|
1387
|
+
- vendor/local/lib/libmsgpackc.dll.a
|
1388
|
+
- vendor/local/lib/libmecab.dll.a
|
1077
1389
|
- vendor/local/lib/libmecab.la
|
1078
1390
|
- vendor/local/lib/libmsgpackc.la
|
1079
|
-
- vendor/local/lib/libgroonga.la
|
1080
|
-
- vendor/local/lib/libmsgpack.dll.a
|
1081
1391
|
- vendor/local/lib/libgroonga.dll.a
|
1082
|
-
- vendor/local/lib/pkgconfig/groonga.pc
|
1083
|
-
- vendor/local/lib/libmecab.a
|
1084
1392
|
- vendor/local/lib/libmsgpackc.a
|
1085
|
-
- vendor/local/lib/libmsgpackc.dll.a
|
1086
|
-
- vendor/local/lib/libgroonga.a
|
1087
|
-
- vendor/local/lib/libmsgpack.a
|
1088
1393
|
- vendor/local/lib/libmsgpack.la
|
1089
|
-
- vendor/local/lib/libmecab.
|
1090
|
-
- vendor/local/lib/
|
1091
|
-
- vendor/local/lib/groonga
|
1092
|
-
- vendor/local/
|
1093
|
-
- vendor/local/
|
1094
|
-
- vendor/local/lib/groonga/plugins/suggest/suggest.dll.a
|
1095
|
-
- vendor/local/lib/groonga/plugins/suggest/suggest.dll
|
1096
|
-
- vendor/local/lib/groonga/plugins/suggest/suggest.a
|
1097
|
-
- vendor/local/lib/groonga/plugins/suggest/suggest.la
|
1098
|
-
- vendor/local/libexec/mecab/mecab-system-eval.exe
|
1099
|
-
- vendor/local/libexec/mecab/mecab-cost-train.exe
|
1100
|
-
- vendor/local/libexec/mecab/mecab-dict-index.exe
|
1394
|
+
- vendor/local/lib/libmecab.a
|
1395
|
+
- vendor/local/lib/libmsgpack.dll.a
|
1396
|
+
- vendor/local/lib/pkgconfig/groonga.pc
|
1397
|
+
- vendor/local/etc/groonga/groonga.conf
|
1398
|
+
- vendor/local/etc/groonga/httpd/groonga-httpd.conf
|
1101
1399
|
- vendor/local/libexec/mecab/mecab-test-gen.exe
|
1400
|
+
- vendor/local/libexec/mecab/mecab-dict-index.exe
|
1401
|
+
- vendor/local/libexec/mecab/mecab-cost-train.exe
|
1402
|
+
- vendor/local/libexec/mecab/mecab-system-eval.exe
|
1102
1403
|
- vendor/local/libexec/mecab/mecab-dict-gen.exe
|
1103
|
-
- vendor/local/include/msgpack.hpp
|
1104
1404
|
- vendor/local/include/mecab.h
|
1405
|
+
- vendor/local/include/groonga/groonga/tokenizer.h
|
1406
|
+
- vendor/local/include/groonga/groonga/plugin.h
|
1407
|
+
- vendor/local/include/groonga/groonga.h
|
1408
|
+
- vendor/local/include/msgpack.hpp
|
1105
1409
|
- vendor/local/include/msgpack.h
|
1106
|
-
- vendor/local/include/msgpack/
|
1107
|
-
- vendor/local/include/msgpack/
|
1108
|
-
- vendor/local/include/msgpack/type
|
1109
|
-
- vendor/local/include/msgpack/
|
1410
|
+
- vendor/local/include/msgpack/zbuffer.hpp
|
1411
|
+
- vendor/local/include/msgpack/zone.hpp
|
1412
|
+
- vendor/local/include/msgpack/type.hpp
|
1413
|
+
- vendor/local/include/msgpack/pack_define.h
|
1414
|
+
- vendor/local/include/msgpack/pack_template.h
|
1415
|
+
- vendor/local/include/msgpack/sbuffer.hpp
|
1416
|
+
- vendor/local/include/msgpack/unpack.hpp
|
1417
|
+
- vendor/local/include/msgpack/zone.h
|
1418
|
+
- vendor/local/include/msgpack/vrefbuffer.h
|
1419
|
+
- vendor/local/include/msgpack/pack.hpp
|
1420
|
+
- vendor/local/include/msgpack/version.h
|
1421
|
+
- vendor/local/include/msgpack/unpack_template.h
|
1422
|
+
- vendor/local/include/msgpack/object.hpp
|
1423
|
+
- vendor/local/include/msgpack/object.h
|
1424
|
+
- vendor/local/include/msgpack/type/define.hpp
|
1110
1425
|
- vendor/local/include/msgpack/type/bool.hpp
|
1111
1426
|
- vendor/local/include/msgpack/type/tuple.hpp
|
1112
|
-
- vendor/local/include/msgpack/type/string.hpp
|
1113
1427
|
- vendor/local/include/msgpack/type/raw.hpp
|
1114
|
-
- vendor/local/include/msgpack/type/set.hpp
|
1115
|
-
- vendor/local/include/msgpack/type/tr1/unordered_set.hpp
|
1116
|
-
- vendor/local/include/msgpack/type/tr1/unordered_map.hpp
|
1117
1428
|
- vendor/local/include/msgpack/type/deque.hpp
|
1118
|
-
- vendor/local/include/msgpack/type/int.hpp
|
1119
1429
|
- vendor/local/include/msgpack/type/float.hpp
|
1120
|
-
- vendor/local/include/msgpack/type/
|
1430
|
+
- vendor/local/include/msgpack/type/list.hpp
|
1431
|
+
- vendor/local/include/msgpack/type/map.hpp
|
1121
1432
|
- vendor/local/include/msgpack/type/pair.hpp
|
1433
|
+
- vendor/local/include/msgpack/type/tr1/unordered_set.hpp
|
1434
|
+
- vendor/local/include/msgpack/type/tr1/unordered_map.hpp
|
1435
|
+
- vendor/local/include/msgpack/type/set.hpp
|
1436
|
+
- vendor/local/include/msgpack/type/int.hpp
|
1437
|
+
- vendor/local/include/msgpack/type/fixint.hpp
|
1438
|
+
- vendor/local/include/msgpack/type/vector.hpp
|
1122
1439
|
- vendor/local/include/msgpack/type/nil.hpp
|
1123
|
-
- vendor/local/include/msgpack/type/
|
1124
|
-
- vendor/local/include/msgpack/zbuffer.h
|
1440
|
+
- vendor/local/include/msgpack/type/string.hpp
|
1125
1441
|
- vendor/local/include/msgpack/unpack.h
|
1126
|
-
- vendor/local/include/msgpack/unpack.hpp
|
1127
|
-
- vendor/local/include/msgpack/object.h
|
1128
|
-
- vendor/local/include/msgpack/type.hpp
|
1129
|
-
- vendor/local/include/msgpack/zone.h
|
1130
|
-
- vendor/local/include/msgpack/unpack_template.h
|
1131
1442
|
- vendor/local/include/msgpack/unpack_define.h
|
1132
|
-
- vendor/local/include/msgpack/
|
1443
|
+
- vendor/local/include/msgpack/sbuffer.h
|
1133
1444
|
- vendor/local/include/msgpack/vrefbuffer.hpp
|
1134
|
-
- vendor/local/include/msgpack/pack.
|
1135
|
-
- vendor/local/include/msgpack/sbuffer.hpp
|
1136
|
-
- vendor/local/include/msgpack/pack_define.h
|
1137
|
-
- vendor/local/include/msgpack/version.h
|
1138
|
-
- vendor/local/include/msgpack/vrefbuffer.h
|
1139
|
-
- vendor/local/include/msgpack/object.hpp
|
1445
|
+
- vendor/local/include/msgpack/pack.h
|
1140
1446
|
- vendor/local/include/msgpack/sysdep.h
|
1141
|
-
- vendor/local/include/msgpack/zbuffer.
|
1142
|
-
- vendor/local/include/msgpack/sbuffer.h
|
1143
|
-
- vendor/local/include/msgpack/zone.hpp
|
1144
|
-
- vendor/local/include/groonga/groonga.h
|
1145
|
-
- vendor/local/include/groonga/groonga/plugin.h
|
1146
|
-
- vendor/local/include/groonga/groonga/tokenizer.h
|
1147
|
-
- vendor/local/etc/groonga/groonga.conf
|
1447
|
+
- vendor/local/include/msgpack/zbuffer.h
|
1148
1448
|
homepage: http://groonga.rubyforge.org/#about-rroonga
|
1149
1449
|
licenses:
|
1150
1450
|
- LGPLv2
|
@@ -1174,9 +1474,55 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1174
1474
|
requirements: []
|
1175
1475
|
|
1176
1476
|
rubyforge_project: groonga
|
1177
|
-
rubygems_version: 1.8.
|
1477
|
+
rubygems_version: 1.8.24
|
1178
1478
|
signing_key:
|
1179
1479
|
specification_version: 3
|
1180
1480
|
summary: Ruby bindings for groonga that provide full text search and column store features.
|
1181
|
-
test_files:
|
1182
|
-
|
1481
|
+
test_files:
|
1482
|
+
- test/test-remote.rb
|
1483
|
+
- test/test-accessor.rb
|
1484
|
+
- test/test-database-dumper.rb
|
1485
|
+
- test/test-index-column.rb
|
1486
|
+
- test/groonga-test-utils.rb
|
1487
|
+
- test/test-pagination.rb
|
1488
|
+
- test/test-table.rb
|
1489
|
+
- test/test-variable-size-column.rb
|
1490
|
+
- test/test-plugin.rb
|
1491
|
+
- test/test-hash.rb
|
1492
|
+
- test/test-table-traverse.rb
|
1493
|
+
- test/test-encoding.rb
|
1494
|
+
- test/test-schema-create-table.rb
|
1495
|
+
- test/test-type.rb
|
1496
|
+
- test/test-database.rb
|
1497
|
+
- test/test-variable.rb
|
1498
|
+
- test/test-table-select.rb
|
1499
|
+
- test/test-patricia-trie.rb
|
1500
|
+
- test/test-geo-point.rb
|
1501
|
+
- test/test-expression-builder.rb
|
1502
|
+
- test/test-logger.rb
|
1503
|
+
- test/test-array.rb
|
1504
|
+
- test/test-record.rb
|
1505
|
+
- test/test-column.rb
|
1506
|
+
- test/test-fix-size-column.rb
|
1507
|
+
- test/run-test.rb
|
1508
|
+
- test/test-procedure.rb
|
1509
|
+
- test/test-table-dumper.rb
|
1510
|
+
- test/test-schema.rb
|
1511
|
+
- test/test-view.rb
|
1512
|
+
- test/test-table-select-mecab.rb
|
1513
|
+
- test/test-command-select.rb
|
1514
|
+
- test/test-table-select-normalize.rb
|
1515
|
+
- test/test-expression.rb
|
1516
|
+
- test/test-vector-column.rb
|
1517
|
+
- test/test-version.rb
|
1518
|
+
- test/test-schema-view.rb
|
1519
|
+
- test/test-index-cursor.rb
|
1520
|
+
- test/test-double-array-trie.rb
|
1521
|
+
- test/test-exception.rb
|
1522
|
+
- test/test-schema-dumper.rb
|
1523
|
+
- test/test-schema-type.rb
|
1524
|
+
- test/test-table-select-weight.rb
|
1525
|
+
- test/test-gqtp.rb
|
1526
|
+
- test/test-context.rb
|
1527
|
+
- test/test-snippet.rb
|
1528
|
+
- test/test-table-offset-and-limit.rb
|