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
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  #!/bin/sh
2
2
 
3
- prefix=/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86
3
+ prefix=/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86
4
4
  exec_prefix=${prefix}
5
5
  exec_prefix_set=no
6
6
 
@@ -107,7 +107,7 @@ while test $# -gt 0; do
107
107
  ;;
108
108
 
109
109
  --libexecdir)
110
- echo /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/libexec/mecab
110
+ echo /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/libexec/mecab
111
111
  ;;
112
112
 
113
113
  --sysconfdir)
Binary file
@@ -15,7 +15,7 @@ http {
15
15
  keepalive_timeout 65;
16
16
 
17
17
  # The default groonga database path.
18
- groonga_database /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/var/lib/groonga/db/db;
18
+ groonga_database /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/var/lib/groonga/db/db;
19
19
 
20
20
  # Create a groonga database automatically if the groonga database doesn't
21
21
  # exist.
@@ -37,7 +37,7 @@ http {
37
37
  }
38
38
 
39
39
  location / {
40
- root /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/share/groonga/html/admin;
40
+ root /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/share/groonga/html/admin;
41
41
  index index.html;
42
42
  }
43
43
 
@@ -112,7 +112,8 @@ typedef enum {
112
112
  GRN_TOO_LARGE_OFFSET = -68,
113
113
  GRN_TOO_SMALL_LIMIT = -69,
114
114
  GRN_CAS_ERROR = -70,
115
- GRN_UNSUPPORTED_COMMAND_VERSION = -71
115
+ GRN_UNSUPPORTED_COMMAND_VERSION = -71,
116
+ GRN_NORMALIZER_ERROR = -72,
116
117
  } grn_rc;
117
118
 
118
119
  GRN_API grn_rc grn_init(void);
@@ -563,12 +564,13 @@ GRN_API grn_obj *grn_ctx_db(grn_ctx *ctx);
563
564
  /**
564
565
  * grn_ctx_get:
565
566
  * @name: 検索しようとするオブジェクトの名前。
566
- * @name_size: @nameのbyte長。
567
+ * @name_size: The number of bytes of @name. If negative value is specified,
568
+ * @name is assumed that NULL-terminated string.
567
569
  *
568
570
  * ctxが使用するdbからnameに対応するオブジェクトを検索して返す。
569
571
  * nameに一致するオブジェクトが存在しなければNULLを返す。
570
572
  **/
571
- GRN_API grn_obj *grn_ctx_get(grn_ctx *ctx, const char *name, unsigned int name_size);
573
+ GRN_API grn_obj *grn_ctx_get(grn_ctx *ctx, const char *name, int name_size);
572
574
 
573
575
  /**
574
576
  * grn_ctx_at:
@@ -608,6 +610,12 @@ typedef enum {
608
610
  GRN_DB_TRIGRAM
609
611
  } grn_builtin_tokenizer;
610
612
 
613
+ typedef enum {
614
+ GRN_DB_NORMALIZER_AUTO = 96,
615
+ GRN_DB_NORMALIZER_NFKC51, /* Normalization Form KC for Unicode 5.1 */
616
+ GRN_DB_NORMALIZER_UCA /* Unicode Collation Algorithm */
617
+ } grn_builtin_normalizer;
618
+
611
619
  GRN_API grn_obj *grn_ctx_at(grn_ctx *ctx, grn_id id);
612
620
 
