Tue Aug 29 12:54:47 2017 UTC ()
Update textproc/groonga to 7.0.5. Add bl3.
Based on a PR by @siepkes (https://github.com/joyent/pkgsrc/pull/7).

Groonga 7.0.5
- [dump] --sort_hash_table option has been supported
- math_abs() function has been supported
- Ubuntu 16.10 (Yakkety Yak) support has been dropped

Groonga 7.0.4
- Supported Debian 9 (stretch)
- Added grndb log options
- Improved query performance

Groonga 7.0.3
- [select] Add document about Full text search with specific index name
- [load][dump] Supported Apache Arrow

Groonga 7.0.2
- Fixed a bug that data is lost by reindex
- Supported Ubuntu 17.04 (Zesty Zapus)
- Supported persistent cache
- Added function to use an existing table as condition patterns.

Groonga 7.0.1
- Dropped CentOS 5 support
- Fixed a problem about dynamically updated index size
- [experimental] Supported GRN_ORDER_BY_ESTIMATED_SIZE_ENABLE

Groonga 7.0.0
- Removed needless metadata updates on DB. It reduces the case that
  database lock remains even though select command is executed.
- lock_clear Changed to clear metadata lock by lock_clear against DB.
- Supported groonga-token-filter-stem package which provides stemming
  feature by TokenFilterStem token filter on CentOS 7.
- load Supported --output_errors yes option. If you specify "yes", you
  can get errors for each load failed record.

Groonga 6.1.5
- This release fixes an index search bug that index search may not
  return records that should be matched.

Groonga 6.1.4
- This release fixes an index search bug that index search may not
  return records that should be matched.

Groonga 6.1.3
- Reverted "Improved performance of updating inverted indexes in the
  worst case".

Groonga 6.1.2
- [load] Supported to show {"n_loaded_records": N} in response
- [load] Supported --output_ids yes parameter

Groonga 6.1.1
- Supported column value compression with Zstandard
- Changed to stop compressing small data

Groonga 6.1.0
- Supported to sort load table names by key instead of ID to make output
  stable
- Added document about index columns

Groonga 6.0.9
- Fixed index search bug
- Supported regular expression in location directive for groonga-httpd


(fhajny)
diff -r1.61 -r1.62 pkgsrc/textproc/groonga/Makefile
diff -r1.30 -r1.31 pkgsrc/textproc/groonga/PLIST
diff -r0 -r1.1 pkgsrc/textproc/groonga/buildlink3.mk
diff -r1.42 -r1.43 pkgsrc/textproc/groonga/distinfo
diff -r1.17 -r1.18 pkgsrc/textproc/groonga/options.mk
diff -r1.1 -r0 pkgsrc/textproc/groonga/patches/patch-data_scripts_Makefile.in
diff -r1.1 -r0 pkgsrc/textproc/groonga/patches/patch-vendor_nginx-1.11.3_auto_install

cvs diff -r1.61 -r1.62 pkgsrc/textproc/groonga/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/Makefile 2017/07/11 19:41:20 1.61
+++ pkgsrc/textproc/groonga/Makefile 2017/08/29 12:54:47 1.62
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.61 2017/07/11 19:41:20 joerg Exp $ 1# $NetBSD: Makefile,v 1.62 2017/08/29 12:54:47 fhajny Exp $
2# 2#
3 3
4DISTNAME= groonga-6.0.8 4DISTNAME= groonga-7.0.5
5CATEGORIES= textproc 5CATEGORIES= textproc
6MASTER_SITES= http://packages.groonga.org/source/groonga/ 6MASTER_SITES= http://packages.groonga.org/source/groonga/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://groonga.org/ 9HOMEPAGE= http://groonga.org/
10COMMENT= Fulltext search engine and column store 10COMMENT= Fulltext search engine and column store
11LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
12 12
13DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} 13DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR}
14 14
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16USE_LANGUAGES= c c++ 16USE_LANGUAGES= c c++
17USE_LIBTOOL= yes 17USE_LIBTOOL= yes
@@ -21,37 +21,39 @@ EXTRACT_USING= bsdtar @@ -21,37 +21,39 @@ EXTRACT_USING= bsdtar
21 21
22.include "options.mk" 22.include "options.mk"
23 23
24CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR} 24CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
25CONFIGURE_ARGS+= --localstatedir=${VARBASE} 25CONFIGURE_ARGS+= --localstatedir=${VARBASE}
26CONFIGURE_ARGS+= --with-ruby=${RUBY} 26CONFIGURE_ARGS+= --with-ruby=${RUBY}
27 27
28PKGCONFIG_OVERRIDE+= groonga.pc.in 28PKGCONFIG_OVERRIDE+= groonga.pc.in
29 29
30PKG_SYSCONFSUBDIR= ${PKGBASE} 30PKG_SYSCONFSUBDIR= ${PKGBASE}
31 31
32BUILD_DEFS+= VARBASE 32BUILD_DEFS+= VARBASE
33 33
 34EXAMPLE_CONF_DIR= ${PREFIX}/share/examples/groonga
 35
