rroonga 4.0.1-x86-mingw32 → 4.0.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/doc/text/news.textile +25 -0
 - data/ext/groonga/extconf.rb +2 -0
 - data/ext/groonga/rb-grn-index-column.c +91 -0
 - data/ext/groonga/rb-grn-object.c +3 -9
 - data/ext/groonga/rb-grn-table.c +18 -24
 - data/ext/groonga/rb-grn.h +1 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +1 -1
 - data/lib/groonga/patricia-trie.rb +4 -1
 - data/lib/groonga/schema.rb +10 -4
 - data/rroonga-build.rb +1 -1
 - data/test/test-context.rb +8 -8
 - data/test/test-database-dumper.rb +6 -6
 - data/test/test-index-column.rb +9 -4
 - data/test/test-schema-dumper.rb +6 -6
 - data/test/test-schema.rb +32 -3
 - 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 +2 -2
 - data/vendor/local/include/groonga/groonga/plugin.h +19 -1
 - data/vendor/local/include/groonga/groonga.h +2 -1
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +3 -3
 - 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 +3 -3
 - 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 +1 -1
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +202 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +30 -151
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/en/html/install.html +10 -13
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/news.html +286 -209
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +166 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/{pseudo_column.html → columns/pseudo.html} +25 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +284 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +221 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +155 -95
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +254 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +43 -18
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +67 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/reference.html +72 -74
 - 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 +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +19 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +6 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/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/characteristic.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +75 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +10 -11
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +17 -149
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +73 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +26 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +1 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/{pseudo_column.txt → columns/pseudo.txt} +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +165 -67
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +65 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +28 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +38 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +17 -0
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +65 -65
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +102 -102
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +16 -16
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +203 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +12 -11
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +61 -60
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +53 -19
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/index.html +83 -87
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +12 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +27 -137
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/install.html +7 -10
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/news.html +292 -210
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +22 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +167 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +36 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/{pseudo_column.html → columns/pseudo.html} +26 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +296 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +11 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +225 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +23 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +156 -100
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +31 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +47 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +29 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +40 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +258 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +55 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +48 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +38 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +48 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +44 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +30 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +62 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +138 -138
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +35 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +72 -74
 - 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 +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +19 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +0 -1
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -8
 - data/vendor/local/share/man/ja/man1/groonga.1 +1032 -585
 - data/vendor/local/share/man/man1/groonga.1 +1051 -607
 - 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 +289 -278
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/document.txt +0 -43
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +0 -184
 - data/vendor/local/share/groonga/html/admin/js/jquery.json-2.2.min.js +0 -31
 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            /* -*- c-basic-offset: 2 -*- */
         
     | 
| 
       2 
2 
     | 
    
         
             
            /*
         
     | 
| 
       3 
     | 
    
         
            -
              Copyright(C) 2010- 
     | 
| 
      
 3 
     | 
    
         
            +
              Copyright(C) 2010-2014 Brazil
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
5 
     | 
    
         
             
              This library is free software; you can redistribute it and/or
         
     | 
| 
       6 
6 
     | 
    
         
             
              modify it under the terms of the GNU Lesser General Public
         
     | 
| 
         @@ -170,6 +170,24 @@ GRN_API void grn_plugin_mutex_unlock(grn_ctx *ctx, grn_plugin_mutex *mutex); 
     | 
|
| 
       170 
170 
     | 
    
         
             
            GRN_API grn_obj *grn_plugin_proc_alloc(grn_ctx *ctx, grn_user_data *user_data,
         
     | 
| 
       171 
171 
     | 
    
         
             
                                                   grn_id domain, grn_obj_flags flags);
         
     | 
| 
       172 
172 
     | 
    
         | 
| 
      
 173 
     | 
    
         
            +
            /*
         
     | 
| 
      
 174 
     | 
    
         
            +
              grn_plugin_proc_get_var() gets a variable from user_data by name.
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
              If `name_size` is negative, `name` must be
         
     | 
| 
      
 177 
     | 
    
         
            +
              NUL-terminated. `name_size` is computed by `strlen(name)` for the case.
         
     | 
| 
      
 178 
     | 
    
         
            +
            */
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
            GRN_API grn_obj *grn_plugin_proc_get_var(grn_ctx *ctx, grn_user_data *user_data,
         
     | 
| 
      
 181 
     | 
    
         
            +
                                                     const char *name, int name_size);
         
     | 