613
621
  /**
@@ -632,8 +640,8 @@ GRN_API const char *grn_plugin_get_suffix(void);
632
640
  /**
633
641
  * grn_proc_create:
634
642
  * @name: 作成するprocの名前。
635
- * @name_size: The number of bytes of @name. If -1 is specified, @name
636
- * is handled as a NULL terminated string.
643
+ * @name_size: The number of bytes of @name. If negative value is specified,
644
+ * @name is assumed that NULL-terminated string.
637
645
  * @type: procの種類。
638
646
  * @init: 初期化関数のポインタ
639
647
  * @next: 実処理関数のポインタ
@@ -656,7 +664,8 @@ typedef enum {
656
664
  GRN_PROC_TOKENIZER = 1,
657
665
  GRN_PROC_COMMAND,
658
666
  GRN_PROC_FUNCTION,
659
- GRN_PROC_HOOK
667
+ GRN_PROC_HOOK,
668
+ GRN_PROC_NORMALIZER
660
669
  } grn_proc_type;
661
670
 
662
671
  GRN_API grn_obj *grn_proc_create(grn_ctx *ctx,
@@ -1373,7 +1382,8 @@ typedef enum {
1373
1382
  GRN_INFO_PARTIAL_MATCH_THRESHOLD,
1374
1383
  GRN_INFO_II_SPLIT_THRESHOLD,
1375
1384
  GRN_INFO_SUPPORT_ZLIB,
1376
- GRN_INFO_SUPPORT_LZO
1385
+ GRN_INFO_SUPPORT_LZO,
1386
+ GRN_INFO_NORMALIZER
1377
1387
  } grn_info_type;
1378
1388
 
1379
1389
  /**
@@ -2069,23 +2079,24 @@ GRN_API grn_log_level grn_default_logger_get_max_level();
2069
2079
  }\
2070
2080
  } while (0)
2071
2081
 
2072
- typedef struct _grn_query_logger_info grn_query_logger_info;
2082
+ typedef struct _grn_query_logger grn_query_logger;
2073
2083
 
2074
- struct _grn_query_logger_info {
2084
+ struct _grn_query_logger {
2075
2085
  unsigned int flags;
2076
- grn_user_data *user_data;
2086
+ void *user_data;
2077
2087
  void (*log)(grn_ctx *ctx, unsigned int flag,
2078
2088
  const char *timestamp, const char *info, const char *message,
2079
- grn_user_data *user_data);
2080
- void (*reopen)(grn_ctx *ctx, grn_user_data *user_data);
2081
- void (*fin)(grn_ctx *ctx, grn_user_data *user_data);
2089
+ void *user_data);
2090
+ void (*reopen)(grn_ctx *ctx, void *user_data);
2091
+ void (*fin)(grn_ctx *ctx, void *user_data);
2082
2092
  };
2083
2093
 
2084
- GRN_API grn_rc grn_query_logger_info_set(grn_ctx *ctx, const grn_query_logger_info *info);
2094
+ GRN_API grn_rc grn_query_logger_set(grn_ctx *ctx, const grn_query_logger *logger);
2085
2095
 
2086
2096
  GRN_API void grn_query_logger_put(grn_ctx *ctx, unsigned int flag,
2087
2097
  const char *mark,
2088
2098
  const char *format, ...) GRN_ATTRIBUTE_PRINTF(4);
2099
+ GRN_API void grn_query_logger_reopen(grn_ctx *ctx);
2089
2100
 
2090
2101
  GRN_API grn_bool grn_query_logger_pass(grn_ctx *ctx, unsigned int flag);
2091
2102
 
@@ -0,0 +1,55 @@
1
+ /* -*- c-basic-offset: 2 -*- */
2
+ /*
3
+ Copyright(C) 2012 Brazil
4
+
5
+ This library is free software; you can redistribute it and/or
6
+ modify it under the terms of the GNU Lesser General Public
7
+ License version 2.1 as published by the Free Software Foundation.
8
+
9
+ This library is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ Lesser General Public License for more details.
13
+
14
+ You should have received a copy of the GNU Lesser General Public
15
+ License along with this library; if not, write to the Free Software
16
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
+ */
18
+ #ifndef GROONGA_NORMALIER_H
19
+ #define GROONGA_NORMALIER_H
20
+
21
+ #include <stddef.h>
22
+
23
+ #include <groonga/plugin.h>
24
+
25
+ #ifdef __cplusplus
26
+ extern "C" {
27
+ #endif /* __cplusplus */
28
+
29
+ /*
30
+ grn_normalizer_register() registers a normalizer to the database
31
+ which is associated with `ctx'. `name_ptr' and `name_length' specify
32
+ the normalizer name. `name_length' can be `-1'. `-1' means that
33
+ `name_ptr` is NULL-terminated. Alphabetic letters ('A'-'Z' and
34
+ 'a'-'z'), digits ('0'-'9') and an underscore ('_') are capable
35
+ characters. `init', `next' and `fin' specify the normalizer
36
+ functions. `init' is called for initializing a tokenizer for a
37
+ document or query. `next' is called for extracting tokens one by
38
+ one. `fin' is called for finalizing a
39
+ tokenizer. grn_tokenizer_register() returns GRN_SUCCESS on success,
40
+ an error code on failure. See "groonga.h" for more details of
41
+ grn_proc_func and grn_user_data, that is used as an argument of
42
+ grn_proc_func.
43
+ */
44
+ GRN_PLUGIN_EXPORT grn_rc grn_normalizer_register(grn_ctx *ctx,
45
+ const char *name_ptr,
46
+ int name_length,
47
+ grn_proc_func *init,
48
+ grn_proc_func *next,
49
+ grn_proc_func *fin);
50
+
51
+ #ifdef __cplusplus
52
+ } /* extern "C" */
53
+ #endif /* __cplusplus */
54
+
55
+ #endif /* GROONGA_NORMALIER_H */
@@ -78,18 +78,23 @@ struct _grn_tokenizer_query {
78
78
  const char *ptr;
79
79
  unsigned int length;
80
80
  grn_encoding encoding;
81
+ unsigned int flags;
82
+ grn_bool have_tokenized_delimiter;
81
83
  };