34INSTALL_DIRS= ${BUILD_DIRS} vendor/onigmo-source 36INSTALL_DIRS= ${BUILD_DIRS} vendor/onigmo-source
35INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples 37INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples
36 38
37CONF_FILES+= share/examples/${PKGBASE}/groonga.conf \ 39CONF_FILES+= ${EXAMPLE_CONF_DIR}/groonga.conf \
38 ${PKG_SYSCONFDIR}/groonga.conf 40 ${PKG_SYSCONFDIR}/groonga.conf
39CONF_FILES+= share/examples/groonga/synonyms.tsv \ 41CONF_FILES+= ${EXAMPLE_CONF_DIR}/synonyms.tsv \
40 ${PKG_SYSCONFDIR}/synonyms.tsv 42 ${PKG_SYSCONFDIR}/synonyms.tsv
41 43
42OWN_DIRS+= ${VARBASE}/log/${PKGBASE} 44OWN_DIRS+= ${VARBASE}/log/${PKGBASE}
43 45
44CHECK_WRKREF_SKIP+= bin/groonga 46CHECK_WRKREF_SKIP+= bin/groonga
45CHECK_INTERPRETER_SKIP+= share/groonga/examples/* 47CHECK_INTERPRETER_SKIP+= share/groonga/examples/*
46 48
47REPLACE_RUBY+= data/munin/groonga_cpu_time_ 49REPLACE_RUBY+= data/munin/groonga_cpu_time_
48REPLACE_RUBY+= data/munin/groonga_disk_ 50REPLACE_RUBY+= data/munin/groonga_disk_
49REPLACE_RUBY+= data/munin/groonga_n_records_ 51REPLACE_RUBY+= data/munin/groonga_n_records_
50REPLACE_RUBY+= data/munin/groonga_query_performance_ 52REPLACE_RUBY+= data/munin/groonga_query_performance_
51REPLACE_RUBY+= data/munin/groonga_status_ 53REPLACE_RUBY+= data/munin/groonga_status_
52REPLACE_RUBY+= data/munin/groonga_throughput_ 54REPLACE_RUBY+= data/munin/groonga_throughput_
53 55
54.include "../../lang/ruby/replace.mk" 56.include "../../lang/ruby/replace.mk"
55.include "../../devel/editline/buildlink3.mk" 57.include "../../devel/editline/buildlink3.mk"
56.include "../../devel/glib2/buildlink3.mk" 58.include "../../devel/glib2/buildlink3.mk"
57.include "../../mk/bsd.pkg.mk" 59.include "../../mk/bsd.pkg.mk"

cvs diff -r1.30 -r1.31 pkgsrc/textproc/groonga/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/PLIST 2016/09/11 16:06:53 1.30
+++ pkgsrc/textproc/groonga/PLIST 2017/08/29 12:54:47 1.31
@@ -1,22 +1,27 @@ @@ -1,22 +1,27 @@
1@comment $NetBSD: PLIST,v 1.30 2016/09/11 16:06:53 taca Exp $ 1@comment $NetBSD: PLIST,v 1.31 2017/08/29 12:54:47 fhajny Exp $
2bin/groonga 2bin/groonga
3bin/groonga-benchmark 3bin/groonga-benchmark
4bin/groonga-suggest-create-dataset 4bin/groonga-suggest-create-dataset
5${PLIST.learner}bin/groonga-suggest-httpd 5${PLIST.learner}bin/groonga-suggest-httpd
6${PLIST.learner}bin/groonga-suggest-learner 6${PLIST.learner}bin/groonga-suggest-learner
7bin/onig-config 7bin/onigmo-config
8include/groonga/groonga.h 8include/groonga/groonga.h
 9include/groonga/groonga.hpp
 10include/groonga/groonga/accessor.h
9include/groonga/groonga/array.h 11include/groonga/groonga/array.h
 12include/groonga/groonga/arrow.h
 13include/groonga/groonga/arrow.hpp
 14include/groonga/groonga/cache.h
10include/groonga/groonga/column.h 15include/groonga/groonga/column.h
11include/groonga/groonga/command.h 16include/groonga/groonga/command.h
12include/groonga/groonga/config.h 17include/groonga/groonga/config.h
13include/groonga/groonga/dat.h 18include/groonga/groonga/dat.h
14include/groonga/groonga/db.h 19include/groonga/groonga/db.h
15include/groonga/groonga/dump.h 20include/groonga/groonga/dump.h
16include/groonga/groonga/error.h 21include/groonga/groonga/error.h
17include/groonga/groonga/expr.h 22include/groonga/groonga/expr.h
18include/groonga/groonga/file_reader.h 23include/groonga/groonga/file_reader.h
19include/groonga/groonga/geo.h 24include/groonga/groonga/geo.h
20include/groonga/groonga/groonga.h 25include/groonga/groonga/groonga.h
21include/groonga/groonga/hash.h 26include/groonga/groonga/hash.h
22include/groonga/groonga/id.h 27include/groonga/groonga/id.h
@@ -33,42 +38,43 @@ include/groonga/groonga/request_canceler @@ -33,42 +38,43 @@ include/groonga/groonga/request_canceler
33include/groonga/groonga/request_timer.h 38include/groonga/groonga/request_timer.h
34include/groonga/groonga/scorer.h 39include/groonga/groonga/scorer.h
35include/groonga/groonga/table.h 40include/groonga/groonga/table.h
36include/groonga/groonga/thread.h 41include/groonga/groonga/thread.h
37include/groonga/groonga/time.h 42include/groonga/groonga/time.h
38include/groonga/groonga/token.h 43include/groonga/groonga/token.h
39include/groonga/groonga/token_filter.h 44include/groonga/groonga/token_filter.h
40include/groonga/groonga/tokenizer.h 45include/groonga/groonga/tokenizer.h
41include/groonga/groonga/type.h 46include/groonga/groonga/type.h
42include/groonga/groonga/util.h 47include/groonga/groonga/util.h
43include/groonga/groonga/window_function.h 48include/groonga/groonga/window_function.h
44include/groonga/groonga/windows.h 49include/groonga/groonga/windows.h
45include/groonga/groonga/windows_event_logger.h 50include/groonga/groonga/windows_event_logger.h
46include/oniggnu.h 51include/onigmo.h
47include/onigposix.h 52include/onigmognu.h
48include/oniguruma.h 53include/onigmoposix.h
 54lib/groonga/plugins/functions/index_column.la
 55lib/groonga/plugins/functions/math.la
49lib/groonga/plugins/functions/number.la 56lib/groonga/plugins/functions/number.la
50lib/groonga/plugins/functions/string.la 57lib/groonga/plugins/functions/string.la
51lib/groonga/plugins/functions/time.la 58lib/groonga/plugins/functions/time.la
52lib/groonga/plugins/functions/vector.la 59lib/groonga/plugins/functions/vector.la
53lib/groonga/plugins/query_expanders/tsv.la 60lib/groonga/plugins/query_expanders/tsv.la
54lib/groonga/plugins/suggest/suggest.la 61lib/groonga/plugins/suggest/suggest.la
55lib/groonga/plugins/table/table.la 
56lib/groonga/plugins/token_filters/stop_word.la 62lib/groonga/plugins/token_filters/stop_word.la
57${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la 63${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la
58lib/libgroonga.la 64lib/libgroonga.la
59lib/libonig.la 65lib/libonigmo.la
60lib/pkgconfig/groonga.pc 66lib/pkgconfig/groonga.pc
61lib/pkgconfig/oniguruma.pc 67lib/pkgconfig/onigmo.pc
62${PLIST.httpd}sbin/groonga-httpd 68${PLIST.httpd}sbin/groonga-httpd
63${PLIST.httpd}sbin/groonga-httpd-restart 69${PLIST.httpd}sbin/groonga-httpd-restart
64share/doc/groonga/en/html/.buildinfo 70share/doc/groonga/en/html/.buildinfo
65share/doc/groonga/en/html/_images/geo-points.png 71share/doc/groonga/en/html/_images/geo-points.png
66share/doc/groonga/en/html/_images/used-when-indexing.png 72share/doc/groonga/en/html/_images/used-when-indexing.png
67share/doc/groonga/en/html/_images/used-when-searching.png 73share/doc/groonga/en/html/_images/used-when-searching.png
68share/doc/groonga/en/html/_sources/characteristic.txt 74share/doc/groonga/en/html/_sources/characteristic.txt
69share/doc/groonga/en/html/_sources/client.txt 75share/doc/groonga/en/html/_sources/client.txt
70share/doc/groonga/en/html/_sources/community.txt 76share/doc/groonga/en/html/_sources/community.txt
71share/doc/groonga/en/html/_sources/contribution.txt 77share/doc/groonga/en/html/_sources/contribution.txt
72share/doc/groonga/en/html/_sources/contribution/development.txt 78share/doc/groonga/en/html/_sources/contribution/development.txt
73share/doc/groonga/en/html/_sources/contribution/development/build.txt 79share/doc/groonga/en/html/_sources/contribution/development/build.txt
74share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt 80share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt
@@ -98,26 +104,27 @@ share/doc/groonga/en/html/_sources/insta @@ -98,26 +104,27 @@ share/doc/groonga/en/html/_sources/insta
98share/doc/groonga/en/html/_sources/install/ubuntu.txt 104share/doc/groonga/en/html/_sources/install/ubuntu.txt
99share/doc/groonga/en/html/_sources/install/windows.txt 105share/doc/groonga/en/html/_sources/install/windows.txt
100share/doc/groonga/en/html/_sources/limitations.txt 106share/doc/groonga/en/html/_sources/limitations.txt
101share/doc/groonga/en/html/_sources/news.txt 107share/doc/groonga/en/html/_sources/news.txt
102share/doc/groonga/en/html/_sources/news/0.x.txt 108share/doc/groonga/en/html/_sources/news/0.x.txt
103share/doc/groonga/en/html/_sources/news/1.0.x.txt 109share/doc/groonga/en/html/_sources/news/1.0.x.txt
104share/doc/groonga/en/html/_sources/news/1.1.x.txt 110share/doc/groonga/en/html/_sources/news/1.1.x.txt
105share/doc/groonga/en/html/_sources/news/1.2.x.txt 111share/doc/groonga/en/html/_sources/news/1.2.x.txt
106share/doc/groonga/en/html/_sources/news/1.3.x.txt 112share/doc/groonga/en/html/_sources/news/1.3.x.txt
107share/doc/groonga/en/html/_sources/news/2.x.txt 113share/doc/groonga/en/html/_sources/news/2.x.txt
108share/doc/groonga/en/html/_sources/news/3.x.txt 114share/doc/groonga/en/html/_sources/news/3.x.txt
109share/doc/groonga/en/html/_sources/news/4.x.txt 115share/doc/groonga/en/html/_sources/news/4.x.txt
110share/doc/groonga/en/html/_sources/news/5.x.txt 116share/doc/groonga/en/html/_sources/news/5.x.txt
 117share/doc/groonga/en/html/_sources/news/6.x.txt
111share/doc/groonga/en/html/_sources/news/senna.txt 118share/doc/groonga/en/html/_sources/news/senna.txt
112share/doc/groonga/en/html/_sources/reference.txt 119share/doc/groonga/en/html/_sources/reference.txt
113share/doc/groonga/en/html/_sources/reference/alias.txt 120share/doc/groonga/en/html/_sources/reference/alias.txt
114share/doc/groonga/en/html/_sources/reference/api.txt 121share/doc/groonga/en/html/_sources/reference/api.txt
115share/doc/groonga/en/html/_sources/reference/api/global_configurations.txt 122share/doc/groonga/en/html/_sources/reference/api/global_configurations.txt
116share/doc/groonga/en/html/_sources/reference/api/grn_cache.txt 123share/doc/groonga/en/html/_sources/reference/api/grn_cache.txt
117share/doc/groonga/en/html/_sources/reference/api/grn_column.txt 124share/doc/groonga/en/html/_sources/reference/api/grn_column.txt
118share/doc/groonga/en/html/_sources/reference/api/grn_command_version.txt 125share/doc/groonga/en/html/_sources/reference/api/grn_command_version.txt
119share/doc/groonga/en/html/_sources/reference/api/grn_content_type.txt 126share/doc/groonga/en/html/_sources/reference/api/grn_content_type.txt
120share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt 127share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt
121share/doc/groonga/en/html/_sources/reference/api/grn_db.txt 128share/doc/groonga/en/html/_sources/reference/api/grn_db.txt
122share/doc/groonga/en/html/_sources/reference/api/grn_encoding.txt 129share/doc/groonga/en/html/_sources/reference/api/grn_encoding.txt
123share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt 130share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt
@@ -191,26 +198,27 @@ share/doc/groonga/en/html/_sources/refer @@ -191,26 +198,27 @@ share/doc/groonga/en/html/_sources/refer
191share/doc/groonga/en/html/_sources/reference/commands/query_expand.txt 198share/doc/groonga/en/html/_sources/reference/commands/query_expand.txt
192share/doc/groonga/en/html/_sources/reference/commands/quit.txt 199share/doc/groonga/en/html/_sources/reference/commands/quit.txt
193share/doc/groonga/en/html/_sources/reference/commands/range_filter.txt 200share/doc/groonga/en/html/_sources/reference/commands/range_filter.txt
194share/doc/groonga/en/html/_sources/reference/commands/register.txt 201share/doc/groonga/en/html/_sources/reference/commands/register.txt
195share/doc/groonga/en/html/_sources/reference/commands/reindex.txt 202share/doc/groonga/en/html/_sources/reference/commands/reindex.txt
196share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt 203share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt
197share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt 204share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt
198share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt 205share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt
199share/doc/groonga/en/html/_sources/reference/commands/schema.txt 206share/doc/groonga/en/html/_sources/reference/commands/schema.txt
200share/doc/groonga/en/html/_sources/reference/commands/select.txt 207share/doc/groonga/en/html/_sources/reference/commands/select.txt
201share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt 208share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt
202share/doc/groonga/en/html/_sources/reference/commands/status.txt 209share/doc/groonga/en/html/_sources/reference/commands/status.txt
203share/doc/groonga/en/html/_sources/reference/commands/suggest.txt 210share/doc/groonga/en/html/_sources/reference/commands/suggest.txt
 211share/doc/groonga/en/html/_sources/reference/commands/table_copy.txt
204share/doc/groonga/en/html/_sources/reference/commands/table_create.txt 212share/doc/groonga/en/html/_sources/reference/commands/table_create.txt
205share/doc/groonga/en/html/_sources/reference/commands/table_list.txt 213share/doc/groonga/en/html/_sources/reference/commands/table_list.txt
206share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt 214share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt
207share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt 215share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt
208share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt 216share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt
209share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt 217share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt
210share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt 218share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt
211share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt 219share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt
212share/doc/groonga/en/html/_sources/reference/commands/truncate.txt 220share/doc/groonga/en/html/_sources/reference/commands/truncate.txt
213share/doc/groonga/en/html/_sources/reference/configuration.txt 221share/doc/groonga/en/html/_sources/reference/configuration.txt
214share/doc/groonga/en/html/_sources/reference/executables.txt 222share/doc/groonga/en/html/_sources/reference/executables.txt
215share/doc/groonga/en/html/_sources/reference/executables/grndb.txt 223share/doc/groonga/en/html/_sources/reference/executables/grndb.txt
216share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt 224share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt
@@ -221,43 +229,46 @@ share/doc/groonga/en/html/_sources/refer @@ -221,43 +229,46 @@ share/doc/groonga/en/html/_sources/refer
221share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt 229share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt
222share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt 230share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt
223share/doc/groonga/en/html/_sources/reference/executables/groonga.txt 231share/doc/groonga/en/html/_sources/reference/executables/groonga.txt
224share/doc/groonga/en/html/_sources/reference/function.txt 232share/doc/groonga/en/html/_sources/reference/function.txt
225share/doc/groonga/en/html/_sources/reference/functions/between.txt 233share/doc/groonga/en/html/_sources/reference/functions/between.txt
226share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt 234share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt
227share/doc/groonga/en/html/_sources/reference/functions/fuzzy_search.txt 235share/doc/groonga/en/html/_sources/reference/functions/fuzzy_search.txt
228share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt 236share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt
229share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt 237share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt
230share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt 238share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt
231share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt 239share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt
232share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt 240share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt
233share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt 241share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt
 242share/doc/groonga/en/html/_sources/reference/functions/in_records.txt
234share/doc/groonga/en/html/_sources/reference/functions/in_values.txt 243share/doc/groonga/en/html/_sources/reference/functions/in_values.txt
 244share/doc/groonga/en/html/_sources/reference/functions/math_abs.txt
235share/doc/groonga/en/html/_sources/reference/functions/now.txt 245share/doc/groonga/en/html/_sources/reference/functions/now.txt
236share/doc/groonga/en/html/_sources/reference/functions/number_classify.txt 246share/doc/groonga/en/html/_sources/reference/functions/number_classify.txt
237share/doc/groonga/en/html/_sources/reference/functions/prefix_rk_search.txt 247share/doc/groonga/en/html/_sources/reference/functions/prefix_rk_search.txt
238share/doc/groonga/en/html/_sources/reference/functions/query.txt 248share/doc/groonga/en/html/_sources/reference/functions/query.txt
239share/doc/groonga/en/html/_sources/reference/functions/rand.txt 249share/doc/groonga/en/html/_sources/reference/functions/rand.txt
240share/doc/groonga/en/html/_sources/reference/functions/record_number.txt 
241share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt 250share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt
 251share/doc/groonga/en/html/_sources/reference/functions/string_length.txt
242share/doc/groonga/en/html/_sources/reference/functions/string_substring.txt 252share/doc/groonga/en/html/_sources/reference/functions/string_substring.txt
243share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt 253share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt
244share/doc/groonga/en/html/_sources/reference/functions/time_classify_day.txt 254share/doc/groonga/en/html/_sources/reference/functions/time_classify_day.txt
245share/doc/groonga/en/html/_sources/reference/functions/time_classify_hour.txt 255share/doc/groonga/en/html/_sources/reference/functions/time_classify_hour.txt
246share/doc/groonga/en/html/_sources/reference/functions/time_classify_minute.txt 256share/doc/groonga/en/html/_sources/reference/functions/time_classify_minute.txt
247share/doc/groonga/en/html/_sources/reference/functions/time_classify_month.txt 257share/doc/groonga/en/html/_sources/reference/functions/time_classify_month.txt
248share/doc/groonga/en/html/_sources/reference/functions/time_classify_second.txt 258share/doc/groonga/en/html/_sources/reference/functions/time_classify_second.txt
249share/doc/groonga/en/html/_sources/reference/functions/time_classify_week.txt 259share/doc/groonga/en/html/_sources/reference/functions/time_classify_week.txt
250share/doc/groonga/en/html/_sources/reference/functions/time_classify_year.txt 260share/doc/groonga/en/html/_sources/reference/functions/time_classify_year.txt
 261share/doc/groonga/en/html/_sources/reference/functions/vector_new.txt
251share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt 262share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt
252share/doc/groonga/en/html/_sources/reference/functions/vector_slice.txt 263share/doc/groonga/en/html/_sources/reference/functions/vector_slice.txt
253share/doc/groonga/en/html/_sources/reference/grn_expr.txt 264share/doc/groonga/en/html/_sources/reference/grn_expr.txt
254share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt 265share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
255share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt 266share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
256share/doc/groonga/en/html/_sources/reference/indexing.txt 267share/doc/groonga/en/html/_sources/reference/indexing.txt
257share/doc/groonga/en/html/_sources/reference/log.txt 268share/doc/groonga/en/html/_sources/reference/log.txt
258share/doc/groonga/en/html/_sources/reference/normalizers.txt 269share/doc/groonga/en/html/_sources/reference/normalizers.txt
259share/doc/groonga/en/html/_sources/reference/operations.txt 270share/doc/groonga/en/html/_sources/reference/operations.txt
260share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt 271share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt
261share/doc/groonga/en/html/_sources/reference/operations/prefix_rk_search.txt 272share/doc/groonga/en/html/_sources/reference/operations/prefix_rk_search.txt
262share/doc/groonga/en/html/_sources/reference/output.txt 273share/doc/groonga/en/html/_sources/reference/output.txt
263share/doc/groonga/en/html/_sources/reference/query_expanders.txt 274share/doc/groonga/en/html/_sources/reference/query_expanders.txt
@@ -267,39 +278,44 @@ share/doc/groonga/en/html/_sources/refer @@ -267,39 +278,44 @@ share/doc/groonga/en/html/_sources/refer
267share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt 278share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt
268share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt 279share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt
269share/doc/groonga/en/html/_sources/reference/sharding.txt 280share/doc/groonga/en/html/_sources/reference/sharding.txt
270share/doc/groonga/en/html/_sources/reference/suggest.txt 281share/doc/groonga/en/html/_sources/reference/suggest.txt
271share/doc/groonga/en/html/_sources/reference/suggest/completion.txt 282share/doc/groonga/en/html/_sources/reference/suggest/completion.txt
272share/doc/groonga/en/html/_sources/reference/suggest/correction.txt 283share/doc/groonga/en/html/_sources/reference/suggest/correction.txt
273share/doc/groonga/en/html/_sources/reference/suggest/introduction.txt 284share/doc/groonga/en/html/_sources/reference/suggest/introduction.txt
274share/doc/groonga/en/html/_sources/reference/suggest/suggestion.txt 285share/doc/groonga/en/html/_sources/reference/suggest/suggestion.txt
275share/doc/groonga/en/html/_sources/reference/tables.txt 286share/doc/groonga/en/html/_sources/reference/tables.txt
276share/doc/groonga/en/html/_sources/reference/token_filters.txt 287share/doc/groonga/en/html/_sources/reference/token_filters.txt
277share/doc/groonga/en/html/_sources/reference/tokenizers.txt 288share/doc/groonga/en/html/_sources/reference/tokenizers.txt
278share/doc/groonga/en/html/_sources/reference/tuning.txt 289share/doc/groonga/en/html/_sources/reference/tuning.txt
279share/doc/groonga/en/html/_sources/reference/types.txt 290share/doc/groonga/en/html/_sources/reference/types.txt
 291share/doc/groonga/en/html/_sources/reference/window_function.txt
 292share/doc/groonga/en/html/_sources/reference/window_functions/record_number.txt
 293share/doc/groonga/en/html/_sources/reference/window_functions/window_record_number.txt
 294share/doc/groonga/en/html/_sources/reference/window_functions/window_sum.txt
280share/doc/groonga/en/html/_sources/server.txt 295share/doc/groonga/en/html/_sources/server.txt
281share/doc/groonga/en/html/_sources/server/gqtp.txt 296share/doc/groonga/en/html/_sources/server/gqtp.txt
282share/doc/groonga/en/html/_sources/server/http.txt 297share/doc/groonga/en/html/_sources/server/http.txt
283share/doc/groonga/en/html/_sources/server/http/comparison.txt 298share/doc/groonga/en/html/_sources/server/http/comparison.txt
284share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt 299share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
285share/doc/groonga/en/html/_sources/server/http/groonga.txt 300share/doc/groonga/en/html/_sources/server/http/groonga.txt
286share/doc/groonga/en/html/_sources/server/memcached.txt 301share/doc/groonga/en/html/_sources/server/memcached.txt
287share/doc/groonga/en/html/_sources/server/package.txt 302share/doc/groonga/en/html/_sources/server/package.txt
288share/doc/groonga/en/html/_sources/spec.txt 303share/doc/groonga/en/html/_sources/spec.txt
289share/doc/groonga/en/html/_sources/spec/gqtp.txt 304share/doc/groonga/en/html/_sources/spec/gqtp.txt
290share/doc/groonga/en/html/_sources/spec/search.txt 305share/doc/groonga/en/html/_sources/spec/search.txt
291share/doc/groonga/en/html/_sources/troubleshooting.txt 306share/doc/groonga/en/html/_sources/troubleshooting.txt
292share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt 307share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
 308share/doc/groonga/en/html/_sources/troubleshooting/how_to_analyze_error_message.txt
293share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt 309share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
294share/doc/groonga/en/html/_sources/tutorial.txt 310share/doc/groonga/en/html/_sources/tutorial.txt
295share/doc/groonga/en/html/_sources/tutorial/data.txt 311share/doc/groonga/en/html/_sources/tutorial/data.txt
296share/doc/groonga/en/html/_sources/tutorial/drilldown.txt 312share/doc/groonga/en/html/_sources/tutorial/drilldown.txt
297share/doc/groonga/en/html/_sources/tutorial/index.txt 313share/doc/groonga/en/html/_sources/tutorial/index.txt
298share/doc/groonga/en/html/_sources/tutorial/introduction.txt 314share/doc/groonga/en/html/_sources/tutorial/introduction.txt
299share/doc/groonga/en/html/_sources/tutorial/lexicon.txt 315share/doc/groonga/en/html/_sources/tutorial/lexicon.txt
300share/doc/groonga/en/html/_sources/tutorial/match_columns.txt 316share/doc/groonga/en/html/_sources/tutorial/match_columns.txt
301share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt 317share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt
302share/doc/groonga/en/html/_sources/tutorial/network.txt 318share/doc/groonga/en/html/_sources/tutorial/network.txt
303share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt 319share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt
304share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt 320share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt
305share/doc/groonga/en/html/_sources/tutorial/search.txt 321share/doc/groonga/en/html/_sources/tutorial/search.txt
@@ -362,26 +378,27 @@ share/doc/groonga/en/html/install/solari @@ -362,26 +378,27 @@ share/doc/groonga/en/html/install/solari
362share/doc/groonga/en/html/install/ubuntu.html 378share/doc/groonga/en/html/install/ubuntu.html
363share/doc/groonga/en/html/install/windows.html 379share/doc/groonga/en/html/install/windows.html
364share/doc/groonga/en/html/limitations.html 380share/doc/groonga/en/html/limitations.html
365share/doc/groonga/en/html/news.html 381share/doc/groonga/en/html/news.html
366share/doc/groonga/en/html/news/0.x.html 382share/doc/groonga/en/html/news/0.x.html
367share/doc/groonga/en/html/news/1.0.x.html 383share/doc/groonga/en/html/news/1.0.x.html
368share/doc/groonga/en/html/news/1.1.x.html 384share/doc/groonga/en/html/news/1.1.x.html
369share/doc/groonga/en/html/news/1.2.x.html 385share/doc/groonga/en/html/news/1.2.x.html
370share/doc/groonga/en/html/news/1.3.x.html 386share/doc/groonga/en/html/news/1.3.x.html
371share/doc/groonga/en/html/news/2.x.html 387share/doc/groonga/en/html/news/2.x.html
372share/doc/groonga/en/html/news/3.x.html 388share/doc/groonga/en/html/news/3.x.html
373share/doc/groonga/en/html/news/4.x.html 389share/doc/groonga/en/html/news/4.x.html
374share/doc/groonga/en/html/news/5.x.html 390share/doc/groonga/en/html/news/5.x.html
 391share/doc/groonga/en/html/news/6.x.html
375share/doc/groonga/en/html/news/senna.html 392share/doc/groonga/en/html/news/senna.html
376share/doc/groonga/en/html/objects.inv 393share/doc/groonga/en/html/objects.inv
377share/doc/groonga/en/html/reference.html 394share/doc/groonga/en/html/reference.html
378share/doc/groonga/en/html/reference/alias.html 395share/doc/groonga/en/html/reference/alias.html
379share/doc/groonga/en/html/reference/api.html 396share/doc/groonga/en/html/reference/api.html
380share/doc/groonga/en/html/reference/api/global_configurations.html 397share/doc/groonga/en/html/reference/api/global_configurations.html
381share/doc/groonga/en/html/reference/api/grn_cache.html 398share/doc/groonga/en/html/reference/api/grn_cache.html
382share/doc/groonga/en/html/reference/api/grn_column.html 399share/doc/groonga/en/html/reference/api/grn_column.html
383share/doc/groonga/en/html/reference/api/grn_command_version.html 400share/doc/groonga/en/html/reference/api/grn_command_version.html
384share/doc/groonga/en/html/reference/api/grn_content_type.html 401share/doc/groonga/en/html/reference/api/grn_content_type.html
385share/doc/groonga/en/html/reference/api/grn_ctx.html 402share/doc/groonga/en/html/reference/api/grn_ctx.html
386share/doc/groonga/en/html/reference/api/grn_db.html 403share/doc/groonga/en/html/reference/api/grn_db.html
387share/doc/groonga/en/html/reference/api/grn_encoding.html 404share/doc/groonga/en/html/reference/api/grn_encoding.html
@@ -456,26 +473,27 @@ share/doc/groonga/en/html/reference/comm @@ -456,26 +473,27 @@ share/doc/groonga/en/html/reference/comm
456share/doc/groonga/en/html/reference/commands/query_expand.html 473share/doc/groonga/en/html/reference/commands/query_expand.html
457share/doc/groonga/en/html/reference/commands/quit.html 474share/doc/groonga/en/html/reference/commands/quit.html
458share/doc/groonga/en/html/reference/commands/range_filter.html 475share/doc/groonga/en/html/reference/commands/range_filter.html
459share/doc/groonga/en/html/reference/commands/register.html 476share/doc/groonga/en/html/reference/commands/register.html
460share/doc/groonga/en/html/reference/commands/reindex.html 477share/doc/groonga/en/html/reference/commands/reindex.html
461share/doc/groonga/en/html/reference/commands/request_cancel.html 478share/doc/groonga/en/html/reference/commands/request_cancel.html
462share/doc/groonga/en/html/reference/commands/ruby_eval.html 479share/doc/groonga/en/html/reference/commands/ruby_eval.html
463share/doc/groonga/en/html/reference/commands/ruby_load.html 480share/doc/groonga/en/html/reference/commands/ruby_load.html
464share/doc/groonga/en/html/reference/commands/schema.html 481share/doc/groonga/en/html/reference/commands/schema.html
465share/doc/groonga/en/html/reference/commands/select.html 482share/doc/groonga/en/html/reference/commands/select.html
466share/doc/groonga/en/html/reference/commands/shutdown.html 483share/doc/groonga/en/html/reference/commands/shutdown.html
467share/doc/groonga/en/html/reference/commands/status.html 484share/doc/groonga/en/html/reference/commands/status.html
468share/doc/groonga/en/html/reference/commands/suggest.html 485share/doc/groonga/en/html/reference/commands/suggest.html
 486share/doc/groonga/en/html/reference/commands/table_copy.html
469share/doc/groonga/en/html/reference/commands/table_create.html 487share/doc/groonga/en/html/reference/commands/table_create.html
470share/doc/groonga/en/html/reference/commands/table_list.html 488share/doc/groonga/en/html/reference/commands/table_list.html
471share/doc/groonga/en/html/reference/commands/table_remove.html 489share/doc/groonga/en/html/reference/commands/table_remove.html
472share/doc/groonga/en/html/reference/commands/table_rename.html 490share/doc/groonga/en/html/reference/commands/table_rename.html
473share/doc/groonga/en/html/reference/commands/table_tokenize.html 491share/doc/groonga/en/html/reference/commands/table_tokenize.html
474share/doc/groonga/en/html/reference/commands/thread_limit.html 492share/doc/groonga/en/html/reference/commands/thread_limit.html
475share/doc/groonga/en/html/reference/commands/tokenize.html 493share/doc/groonga/en/html/reference/commands/tokenize.html
476share/doc/groonga/en/html/reference/commands/tokenizer_list.html 494share/doc/groonga/en/html/reference/commands/tokenizer_list.html
477share/doc/groonga/en/html/reference/commands/truncate.html 495share/doc/groonga/en/html/reference/commands/truncate.html
478share/doc/groonga/en/html/reference/configuration.html 496share/doc/groonga/en/html/reference/configuration.html
479share/doc/groonga/en/html/reference/executables.html 497share/doc/groonga/en/html/reference/executables.html
480share/doc/groonga/en/html/reference/executables/grndb.html 498share/doc/groonga/en/html/reference/executables/grndb.html
481share/doc/groonga/en/html/reference/executables/grnslap.html 499share/doc/groonga/en/html/reference/executables/grnslap.html
@@ -486,43 +504,46 @@ share/doc/groonga/en/html/reference/exec @@ -486,43 +504,46 @@ share/doc/groonga/en/html/reference/exec
486share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html 504share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html
487share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html 505share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html
488share/doc/groonga/en/html/reference/executables/groonga.html 506share/doc/groonga/en/html/reference/executables/groonga.html
489share/doc/groonga/en/html/reference/function.html 507share/doc/groonga/en/html/reference/function.html
490share/doc/groonga/en/html/reference/functions/between.html 508share/doc/groonga/en/html/reference/functions/between.html
491share/doc/groonga/en/html/reference/functions/edit_distance.html 509share/doc/groonga/en/html/reference/functions/edit_distance.html
492share/doc/groonga/en/html/reference/functions/fuzzy_search.html 510share/doc/groonga/en/html/reference/functions/fuzzy_search.html
493share/doc/groonga/en/html/reference/functions/geo_distance.html 511share/doc/groonga/en/html/reference/functions/geo_distance.html
494share/doc/groonga/en/html/reference/functions/geo_in_circle.html 512share/doc/groonga/en/html/reference/functions/geo_in_circle.html
495share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html 513share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html
496share/doc/groonga/en/html/reference/functions/highlight_full.html 514share/doc/groonga/en/html/reference/functions/highlight_full.html
497share/doc/groonga/en/html/reference/functions/highlight_html.html 515share/doc/groonga/en/html/reference/functions/highlight_html.html
498share/doc/groonga/en/html/reference/functions/html_untag.html 516share/doc/groonga/en/html/reference/functions/html_untag.html
 517share/doc/groonga/en/html/reference/functions/in_records.html
499share/doc/groonga/en/html/reference/functions/in_values.html 518share/doc/groonga/en/html/reference/functions/in_values.html
 519share/doc/groonga/en/html/reference/functions/math_abs.html
500share/doc/groonga/en/html/reference/functions/now.html 520share/doc/groonga/en/html/reference/functions/now.html
501share/doc/groonga/en/html/reference/functions/number_classify.html 521share/doc/groonga/en/html/reference/functions/number_classify.html
502share/doc/groonga/en/html/reference/functions/prefix_rk_search.html 522share/doc/groonga/en/html/reference/functions/prefix_rk_search.html
503share/doc/groonga/en/html/reference/functions/query.html 523share/doc/groonga/en/html/reference/functions/query.html
504share/doc/groonga/en/html/reference/functions/rand.html 524share/doc/groonga/en/html/reference/functions/rand.html
505share/doc/groonga/en/html/reference/functions/record_number.html 
506share/doc/groonga/en/html/reference/functions/snippet_html.html 525share/doc/groonga/en/html/reference/functions/snippet_html.html
 526share/doc/groonga/en/html/reference/functions/string_length.html
507share/doc/groonga/en/html/reference/functions/string_substring.html 527share/doc/groonga/en/html/reference/functions/string_substring.html
508share/doc/groonga/en/html/reference/functions/sub_filter.html 528share/doc/groonga/en/html/reference/functions/sub_filter.html
509share/doc/groonga/en/html/reference/functions/time_classify_day.html 529share/doc/groonga/en/html/reference/functions/time_classify_day.html
510share/doc/groonga/en/html/reference/functions/time_classify_hour.html 530share/doc/groonga/en/html/reference/functions/time_classify_hour.html
511share/doc/groonga/en/html/reference/functions/time_classify_minute.html 531share/doc/groonga/en/html/reference/functions/time_classify_minute.html
512share/doc/groonga/en/html/reference/functions/time_classify_month.html 532share/doc/groonga/en/html/reference/functions/time_classify_month.html
513share/doc/groonga/en/html/reference/functions/time_classify_second.html 533share/doc/groonga/en/html/reference/functions/time_classify_second.html
514share/doc/groonga/en/html/reference/functions/time_classify_week.html 534share/doc/groonga/en/html/reference/functions/time_classify_week.html
515share/doc/groonga/en/html/reference/functions/time_classify_year.html 535share/doc/groonga/en/html/reference/functions/time_classify_year.html
 536share/doc/groonga/en/html/reference/functions/vector_new.html
516share/doc/groonga/en/html/reference/functions/vector_size.html 537share/doc/groonga/en/html/reference/functions/vector_size.html
517share/doc/groonga/en/html/reference/functions/vector_slice.html 538share/doc/groonga/en/html/reference/functions/vector_slice.html
518share/doc/groonga/en/html/reference/grn_expr.html 539share/doc/groonga/en/html/reference/grn_expr.html
519share/doc/groonga/en/html/reference/grn_expr/query_syntax.html 540share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
520share/doc/groonga/en/html/reference/grn_expr/script_syntax.html 541share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
521share/doc/groonga/en/html/reference/indexing.html 542share/doc/groonga/en/html/reference/indexing.html
522share/doc/groonga/en/html/reference/log.html 543share/doc/groonga/en/html/reference/log.html
523share/doc/groonga/en/html/reference/normalizers.html 544share/doc/groonga/en/html/reference/normalizers.html
524share/doc/groonga/en/html/reference/operations.html 545share/doc/groonga/en/html/reference/operations.html
525share/doc/groonga/en/html/reference/operations/geolocation_search.html 546share/doc/groonga/en/html/reference/operations/geolocation_search.html
526share/doc/groonga/en/html/reference/operations/prefix_rk_search.html 547share/doc/groonga/en/html/reference/operations/prefix_rk_search.html
527share/doc/groonga/en/html/reference/output.html 548share/doc/groonga/en/html/reference/output.html
528share/doc/groonga/en/html/reference/query_expanders.html 549share/doc/groonga/en/html/reference/query_expanders.html
@@ -532,41 +553,46 @@ share/doc/groonga/en/html/reference/scor @@ -532,41 +553,46 @@ share/doc/groonga/en/html/reference/scor
532share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html 553share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html
533share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html 554share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html
534share/doc/groonga/en/html/reference/sharding.html 555share/doc/groonga/en/html/reference/sharding.html
535share/doc/groonga/en/html/reference/suggest.html 556share/doc/groonga/en/html/reference/suggest.html
536share/doc/groonga/en/html/reference/suggest/completion.html 557share/doc/groonga/en/html/reference/suggest/completion.html
537share/doc/groonga/en/html/reference/suggest/correction.html 558share/doc/groonga/en/html/reference/suggest/correction.html
538share/doc/groonga/en/html/reference/suggest/introduction.html 559share/doc/groonga/en/html/reference/suggest/introduction.html
539share/doc/groonga/en/html/reference/suggest/suggestion.html 560share/doc/groonga/en/html/reference/suggest/suggestion.html
540share/doc/groonga/en/html/reference/tables.html 561share/doc/groonga/en/html/reference/tables.html
541share/doc/groonga/en/html/reference/token_filters.html 562share/doc/groonga/en/html/reference/token_filters.html
542share/doc/groonga/en/html/reference/tokenizers.html 563share/doc/groonga/en/html/reference/tokenizers.html
543share/doc/groonga/en/html/reference/tuning.html 564share/doc/groonga/en/html/reference/tuning.html
544share/doc/groonga/en/html/reference/types.html 565share/doc/groonga/en/html/reference/types.html
 566share/doc/groonga/en/html/reference/window_function.html
 567share/doc/groonga/en/html/reference/window_functions/record_number.html
 568share/doc/groonga/en/html/reference/window_functions/window_record_number.html
 569share/doc/groonga/en/html/reference/window_functions/window_sum.html
545share/doc/groonga/en/html/search.html 570share/doc/groonga/en/html/search.html
546share/doc/groonga/en/html/searchindex.js 571share/doc/groonga/en/html/searchindex.js
547share/doc/groonga/en/html/server.html 572share/doc/groonga/en/html/server.html
548share/doc/groonga/en/html/server/gqtp.html 573share/doc/groonga/en/html/server/gqtp.html
549share/doc/groonga/en/html/server/http.html 574share/doc/groonga/en/html/server/http.html
550share/doc/groonga/en/html/server/http/comparison.html 575share/doc/groonga/en/html/server/http/comparison.html
551share/doc/groonga/en/html/server/http/groonga-httpd.html 576share/doc/groonga/en/html/server/http/groonga-httpd.html
552share/doc/groonga/en/html/server/http/groonga.html 577share/doc/groonga/en/html/server/http/groonga.html
553share/doc/groonga/en/html/server/memcached.html 578share/doc/groonga/en/html/server/memcached.html
554share/doc/groonga/en/html/server/package.html 579share/doc/groonga/en/html/server/package.html
555share/doc/groonga/en/html/spec.html 580share/doc/groonga/en/html/spec.html
556share/doc/groonga/en/html/spec/gqtp.html 581share/doc/groonga/en/html/spec/gqtp.html
557share/doc/groonga/en/html/spec/search.html 582share/doc/groonga/en/html/spec/search.html
558share/doc/groonga/en/html/troubleshooting.html 583share/doc/groonga/en/html/troubleshooting.html
559share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html 584share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html
 585share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html
560share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html 586share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html
561share/doc/groonga/en/html/tutorial.html 587share/doc/groonga/en/html/tutorial.html
562share/doc/groonga/en/html/tutorial/data.html 588share/doc/groonga/en/html/tutorial/data.html
563share/doc/groonga/en/html/tutorial/drilldown.html 589share/doc/groonga/en/html/tutorial/drilldown.html
564share/doc/groonga/en/html/tutorial/index.html 590share/doc/groonga/en/html/tutorial/index.html
565share/doc/groonga/en/html/tutorial/introduction.html 591share/doc/groonga/en/html/tutorial/introduction.html
566share/doc/groonga/en/html/tutorial/lexicon.html 592share/doc/groonga/en/html/tutorial/lexicon.html
567share/doc/groonga/en/html/tutorial/match_columns.html 593share/doc/groonga/en/html/tutorial/match_columns.html
568share/doc/groonga/en/html/tutorial/micro_blog.html 594share/doc/groonga/en/html/tutorial/micro_blog.html
569share/doc/groonga/en/html/tutorial/network.html 595share/doc/groonga/en/html/tutorial/network.html
570share/doc/groonga/en/html/tutorial/patricia_trie.html 596share/doc/groonga/en/html/tutorial/patricia_trie.html
571share/doc/groonga/en/html/tutorial/query_expansion.html 597share/doc/groonga/en/html/tutorial/query_expansion.html
572share/doc/groonga/en/html/tutorial/search.html 598share/doc/groonga/en/html/tutorial/search.html
@@ -607,26 +633,27 @@ share/doc/groonga/ja/html/_sources/insta @@ -607,26 +633,27 @@ share/doc/groonga/ja/html/_sources/insta
607share/doc/groonga/ja/html/_sources/install/ubuntu.txt 633share/doc/groonga/ja/html/_sources/install/ubuntu.txt
608share/doc/groonga/ja/html/_sources/install/windows.txt 634share/doc/groonga/ja/html/_sources/install/windows.txt
609share/doc/groonga/ja/html/_sources/limitations.txt 635share/doc/groonga/ja/html/_sources/limitations.txt
610share/doc/groonga/ja/html/_sources/news.txt 636share/doc/groonga/ja/html/_sources/news.txt
611share/doc/groonga/ja/html/_sources/news/0.x.txt 637share/doc/groonga/ja/html/_sources/news/0.x.txt
612share/doc/groonga/ja/html/_sources/news/1.0.x.txt 638share/doc/groonga/ja/html/_sources/news/1.0.x.txt
613share/doc/groonga/ja/html/_sources/news/1.1.x.txt 639share/doc/groonga/ja/html/_sources/news/1.1.x.txt
614share/doc/groonga/ja/html/_sources/news/1.2.x.txt 640share/doc/groonga/ja/html/_sources/news/1.2.x.txt
615share/doc/groonga/ja/html/_sources/news/1.3.x.txt 641share/doc/groonga/ja/html/_sources/news/1.3.x.txt
616share/doc/groonga/ja/html/_sources/news/2.x.txt 642share/doc/groonga/ja/html/_sources/news/2.x.txt
617share/doc/groonga/ja/html/_sources/news/3.x.txt 643share/doc/groonga/ja/html/_sources/news/3.x.txt
618share/doc/groonga/ja/html/_sources/news/4.x.txt 644share/doc/groonga/ja/html/_sources/news/4.x.txt
619share/doc/groonga/ja/html/_sources/news/5.x.txt 645share/doc/groonga/ja/html/_sources/news/5.x.txt
 646share/doc/groonga/ja/html/_sources/news/6.x.txt
620share/doc/groonga/ja/html/_sources/news/senna.txt 647share/doc/groonga/ja/html/_sources/news/senna.txt
621share/doc/groonga/ja/html/_sources/reference.txt 648share/doc/groonga/ja/html/_sources/reference.txt
622share/doc/groonga/ja/html/_sources/reference/alias.txt 649share/doc/groonga/ja/html/_sources/reference/alias.txt
623share/doc/groonga/ja/html/_sources/reference/api.txt 650share/doc/groonga/ja/html/_sources/reference/api.txt
624share/doc/groonga/ja/html/_sources/reference/api/global_configurations.txt 651share/doc/groonga/ja/html/_sources/reference/api/global_configurations.txt
625share/doc/groonga/ja/html/_sources/reference/api/grn_cache.txt 652share/doc/groonga/ja/html/_sources/reference/api/grn_cache.txt
626share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt 653share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt
627share/doc/groonga/ja/html/_sources/reference/api/grn_command_version.txt 654share/doc/groonga/ja/html/_sources/reference/api/grn_command_version.txt
628share/doc/groonga/ja/html/_sources/reference/api/grn_content_type.txt 655share/doc/groonga/ja/html/_sources/reference/api/grn_content_type.txt
629share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt 656share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt
630share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt 657share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt
631share/doc/groonga/ja/html/_sources/reference/api/grn_encoding.txt 658share/doc/groonga/ja/html/_sources/reference/api/grn_encoding.txt
632share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt 659share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt
@@ -700,26 +727,27 @@ share/doc/groonga/ja/html/_sources/refer @@ -700,26 +727,27 @@ share/doc/groonga/ja/html/_sources/refer
700share/doc/groonga/ja/html/_sources/reference/commands/query_expand.txt 727share/doc/groonga/ja/html/_sources/reference/commands/query_expand.txt
701share/doc/groonga/ja/html/_sources/reference/commands/quit.txt 728share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
702share/doc/groonga/ja/html/_sources/reference/commands/range_filter.txt 729share/doc/groonga/ja/html/_sources/reference/commands/range_filter.txt
703share/doc/groonga/ja/html/_sources/reference/commands/register.txt 730share/doc/groonga/ja/html/_sources/reference/commands/register.txt
704share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt 731share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt
705share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt 732share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt
706share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt 733share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt
707share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt 734share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt
708share/doc/groonga/ja/html/_sources/reference/commands/schema.txt 735share/doc/groonga/ja/html/_sources/reference/commands/schema.txt
709share/doc/groonga/ja/html/_sources/reference/commands/select.txt 736share/doc/groonga/ja/html/_sources/reference/commands/select.txt
710share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt 737share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt
711share/doc/groonga/ja/html/_sources/reference/commands/status.txt 738share/doc/groonga/ja/html/_sources/reference/commands/status.txt
712share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt 739share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt
 740share/doc/groonga/ja/html/_sources/reference/commands/table_copy.txt
713share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt 741share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt
714share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt 742share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt
715share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt 743share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt
716share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt 744share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt
717share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt 745share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt
718share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt 746share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt
719share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt 747share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt
720share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt 748share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt
721share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt 749share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt
722share/doc/groonga/ja/html/_sources/reference/configuration.txt 750share/doc/groonga/ja/html/_sources/reference/configuration.txt
723share/doc/groonga/ja/html/_sources/reference/executables.txt 751share/doc/groonga/ja/html/_sources/reference/executables.txt
724share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt 752share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt
725share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt 753share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt
@@ -730,43 +758,46 @@ share/doc/groonga/ja/html/_sources/refer @@ -730,43 +758,46 @@ share/doc/groonga/ja/html/_sources/refer
730share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt 758share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt
731share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt 759share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt
732share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt 760share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt
733share/doc/groonga/ja/html/_sources/reference/function.txt 761share/doc/groonga/ja/html/_sources/reference/function.txt
734share/doc/groonga/ja/html/_sources/reference/functions/between.txt 762share/doc/groonga/ja/html/_sources/reference/functions/between.txt
735share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt 763share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt
736share/doc/groonga/ja/html/_sources/reference/functions/fuzzy_search.txt 764share/doc/groonga/ja/html/_sources/reference/functions/fuzzy_search.txt
737share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt 765share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt
738share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt 766share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt
739share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt 767share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt
740share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt 768share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt
741share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt 769share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt
742share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt 770share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt
 771share/doc/groonga/ja/html/_sources/reference/functions/in_records.txt
743share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt 772share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt
 773share/doc/groonga/ja/html/_sources/reference/functions/math_abs.txt
744share/doc/groonga/ja/html/_sources/reference/functions/now.txt 774share/doc/groonga/ja/html/_sources/reference/functions/now.txt
745share/doc/groonga/ja/html/_sources/reference/functions/number_classify.txt 775share/doc/groonga/ja/html/_sources/reference/functions/number_classify.txt
746share/doc/groonga/ja/html/_sources/reference/functions/prefix_rk_search.txt 776share/doc/groonga/ja/html/_sources/reference/functions/prefix_rk_search.txt
747share/doc/groonga/ja/html/_sources/reference/functions/query.txt 777share/doc/groonga/ja/html/_sources/reference/functions/query.txt
748share/doc/groonga/ja/html/_sources/reference/functions/rand.txt 778share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
749share/doc/groonga/ja/html/_sources/reference/functions/record_number.txt 
750share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt 779share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt
 780share/doc/groonga/ja/html/_sources/reference/functions/string_length.txt
751share/doc/groonga/ja/html/_sources/reference/functions/string_substring.txt 781share/doc/groonga/ja/html/_sources/reference/functions/string_substring.txt
752share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt 782share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt
753share/doc/groonga/ja/html/_sources/reference/functions/time_classify_day.txt 783share/doc/groonga/ja/html/_sources/reference/functions/time_classify_day.txt
754share/doc/groonga/ja/html/_sources/reference/functions/time_classify_hour.txt 784share/doc/groonga/ja/html/_sources/reference/functions/time_classify_hour.txt
755share/doc/groonga/ja/html/_sources/reference/functions/time_classify_minute.txt 785share/doc/groonga/ja/html/_sources/reference/functions/time_classify_minute.txt
756share/doc/groonga/ja/html/_sources/reference/functions/time_classify_month.txt 786share/doc/groonga/ja/html/_sources/reference/functions/time_classify_month.txt
757share/doc/groonga/ja/html/_sources/reference/functions/time_classify_second.txt 787share/doc/groonga/ja/html/_sources/reference/functions/time_classify_second.txt
758share/doc/groonga/ja/html/_sources/reference/functions/time_classify_week.txt 788share/doc/groonga/ja/html/_sources/reference/functions/time_classify_week.txt
759share/doc/groonga/ja/html/_sources/reference/functions/time_classify_year.txt 789share/doc/groonga/ja/html/_sources/reference/functions/time_classify_year.txt
 790share/doc/groonga/ja/html/_sources/reference/functions/vector_new.txt
760share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt 791share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt
761share/doc/groonga/ja/html/_sources/reference/functions/vector_slice.txt 792share/doc/groonga/ja/html/_sources/reference/functions/vector_slice.txt
762share/doc/groonga/ja/html/_sources/reference/grn_expr.txt 793share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
763share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt 794share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
764share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt 795share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
765share/doc/groonga/ja/html/_sources/reference/indexing.txt 796share/doc/groonga/ja/html/_sources/reference/indexing.txt
766share/doc/groonga/ja/html/_sources/reference/log.txt 797share/doc/groonga/ja/html/_sources/reference/log.txt
767share/doc/groonga/ja/html/_sources/reference/normalizers.txt 798share/doc/groonga/ja/html/_sources/reference/normalizers.txt
768share/doc/groonga/ja/html/_sources/reference/operations.txt 799share/doc/groonga/ja/html/_sources/reference/operations.txt
769share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt 800share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt
770share/doc/groonga/ja/html/_sources/reference/operations/prefix_rk_search.txt 801share/doc/groonga/ja/html/_sources/reference/operations/prefix_rk_search.txt
771share/doc/groonga/ja/html/_sources/reference/output.txt 802share/doc/groonga/ja/html/_sources/reference/output.txt
772share/doc/groonga/ja/html/_sources/reference/query_expanders.txt 803share/doc/groonga/ja/html/_sources/reference/query_expanders.txt
@@ -776,39 +807,44 @@ share/doc/groonga/ja/html/_sources/refer @@ -776,39 +807,44 @@ share/doc/groonga/ja/html/_sources/refer
776share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt 807share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt
777share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt 808share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt
778share/doc/groonga/ja/html/_sources/reference/sharding.txt 809share/doc/groonga/ja/html/_sources/reference/sharding.txt
779share/doc/groonga/ja/html/_sources/reference/suggest.txt 810share/doc/groonga/ja/html/_sources/reference/suggest.txt
780share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt 811share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt
781share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt 812share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt
782share/doc/groonga/ja/html/_sources/reference/suggest/introduction.txt 813share/doc/groonga/ja/html/_sources/reference/suggest/introduction.txt
783share/doc/groonga/ja/html/_sources/reference/suggest/suggestion.txt 814share/doc/groonga/ja/html/_sources/reference/suggest/suggestion.txt
784share/doc/groonga/ja/html/_sources/reference/tables.txt 815share/doc/groonga/ja/html/_sources/reference/tables.txt
785share/doc/groonga/ja/html/_sources/reference/token_filters.txt 816share/doc/groonga/ja/html/_sources/reference/token_filters.txt
786share/doc/groonga/ja/html/_sources/reference/tokenizers.txt 817share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
787share/doc/groonga/ja/html/_sources/reference/tuning.txt 818share/doc/groonga/ja/html/_sources/reference/tuning.txt
788share/doc/groonga/ja/html/_sources/reference/types.txt 819share/doc/groonga/ja/html/_sources/reference/types.txt
 820share/doc/groonga/ja/html/_sources/reference/window_function.txt
 821share/doc/groonga/ja/html/_sources/reference/window_functions/record_number.txt
 822share/doc/groonga/ja/html/_sources/reference/window_functions/window_record_number.txt
 823share/doc/groonga/ja/html/_sources/reference/window_functions/window_sum.txt
789share/doc/groonga/ja/html/_sources/server.txt 824share/doc/groonga/ja/html/_sources/server.txt
790share/doc/groonga/ja/html/_sources/server/gqtp.txt 825share/doc/groonga/ja/html/_sources/server/gqtp.txt
791share/doc/groonga/ja/html/_sources/server/http.txt 826share/doc/groonga/ja/html/_sources/server/http.txt
792share/doc/groonga/ja/html/_sources/server/http/comparison.txt 827share/doc/groonga/ja/html/_sources/server/http/comparison.txt
793share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt 828share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
794share/doc/groonga/ja/html/_sources/server/http/groonga.txt 829share/doc/groonga/ja/html/_sources/server/http/groonga.txt
795share/doc/groonga/ja/html/_sources/server/memcached.txt 830share/doc/groonga/ja/html/_sources/server/memcached.txt
796share/doc/groonga/ja/html/_sources/server/package.txt 831share/doc/groonga/ja/html/_sources/server/package.txt
797share/doc/groonga/ja/html/_sources/spec.txt 832share/doc/groonga/ja/html/_sources/spec.txt
798share/doc/groonga/ja/html/_sources/spec/gqtp.txt 833share/doc/groonga/ja/html/_sources/spec/gqtp.txt
799share/doc/groonga/ja/html/_sources/spec/search.txt 834share/doc/groonga/ja/html/_sources/spec/search.txt
800share/doc/groonga/ja/html/_sources/troubleshooting.txt 835share/doc/groonga/ja/html/_sources/troubleshooting.txt
801share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt 836share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt
 837share/doc/groonga/ja/html/_sources/troubleshooting/how_to_analyze_error_message.txt
802share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt 838share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt
803share/doc/groonga/ja/html/_sources/tutorial.txt 839share/doc/groonga/ja/html/_sources/tutorial.txt
804share/doc/groonga/ja/html/_sources/tutorial/data.txt 840share/doc/groonga/ja/html/_sources/tutorial/data.txt
805share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt 841share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt
806share/doc/groonga/ja/html/_sources/tutorial/index.txt 842share/doc/groonga/ja/html/_sources/tutorial/index.txt
807share/doc/groonga/ja/html/_sources/tutorial/introduction.txt 843share/doc/groonga/ja/html/_sources/tutorial/introduction.txt
808share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt 844share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt
809share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt 845share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt
810share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt 846share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt
811share/doc/groonga/ja/html/_sources/tutorial/network.txt 847share/doc/groonga/ja/html/_sources/tutorial/network.txt
812share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt 848share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt
813share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt 849share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt
814share/doc/groonga/ja/html/_sources/tutorial/search.txt 850share/doc/groonga/ja/html/_sources/tutorial/search.txt
@@ -871,26 +907,27 @@ share/doc/groonga/ja/html/install/solari @@ -871,26 +907,27 @@ share/doc/groonga/ja/html/install/solari
871share/doc/groonga/ja/html/install/ubuntu.html 907share/doc/groonga/ja/html/install/ubuntu.html
872share/doc/groonga/ja/html/install/windows.html 908share/doc/groonga/ja/html/install/windows.html
873share/doc/groonga/ja/html/limitations.html 909share/doc/groonga/ja/html/limitations.html
874share/doc/groonga/ja/html/news.html 910share/doc/groonga/ja/html/news.html
875share/doc/groonga/ja/html/news/0.x.html 911share/doc/groonga/ja/html/news/0.x.html
876share/doc/groonga/ja/html/news/1.0.x.html 912share/doc/groonga/ja/html/news/1.0.x.html
877share/doc/groonga/ja/html/news/1.1.x.html 913share/doc/groonga/ja/html/news/1.1.x.html
878share/doc/groonga/ja/html/news/1.2.x.html 914share/doc/groonga/ja/html/news/1.2.x.html
879share/doc/groonga/ja/html/news/1.3.x.html 915share/doc/groonga/ja/html/news/1.3.x.html
880share/doc/groonga/ja/html/news/2.x.html 916share/doc/groonga/ja/html/news/2.x.html
881share/doc/groonga/ja/html/news/3.x.html 917share/doc/groonga/ja/html/news/3.x.html
882share/doc/groonga/ja/html/news/4.x.html 918share/doc/groonga/ja/html/news/4.x.html
883share/doc/groonga/ja/html/news/5.x.html 919share/doc/groonga/ja/html/news/5.x.html
 920share/doc/groonga/ja/html/news/6.x.html
884share/doc/groonga/ja/html/news/senna.html 921share/doc/groonga/ja/html/news/senna.html
885share/doc/groonga/ja/html/objects.inv 922share/doc/groonga/ja/html/objects.inv
886share/doc/groonga/ja/html/reference.html 923share/doc/groonga/ja/html/reference.html
887share/doc/groonga/ja/html/reference/alias.html 924share/doc/groonga/ja/html/reference/alias.html
888share/doc/groonga/ja/html/reference/api.html 925share/doc/groonga/ja/html/reference/api.html
889share/doc/groonga/ja/html/reference/api/global_configurations.html 926share/doc/groonga/ja/html/reference/api/global_configurations.html
890share/doc/groonga/ja/html/reference/api/grn_cache.html 927share/doc/groonga/ja/html/reference/api/grn_cache.html
891share/doc/groonga/ja/html/reference/api/grn_column.html 928share/doc/groonga/ja/html/reference/api/grn_column.html
892share/doc/groonga/ja/html/reference/api/grn_command_version.html 929share/doc/groonga/ja/html/reference/api/grn_command_version.html
893share/doc/groonga/ja/html/reference/api/grn_content_type.html 930share/doc/groonga/ja/html/reference/api/grn_content_type.html
894share/doc/groonga/ja/html/reference/api/grn_ctx.html 931share/doc/groonga/ja/html/reference/api/grn_ctx.html
895share/doc/groonga/ja/html/reference/api/grn_db.html 932share/doc/groonga/ja/html/reference/api/grn_db.html
896share/doc/groonga/ja/html/reference/api/grn_encoding.html 933share/doc/groonga/ja/html/reference/api/grn_encoding.html
@@ -965,26 +1002,27 @@ share/doc/groonga/ja/html/reference/comm @@ -965,26 +1002,27 @@ share/doc/groonga/ja/html/reference/comm
965share/doc/groonga/ja/html/reference/commands/query_expand.html 1002share/doc/groonga/ja/html/reference/commands/query_expand.html
966share/doc/groonga/ja/html/reference/commands/quit.html 1003share/doc/groonga/ja/html/reference/commands/quit.html
967share/doc/groonga/ja/html/reference/commands/range_filter.html 1004share/doc/groonga/ja/html/reference/commands/range_filter.html
968share/doc/groonga/ja/html/reference/commands/register.html 1005share/doc/groonga/ja/html/reference/commands/register.html
969share/doc/groonga/ja/html/reference/commands/reindex.html 1006share/doc/groonga/ja/html/reference/commands/reindex.html
970share/doc/groonga/ja/html/reference/commands/request_cancel.html 1007share/doc/groonga/ja/html/reference/commands/request_cancel.html
971share/doc/groonga/ja/html/reference/commands/ruby_eval.html 1008share/doc/groonga/ja/html/reference/commands/ruby_eval.html
972share/doc/groonga/ja/html/reference/commands/ruby_load.html 1009share/doc/groonga/ja/html/reference/commands/ruby_load.html
973share/doc/groonga/ja/html/reference/commands/schema.html 1010share/doc/groonga/ja/html/reference/commands/schema.html
974share/doc/groonga/ja/html/reference/commands/select.html 1011share/doc/groonga/ja/html/reference/commands/select.html
975share/doc/groonga/ja/html/reference/commands/shutdown.html 1012share/doc/groonga/ja/html/reference/commands/shutdown.html
976share/doc/groonga/ja/html/reference/commands/status.html 1013share/doc/groonga/ja/html/reference/commands/status.html
977share/doc/groonga/ja/html/reference/commands/suggest.html 1014share/doc/groonga/ja/html/reference/commands/suggest.html
 1015share/doc/groonga/ja/html/reference/commands/table_copy.html
978share/doc/groonga/ja/html/reference/commands/table_create.html 1016share/doc/groonga/ja/html/reference/commands/table_create.html
979share/doc/groonga/ja/html/reference/commands/table_list.html 1017share/doc/groonga/ja/html/reference/commands/table_list.html
980share/doc/groonga/ja/html/reference/commands/table_remove.html 1018share/doc/groonga/ja/html/reference/commands/table_remove.html
981share/doc/groonga/ja/html/reference/commands/table_rename.html 1019share/doc/groonga/ja/html/reference/commands/table_rename.html
982share/doc/groonga/ja/html/reference/commands/table_tokenize.html 1020share/doc/groonga/ja/html/reference/commands/table_tokenize.html
983share/doc/groonga/ja/html/reference/commands/thread_limit.html 1021share/doc/groonga/ja/html/reference/commands/thread_limit.html
984share/doc/groonga/ja/html/reference/commands/tokenize.html 1022share/doc/groonga/ja/html/reference/commands/tokenize.html
985share/doc/groonga/ja/html/reference/commands/tokenizer_list.html 1023share/doc/groonga/ja/html/reference/commands/tokenizer_list.html
986share/doc/groonga/ja/html/reference/commands/truncate.html 1024share/doc/groonga/ja/html/reference/commands/truncate.html
987share/doc/groonga/ja/html/reference/configuration.html 1025share/doc/groonga/ja/html/reference/configuration.html
988share/doc/groonga/ja/html/reference/executables.html 1026share/doc/groonga/ja/html/reference/executables.html
989share/doc/groonga/ja/html/reference/executables/grndb.html 1027share/doc/groonga/ja/html/reference/executables/grndb.html
990share/doc/groonga/ja/html/reference/executables/grnslap.html 1028share/doc/groonga/ja/html/reference/executables/grnslap.html
@@ -995,43 +1033,46 @@ share/doc/groonga/ja/html/reference/exec @@ -995,43 +1033,46 @@ share/doc/groonga/ja/html/reference/exec
995share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html 1033share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html
996share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html 1034share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html
997share/doc/groonga/ja/html/reference/executables/groonga.html 1035share/doc/groonga/ja/html/reference/executables/groonga.html
998share/doc/groonga/ja/html/reference/function.html 1036share/doc/groonga/ja/html/reference/function.html
999share/doc/groonga/ja/html/reference/functions/between.html 1037share/doc/groonga/ja/html/reference/functions/between.html
1000share/doc/groonga/ja/html/reference/functions/edit_distance.html 1038share/doc/groonga/ja/html/reference/functions/edit_distance.html
1001share/doc/groonga/ja/html/reference/functions/fuzzy_search.html 1039share/doc/groonga/ja/html/reference/functions/fuzzy_search.html
1002share/doc/groonga/ja/html/reference/functions/geo_distance.html 1040share/doc/groonga/ja/html/reference/functions/geo_distance.html
1003share/doc/groonga/ja/html/reference/functions/geo_in_circle.html 1041share/doc/groonga/ja/html/reference/functions/geo_in_circle.html
1004share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html 1042share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html
1005share/doc/groonga/ja/html/reference/functions/highlight_full.html 1043share/doc/groonga/ja/html/reference/functions/highlight_full.html
1006share/doc/groonga/ja/html/reference/functions/highlight_html.html 1044share/doc/groonga/ja/html/reference/functions/highlight_html.html
1007share/doc/groonga/ja/html/reference/functions/html_untag.html 1045share/doc/groonga/ja/html/reference/functions/html_untag.html
 1046share/doc/groonga/ja/html/reference/functions/in_records.html
1008share/doc/groonga/ja/html/reference/functions/in_values.html 1047share/doc/groonga/ja/html/reference/functions/in_values.html
 1048share/doc/groonga/ja/html/reference/functions/math_abs.html
1009share/doc/groonga/ja/html/reference/functions/now.html 1049share/doc/groonga/ja/html/reference/functions/now.html
1010share/doc/groonga/ja/html/reference/functions/number_classify.html 1050share/doc/groonga/ja/html/reference/functions/number_classify.html
1011share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html 1051share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html
1012share/doc/groonga/ja/html/reference/functions/query.html 1052share/doc/groonga/ja/html/reference/functions/query.html
1013share/doc/groonga/ja/html/reference/functions/rand.html 1053share/doc/groonga/ja/html/reference/functions/rand.html
1014share/doc/groonga/ja/html/reference/functions/record_number.html 
1015share/doc/groonga/ja/html/reference/functions/snippet_html.html 1054share/doc/groonga/ja/html/reference/functions/snippet_html.html
 1055share/doc/groonga/ja/html/reference/functions/string_length.html
1016share/doc/groonga/ja/html/reference/functions/string_substring.html 1056share/doc/groonga/ja/html/reference/functions/string_substring.html
1017share/doc/groonga/ja/html/reference/functions/sub_filter.html 1057share/doc/groonga/ja/html/reference/functions/sub_filter.html
1018share/doc/groonga/ja/html/reference/functions/time_classify_day.html 1058share/doc/groonga/ja/html/reference/functions/time_classify_day.html
1019share/doc/groonga/ja/html/reference/functions/time_classify_hour.html 1059share/doc/groonga/ja/html/reference/functions/time_classify_hour.html
1020share/doc/groonga/ja/html/reference/functions/time_classify_minute.html 1060share/doc/groonga/ja/html/reference/functions/time_classify_minute.html
1021share/doc/groonga/ja/html/reference/functions/time_classify_month.html 1061share/doc/groonga/ja/html/reference/functions/time_classify_month.html
1022share/doc/groonga/ja/html/reference/functions/time_classify_second.html 1062share/doc/groonga/ja/html/reference/functions/time_classify_second.html
1023share/doc/groonga/ja/html/reference/functions/time_classify_week.html 1063share/doc/groonga/ja/html/reference/functions/time_classify_week.html
1024share/doc/groonga/ja/html/reference/functions/time_classify_year.html 1064share/doc/groonga/ja/html/reference/functions/time_classify_year.html
 1065share/doc/groonga/ja/html/reference/functions/vector_new.html
1025share/doc/groonga/ja/html/reference/functions/vector_size.html 1066share/doc/groonga/ja/html/reference/functions/vector_size.html
1026share/doc/groonga/ja/html/reference/functions/vector_slice.html 1067share/doc/groonga/ja/html/reference/functions/vector_slice.html
1027share/doc/groonga/ja/html/reference/grn_expr.html 1068share/doc/groonga/ja/html/reference/grn_expr.html
1028share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html 1069share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
1029share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html 1070share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
1030share/doc/groonga/ja/html/reference/indexing.html 1071share/doc/groonga/ja/html/reference/indexing.html
1031share/doc/groonga/ja/html/reference/log.html 1072share/doc/groonga/ja/html/reference/log.html
1032share/doc/groonga/ja/html/reference/normalizers.html 1073share/doc/groonga/ja/html/reference/normalizers.html
1033share/doc/groonga/ja/html/reference/operations.html 1074share/doc/groonga/ja/html/reference/operations.html
1034share/doc/groonga/ja/html/reference/operations/geolocation_search.html 1075share/doc/groonga/ja/html/reference/operations/geolocation_search.html
1035share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html 1076share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html
1036share/doc/groonga/ja/html/reference/output.html 1077share/doc/groonga/ja/html/reference/output.html
1037share/doc/groonga/ja/html/reference/query_expanders.html 1078share/doc/groonga/ja/html/reference/query_expanders.html
@@ -1041,64 +1082,68 @@ share/doc/groonga/ja/html/reference/scor @@ -1041,64 +1082,68 @@ share/doc/groonga/ja/html/reference/scor
1041share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html 1082share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html
1042share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html 1083share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html
1043share/doc/groonga/ja/html/reference/sharding.html 1084share/doc/groonga/ja/html/reference/sharding.html
1044share/doc/groonga/ja/html/reference/suggest.html 1085share/doc/groonga/ja/html/reference/suggest.html
1045share/doc/groonga/ja/html/reference/suggest/completion.html 1086share/doc/groonga/ja/html/reference/suggest/completion.html
1046share/doc/groonga/ja/html/reference/suggest/correction.html 1087share/doc/groonga/ja/html/reference/suggest/correction.html
1047share/doc/groonga/ja/html/reference/suggest/introduction.html 1088share/doc/groonga/ja/html/reference/suggest/introduction.html
1048share/doc/groonga/ja/html/reference/suggest/suggestion.html 1089share/doc/groonga/ja/html/reference/suggest/suggestion.html
1049share/doc/groonga/ja/html/reference/tables.html 1090share/doc/groonga/ja/html/reference/tables.html
1050share/doc/groonga/ja/html/reference/token_filters.html 1091share/doc/groonga/ja/html/reference/token_filters.html
1051share/doc/groonga/ja/html/reference/tokenizers.html 1092share/doc/groonga/ja/html/reference/tokenizers.html
1052share/doc/groonga/ja/html/reference/tuning.html 1093share/doc/groonga/ja/html/reference/tuning.html
1053share/doc/groonga/ja/html/reference/types.html 1094share/doc/groonga/ja/html/reference/types.html
 1095share/doc/groonga/ja/html/reference/window_function.html
 1096share/doc/groonga/ja/html/reference/window_functions/record_number.html
 1097share/doc/groonga/ja/html/reference/window_functions/window_record_number.html
 1098share/doc/groonga/ja/html/reference/window_functions/window_sum.html
1054share/doc/groonga/ja/html/search.html 1099share/doc/groonga/ja/html/search.html
1055share/doc/groonga/ja/html/searchindex.js 1100share/doc/groonga/ja/html/searchindex.js
1056share/doc/groonga/ja/html/server.html 1101share/doc/groonga/ja/html/server.html
1057share/doc/groonga/ja/html/server/gqtp.html 1102share/doc/groonga/ja/html/server/gqtp.html
1058share/doc/groonga/ja/html/server/http.html 1103share/doc/groonga/ja/html/server/http.html
1059share/doc/groonga/ja/html/server/http/comparison.html 1104share/doc/groonga/ja/html/server/http/comparison.html
1060share/doc/groonga/ja/html/server/http/groonga-httpd.html 1105share/doc/groonga/ja/html/server/http/groonga-httpd.html
1061share/doc/groonga/ja/html/server/http/groonga.html 1106share/doc/groonga/ja/html/server/http/groonga.html
1062share/doc/groonga/ja/html/server/memcached.html 1107share/doc/groonga/ja/html/server/memcached.html
1063share/doc/groonga/ja/html/server/package.html 1108share/doc/groonga/ja/html/server/package.html
1064share/doc/groonga/ja/html/spec.html 1109share/doc/groonga/ja/html/spec.html
1065share/doc/groonga/ja/html/spec/gqtp.html 1110share/doc/groonga/ja/html/spec/gqtp.html
1066share/doc/groonga/ja/html/spec/search.html 1111share/doc/groonga/ja/html/spec/search.html
1067share/doc/groonga/ja/html/troubleshooting.html 1112share/doc/groonga/ja/html/troubleshooting.html
1068share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html 1113share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html
 1114share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html
1069share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html 1115share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html
1070share/doc/groonga/ja/html/tutorial.html 1116share/doc/groonga/ja/html/tutorial.html
1071share/doc/groonga/ja/html/tutorial/data.html 1117share/doc/groonga/ja/html/tutorial/data.html
1072share/doc/groonga/ja/html/tutorial/drilldown.html 1118share/doc/groonga/ja/html/tutorial/drilldown.html
1073share/doc/groonga/ja/html/tutorial/index.html 1119share/doc/groonga/ja/html/tutorial/index.html
1074share/doc/groonga/ja/html/tutorial/introduction.html 1120share/doc/groonga/ja/html/tutorial/introduction.html
1075share/doc/groonga/ja/html/tutorial/lexicon.html 1121share/doc/groonga/ja/html/tutorial/lexicon.html
1076share/doc/groonga/ja/html/tutorial/match_columns.html 1122share/doc/groonga/ja/html/tutorial/match_columns.html
1077share/doc/groonga/ja/html/tutorial/micro_blog.html 1123share/doc/groonga/ja/html/tutorial/micro_blog.html
1078share/doc/groonga/ja/html/tutorial/network.html 1124share/doc/groonga/ja/html/tutorial/network.html
1079share/doc/groonga/ja/html/tutorial/patricia_trie.html 1125share/doc/groonga/ja/html/tutorial/patricia_trie.html
1080share/doc/groonga/ja/html/tutorial/query_expansion.html 1126share/doc/groonga/ja/html/tutorial/query_expansion.html
1081share/doc/groonga/ja/html/tutorial/search.html 1127share/doc/groonga/ja/html/tutorial/search.html
1082share/examples/groonga/groonga.conf 1128share/examples/groonga/groonga.conf
1083${PLIST.httpd}share/examples/groonga/httpd/fastcgi.conf 1129${PLIST.httpd}share/examples/groonga/httpd/fastcgi.conf
1084${PLIST.httpd}share/examples/groonga/httpd/fastcgi_params 1130${PLIST.httpd}share/examples/groonga/httpd/fastcgi_params
1085share/examples/groonga/httpd/groonga-httpd.conf 1131share/examples/groonga/httpd/groonga-httpd.conf
1086${PLIST.httpd}share/examples/groonga/httpd/html/50x.html 1132${PLIST.httpd}share/examples/groonga/httpd/html/50x.html
1087${PLIST.httpd}share/examples/groonga/httpd/html/index.html 1133${PLIST.httpd}share/examples/groonga/httpd/html/index.html
1088${PLIST.httpd}share/examples/groonga/httpd/koi-utf 1134${PLIST.httpd}share/examples/groonga/httpd/koi-utf
1089${PLIST.httpd}share/examples/groonga/httpd/koi-win 1135${PLIST.httpd}share/examples/groonga/httpd/koi-win
1090${PLIST.httpd}share/examples/groonga/httpd/mime.types 1136${PLIST.httpd}share/examples/groonga/httpd/mime.types
1091${PLIST.httpd}share/examples/groonga/httpd/nginx.conf 
1092${PLIST.httpd}share/examples/groonga/httpd/scgi_params 1137${PLIST.httpd}share/examples/groonga/httpd/scgi_params
1093${PLIST.httpd}share/examples/groonga/httpd/uwsgi_params 1138${PLIST.httpd}share/examples/groonga/httpd/uwsgi_params
1094${PLIST.httpd}share/examples/groonga/httpd/win-utf 1139${PLIST.httpd}share/examples/groonga/httpd/win-utf
1095share/examples/groonga/synonyms.tsv 1140share/examples/groonga/synonyms.tsv
1096share/groonga/examples/dictionary/edict/edict-import.sh 1141share/groonga/examples/dictionary/edict/edict-import.sh
1097share/groonga/examples/dictionary/edict/edict2grn.rb 1142share/groonga/examples/dictionary/edict/edict2grn.rb
1098share/groonga/examples/dictionary/eijiro/eijiro-import.sh 1143share/groonga/examples/dictionary/eijiro/eijiro-import.sh
1099share/groonga/examples/dictionary/eijiro/eijiro2grn.rb 1144share/groonga/examples/dictionary/eijiro/eijiro2grn.rb
1100share/groonga/examples/dictionary/gene95/gene-import.sh 1145share/groonga/examples/dictionary/gene95/gene-import.sh
1101share/groonga/examples/dictionary/gene95/gene2grn.rb 1146share/groonga/examples/dictionary/gene95/gene2grn.rb
1102share/groonga/examples/dictionary/html/css/dictionary.css 1147share/groonga/examples/dictionary/html/css/dictionary.css
1103share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png 1148share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
1104share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png 1149share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
@@ -1142,63 +1187,13 @@ share/groonga/html/admin/favicon.ico @@ -1142,63 +1187,13 @@ share/groonga/html/admin/favicon.ico
1142share/groonga/html/admin/favicon.png 1187share/groonga/html/admin/favicon.png
1143share/groonga/html/admin/favicon.svg 1188share/groonga/html/admin/favicon.svg
1144share/groonga/html/admin/images/groonga.png 1189share/groonga/html/admin/images/groonga.png
1145share/groonga/html/admin/images/groonga.svg 1190share/groonga/html/admin/images/groonga.svg
1146share/groonga/html/admin/images/loading.gif 1191share/groonga/html/admin/images/loading.gif
1147share/groonga/html/admin/index.html 1192share/groonga/html/admin/index.html
1148share/groonga/html/admin/index.ja.html 1193share/groonga/html/admin/index.ja.html
1149share/groonga/html/admin/js/groonga-admin.ja.js 1194share/groonga/html/admin/js/groonga-admin.ja.js
1150share/groonga/html/admin/js/groonga-admin.js 1195share/groonga/html/admin/js/groonga-admin.js
1151share/groonga/html/admin/js/jquery-1.7.2.js 1196share/groonga/html/admin/js/jquery-1.7.2.js
1152share/groonga/html/admin/js/jquery-ui-1.8.18.custom.js 1197share/groonga/html/admin/js/jquery-ui-1.8.18.custom.js
1153share/groonga/html/admin/js/jquery.flot-0.8.3.js 1198share/groonga/html/admin/js/jquery.flot-0.8.3.js
1154share/groonga/html/admin/js/jquery.flot.license.txt 1199share/groonga/html/admin/js/jquery.flot.license.txt
1155share/groonga/images/logo/groonga-icon-foreground-white.png 
1156share/groonga/images/logo/groonga-icon-foreground-white.svg 
1157share/groonga/images/logo/groonga-icon-full-size.png 
1158share/groonga/images/logo/groonga-icon-full-size.svg 
1159share/groonga/images/logo/groonga-icon.png 
1160share/groonga/images/logo/groonga-icon.svg 
1161share/groonga/images/logo/groonga-logo-foreground-white.png 
1162share/groonga/images/logo/groonga-logo-foreground-white.svg 
1163share/groonga/images/logo/groonga-logo.png 
1164share/groonga/images/logo/groonga-logo.svg 
1165share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png 
1166share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg 
1167share/groonga/images/logo/groonga-powered-by-banner-bar.png 
1168share/groonga/images/logo/groonga-powered-by-banner-bar.svg 
1169share/groonga/images/logo/groonga-powered-by-banner-foreground-white.png 
1170share/groonga/images/logo/groonga-powered-by-banner-foreground-white.svg 
1171share/groonga/images/logo/groonga-powered-by-banner-large.png 
1172share/groonga/images/logo/groonga-powered-by-banner-large.svg 
1173share/groonga/images/logo/groonga-powered-by-banner.png 
1174share/groonga/images/logo/groonga-powered-by-banner.svg 
1175share/groonga/images/logo/mroonga-icon-foreground-white.png 
1176share/groonga/images/logo/mroonga-icon-foreground-white.svg 
1177share/groonga/images/logo/mroonga-icon-full-size.png 
1178share/groonga/images/logo/mroonga-icon-full-size.svg 
1179share/groonga/images/logo/mroonga-icon.png 
1180share/groonga/images/logo/mroonga-icon.svg 
1181share/groonga/images/logo/mroonga-logo-foreground-white.png 
1182share/groonga/images/logo/mroonga-logo-foreground-white.svg 
1183share/groonga/images/logo/mroonga-logo.png 
1184share/groonga/images/logo/mroonga-logo.svg 
1185share/groonga/images/logo/nroonga-icon-foreground-white.png 
1186share/groonga/images/logo/nroonga-icon-foreground-white.svg 
1187share/groonga/images/logo/nroonga-icon-full-size.png 
1188share/groonga/images/logo/nroonga-icon-full-size.svg 
1189share/groonga/images/logo/nroonga-icon.png 
1190share/groonga/images/logo/nroonga-icon.svg 
1191share/groonga/images/logo/nroonga-logo-foreground-white.png 
1192share/groonga/images/logo/nroonga-logo-foreground-white.svg 
1193share/groonga/images/logo/nroonga-logo.png 
1194share/groonga/images/logo/nroonga-logo.svg 
1195share/groonga/images/logo/rroonga-icon-foreground-white.png 
1196share/groonga/images/logo/rroonga-icon-foreground-white.svg 
1197share/groonga/images/logo/rroonga-icon-full-size.png 
1198share/groonga/images/logo/rroonga-icon-full-size.svg 
1199share/groonga/images/logo/rroonga-icon.png 
1200share/groonga/images/logo/rroonga-icon.svg 
1201share/groonga/images/logo/rroonga-logo-foreground-white.png 
1202share/groonga/images/logo/rroonga-logo-foreground-white.svg 
1203share/groonga/images/logo/rroonga-logo.png 
1204share/groonga/images/logo/rroonga-logo.svg 

File Added: pkgsrc/textproc/groonga/buildlink3.mk
# $NetBSD: buildlink3.mk,v 1.1 2017/08/29 12:54:47 fhajny Exp $

BUILDLINK_TREE+=	groonga

.if !defined(GROONGA_BUILDLINK3_MK)
GROONGA_BUILDLINK3_MK:=

BUILDLINK_API_DEPENDS.groonga+=	groonga>=7.0.4
BUILDLINK_PKGSRCDIR.groonga?=	../../textproc/groonga
BUILDLINK_INCDIRS.groonga+=	include/groonga

.include "../../devel/editline/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"

pkgbase := groonga
.include "../../mk/pkg-build-options.mk"

.if !empty(PKG_OPTIONS:Mgroonga-suggest-learner)
.include "../../devel/msgpack/buildlink3.mk"
.endif

.if !empty(PKG_OPTIONS:Mlz4)
.include "../../archivers/lz4/buildlink3.mk"
.endif

.if !empty(PKG_OPTIONS:Mmecab)
.include "../../textproc/mecab/buildlink3.mk"
.endif

.if !empty(PKG_OPTIONS:Mzlib)
.include "../../devel/zlib/buildlink3.mk"
.endif

.endif	# GROONGA_BUILDLINK3_MK

BUILDLINK_TREE+=	-groonga

cvs diff -r1.42 -r1.43 pkgsrc/textproc/groonga/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/distinfo 2016/09/11 16:06:53 1.42
+++ pkgsrc/textproc/groonga/distinfo 2017/08/29 12:54:47 1.43
@@ -1,8 +1,6 @@ @@ -1,8 +1,6 @@
1$NetBSD: distinfo,v 1.42 2016/09/11 16:06:53 taca Exp $ 1$NetBSD: distinfo,v 1.43 2017/08/29 12:54:47 fhajny Exp $
2 2
3SHA1 (groonga-6.0.8.tar.gz) = e00954641ac1e8594f37853e6f9d2aab59496061 3SHA1 (groonga-7.0.5.tar.gz) = e47df917bfe9120f063d5206a05b354ac6da3d53
4RMD160 (groonga-6.0.8.tar.gz) = 18ffe56b547204f0a5cf891f2ffae83016f46324 4RMD160 (groonga-7.0.5.tar.gz) = eb7d818b4eef91774cfa64585c8bb927c7283726
5SHA512 (groonga-6.0.8.tar.gz) = 1f4effe375f58a2604851f5af58e004e5da098898a488a14a9da0e0806efb00ef01d0cbfae3312535241133e84707b2824dd88593d4ff29580ca22f7247ea7ec 5SHA512 (groonga-7.0.5.tar.gz) = d5db9617fc6e799f14c687a435c1de46b4d30f77def60712531a3f4a76e9d67c836f07c91e7252d63eeb79629b47f73e612143139ff12226344315d35ac5e9ec
6Size (groonga-6.0.8.tar.gz) = 13704493 bytes 6Size (groonga-7.0.5.tar.gz) = 14463662 bytes
7SHA1 (patch-data_scripts_Makefile.in) = 3ad802186af2d4a95286322546d29d33a1505928 
8SHA1 (patch-vendor_nginx-1.11.3_auto_install) = bc3c0557e18dd41dad20ab36933e160f3c557c78 

cvs diff -r1.17 -r1.18 pkgsrc/textproc/groonga/options.mk (expand / switch to unified diff)

--- pkgsrc/textproc/groonga/options.mk 2016/09/11 16:06:53 1.17
+++ pkgsrc/textproc/groonga/options.mk 2017/08/29 12:54:47 1.18
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.17 2016/09/11 16:06:53 taca Exp $ 1# $NetBSD: options.mk,v 1.18 2017/08/29 12:54:47 fhajny Exp $
2# 2#
3 3
4PKG_OPTIONS_VAR= PKG_OPTIONS.groonga 4PKG_OPTIONS_VAR= PKG_OPTIONS.groonga
5PKG_SUPPORTED_OPTIONS= mecab tests zlib lz4 5PKG_SUPPORTED_OPTIONS= mecab tests zlib lz4
6PKG_SUPPORTED_OPTIONS+= groonga-suggest-learner groonga-httpd 6PKG_SUPPORTED_OPTIONS+= groonga-suggest-learner groonga-httpd
7PKG_SUGGESTED_OPTIONS= mecab groonga-suggest-learner groonga-httpd 7PKG_SUGGESTED_OPTIONS= mecab groonga-suggest-learner groonga-httpd
8 8
9.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
10 10
11PLIST_VARS+= mecab learner httpd 11PLIST_VARS+= mecab learner httpd
12 12
13.if !empty(PKG_OPTIONS:Mmecab) 13.if !empty(PKG_OPTIONS:Mmecab)
14CONFIGURE_ARGS+= --with-mecab 14CONFIGURE_ARGS+= --with-mecab
@@ -56,46 +56,47 @@ CONFIGURE_ARGS+= --without-message-pack @@ -56,46 +56,47 @@ CONFIGURE_ARGS+= --without-message-pack
56CONFIGURE_ARGS+= --disable-zeromq 56CONFIGURE_ARGS+= --disable-zeromq
57.endif 57.endif
58 58
59.if !empty(PKG_OPTIONS:Mgroonga-httpd) 59.if !empty(PKG_OPTIONS:Mgroonga-httpd)
60.include "../../devel/pcre/buildlink3.mk" 60.include "../../devel/pcre/buildlink3.mk"
61CONFIGURE_ARGS+= --enable-groonga-httpd 61CONFIGURE_ARGS+= --enable-groonga-httpd
62PLIST.httpd= yes 62PLIST.httpd= yes
63OWN_DIRS+= ${PKG_SYSCONFDIR}/httpd/html 63OWN_DIRS+= ${PKG_SYSCONFDIR}/httpd/html
64OWN_DIRS+= ${PKG_SYSCONFDIR}/httpd 64OWN_DIRS+= ${PKG_SYSCONFDIR}/httpd
65OWN_DIRS+= ${VARBASE}/run/${PKGBASE} 65OWN_DIRS+= ${VARBASE}/run/${PKGBASE}
66OWN_DIRS+= ${VARBASE}/log/${PKGBASE}/httpd 66OWN_DIRS+= ${VARBASE}/log/${PKGBASE}/httpd
67BUILD_DEFS+= VARBASE 67BUILD_DEFS+= VARBASE
68 68
69CONF_FILES+= share/examples/${PKGBASE}/httpd/fastcgi.conf \ 69CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/fastcgi.conf \
70 ${PKG_SYSCONFDIR}/httpd/fastcgi.conf 70 ${PKG_SYSCONFDIR}/httpd/fastcgi.conf
71CONF_FILES+= share/examples/${PKGBASE}/httpd/fastcgi_params \ 71CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/fastcgi_params \
72 ${PKG_SYSCONFDIR}/httpd/fastcgi_params 72 ${PKG_SYSCONFDIR}/httpd/fastcgi_params
73CONF_FILES+= share/examples/${PKGBASE}/httpd/groonga-httpd.conf \ 73CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/groonga-httpd.conf \
74 ${PKG_SYSCONFDIR}/httpd/groonga-httpd.conf 74 ${PKG_SYSCONFDIR}/httpd/groonga-httpd.conf
75CONF_FILES+= share/examples/${PKGBASE}/httpd/html/50x.html \ 75CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/html/50x.html \
76 ${PKG_SYSCONFDIR}/httpd/html/50x.html 76 ${PKG_SYSCONFDIR}/httpd/html/50x.html
77CONF_FILES+= share/examples/${PKGBASE}/httpd/html/index.html \ 77CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/html/index.html \
78 ${PKG_SYSCONFDIR}/httpd/html/index.html 78 ${PKG_SYSCONFDIR}/httpd/html/index.html
79CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-utf \ 79CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/koi-utf \
80 ${PKG_SYSCONFDIR}/httpd/koi-utf 80 ${PKG_SYSCONFDIR}/httpd/koi-utf
81CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-win \ 81CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/koi-win \
82 ${PKG_SYSCONFDIR}/httpd/koi-win 82 ${PKG_SYSCONFDIR}/httpd/koi-win
83CONF_FILES+= share/examples/${PKGBASE}/httpd/mime.types \ 83CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/mime.types \
84 ${PKG_SYSCONFDIR}/httpd/mime.types 84 ${PKG_SYSCONFDIR}/httpd/mime.types
85CONF_FILES+= share/examples/${PKGBASE}/httpd/nginx.conf \ 85CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/scgi_params \
86 ${PKG_SYSCONFDIR}/httpd/nginx.conf 
87CONF_FILES+= share/examples/${PKGBASE}/httpd/scgi_params \ 
88 ${PKG_SYSCONFDIR}/httpd/scgi_params 86 ${PKG_SYSCONFDIR}/httpd/scgi_params
89CONF_FILES+= share/examples/${PKGBASE}/httpd/uwsgi_params \ 87CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/uwsgi_params \
90 ${PKG_SYSCONFDIR}/httpd/uwsgi_params 88 ${PKG_SYSCONFDIR}/httpd/uwsgi_params
91CONF_FILES+= share/examples/${PKGBASE}/httpd/win-utf \ 89CONF_FILES+= ${EXAMPLE_CONF_DIR}/httpd/win-utf \
92 ${PKG_SYSCONFDIR}/httpd/win-utf 90 ${PKG_SYSCONFDIR}/httpd/win-utf
93 91
94SUBST_CLASSES+= confpath 92SUBST_CLASSES+= confpath
95SUBST_STAGE.confpath= pre-build 93SUBST_STAGE.confpath= pre-build
96SUBST_FILES.confpath= vendor/nginx-1.11.3/objs/Makefile 94SUBST_FILES.confpath= vendor/nginx-*/objs/Makefile
97SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g' 95SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g'
98 96
 97post-install:
 98 ${RM} -f ${DESTDIR}${PREFIX}/share/examples/groonga/httpd/*.default
 99
99.else 100.else
100CONFIGURE_ARGS+= --disable-groonga-httpd 101CONFIGURE_ARGS+= --disable-groonga-httpd
101.endif 102.endif

File Deleted: pkgsrc/textproc/groonga/patches/Attic/patch-data_scripts_Makefile.in

File Deleted: pkgsrc/textproc/groonga/patches/Attic/patch-vendor_nginx-1.11.3_auto_install