| 
      
 182 
     | 
    
         
            +
             
     | 
| 
      
 183 
     | 
    
         
            +
            /*
         
     | 
| 
      
 184 
     | 
    
         
            +
              grn_plugin_proc_get_var_by_offset() gets a variable from user_data by offset.
         
     | 
| 
      
 185 
     | 
    
         
            +
            */
         
     | 
| 
      
 186 
     | 
    
         
            +
             
     | 
| 
      
 187 
     | 
    
         
            +
            GRN_API grn_obj *grn_plugin_proc_get_var_by_offset(grn_ctx *ctx,
         
     | 
| 
      
 188 
     | 
    
         
            +
                                                               grn_user_data *user_data,
         
     | 
| 
      
 189 
     | 
    
         
            +
                                                               unsigned int offset);
         
     | 
| 
      
 190 
     | 
    
         
            +
             
     | 
| 
       173 
191 
     | 
    
         
             
            /*
         
     | 
| 
       174 
192 
     | 
    
         
             
              grn_plugin_win32_base_dir() returns the groonga install directory.
         
     | 
| 
       175 
193 
     | 
    
         
             
              The install directory is computed from the directory that has
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # tsv.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -17,7 +17,7 @@ old_library='tsv.a' 
     | 
|
| 
       17 
17 
     | 
    
         
             
            inherited_linker_flags=''
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            # Libraries that this one depends upon.
         
     | 
| 
       20 
     | 
    
         
            -
            dependency_libs=' /home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            dependency_libs=' /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            # Names of additional weak libraries provided by this library
         
     | 
| 
       23 
23 
     | 
    
         
             
            weak_library_names=''
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/query_expanders'
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # suggest.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -17,7 +17,7 @@ old_library='suggest.a' 
     | 
|
| 
       17 
17 
     | 
    
         
             
            inherited_linker_flags=''
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            # Libraries that this one depends upon.
         
     | 
| 
       20 
     | 
    
         
            -
            dependency_libs=' /home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            dependency_libs=' /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib -lws2_32 /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la'
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            # Names of additional weak libraries provided by this library
         
     | 
| 
       23 
23 
     | 
    
         
             
            weak_library_names=''
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/suggest'
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # table.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -17,7 +17,7 @@ old_library='table.a' 
     | 
|
| 
       17 
17 
     | 
    
         
             
            inherited_linker_flags=''
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            # Libraries that this one depends upon.
         
     | 
| 
       20 
     | 
    
         
            -
            dependency_libs=' /home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            dependency_libs=' /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib -lws2_32 /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la'
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            # Names of additional weak libraries provided by this library
         
     | 
| 
       23 
23 
     | 
    
         
             
            weak_library_names=''
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/table'
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # mecab.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -17,7 +17,7 @@ old_library='mecab.a' 
     | 
|
| 
       17 
17 
     | 
    
         
             
            inherited_linker_flags=''
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            # Libraries that this one depends upon.
         
     | 
| 
       20 
     | 
    
         
            -
            dependency_libs=' -L/home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            dependency_libs=' -L/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmecab.la /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            # Names of additional weak libraries provided by this library
         
     | 
| 
       23 
23 
     | 
    
         
             
            weak_library_names=''
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/tokenizers'
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # libgroonga.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.2
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -17,7 +17,7 @@ old_library='libgroonga.a' 
     | 
|
| 
       17 
17 
     | 
    
         
             
            inherited_linker_flags=''
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            # Libraries that this one depends upon.
         
     | 
| 
       20 
     | 
    
         
            -
            dependency_libs=' -L/home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            dependency_libs=' -L/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib /home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            # Names of additional weak libraries provided by this library
         
     | 
| 
       23 
23 
     | 
    
         
             
            weak_library_names=''
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib'
         
     | 
    
        data/vendor/local/lib/libmecab.a
    CHANGED
    
    | 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # libmsgpack.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.7
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib'
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -1,5 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # libmsgpackc.la - a libtool library file
         
     | 
| 
       2 
     | 
    
         
            -
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1. 
     | 
| 
      
 2 
     | 
    
         
            +
            # Generated by libtool (GNU libtool) 2.4.2 Debian-2.4.2-1.7
         
     | 
| 
       3 
3 
     | 
    
         
             
            #
         
     | 
| 
       4 
4 
     | 
    
         
             
            # Please DO NOT delete this file!
         
     | 
| 
       5 
5 
     | 
    
         
             
            # It is necessary for linking the library.
         
     | 
| 
         @@ -38,4 +38,4 @@ dlopen='' 
     | 
|
| 
       38 
38 
     | 
    
         
             
            dlpreopen=''
         
     | 
| 
       39 
39 
     | 
    
         | 
| 
       40 
40 
     | 
    
         
             
            # Directory that this library needs to be installed in:
         
     | 
| 
       41 
     | 
    
         
            -
            libdir='/home/ 
     | 
| 
      
 41 
     | 
    
         
            +
            libdir='/home/kou/work/c/groonga.clean/packages/windows/dist-x86/lib'
         
     | 
| 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            prefix=/home/ 
     | 
| 
      
 1 
     | 
    
         
            +
            prefix=/home/kou/work/c/groonga.clean/packages/windows/dist-x86
         
     | 
| 
       2 
2 
     | 
    
         
             
            exec_prefix=${prefix}
         
     | 
| 
       3 
3 
     | 
    
         
             
            bindir=${exec_prefix}/bin
         
     | 
| 
       4 
4 
     | 
    
         
             
            sbindir=${exec_prefix}/sbin
         
     | 
| 
         @@ -11,10 +11,10 @@ pluginsdir=${libdir}/groonga/plugins 
     | 
|
| 
       11 
11 
     | 
    
         
             
            groonga=${bindir}/groonga.exe
         
     | 
| 
       12 
12 
     | 
    
         
             
            groonga_httpd=${sbindir}/groonga-httpd.exe
         
     | 
| 
       13 
13 
     | 
    
         
             
            groonga_suggest_create_dataset=${bindir}/groonga-suggest-create-dataset.exe
         
     | 
| 
       14 
     | 
    
         
            -
            groonga_version=4.0. 
     | 
| 
      
 14 
     | 
    
         
            +
            groonga_version=4.0.2
         
     | 
| 
       15 
15 
     | 
    
         | 
| 
       16 
16 
     | 
    
         
             
            Name: Groonga
         
     | 
| 
       17 
17 
     | 
    
         
             
            Description: An Embeddable Fulltext Search Engine
         
     | 
| 
       18 
     | 
    
         
            -
            Version: 4.0. 
     | 
| 
      
 18 
     | 
    
         
            +
            Version: 4.0.2
         
     | 
| 
       19 
19 
     | 
    
         
             
            Libs: -L${libdir} -lgroonga
         
     | 
| 
       20 
20 
     | 
    
         
             
            Cflags: -I${includedir}/groonga
         
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -17,7 +17,7 @@ 
     | 
|
| 
       17 
17 
     | 
    
         
             
            # License along with this library; if not, write to the Free Software
         
     | 
| 
       18 
18 
     | 
    
         
             
            # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
     | 
    
         
            -
            prefix=/home/ 
     | 
| 
      
 20 
     | 
    
         
            +
            prefix=/home/kou/work/c/groonga.clean/packages/windows/dist-x86
         
     | 
| 
       21 
21 
     | 
    
         | 
| 
       22 
22 
     | 
    
         
             
            SERVICE_NAME=groonga-httpd
         
     | 
| 
       23 
23 
     | 
    
         
             
            GROONGA_HTTPD=${SERVICE_NAME}
         
     | 
| 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # Sphinx build info version 1
         
     | 
| 
       2 
2 
     | 
    
         
             
            # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
         
     | 
| 
       3 
     | 
    
         
            -
            config:  
     | 
| 
      
 3 
     | 
    
         
            +
            config: 32813cd21447e4780f0542ffa231b9e8
         
     | 
| 
       4 
4 
     | 
    
         
             
            tags: 645f666f9bcd5a90fca523b33c5a78b7
         
     | 
| 
         @@ -64,7 +64,7 @@ Groonga server 
     | 
|
| 
       64 
64 
     | 
    
         | 
| 
       65 
65 
     | 
    
         
             
            Groonga provides a built-in server command which supports HTTP, the memcached binary protocol and the Groonga Query Transfer Protocol (GQTP). Also, a Groonga server supports query caching, which significantly reduces response time for repeated read queries. Using this command, Groonga is available even on a server that does not allow you to install new libraries.
         
     | 
| 
       66 
66 
     | 
    
         | 
| 
       67 
     | 
    
         
            -
             
     | 
| 
      
 67 
     | 
    
         
            +
            Mroonga storage engine
         
     | 
| 
       68 
68 
     | 
    
         
             
            ----------------------
         
     | 
| 
       69 
69 
     | 
    
         | 
| 
       70 
     | 
    
         
            -
            Groonga works not only as an independent column-oriented DBMS but also as storage engines of well-known DBMSs. For example, ` 
     | 
| 
      
 70 
     | 
    
         
            +
            Groonga works not only as an independent column-oriented DBMS but also as storage engines of well-known DBMSs. For example, `Mroonga <http://mroonga.org/>`_ is a MySQL pluggable storage engine using Groonga. By using Mroonga, you can use Groonga for column-oriented storage and full text search. A combination of a built-in storage engine, MyISAM or InnoDB, and a Groonga-based full text search engine is also available. All the combinations have good and bad points and the best one depends on the application. See `related projects <http://groonga.org/related-projects.html>`_ for details.
         
     | 
    
        data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt
    ADDED
    
    | 
         @@ -0,0 +1,75 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .. -*- rst -*-
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            .. highlightlang:: none
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Introduction
         
     | 
| 
      
 6 
     | 
    
         
            +
            ============
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            This documentation describes about how to write, generate and manage
         
     | 
| 
      
 9 
     | 
    
         
            +
            Groonga documentation.
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            Install depended softwares
         
     | 
| 
      
 12 
     | 
    
         
            +
            --------------------------
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            Groonga uses Sphinx_ as documentation tool. Groonga requires newer
         
     | 
| 
      
 15 
     | 
    
         
            +
            Sphinx. So Groonga clones the latest Sphinx from Sphinx repository
         
     | 
| 
      
 16 
     | 
    
         
            +
            automatically. You need only Mercurial_, Docutils_ and Jinja_.
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            .. _Sphinx: http://sphinx.pocoo.org/
         
     | 
| 
      
 19 
     | 
    
         
            +
            .. _Mercurial: http://mercurial.selenic.com/
         
     | 
| 
      
 20 
     | 
    
         
            +
            .. _Docutils: http://docutils.sourceforge.net/
         
     | 
| 
      
 21 
     | 
    
         
            +
            .. _Jinja: http://jinja.pocoo.org/
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            Here are command lines to install needed softwares.
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            Debian GNU/Linux, Ubuntu::
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
              % sudo apt-get install -V -y mercurial python-docutils python-jinja2
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            CentOS, Fedora::
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
              % sudo yum install -y mercurial python-docutils python-jinja2
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            OS X::
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
              % brew install mercurial
         
     | 
| 
      
 36 
     | 
    
         
            +
              % pip install docutils
         
     | 
| 
      
 37 
     | 
    
         
            +
              % pip install jinja
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            Run ``configure`` with ``--enable-document``
         
     | 
| 
      
 40 
     | 
    
         
            +
            --------------------------------------------
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            Groonga disables documentation generation by default. You need to
         
     | 
| 
      
 43 
     | 
    
         
            +
            enable it explicitly by adding ``--enable-document`` option to
         
     | 
| 
      
 44 
     | 
    
         
            +
            ``configure``::
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
              % ./configure --enable-document
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            Now, your Groonga build is documentation ready.
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
            Generate HTML
         
     | 
| 
      
 51 
     | 
    
         
            +
            -------------
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            You can generate HTML by the following command::
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
              % make -C doc html
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
            You can find generated HTML documentation at ``doc/locale/en/html/``.
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
            Update
         
     | 
| 
      
 60 
     | 
    
         
            +
            ------
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
            You can find sources of documentation at ``doc/source/``. The sources
         
     | 
| 
      
 63 
     | 
    
         
            +
            should be written in English. See :doc:`i18n` about how to translate
         
     | 
| 
      
 64 
     | 
    
         
            +
            documentation.
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            You can update the target file when you update the existing
         
     | 
| 
      
 67 
     | 
    
         
            +
            documentation file.
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            You need to update file list after you add a new file, change file
         
     | 
| 
      
 70 
     | 
    
         
            +
            path and delete existing file. You can update file list by the
         
     | 
| 
      
 71 
     | 
    
         
            +
            following command::
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
              % make -C doc update-files
         
     | 
| 
      
 74 
     | 
    
         
            +
             
     | 
| 
      
 75 
     | 
    
         
            +
            The command updates ``doc/files.am``.
         
     | 
| 
         @@ -33,7 +33,7 @@ by Travis CI such as Ruby. You should use ``install`` otherwise. 
     | 
|
| 
       33 
33 
     | 
    
         
             
            Add the following ``before_install`` configuration to ``.travis.yml``::
         
     | 
| 
       34 
34 
     | 
    
         | 
| 
       35 
35 
     | 
    
         
             
              before_install:
         
     | 
| 
       36 
     | 
    
         
            -
                - curl https:// 
     | 
| 
      
 36 
     | 
    
         
            +
                - curl --silent --location https://github.com/groonga/groonga/raw/master/data/travis/setup.sh | sh
         
     | 
| 
       37 
37 
     | 
    
         | 
| 
       38 
38 
     | 
    
         
             
            If you need to use ``install`` hook instead of ``before_install``, you
         
     | 
| 
       39 
39 
     | 
    
         
             
            just substitute ``before_install:`` with ``install:``.
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            CentOS
         
     | 
| 
       6 
6 
     | 
    
         
             
            ======
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            This section describes how to install  
     | 
| 
      
 8 
     | 
    
         
            +
            This section describes how to install Groonga related RPM packages on
         
     | 
| 
       9 
9 
     | 
    
         
             
            CentOS. You can install them by ``yum``.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
            We distribute both 32-bit and 64-bit packages but we strongly
         
     | 
| 
         @@ -80,7 +80,7 @@ If you want to use that one, install groonga-normalizer-mysql package. 
     | 
|
| 
       80 
80 
     | 
    
         | 
| 
       81 
81 
     | 
    
         
             
            Install groonga-normalizer-mysql package::
         
     | 
| 
       82 
82 
     | 
    
         | 
| 
       83 
     | 
    
         
            -
              % sudo yum install -y  
     | 
| 
      
 83 
     | 
    
         
            +
              % sudo yum install -y groonga-normalizer-mysql
         
     | 
| 
       84 
84 
     | 
    
         | 
| 
       85 
85 
     | 
    
         
             
            CentOS 6
         
     | 
| 
       86 
86 
     | 
    
         
             
            --------
         
     | 
| 
         @@ -142,20 +142,20 @@ If you want to use that one, install groonga-normalizer-mysql package. 
     | 
|
| 
       142 
142 
     | 
    
         | 
| 
       143 
143 
     | 
    
         
             
            Install groonga-normalizer-mysql package::
         
     | 
| 
       144 
144 
     | 
    
         | 
| 
       145 
     | 
    
         
            -
              % sudo yum install -y  
     | 
| 
      
 145 
     | 
    
         
            +
              % sudo yum install -y groonga-normalizer-mysql
         
     | 
| 
       146 
146 
     | 
    
         | 
| 
       147 
147 
     | 
    
         
             
            Build from source
         
     | 
| 
       148 
148 
     | 
    
         
             
            -----------------
         
     | 
| 
       149 
149 
     | 
    
         | 
| 
       150 
     | 
    
         
            -
            Install required packages to build  
     | 
| 
      
 150 
     | 
    
         
            +
            Install required packages to build Groonga::
         
     | 
| 
       151 
151 
     | 
    
         | 
| 
       152 
152 
     | 
    
         
             
              % sudo yum install -y wget tar gcc-c++ make mecab-devel
         
     | 
| 
       153 
153 
     | 
    
         | 
| 
       154 
154 
     | 
    
         
             
            Download source::
         
     | 
| 
       155 
155 
     | 
    
         | 
| 
       156 
     | 
    
         
            -
              % wget http://packages.groonga.org/source/groonga/groonga-4.0. 
     | 
| 
       157 
     | 
    
         
            -
              % tar xvzf groonga-4.0. 
     | 
| 
       158 
     | 
    
         
            -
              % cd groonga-4.0. 
     | 
| 
      
 156 
     | 
    
         
            +
              % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
         
     | 
| 
      
 157 
     | 
    
         
            +
              % tar xvzf groonga-4.0.2.tar.gz
         
     | 
| 
      
 158 
     | 
    
         
            +
              % cd groonga-4.0.2
         
     | 
| 
       159 
159 
     | 
    
         | 
| 
       160 
160 
     | 
    
         
             
            Configure (see :ref:`source-configure` about ``configure`` options)::
         
     | 
| 
       161 
161 
     | 
    
         | 
| 
         @@ -29,16 +29,16 @@ Add the Groonga apt repository. 
     | 
|
| 
       29 
29 
     | 
    
         
             
            Install::
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
31 
     | 
    
         
             
              % sudo apt-get update
         
     | 
| 
       32 
     | 
    
         
            -
              % sudo apt-get -y --allow-unauthenticated  
     | 
| 
      
 32 
     | 
    
         
            +
              % sudo apt-get install -y --allow-unauthenticated groonga-keyring
         
     | 
| 
       33 
33 
     | 
    
         
             
              % sudo apt-get update
         
     | 
| 
       34 
     | 
    
         
            -
              % sudo apt-get -y  
     | 
| 
      
 34 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga
         
     | 
| 
       35 
35 
     | 
    
         | 
| 
       36 
36 
     | 
    
         
             
            If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
         
     | 
| 
       37 
37 
     | 
    
         
             
            tokenizer, install groonga-tokenizer-mecab package.
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
       39 
39 
     | 
    
         
             
            Install groonga-tokenizer-mecab package::
         
     | 
| 
       40 
40 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 41 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-tokenizer-mecab
         
     | 
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
            There is a package that provides `Munin
         
     | 
| 
       44 
44 
     | 
    
         
             
            <http://munin-monitoring.org/>`_ plugins. If you want to monitor
         
     | 
| 
         @@ -46,7 +46,7 @@ groonga status by Munin, install groonga-munin-plugins package. 
     | 
|
| 
       46 
46 
     | 
    
         | 
| 
       47 
47 
     | 
    
         
             
            Install groonga-munin-plugins package::
         
     | 
| 
       48 
48 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 49 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-munin-plugins
         
     | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
51 
     | 
    
         
             
            There is a package that provides MySQL compatible normalizer as
         
     | 
| 
       52 
52 
     | 
    
         
             
            groonga plugins.
         
     | 
| 
         @@ -54,7 +54,7 @@ If you want to use that one, install groonga-normalizer-mysql package. 
     | 
|
| 
       54 
54 
     | 
    
         | 
| 
       55 
55 
     | 
    
         
             
            Install groonga-normalizer-mysql package::
         
     | 
| 
       56 
56 
     | 
    
         | 
| 
       57 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 57 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-normalizer-mysql
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
       59 
59 
     | 
    
         
             
            jessie
         
     | 
| 
       60 
60 
     | 
    
         
             
            ------
         
     | 
| 
         @@ -69,16 +69,16 @@ Add the groonga apt repository. 
     | 
|
| 
       69 
69 
     | 
    
         
             
            Install::
         
     | 
| 
       70 
70 
     | 
    
         | 
| 
       71 
71 
     | 
    
         
             
              % sudo apt-get update
         
     | 
| 
       72 
     | 
    
         
            -
              % sudo apt-get -y --allow-unauthenticated  
     | 
| 
      
 72 
     | 
    
         
            +
              % sudo apt-get install -y --allow-unauthenticated groonga-keyring
         
     | 
| 
       73 
73 
     | 
    
         
             
              % sudo apt-get update
         
     | 
| 
       74 
     | 
    
         
            -
              % sudo apt-get -y  
     | 
| 
      
 74 
     | 
    
         
            +
              % sudo apt-get install -y groonga
         
     | 
| 
       75 
75 
     | 
    
         | 
| 
       76 
76 
     | 
    
         
             
            If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
         
     | 
| 
       77 
77 
     | 
    
         
             
            tokenizer, install groonga-tokenizer-mecab package.
         
     | 
| 
       78 
78 
     | 
    
         | 
| 
       79 
79 
     | 
    
         
             
            Install groonga-tokenizer-mecab package::
         
     | 
| 
       80 
80 
     | 
    
         | 
| 
       81 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 81 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-tokenizer-mecab
         
     | 
| 
       82 
82 
     | 
    
         | 
| 
       83 
83 
     | 
    
         
             
            There is a package that provides `Munin
         
     | 
| 
       84 
84 
     | 
    
         
             
            <http://munin-monitoring.org/>`_ plugins. If you want to monitor
         
     | 
| 
         @@ -86,7 +86,7 @@ groonga status by Munin, install groonga-munin-plugins package. 
     | 
|
| 
       86 
86 
     | 
    
         | 
| 
       87 
87 
     | 
    
         
             
            Install groonga-munin-plugins package::
         
     | 
| 
       88 
88 
     | 
    
         | 
| 
       89 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 89 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-munin-plugins
         
     | 
| 
       90 
90 
     | 
    
         | 
| 
       91 
91 
     | 
    
         
             
            There is a package that provides MySQL compatible normalizer as
         
     | 
| 
       92 
92 
     | 
    
         
             
            Groonga plugins.
         
     | 
| 
         @@ -94,7 +94,7 @@ If you want to use that one, install groonga-normalizer-mysql package. 
     | 
|
| 
       94 
94 
     | 
    
         | 
| 
       95 
95 
     | 
    
         
             
            Install groonga-normalizer-mysql package::
         
     | 
| 
       96 
96 
     | 
    
         | 
| 
       97 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 97 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-normalizer-mysql
         
     | 
| 
       98 
98 
     | 
    
         | 
| 
       99 
99 
     | 
    
         
             
            sid
         
     | 
| 
       100 
100 
     | 
    
         
             
            ---
         
     | 
| 
         @@ -108,17 +108,17 @@ Add the groonga apt repository. 
     | 
|
| 
       108 
108 
     | 
    
         | 
| 
       109 
109 
     | 
    
         
             
            Install::
         
     | 
| 
       110 
110 
     | 
    
         | 
| 
       111 
     | 
    
         
            -
              % sudo  
     | 
| 
       112 
     | 
    
         
            -
              % sudo  
     | 
| 
       113 
     | 
    
         
            -
              % sudo  
     | 
| 
       114 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 111 
     | 
    
         
            +
              % sudo apt-get update
         
     | 
| 
      
 112 
     | 
    
         
            +
              % sudo apt-get install -y --allow-unauthenticated groonga-keyring
         
     | 
| 
      
 113 
     | 
    
         
            +
              % sudo apt-get update
         
     | 
| 
      
 114 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga
         
     | 
| 
       115 
115 
     | 
    
         | 
| 
       116 
116 
     | 
    
         
             
            If you want to use `MeCab <http://mecab.sourceforge.net/>`_ as a
         
     | 
| 
       117 
117 
     | 
    
         
             
            tokenizer, install groonga-tokenizer-mecab package.
         
     | 
| 
       118 
118 
     | 
    
         | 
| 
       119 
119 
     | 
    
         
             
            Install groonga-tokenizer-mecab package::
         
     | 
| 
       120 
120 
     | 
    
         | 
| 
       121 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 121 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-tokenizer-mecab
         
     | 
| 
       122 
122 
     | 
    
         | 
| 
       123 
123 
     | 
    
         
             
            There is a package that provides `Munin
         
     | 
| 
       124 
124 
     | 
    
         
             
            <http://munin-monitoring.org/>`_ plugins. If you want to monitor
         
     | 
| 
         @@ -126,7 +126,7 @@ groonga status by Munin, install groonga-munin-plugins package. 
     | 
|
| 
       126 
126 
     | 
    
         | 
| 
       127 
127 
     | 
    
         
             
            Install groonga-munin-plugins package::
         
     | 
| 
       128 
128 
     | 
    
         | 
| 
       129 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 129 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-munin-plugins
         
     | 
| 
       130 
130 
     | 
    
         | 
| 
       131 
131 
     | 
    
         
             
            There is a package that provides MySQL compatible normalizer as
         
     | 
| 
       132 
132 
     | 
    
         
             
            groonga plugins.
         
     | 
| 
         @@ -134,20 +134,20 @@ If you want to use that one, install groonga-normalizer-mysql package. 
     | 
|
| 
       134 
134 
     | 
    
         | 
| 
       135 
135 
     | 
    
         
             
            Install groonga-normalizer-mysql package::
         
     | 
| 
       136 
136 
     | 
    
         | 
| 
       137 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 137 
     | 
    
         
            +
              % sudo apt-get install -y -V groonga-normalizer-mysql
         
     | 
| 
       138 
138 
     | 
    
         | 
| 
       139 
139 
     | 
    
         
             
            Build from source
         
     | 
| 
       140 
140 
     | 
    
         
             
            -----------------
         
     | 
| 
       141 
141 
     | 
    
         | 
| 
       142 
     | 
    
         
            -
            Install required packages to build  
     | 
| 
      
 142 
     | 
    
         
            +
            Install required packages to build Groonga::
         
     | 
| 
       143 
143 
     | 
    
         | 
| 
       144 
     | 
    
         
            -
              % sudo  
     | 
| 
      
 144 
     | 
    
         
            +
              % sudo apt-get install -y -V  wget tar build-essential zlib1g-dev liblzo2-dev libmsgpack-dev libzmq-dev libevent-dev libmecab-dev
         
     | 
| 
       145 
145 
     | 
    
         | 
| 
       146 
146 
     | 
    
         
             
            Download source::
         
     | 
| 
       147 
147 
     | 
    
         | 
| 
       148 
     | 
    
         
            -
              % wget http://packages.groonga.org/source/groonga/groonga-4.0. 
     | 
| 
       149 
     | 
    
         
            -
              % tar xvzf groonga-4.0. 
     | 
| 
       150 
     | 
    
         
            -
              % cd groonga-4.0. 
     | 
| 
      
 148 
     | 
    
         
            +
              % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
         
     | 
| 
      
 149 
     | 
    
         
            +
              % tar xvzf groonga-4.0.2.tar.gz
         
     | 
| 
      
 150 
     | 
    
         
            +
              % cd groonga-4.0.2
         
     | 
| 
       151 
151 
     | 
    
         | 
| 
       152 
152 
     | 
    
         
             
            Configure (see :ref:`source-configure` about ``configure`` options)::
         
     | 
| 
       153 
153 
     | 
    
         | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            Fedora
         
     | 
| 
       6 
6 
     | 
    
         
             
            ======
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            This section describes how to install  
     | 
| 
      
 8 
     | 
    
         
            +
            This section describes how to install Groonga related RPM packages on
         
     | 
| 
       9 
9 
     | 
    
         
             
            Fedora. You can install them by ``yum``.
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
11 
     | 
    
         
             
            .. note::
         
     | 
| 
         @@ -76,15 +76,15 @@ Install groonga-normalizer-mysql package:: 
     | 
|
| 
       76 
76 
     | 
    
         
             
            Build from source
         
     | 
| 
       77 
77 
     | 
    
         
             
            -----------------
         
     | 
| 
       78 
78 
     | 
    
         | 
| 
       79 
     | 
    
         
            -
            Install required packages to build  
     | 
| 
      
 79 
     | 
    
         
            +
            Install required packages to build Groonga::
         
     | 
| 
       80 
80 
     | 
    
         | 
| 
       81 
81 
     | 
    
         
             
              % sudo yum install -y wget tar gcc-c++ make mecab-devel libedit-devel
         
     | 
| 
       82 
82 
     | 
    
         | 
| 
       83 
83 
     | 
    
         
             
            Download source::
         
     | 
| 
       84 
84 
     | 
    
         | 
| 
       85 
     | 
    
         
            -
              % wget http://packages.groonga.org/source/groonga/groonga-4.0. 
     | 
| 
       86 
     | 
    
         
            -
              % tar xvzf groonga-4.0. 
     | 
| 
       87 
     | 
    
         
            -
              % cd groonga-4.0. 
     | 
| 
      
 85 
     | 
    
         
            +
              % wget http://packages.groonga.org/source/groonga/groonga-4.0.2.tar.gz
         
     | 
| 
      
 86 
     | 
    
         
            +
              % tar xvzf groonga-4.0.2.tar.gz
         
     | 
| 
      
 87 
     | 
    
         
            +
              % cd groonga-4.0.2
         
     | 
| 
       88 
88 
     | 
    
         | 
| 
       89 
89 
     | 
    
         
             
            Configure (see :ref:`source-configure` about ``configure`` options)::
         
     | 
| 
       90 
90 
     | 
    
         |