82
84
 
83
85
  /*
84
86
  grn_tokenizer_query_open() parses `args' and returns a new object of
85
87
  grn_tokenizer_query. The new object stores information of the query.
86
- grn_tokenizer_query_create() normalizes the query if the target table
87
- requires normalization. grn_tokenizer_query_create() returns NULL if
88
- something goes wrong. Note that grn_tokenizer_query_create() must be called
88
+ grn_tokenizer_query_open() normalizes the query if the target table
89
+ requires normalization. grn_tokenizer_query_open() returns NULL if
90
+ something goes wrong. Note that grn_tokenizer_query_open() must be called
89
91
  just once in the function that initializes a tokenizer.
92
+
93
+ See `GRN_STRING_*' flags for `normalize_flags'.
90
94
  */
91
95
  GRN_PLUGIN_EXPORT grn_tokenizer_query *grn_tokenizer_query_open(grn_ctx *ctx,
92
- int num_args, grn_obj **args);
96
+ int num_args, grn_obj **args,
97
+ unsigned int normalize_flags);
93
98
 
94
99
  /*
95
100
  grn_tokenizer_query_create() is deprecated. Use grn_tokenizer_query_open()
@@ -136,16 +141,31 @@ GRN_PLUGIN_EXPORT void grn_tokenizer_token_init(grn_ctx *ctx, grn_tokenizer_toke
136
141
  GRN_PLUGIN_EXPORT void grn_tokenizer_token_fin(grn_ctx *ctx, grn_tokenizer_token *token);
137
142
 
138
143
  /*
139
- grn_tokenizer_status provides a list of tokenizer status codes.
140
- GRN_TOKENIZER_CONTINUE means that the next token is not the last one and
141
- GRN_TOKENIZER_LAST means that the next token is the last one. If a document
142
- or query contains no tokens, please push an empty string with
143
- GRN_TOKENIZER_LAST as a token.
144
+ * grn_tokenizer_status is a flag set for tokenizer status codes.
145
+ * If a document or query contains no tokens, push an empty string with
146
+ * GRN_TOKENIZER_TOKEN_LAST as a token.
147
+ */
148
+ typedef unsigned int grn_tokenizer_status;
149
+
150
+ /* GRN_TOKENIZER_TOKEN_CONTINUE means that the next token is not the last one. */
151
+ #define GRN_TOKENIZER_TOKEN_CONTINUE (0)
152
+ /* GRN_TOKENIZER_TOKEN_LAST means that the next token is the last one. */
153
+ #define GRN_TOKENIZER_TOKEN_LAST (0x01L<<0)
154
+ /* GRN_TOKENIZER_TOKEN_OVERLAP means that ... */
155
+ #define GRN_TOKENIZER_TOKEN_OVERLAP (0x01L<<1)
156
+ /* GRN_TOKENIZER_TOKEN_UNMATURED means that ... */
157
+ #define GRN_TOKENIZER_TOKEN_UNMATURED (0x01L<<2)
158
+ /* GRN_TOKENIZER_TOKEN_REACH_END means that ... */
159
+ #define GRN_TOKENIZER_TOKEN_REACH_END (0x01L<<3)
160
+
161
+ /*
162
+ * GRN_TOKENIZER_CONTINUE and GRN_TOKENIZER_LAST are deprecated. They
163
+ * are just for backward compatibility. Use
164
+ * GRN_TOKENIZER_TOKEN_CONTINUE and GRN_TOKENIZER_TOKEN_LAST
165
+ * instead.
144
166
  */
