rroonga 2.0.8-x86-mingw32 → 2.1.0-x86-mingw32

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