145
- typedef enum {
146
- GRN_TOKENIZER_CONTINUE = 0,
147
- GRN_TOKENIZER_LAST = 1
148
- } grn_tokenizer_status;
167
+ #define GRN_TOKENIZER_CONTINUE GRN_TOKENIZER_TOKEN_CONTINUE
168
+ #define GRN_TOKENIZER_LAST GRN_TOKENIZER_TOKEN_LAST
149
169
 
150
170
  /*
151
171
  grn_tokenizer_token_push() pushes the next token into `token'. Note that
@@ -17,7 +17,7 @@ old_library='tsv.a'
17
17
  inherited_linker_flags=''
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
20
+ dependency_libs=' /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/groonga/plugins/query_expanders'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/query_expanders'
@@ -17,7 +17,7 @@ old_library='suggest.a'
17
17
  inherited_linker_flags=''
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib -lws2_32 /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmsgpack.la'
20
+ dependency_libs=' /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib -lws2_32 /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/groonga/plugins/suggest'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/suggest'
@@ -17,7 +17,7 @@ old_library='table.a'
17
17
  inherited_linker_flags=''
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib -lws2_32 /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmsgpack.la'
20
+ dependency_libs=' /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la -L/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib -lws2_32 /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/groonga/plugins/table'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/table'
@@ -17,7 +17,7 @@ old_library='mecab.a'
17
17
  inherited_linker_flags=''
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -L/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmecab.la /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libgroonga.la /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
20
+ dependency_libs=' -L/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmecab.la /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libgroonga.la /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/groonga/plugins/tokenizers'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/groonga/plugins/tokenizers'
Binary file
Binary file
@@ -17,7 +17,7 @@ old_library='libgroonga.a'
17
17
  inherited_linker_flags=''
18
18
 
19
19
  # Libraries that this one depends upon.
20
- dependency_libs=' -L/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
20
+ dependency_libs=' -L/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib /home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib/libmsgpack.la -lws2_32'
21
21
 
22
22
  # Names of additional weak libraries provided by this library
23
23
  weak_library_names=''
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib'
Binary file
Binary file
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib'
Binary file
Binary file
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib'
Binary file
Binary file
@@ -38,4 +38,4 @@ dlopen=''
38
38
  dlpreopen=''
39
39
 
40
40
  # Directory that this library needs to be installed in:
41
- libdir='/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86/lib'
41
+ libdir='/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86/lib'
@@ -1,4 +1,4 @@
1
- prefix=/home/khayashi/work/groonga/groonga.clean-sub/packages/windows/dist-x86
1
+ prefix=/home/khayashi/work/groonga/groonga.clean/packages/windows/dist-x86
2
2
  exec_prefix=${prefix}
3
3
  bindir=${exec_prefix}/bin
4
4
  libdir=${exec_prefix}/lib
@@ -9,10 +9,10 @@ document_root=${datadir}/groonga/html/admin
9
9
  pluginsdir=${libdir}/groonga/plugins
10
10
  groonga=${bindir}/groonga.exe
11
11
  groonga_suggest_create_dataset=${bindir}/groonga-suggest-create-dataset.exe
12
- groonga_version=2.0.9
12
+ groonga_version=2.1.0
13
13
 
14
14
  Name: Groonga
15
15
  Description: An Embeddable Fulltext Search Engine
16
- Version: 2.0.9
16
+ Version: 2.1.0
17
17
  Libs: -L${libdir} -lgroonga
18
18
  Cflags: -I${includedir}/groonga