Wed Dec 3 08:47:11 2014 UTC ()
Update groonga to 4.0.8.

Release 4.0.8 - 2014/11/29
--------------------------

Improvements
^^^^^^^^^^^^

* [deb] Supported Ubuntu 12.04 again because Travis-CI runs on it.
* [mruby] Supported pretty print - ``"pp"`` for debugging. And supported to
  show internal objects more descriptive format when inspecting it.
* Supported full text search query without index if one column is specified
  for ``--match_columns`` even though sequential search is executed
  by ``--query`` and ``--match_columns`` combination.
  [groonga-dev,02902] [Reported by Atsushi Shinoda]
* [experimental] :doc:`/reference/functions/in_values` supports auto sequential
  search mode. There is a case that sequential search is faster than index search when
  the number of narrowed down records is small enough in contrast to
  the number of expected records to narrow down by ``in_values`` with
  ``AND`` operation which use indexes.
  The value of ``GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO`` is used as
  threshold whether Groonga execute sequential search or search with indexes in
  such a case.
* [mruby] Supported to load relative path of script.
* Supported test suite to write query optimizer test more easily with
  mruby enabled build.
* Supported offline index construction for token filters.
  [GitHub#239] [Patch by Naoya Murakami]
* [experimental] :doc:`/reference/functions/between` supports auto sequential search mode.
  Use the value of ``GRN_BETWEEN_TOO_MANY_INDEX_MATCH_RATIO`` as threshold.
  Basic concept is similar to ``GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO``.
* [experimental] Supported multiple drilldowns for :doc:``/reference/command/select``
  command. The syntax is extended to support this feature. The new one is
  ``--drilldown[LABEL1].keys COLUMN1,COLUMN2`` for keys,
  ``--drilldown[LABEL1].output_columns _value.COLUMN1,_value.COLUMN2,_nsubrecs`` for output columns.
  In the previous versions, a client application must implement by oneself for drilldown
  by multiple keys. Use ``_key[N]`` for ``--drilldown[LABEL1].output_columns`` to show
  original value of key in records.
* Supported to search ``'reference_column @ "query"'`` without index.
* [experimental] Added :doc:`/reference/commands/range_filter` command. It is faster than select
  command to fetch specific range of records in most cases, because it doesn't returns
  the number of matched records. There are limitations which doesn't support drilldown and so on.
  Thus, ``range_filter`` is suitable for extracting first ``N`` records in specific range for ranking
  or something else.
* [httpd] Supported ``groonga-httpd`` on windows.
* Supported vector column for drilldown.
* [deb] Changed ``groonga-httpd`` as default HTTP server package.
  ``groonga-server-http`` is deprecated. Note that :doc:`/reference/executables/groonga-server-http`
  functionality itself is still exists in Groonga. If you just want to use simple HTTP server
  in traditional way, specify proper arguments by command line for :doc:`/reference/executables/groonga`.
* Added configuration file for Windows CI on AppVeyor.
  [groonga-dev,02970,02981] [Patch by Hiroshi Hatake]

Fixes
^^^^^

* [doc] Fixed duplicated execution example path about
  :doc:`/reference/commands/table_create`.
  [GitHub groonga.org#14] [Reported by Masafumi Yokoyama]
* Fixed a bug that nested indexed full text search against ``X._key``
  returns empty results.
* Fixed flags parameter which is strict in BSD ``mkostemp(3)``.
  [GitHub#240] [Patch by Jun Kuriyama]
* Fixed a bug that select command reports invalid value type (table)
  as index column value type. It was fixed to ``UInt32``.
  Note that it affects only the value of response header.
  The search results is not changed at all.
* Fixed a bug that compare operations such as ``<``, ``<=``, ``>``, ``>=``, ``!=`` with
  Time and String type returns invalid results.
* Fixed a bug that prefix search can't be executed against single character such as
  ``"x*"``. [GitHub#242] [Patch by Naoya Murakami]
* Fixed a memory leak on drilldown ``ShortText`` value with ``--filter``.
* Fixed missing ``","`` for ``"DDL:set_token_filters"`` log.
  [Reported by Naoya Murakami]

Thanks
^^^^^^

* Atsushi Shinoda
* Masafumi Yokoyama
* Naoya Murakami
* Jun Kuriyama
* Hiroshi Hatake


(obache)
diff -r1.47 -r1.48 pkgsrc/textproc/groonga/Makefile
diff -r1.25 -r1.26 pkgsrc/textproc/groonga/PLIST
diff -r1.32 -r1.33 pkgsrc/textproc/groonga/distinfo
diff -r1.14 -r1.15 pkgsrc/textproc/groonga/options.mk
diff -r0 -r1.1 pkgsrc/textproc/groonga/patches/patch-lib_grn.h

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

--- pkgsrc/textproc/groonga/Makefile 2014/11/15 02:13:19 1.47
+++ pkgsrc/textproc/groonga/Makefile 2014/12/03 08:47:11 1.48
@@ -1,53 +1,54 @@ @@ -1,53 +1,54 @@
1# $NetBSD: Makefile,v 1.47 2014/11/15 02:13:19 obache Exp $ 1# $NetBSD: Makefile,v 1.48 2014/12/03 08:47:11 obache Exp $
2# 2#
3 3
4DISTNAME= groonga-4.0.7 4DISTNAME= groonga-4.0.8
5PKGREVISION= 1 
6CATEGORIES= textproc 5CATEGORIES= textproc
7MASTER_SITES= http://packages.groonga.org/source/groonga/ 6MASTER_SITES= http://packages.groonga.org/source/groonga/
8 7
9MAINTAINER= obache@NetBSD.org 8MAINTAINER= obache@NetBSD.org
10HOMEPAGE= http://groonga.org/ 9HOMEPAGE= http://groonga.org/
11COMMENT= Fulltext search engine and column store 10COMMENT= Fulltext search engine and column store
12LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
13 12
14RUBY_VERSION_SUPPORTED= 21 200 193 13RUBY_VERSION_SUPPORTED= 21 200 193
15.include "../../lang/ruby/rubyversion.mk" 14.include "../../lang/ruby/rubyversion.mk"
16DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR} 15DEPENDS+= ${RUBY_BASE}>=${RUBY_VERSION}:${RUBY_SRCDIR}
17 16
18GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes
19USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
20USE_LIBTOOL= yes 19USE_LIBTOOL= yes
21USE_TOOLS+= pkg-config 20USE_TOOLS+= pkg-config
22# for long file name 21# for long file name
23EXTRACT_USING= bsdtar 22EXTRACT_USING= bsdtar
24 23
25.include "options.mk" 24.include "options.mk"
26 25
27CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR} 26CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR}
28CONFIGURE_ARGS+= --localstatedir=${VARBASE} 27CONFIGURE_ARGS+= --localstatedir=${VARBASE}
29CONFIGURE_ARGS+= --with-ruby19=${RUBY} 28CONFIGURE_ARGS+= --with-ruby=${RUBY}
30 29
31PKGCONFIG_OVERRIDE+= groonga.pc.in 30PKGCONFIG_OVERRIDE+= groonga.pc.in
32 31
33PKG_SYSCONFSUBDIR= ${PKGBASE} 32PKG_SYSCONFSUBDIR= ${PKGBASE}
34 33
35BUILD_DEFS+= VARBASE 34BUILD_DEFS+= VARBASE
36 35
37INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples 36INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples
38 37
39CONF_FILES+= share/examples/${PKGBASE}/groonga.conf \ 38CONF_FILES+= share/examples/${PKGBASE}/groonga.conf \
40 ${PKG_SYSCONFDIR}/groonga.conf 39 ${PKG_SYSCONFDIR}/groonga.conf
 40CONF_FILES+= share/examples/groonga/synonyms.tsv \
 41 ${PKG_SYSCONFDIR}/synonyms.tsv
41 42
42OWN_DIRS+= ${VARBASE}/log/${PKGBASE} 43OWN_DIRS+= ${VARBASE}/log/${PKGBASE}
43 44
44CHECK_WRKREF_SKIP+= bin/groonga 45CHECK_WRKREF_SKIP+= bin/groonga
45CHECK_INTERPRETER_SKIP+= share/groonga/examples/* 46CHECK_INTERPRETER_SKIP+= share/groonga/examples/*
46 47
47REPLACE_RUBY+= data/munin/groonga_cpu_time_ 48REPLACE_RUBY+= data/munin/groonga_cpu_time_
48REPLACE_RUBY+= data/munin/groonga_disk_ 49REPLACE_RUBY+= data/munin/groonga_disk_
49REPLACE_RUBY+= data/munin/groonga_n_records_ 50REPLACE_RUBY+= data/munin/groonga_n_records_
50REPLACE_RUBY+= data/munin/groonga_query_performance_ 51REPLACE_RUBY+= data/munin/groonga_query_performance_
51REPLACE_RUBY+= data/munin/groonga_status_ 52REPLACE_RUBY+= data/munin/groonga_status_
52REPLACE_RUBY+= data/munin/groonga_throughput_ 53REPLACE_RUBY+= data/munin/groonga_throughput_
53.include "../../lang/ruby/replace.mk" 54.include "../../lang/ruby/replace.mk"

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

--- pkgsrc/textproc/groonga/PLIST 2014/11/04 11:40:20 1.25
+++ pkgsrc/textproc/groonga/PLIST 2014/12/03 08:47:11 1.26
@@ -1,25 +1,30 @@ @@ -1,25 +1,30 @@
1@comment $NetBSD: PLIST,v 1.25 2014/11/04 11:40:20 obache Exp $ 1@comment $NetBSD: PLIST,v 1.26 2014/12/03 08:47:11 obache 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
7include/groonga/groonga.h 7include/groonga/groonga.h
 8include/groonga/groonga/expr.h
 9include/groonga/groonga/groonga.h
 10include/groonga/groonga/ii.h
8include/groonga/groonga/nfkc.h 11include/groonga/groonga/nfkc.h
9include/groonga/groonga/normalizer.h 12include/groonga/groonga/normalizer.h
10include/groonga/groonga/plugin.h 13include/groonga/groonga/plugin.h
 14include/groonga/groonga/token.h
11include/groonga/groonga/token_filter.h 15include/groonga/groonga/token_filter.h
12include/groonga/groonga/tokenizer.h 16include/groonga/groonga/tokenizer.h
 17include/groonga/groonga/util.h
13lib/groonga/plugins/query_expanders/tsv.la 18lib/groonga/plugins/query_expanders/tsv.la
14lib/groonga/plugins/suggest/suggest.la 19lib/groonga/plugins/suggest/suggest.la
15lib/groonga/plugins/table/table.la 20lib/groonga/plugins/table/table.la
16lib/groonga/plugins/token_filters/stop_word.la 21lib/groonga/plugins/token_filters/stop_word.la
17${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la 22${PLIST.mecab}lib/groonga/plugins/tokenizers/mecab.la
18lib/libgroonga.la 23lib/libgroonga.la
19lib/pkgconfig/groonga.pc 24lib/pkgconfig/groonga.pc
20man/ja/man1/groonga.1 25man/ja/man1/groonga.1
21man/man1/groonga.1 26man/man1/groonga.1
22${PLIST.httpd}sbin/groonga-httpd 27${PLIST.httpd}sbin/groonga-httpd
23sbin/groonga-httpd-restart 28sbin/groonga-httpd-restart
24share/doc/groonga/en/html/.buildinfo 29share/doc/groonga/en/html/.buildinfo
25share/doc/groonga/en/html/_images/geo-points.png 30share/doc/groonga/en/html/_images/geo-points.png
@@ -57,26 +62,27 @@ share/doc/groonga/en/html/_sources/news/ @@ -57,26 +62,27 @@ share/doc/groonga/en/html/_sources/news/
57share/doc/groonga/en/html/_sources/news/1.0.x.txt 62share/doc/groonga/en/html/_sources/news/1.0.x.txt
58share/doc/groonga/en/html/_sources/news/1.1.x.txt 63share/doc/groonga/en/html/_sources/news/1.1.x.txt
59share/doc/groonga/en/html/_sources/news/1.2.x.txt 64share/doc/groonga/en/html/_sources/news/1.2.x.txt
60share/doc/groonga/en/html/_sources/news/1.3.x.txt 65share/doc/groonga/en/html/_sources/news/1.3.x.txt
61share/doc/groonga/en/html/_sources/news/2.x.txt 66share/doc/groonga/en/html/_sources/news/2.x.txt
62share/doc/groonga/en/html/_sources/news/3.x.txt 67share/doc/groonga/en/html/_sources/news/3.x.txt
63share/doc/groonga/en/html/_sources/news/senna.txt 68share/doc/groonga/en/html/_sources/news/senna.txt
64share/doc/groonga/en/html/_sources/reference.txt 69share/doc/groonga/en/html/_sources/reference.txt
65share/doc/groonga/en/html/_sources/reference/api.txt 70share/doc/groonga/en/html/_sources/reference/api.txt
66share/doc/groonga/en/html/_sources/reference/api/global_configurations.txt 71share/doc/groonga/en/html/_sources/reference/api/global_configurations.txt
67share/doc/groonga/en/html/_sources/reference/api/grn_cache.txt 72share/doc/groonga/en/html/_sources/reference/api/grn_cache.txt
68share/doc/groonga/en/html/_sources/reference/api/grn_column.txt 73share/doc/groonga/en/html/_sources/reference/api/grn_column.txt
69share/doc/groonga/en/html/_sources/reference/api/grn_command_version.txt 74share/doc/groonga/en/html/_sources/reference/api/grn_command_version.txt
 75share/doc/groonga/en/html/_sources/reference/api/grn_content_type.txt
70share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt 76share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt
71share/doc/groonga/en/html/_sources/reference/api/grn_db.txt 77share/doc/groonga/en/html/_sources/reference/api/grn_db.txt
72share/doc/groonga/en/html/_sources/reference/api/grn_encoding.txt 78share/doc/groonga/en/html/_sources/reference/api/grn_encoding.txt
73share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt 79share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt
74share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt 80share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt
75share/doc/groonga/en/html/_sources/reference/api/grn_hook.txt 81share/doc/groonga/en/html/_sources/reference/api/grn_hook.txt
76share/doc/groonga/en/html/_sources/reference/api/grn_ii.txt 82share/doc/groonga/en/html/_sources/reference/api/grn_ii.txt
77share/doc/groonga/en/html/_sources/reference/api/grn_index_cursor.txt 83share/doc/groonga/en/html/_sources/reference/api/grn_index_cursor.txt
78share/doc/groonga/en/html/_sources/reference/api/grn_info.txt 84share/doc/groonga/en/html/_sources/reference/api/grn_info.txt
79share/doc/groonga/en/html/_sources/reference/api/grn_match_escalation.txt 85share/doc/groonga/en/html/_sources/reference/api/grn_match_escalation.txt
80share/doc/groonga/en/html/_sources/reference/api/grn_obj.txt 86share/doc/groonga/en/html/_sources/reference/api/grn_obj.txt
81share/doc/groonga/en/html/_sources/reference/api/grn_proc.txt 87share/doc/groonga/en/html/_sources/reference/api/grn_proc.txt
82share/doc/groonga/en/html/_sources/reference/api/grn_search.txt 88share/doc/groonga/en/html/_sources/reference/api/grn_search.txt
@@ -101,79 +107,83 @@ share/doc/groonga/en/html/_sources/refer @@ -101,79 +107,83 @@ share/doc/groonga/en/html/_sources/refer
101share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt 107share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt
102share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt 108share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt
103share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt 109share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt
104share/doc/groonga/en/html/_sources/reference/commands/defrag.txt 110share/doc/groonga/en/html/_sources/reference/commands/defrag.txt
105share/doc/groonga/en/html/_sources/reference/commands/delete.txt 111share/doc/groonga/en/html/_sources/reference/commands/delete.txt
106share/doc/groonga/en/html/_sources/reference/commands/dump.txt 112share/doc/groonga/en/html/_sources/reference/commands/dump.txt
107share/doc/groonga/en/html/_sources/reference/commands/load.txt 113share/doc/groonga/en/html/_sources/reference/commands/load.txt
108share/doc/groonga/en/html/_sources/reference/commands/log_level.txt 114share/doc/groonga/en/html/_sources/reference/commands/log_level.txt
109share/doc/groonga/en/html/_sources/reference/commands/log_put.txt 115share/doc/groonga/en/html/_sources/reference/commands/log_put.txt
110share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt 116share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt
111share/doc/groonga/en/html/_sources/reference/commands/normalize.txt 117share/doc/groonga/en/html/_sources/reference/commands/normalize.txt
112share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt 118share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt
113share/doc/groonga/en/html/_sources/reference/commands/quit.txt 119share/doc/groonga/en/html/_sources/reference/commands/quit.txt
 120share/doc/groonga/en/html/_sources/reference/commands/range_filter.txt
114share/doc/groonga/en/html/_sources/reference/commands/register.txt 121share/doc/groonga/en/html/_sources/reference/commands/register.txt
115share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt 122share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt
116share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt 123share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt
117share/doc/groonga/en/html/_sources/reference/commands/select.txt 124share/doc/groonga/en/html/_sources/reference/commands/select.txt
118share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt 125share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt
119share/doc/groonga/en/html/_sources/reference/commands/status.txt 126share/doc/groonga/en/html/_sources/reference/commands/status.txt
120share/doc/groonga/en/html/_sources/reference/commands/suggest.txt 127share/doc/groonga/en/html/_sources/reference/commands/suggest.txt
121share/doc/groonga/en/html/_sources/reference/commands/table_create.txt 128share/doc/groonga/en/html/_sources/reference/commands/table_create.txt
122share/doc/groonga/en/html/_sources/reference/commands/table_list.txt 129share/doc/groonga/en/html/_sources/reference/commands/table_list.txt
123share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt 130share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt
 131share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt
124share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt 132share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt
125share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt 133share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt
126share/doc/groonga/en/html/_sources/reference/commands/truncate.txt 134share/doc/groonga/en/html/_sources/reference/commands/truncate.txt
127share/doc/groonga/en/html/_sources/reference/executables.txt 135share/doc/groonga/en/html/_sources/reference/executables.txt
128share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt 136share/doc/groonga/en/html/_sources/reference/executables/grnslap.txt
129share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt 137share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt
130share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt 138share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt
131share/doc/groonga/en/html/_sources/reference/executables/groonga-server-http.txt 139share/doc/groonga/en/html/_sources/reference/executables/groonga-server-http.txt
132share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt 140share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
133share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt 141share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt
134share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt 142share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt
135share/doc/groonga/en/html/_sources/reference/executables/groonga.txt 143share/doc/groonga/en/html/_sources/reference/executables/groonga.txt
136share/doc/groonga/en/html/_sources/reference/function.txt 144share/doc/groonga/en/html/_sources/reference/function.txt
137share/doc/groonga/en/html/_sources/reference/functions/between.txt 145share/doc/groonga/en/html/_sources/reference/functions/between.txt
138share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt 146share/doc/groonga/en/html/_sources/reference/functions/edit_distance.txt
139share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt 147share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt
140share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt 148share/doc/groonga/en/html/_sources/reference/functions/geo_in_circle.txt
141share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt 149share/doc/groonga/en/html/_sources/reference/functions/geo_in_rectangle.txt
142share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt 150share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt
143share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt 151share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt
144share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt 152share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt
 153share/doc/groonga/en/html/_sources/reference/functions/in_values.txt
145share/doc/groonga/en/html/_sources/reference/functions/now.txt 154share/doc/groonga/en/html/_sources/reference/functions/now.txt
146share/doc/groonga/en/html/_sources/reference/functions/query.txt 155share/doc/groonga/en/html/_sources/reference/functions/query.txt
147share/doc/groonga/en/html/_sources/reference/functions/rand.txt 156share/doc/groonga/en/html/_sources/reference/functions/rand.txt
148share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt 157share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt
149share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt 158share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt
150share/doc/groonga/en/html/_sources/reference/grn_expr.txt 159share/doc/groonga/en/html/_sources/reference/grn_expr.txt
151share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt 160share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt
152share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt 161share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt
153share/doc/groonga/en/html/_sources/reference/indexing.txt 162share/doc/groonga/en/html/_sources/reference/indexing.txt
154share/doc/groonga/en/html/_sources/reference/log.txt 163share/doc/groonga/en/html/_sources/reference/log.txt
155share/doc/groonga/en/html/_sources/reference/normalizers.txt 164share/doc/groonga/en/html/_sources/reference/normalizers.txt
156share/doc/groonga/en/html/_sources/reference/operations.txt 165share/doc/groonga/en/html/_sources/reference/operations.txt
157share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt 166share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt
158share/doc/groonga/en/html/_sources/reference/output.txt 167share/doc/groonga/en/html/_sources/reference/output.txt
159share/doc/groonga/en/html/_sources/reference/query_expanders.txt 168share/doc/groonga/en/html/_sources/reference/query_expanders.txt
160share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt 169share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt
161share/doc/groonga/en/html/_sources/reference/suggest.txt 170share/doc/groonga/en/html/_sources/reference/suggest.txt
162share/doc/groonga/en/html/_sources/reference/suggest/completion.txt 171share/doc/groonga/en/html/_sources/reference/suggest/completion.txt
163share/doc/groonga/en/html/_sources/reference/suggest/correction.txt 172share/doc/groonga/en/html/_sources/reference/suggest/correction.txt
164share/doc/groonga/en/html/_sources/reference/suggest/introduction.txt 173share/doc/groonga/en/html/_sources/reference/suggest/introduction.txt
165share/doc/groonga/en/html/_sources/reference/suggest/suggestion.txt 174share/doc/groonga/en/html/_sources/reference/suggest/suggestion.txt
166share/doc/groonga/en/html/_sources/reference/tables.txt 175share/doc/groonga/en/html/_sources/reference/tables.txt
 176share/doc/groonga/en/html/_sources/reference/token_filters.txt
167share/doc/groonga/en/html/_sources/reference/tokenizers.txt 177share/doc/groonga/en/html/_sources/reference/tokenizers.txt
168share/doc/groonga/en/html/_sources/reference/tuning.txt 178share/doc/groonga/en/html/_sources/reference/tuning.txt
169share/doc/groonga/en/html/_sources/reference/types.txt 179share/doc/groonga/en/html/_sources/reference/types.txt
170share/doc/groonga/en/html/_sources/server.txt 180share/doc/groonga/en/html/_sources/server.txt
171share/doc/groonga/en/html/_sources/server/gqtp.txt 181share/doc/groonga/en/html/_sources/server/gqtp.txt
172share/doc/groonga/en/html/_sources/server/http.txt 182share/doc/groonga/en/html/_sources/server/http.txt
173share/doc/groonga/en/html/_sources/server/http/comparison.txt 183share/doc/groonga/en/html/_sources/server/http/comparison.txt
174share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt 184share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
175share/doc/groonga/en/html/_sources/server/http/groonga.txt 185share/doc/groonga/en/html/_sources/server/http/groonga.txt
176share/doc/groonga/en/html/_sources/server/package.txt 186share/doc/groonga/en/html/_sources/server/package.txt
177share/doc/groonga/en/html/_sources/spec.txt 187share/doc/groonga/en/html/_sources/spec.txt
178share/doc/groonga/en/html/_sources/spec/gqtp.txt 188share/doc/groonga/en/html/_sources/spec/gqtp.txt
179share/doc/groonga/en/html/_sources/spec/search.txt 189share/doc/groonga/en/html/_sources/spec/search.txt
@@ -195,33 +205,35 @@ share/doc/groonga/en/html/_sources/tutor @@ -195,33 +205,35 @@ share/doc/groonga/en/html/_sources/tutor
195share/doc/groonga/en/html/_static/ajax-loader.gif 205share/doc/groonga/en/html/_static/ajax-loader.gif
196share/doc/groonga/en/html/_static/basic.css 206share/doc/groonga/en/html/_static/basic.css
197share/doc/groonga/en/html/_static/comment-bright.png 207share/doc/groonga/en/html/_static/comment-bright.png
198share/doc/groonga/en/html/_static/comment-close.png 208share/doc/groonga/en/html/_static/comment-close.png
199share/doc/groonga/en/html/_static/comment.png 209share/doc/groonga/en/html/_static/comment.png
200share/doc/groonga/en/html/_static/doctools.js 210share/doc/groonga/en/html/_static/doctools.js
201share/doc/groonga/en/html/_static/down-pressed.png 211share/doc/groonga/en/html/_static/down-pressed.png
202share/doc/groonga/en/html/_static/down.png 212share/doc/groonga/en/html/_static/down.png
203share/doc/groonga/en/html/_static/favicon.ico 213share/doc/groonga/en/html/_static/favicon.ico
204share/doc/groonga/en/html/_static/file.png 214share/doc/groonga/en/html/_static/file.png
205share/doc/groonga/en/html/_static/groonga.css 215share/doc/groonga/en/html/_static/groonga.css
206share/doc/groonga/en/html/_static/header-background.png 216share/doc/groonga/en/html/_static/header-background.png
207share/doc/groonga/en/html/_static/jp.png 217share/doc/groonga/en/html/_static/jp.png
 218share/doc/groonga/en/html/_static/jquery-1.11.1.js
208share/doc/groonga/en/html/_static/jquery.js 219share/doc/groonga/en/html/_static/jquery.js
209share/doc/groonga/en/html/_static/logo.png 220share/doc/groonga/en/html/_static/logo.png
210share/doc/groonga/en/html/_static/minus.png 221share/doc/groonga/en/html/_static/minus.png
211share/doc/groonga/en/html/_static/navigation-bar.png 222share/doc/groonga/en/html/_static/navigation-bar.png
212share/doc/groonga/en/html/_static/plus.png 223share/doc/groonga/en/html/_static/plus.png
213share/doc/groonga/en/html/_static/pygments.css 224share/doc/groonga/en/html/_static/pygments.css
214share/doc/groonga/en/html/_static/searchtools.js 225share/doc/groonga/en/html/_static/searchtools.js
 226share/doc/groonga/en/html/_static/underscore-1.3.1.js
215share/doc/groonga/en/html/_static/underscore.js 227share/doc/groonga/en/html/_static/underscore.js
216share/doc/groonga/en/html/_static/up-pressed.png 228share/doc/groonga/en/html/_static/up-pressed.png
217share/doc/groonga/en/html/_static/up.png 229share/doc/groonga/en/html/_static/up.png
218share/doc/groonga/en/html/_static/us.png 230share/doc/groonga/en/html/_static/us.png
219share/doc/groonga/en/html/_static/websupport.js 231share/doc/groonga/en/html/_static/websupport.js
220share/doc/groonga/en/html/characteristic.html 232share/doc/groonga/en/html/characteristic.html
221share/doc/groonga/en/html/client.html 233share/doc/groonga/en/html/client.html
222share/doc/groonga/en/html/community.html 234share/doc/groonga/en/html/community.html
223share/doc/groonga/en/html/contribution.html 235share/doc/groonga/en/html/contribution.html
224share/doc/groonga/en/html/contribution/development.html 236share/doc/groonga/en/html/contribution/development.html
225share/doc/groonga/en/html/contribution/development/com.html 237share/doc/groonga/en/html/contribution/development/com.html
226share/doc/groonga/en/html/contribution/development/cooperation.html 238share/doc/groonga/en/html/contribution/development/cooperation.html
227share/doc/groonga/en/html/contribution/development/query.html 239share/doc/groonga/en/html/contribution/development/query.html
@@ -253,26 +265,27 @@ share/doc/groonga/en/html/news/1.0.x.htm @@ -253,26 +265,27 @@ share/doc/groonga/en/html/news/1.0.x.htm
253share/doc/groonga/en/html/news/1.1.x.html 265share/doc/groonga/en/html/news/1.1.x.html
254share/doc/groonga/en/html/news/1.2.x.html 266share/doc/groonga/en/html/news/1.2.x.html
255share/doc/groonga/en/html/news/1.3.x.html 267share/doc/groonga/en/html/news/1.3.x.html
256share/doc/groonga/en/html/news/2.x.html 268share/doc/groonga/en/html/news/2.x.html
257share/doc/groonga/en/html/news/3.x.html 269share/doc/groonga/en/html/news/3.x.html
258share/doc/groonga/en/html/news/senna.html 270share/doc/groonga/en/html/news/senna.html
259share/doc/groonga/en/html/objects.inv 271share/doc/groonga/en/html/objects.inv
260share/doc/groonga/en/html/reference.html 272share/doc/groonga/en/html/reference.html
261share/doc/groonga/en/html/reference/api.html 273share/doc/groonga/en/html/reference/api.html
262share/doc/groonga/en/html/reference/api/global_configurations.html 274share/doc/groonga/en/html/reference/api/global_configurations.html
263share/doc/groonga/en/html/reference/api/grn_cache.html 275share/doc/groonga/en/html/reference/api/grn_cache.html
264share/doc/groonga/en/html/reference/api/grn_column.html 276share/doc/groonga/en/html/reference/api/grn_column.html
265share/doc/groonga/en/html/reference/api/grn_command_version.html 277share/doc/groonga/en/html/reference/api/grn_command_version.html
 278share/doc/groonga/en/html/reference/api/grn_content_type.html
266share/doc/groonga/en/html/reference/api/grn_ctx.html 279share/doc/groonga/en/html/reference/api/grn_ctx.html
267share/doc/groonga/en/html/reference/api/grn_db.html 280share/doc/groonga/en/html/reference/api/grn_db.html
268share/doc/groonga/en/html/reference/api/grn_encoding.html 281share/doc/groonga/en/html/reference/api/grn_encoding.html
269share/doc/groonga/en/html/reference/api/grn_expr.html 282share/doc/groonga/en/html/reference/api/grn_expr.html
270share/doc/groonga/en/html/reference/api/grn_geo.html 283share/doc/groonga/en/html/reference/api/grn_geo.html
271share/doc/groonga/en/html/reference/api/grn_hook.html 284share/doc/groonga/en/html/reference/api/grn_hook.html
272share/doc/groonga/en/html/reference/api/grn_ii.html 285share/doc/groonga/en/html/reference/api/grn_ii.html
273share/doc/groonga/en/html/reference/api/grn_index_cursor.html 286share/doc/groonga/en/html/reference/api/grn_index_cursor.html
274share/doc/groonga/en/html/reference/api/grn_info.html 287share/doc/groonga/en/html/reference/api/grn_info.html
275share/doc/groonga/en/html/reference/api/grn_match_escalation.html 288share/doc/groonga/en/html/reference/api/grn_match_escalation.html
276share/doc/groonga/en/html/reference/api/grn_obj.html 289share/doc/groonga/en/html/reference/api/grn_obj.html
277share/doc/groonga/en/html/reference/api/grn_proc.html 290share/doc/groonga/en/html/reference/api/grn_proc.html
278share/doc/groonga/en/html/reference/api/grn_search.html 291share/doc/groonga/en/html/reference/api/grn_search.html
@@ -297,79 +310,83 @@ share/doc/groonga/en/html/reference/comm @@ -297,79 +310,83 @@ share/doc/groonga/en/html/reference/comm
297share/doc/groonga/en/html/reference/commands/column_remove.html 310share/doc/groonga/en/html/reference/commands/column_remove.html
298share/doc/groonga/en/html/reference/commands/column_rename.html 311share/doc/groonga/en/html/reference/commands/column_rename.html
299share/doc/groonga/en/html/reference/commands/define_selector.html 312share/doc/groonga/en/html/reference/commands/define_selector.html
300share/doc/groonga/en/html/reference/commands/defrag.html 313share/doc/groonga/en/html/reference/commands/defrag.html
301share/doc/groonga/en/html/reference/commands/delete.html 314share/doc/groonga/en/html/reference/commands/delete.html
302share/doc/groonga/en/html/reference/commands/dump.html 315share/doc/groonga/en/html/reference/commands/dump.html
303share/doc/groonga/en/html/reference/commands/load.html 316share/doc/groonga/en/html/reference/commands/load.html
304share/doc/groonga/en/html/reference/commands/log_level.html 317share/doc/groonga/en/html/reference/commands/log_level.html
305share/doc/groonga/en/html/reference/commands/log_put.html 318share/doc/groonga/en/html/reference/commands/log_put.html
306share/doc/groonga/en/html/reference/commands/log_reopen.html 319share/doc/groonga/en/html/reference/commands/log_reopen.html
307share/doc/groonga/en/html/reference/commands/normalize.html 320share/doc/groonga/en/html/reference/commands/normalize.html
308share/doc/groonga/en/html/reference/commands/normalizer_list.html 321share/doc/groonga/en/html/reference/commands/normalizer_list.html
309share/doc/groonga/en/html/reference/commands/quit.html 322share/doc/groonga/en/html/reference/commands/quit.html
 323share/doc/groonga/en/html/reference/commands/range_filter.html
310share/doc/groonga/en/html/reference/commands/register.html 324share/doc/groonga/en/html/reference/commands/register.html
311share/doc/groonga/en/html/reference/commands/ruby_eval.html 325share/doc/groonga/en/html/reference/commands/ruby_eval.html
312share/doc/groonga/en/html/reference/commands/ruby_load.html 326share/doc/groonga/en/html/reference/commands/ruby_load.html
313share/doc/groonga/en/html/reference/commands/select.html 327share/doc/groonga/en/html/reference/commands/select.html
314share/doc/groonga/en/html/reference/commands/shutdown.html 328share/doc/groonga/en/html/reference/commands/shutdown.html
315share/doc/groonga/en/html/reference/commands/status.html 329share/doc/groonga/en/html/reference/commands/status.html
316share/doc/groonga/en/html/reference/commands/suggest.html 330share/doc/groonga/en/html/reference/commands/suggest.html
317share/doc/groonga/en/html/reference/commands/table_create.html 331share/doc/groonga/en/html/reference/commands/table_create.html
318share/doc/groonga/en/html/reference/commands/table_list.html 332share/doc/groonga/en/html/reference/commands/table_list.html
319share/doc/groonga/en/html/reference/commands/table_remove.html 333share/doc/groonga/en/html/reference/commands/table_remove.html
 334share/doc/groonga/en/html/reference/commands/table_tokenize.html
320share/doc/groonga/en/html/reference/commands/tokenize.html 335share/doc/groonga/en/html/reference/commands/tokenize.html
321share/doc/groonga/en/html/reference/commands/tokenizer_list.html 336share/doc/groonga/en/html/reference/commands/tokenizer_list.html
322share/doc/groonga/en/html/reference/commands/truncate.html 337share/doc/groonga/en/html/reference/commands/truncate.html
323share/doc/groonga/en/html/reference/executables.html 338share/doc/groonga/en/html/reference/executables.html
324share/doc/groonga/en/html/reference/executables/grnslap.html 339share/doc/groonga/en/html/reference/executables/grnslap.html
325share/doc/groonga/en/html/reference/executables/groonga-benchmark.html 340share/doc/groonga/en/html/reference/executables/groonga-benchmark.html
326share/doc/groonga/en/html/reference/executables/groonga-httpd.html 341share/doc/groonga/en/html/reference/executables/groonga-httpd.html
327share/doc/groonga/en/html/reference/executables/groonga-server-http.html 342share/doc/groonga/en/html/reference/executables/groonga-server-http.html
328share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html 343share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html
329share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html 344share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html
330share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html 345share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html
331share/doc/groonga/en/html/reference/executables/groonga.html 346share/doc/groonga/en/html/reference/executables/groonga.html
332share/doc/groonga/en/html/reference/function.html 347share/doc/groonga/en/html/reference/function.html
333share/doc/groonga/en/html/reference/functions/between.html 348share/doc/groonga/en/html/reference/functions/between.html
334share/doc/groonga/en/html/reference/functions/edit_distance.html 349share/doc/groonga/en/html/reference/functions/edit_distance.html
335share/doc/groonga/en/html/reference/functions/geo_distance.html 350share/doc/groonga/en/html/reference/functions/geo_distance.html
336share/doc/groonga/en/html/reference/functions/geo_in_circle.html 351share/doc/groonga/en/html/reference/functions/geo_in_circle.html
337share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html 352share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html
338share/doc/groonga/en/html/reference/functions/highlight_full.html 353share/doc/groonga/en/html/reference/functions/highlight_full.html
339share/doc/groonga/en/html/reference/functions/highlight_html.html 354share/doc/groonga/en/html/reference/functions/highlight_html.html
340share/doc/groonga/en/html/reference/functions/html_untag.html 355share/doc/groonga/en/html/reference/functions/html_untag.html
 356share/doc/groonga/en/html/reference/functions/in_values.html
341share/doc/groonga/en/html/reference/functions/now.html 357share/doc/groonga/en/html/reference/functions/now.html
342share/doc/groonga/en/html/reference/functions/query.html 358share/doc/groonga/en/html/reference/functions/query.html
343share/doc/groonga/en/html/reference/functions/rand.html 359share/doc/groonga/en/html/reference/functions/rand.html
344share/doc/groonga/en/html/reference/functions/snippet_html.html 360share/doc/groonga/en/html/reference/functions/snippet_html.html
345share/doc/groonga/en/html/reference/functions/sub_filter.html 361share/doc/groonga/en/html/reference/functions/sub_filter.html
346share/doc/groonga/en/html/reference/grn_expr.html 362share/doc/groonga/en/html/reference/grn_expr.html
347share/doc/groonga/en/html/reference/grn_expr/query_syntax.html 363share/doc/groonga/en/html/reference/grn_expr/query_syntax.html
348share/doc/groonga/en/html/reference/grn_expr/script_syntax.html 364share/doc/groonga/en/html/reference/grn_expr/script_syntax.html
349share/doc/groonga/en/html/reference/indexing.html 365share/doc/groonga/en/html/reference/indexing.html
350share/doc/groonga/en/html/reference/log.html 366share/doc/groonga/en/html/reference/log.html
351share/doc/groonga/en/html/reference/normalizers.html 367share/doc/groonga/en/html/reference/normalizers.html
352share/doc/groonga/en/html/reference/operations.html 368share/doc/groonga/en/html/reference/operations.html
353share/doc/groonga/en/html/reference/operations/geolocation_search.html 369share/doc/groonga/en/html/reference/operations/geolocation_search.html
354share/doc/groonga/en/html/reference/output.html 370share/doc/groonga/en/html/reference/output.html
355share/doc/groonga/en/html/reference/query_expanders.html 371share/doc/groonga/en/html/reference/query_expanders.html
356share/doc/groonga/en/html/reference/query_expanders/tsv.html 372share/doc/groonga/en/html/reference/query_expanders/tsv.html
357share/doc/groonga/en/html/reference/suggest.html 373share/doc/groonga/en/html/reference/suggest.html
358share/doc/groonga/en/html/reference/suggest/completion.html 374share/doc/groonga/en/html/reference/suggest/completion.html
359share/doc/groonga/en/html/reference/suggest/correction.html 375share/doc/groonga/en/html/reference/suggest/correction.html
360share/doc/groonga/en/html/reference/suggest/introduction.html 376share/doc/groonga/en/html/reference/suggest/introduction.html
361share/doc/groonga/en/html/reference/suggest/suggestion.html 377share/doc/groonga/en/html/reference/suggest/suggestion.html
362share/doc/groonga/en/html/reference/tables.html 378share/doc/groonga/en/html/reference/tables.html
 379share/doc/groonga/en/html/reference/token_filters.html
363share/doc/groonga/en/html/reference/tokenizers.html 380share/doc/groonga/en/html/reference/tokenizers.html
364share/doc/groonga/en/html/reference/tuning.html 381share/doc/groonga/en/html/reference/tuning.html
365share/doc/groonga/en/html/reference/types.html 382share/doc/groonga/en/html/reference/types.html
366share/doc/groonga/en/html/search.html 383share/doc/groonga/en/html/search.html
367share/doc/groonga/en/html/searchindex.js 384share/doc/groonga/en/html/searchindex.js
368share/doc/groonga/en/html/server.html 385share/doc/groonga/en/html/server.html
369share/doc/groonga/en/html/server/gqtp.html 386share/doc/groonga/en/html/server/gqtp.html
370share/doc/groonga/en/html/server/http.html 387share/doc/groonga/en/html/server/http.html
371share/doc/groonga/en/html/server/http/comparison.html 388share/doc/groonga/en/html/server/http/comparison.html
372share/doc/groonga/en/html/server/http/groonga-httpd.html 389share/doc/groonga/en/html/server/http/groonga-httpd.html
373share/doc/groonga/en/html/server/http/groonga.html 390share/doc/groonga/en/html/server/http/groonga.html
374share/doc/groonga/en/html/server/package.html 391share/doc/groonga/en/html/server/package.html
375share/doc/groonga/en/html/spec.html 392share/doc/groonga/en/html/spec.html
@@ -426,26 +443,27 @@ share/doc/groonga/ja/html/_sources/news/ @@ -426,26 +443,27 @@ share/doc/groonga/ja/html/_sources/news/
426share/doc/groonga/ja/html/_sources/news/1.0.x.txt 443share/doc/groonga/ja/html/_sources/news/1.0.x.txt
427share/doc/groonga/ja/html/_sources/news/1.1.x.txt 444share/doc/groonga/ja/html/_sources/news/1.1.x.txt
428share/doc/groonga/ja/html/_sources/news/1.2.x.txt 445share/doc/groonga/ja/html/_sources/news/1.2.x.txt
429share/doc/groonga/ja/html/_sources/news/1.3.x.txt 446share/doc/groonga/ja/html/_sources/news/1.3.x.txt
430share/doc/groonga/ja/html/_sources/news/2.x.txt 447share/doc/groonga/ja/html/_sources/news/2.x.txt
431share/doc/groonga/ja/html/_sources/news/3.x.txt 448share/doc/groonga/ja/html/_sources/news/3.x.txt
432share/doc/groonga/ja/html/_sources/news/senna.txt 449share/doc/groonga/ja/html/_sources/news/senna.txt
433share/doc/groonga/ja/html/_sources/reference.txt 450share/doc/groonga/ja/html/_sources/reference.txt
434share/doc/groonga/ja/html/_sources/reference/api.txt 451share/doc/groonga/ja/html/_sources/reference/api.txt
435share/doc/groonga/ja/html/_sources/reference/api/global_configurations.txt 452share/doc/groonga/ja/html/_sources/reference/api/global_configurations.txt
436share/doc/groonga/ja/html/_sources/reference/api/grn_cache.txt 453share/doc/groonga/ja/html/_sources/reference/api/grn_cache.txt
437share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt 454share/doc/groonga/ja/html/_sources/reference/api/grn_column.txt
438share/doc/groonga/ja/html/_sources/reference/api/grn_command_version.txt 455share/doc/groonga/ja/html/_sources/reference/api/grn_command_version.txt
 456share/doc/groonga/ja/html/_sources/reference/api/grn_content_type.txt
439share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt 457share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt
440share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt 458share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt
441share/doc/groonga/ja/html/_sources/reference/api/grn_encoding.txt 459share/doc/groonga/ja/html/_sources/reference/api/grn_encoding.txt
442share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt 460share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt
443share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt 461share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt
444share/doc/groonga/ja/html/_sources/reference/api/grn_hook.txt 462share/doc/groonga/ja/html/_sources/reference/api/grn_hook.txt
445share/doc/groonga/ja/html/_sources/reference/api/grn_ii.txt 463share/doc/groonga/ja/html/_sources/reference/api/grn_ii.txt
446share/doc/groonga/ja/html/_sources/reference/api/grn_index_cursor.txt 464share/doc/groonga/ja/html/_sources/reference/api/grn_index_cursor.txt
447share/doc/groonga/ja/html/_sources/reference/api/grn_info.txt 465share/doc/groonga/ja/html/_sources/reference/api/grn_info.txt
448share/doc/groonga/ja/html/_sources/reference/api/grn_match_escalation.txt 466share/doc/groonga/ja/html/_sources/reference/api/grn_match_escalation.txt
449share/doc/groonga/ja/html/_sources/reference/api/grn_obj.txt 467share/doc/groonga/ja/html/_sources/reference/api/grn_obj.txt
450share/doc/groonga/ja/html/_sources/reference/api/grn_proc.txt 468share/doc/groonga/ja/html/_sources/reference/api/grn_proc.txt
451share/doc/groonga/ja/html/_sources/reference/api/grn_search.txt 469share/doc/groonga/ja/html/_sources/reference/api/grn_search.txt
@@ -470,79 +488,83 @@ share/doc/groonga/ja/html/_sources/refer @@ -470,79 +488,83 @@ share/doc/groonga/ja/html/_sources/refer
470share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt 488share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt
471share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt 489share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt
472share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt 490share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt
473share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt 491share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt
474share/doc/groonga/ja/html/_sources/reference/commands/delete.txt 492share/doc/groonga/ja/html/_sources/reference/commands/delete.txt
475share/doc/groonga/ja/html/_sources/reference/commands/dump.txt 493share/doc/groonga/ja/html/_sources/reference/commands/dump.txt
476share/doc/groonga/ja/html/_sources/reference/commands/load.txt 494share/doc/groonga/ja/html/_sources/reference/commands/load.txt
477share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt 495share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt
478share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt 496share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt
479share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt 497share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt
480share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt 498share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt
481share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt 499share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt
482share/doc/groonga/ja/html/_sources/reference/commands/quit.txt 500share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
 501share/doc/groonga/ja/html/_sources/reference/commands/range_filter.txt
483share/doc/groonga/ja/html/_sources/reference/commands/register.txt 502share/doc/groonga/ja/html/_sources/reference/commands/register.txt
484share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt 503share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt
485share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt 504share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt
486share/doc/groonga/ja/html/_sources/reference/commands/select.txt 505share/doc/groonga/ja/html/_sources/reference/commands/select.txt
487share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt 506share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt
488share/doc/groonga/ja/html/_sources/reference/commands/status.txt 507share/doc/groonga/ja/html/_sources/reference/commands/status.txt
489share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt 508share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt
490share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt 509share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt
491share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt 510share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt
492share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt 511share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt
 512share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt
493share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt 513share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt
494share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt 514share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt
495share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt 515share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt
496share/doc/groonga/ja/html/_sources/reference/executables.txt 516share/doc/groonga/ja/html/_sources/reference/executables.txt
497share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt 517share/doc/groonga/ja/html/_sources/reference/executables/grnslap.txt
498share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt 518share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt
499share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt 519share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt
500share/doc/groonga/ja/html/_sources/reference/executables/groonga-server-http.txt 520share/doc/groonga/ja/html/_sources/reference/executables/groonga-server-http.txt
501share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt 521share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-create-dataset.txt
502share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt 522share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt
503share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt 523share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt
504share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt 524share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt
505share/doc/groonga/ja/html/_sources/reference/function.txt 525share/doc/groonga/ja/html/_sources/reference/function.txt
506share/doc/groonga/ja/html/_sources/reference/functions/between.txt 526share/doc/groonga/ja/html/_sources/reference/functions/between.txt
507share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt 527share/doc/groonga/ja/html/_sources/reference/functions/edit_distance.txt
508share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt 528share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt
509share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt 529share/doc/groonga/ja/html/_sources/reference/functions/geo_in_circle.txt
510share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt 530share/doc/groonga/ja/html/_sources/reference/functions/geo_in_rectangle.txt
511share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt 531share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt
512share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt 532share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt
513share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt 533share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt
 534share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt
514share/doc/groonga/ja/html/_sources/reference/functions/now.txt 535share/doc/groonga/ja/html/_sources/reference/functions/now.txt
515share/doc/groonga/ja/html/_sources/reference/functions/query.txt 536share/doc/groonga/ja/html/_sources/reference/functions/query.txt
516share/doc/groonga/ja/html/_sources/reference/functions/rand.txt 537share/doc/groonga/ja/html/_sources/reference/functions/rand.txt
517share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt 538share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt
518share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt 539share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt
519share/doc/groonga/ja/html/_sources/reference/grn_expr.txt 540share/doc/groonga/ja/html/_sources/reference/grn_expr.txt
520share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt 541share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt
521share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt 542share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt
522share/doc/groonga/ja/html/_sources/reference/indexing.txt 543share/doc/groonga/ja/html/_sources/reference/indexing.txt
523share/doc/groonga/ja/html/_sources/reference/log.txt 544share/doc/groonga/ja/html/_sources/reference/log.txt
524share/doc/groonga/ja/html/_sources/reference/normalizers.txt 545share/doc/groonga/ja/html/_sources/reference/normalizers.txt
525share/doc/groonga/ja/html/_sources/reference/operations.txt 546share/doc/groonga/ja/html/_sources/reference/operations.txt
526share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt 547share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt
527share/doc/groonga/ja/html/_sources/reference/output.txt 548share/doc/groonga/ja/html/_sources/reference/output.txt
528share/doc/groonga/ja/html/_sources/reference/query_expanders.txt 549share/doc/groonga/ja/html/_sources/reference/query_expanders.txt
529share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt 550share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt
530share/doc/groonga/ja/html/_sources/reference/suggest.txt 551share/doc/groonga/ja/html/_sources/reference/suggest.txt
531share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt 552share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt
532share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt 553share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt
533share/doc/groonga/ja/html/_sources/reference/suggest/introduction.txt 554share/doc/groonga/ja/html/_sources/reference/suggest/introduction.txt
534share/doc/groonga/ja/html/_sources/reference/suggest/suggestion.txt 555share/doc/groonga/ja/html/_sources/reference/suggest/suggestion.txt
535share/doc/groonga/ja/html/_sources/reference/tables.txt 556share/doc/groonga/ja/html/_sources/reference/tables.txt
 557share/doc/groonga/ja/html/_sources/reference/token_filters.txt
536share/doc/groonga/ja/html/_sources/reference/tokenizers.txt 558share/doc/groonga/ja/html/_sources/reference/tokenizers.txt
537share/doc/groonga/ja/html/_sources/reference/tuning.txt 559share/doc/groonga/ja/html/_sources/reference/tuning.txt
538share/doc/groonga/ja/html/_sources/reference/types.txt 560share/doc/groonga/ja/html/_sources/reference/types.txt
539share/doc/groonga/ja/html/_sources/server.txt 561share/doc/groonga/ja/html/_sources/server.txt
540share/doc/groonga/ja/html/_sources/server/gqtp.txt 562share/doc/groonga/ja/html/_sources/server/gqtp.txt
541share/doc/groonga/ja/html/_sources/server/http.txt 563share/doc/groonga/ja/html/_sources/server/http.txt
542share/doc/groonga/ja/html/_sources/server/http/comparison.txt 564share/doc/groonga/ja/html/_sources/server/http/comparison.txt
543share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt 565share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
544share/doc/groonga/ja/html/_sources/server/http/groonga.txt 566share/doc/groonga/ja/html/_sources/server/http/groonga.txt
545share/doc/groonga/ja/html/_sources/server/package.txt 567share/doc/groonga/ja/html/_sources/server/package.txt
546share/doc/groonga/ja/html/_sources/spec.txt 568share/doc/groonga/ja/html/_sources/spec.txt
547share/doc/groonga/ja/html/_sources/spec/gqtp.txt 569share/doc/groonga/ja/html/_sources/spec/gqtp.txt
548share/doc/groonga/ja/html/_sources/spec/search.txt 570share/doc/groonga/ja/html/_sources/spec/search.txt
@@ -564,33 +586,35 @@ share/doc/groonga/ja/html/_sources/tutor @@ -564,33 +586,35 @@ share/doc/groonga/ja/html/_sources/tutor
564share/doc/groonga/ja/html/_static/ajax-loader.gif 586share/doc/groonga/ja/html/_static/ajax-loader.gif
565share/doc/groonga/ja/html/_static/basic.css 587share/doc/groonga/ja/html/_static/basic.css
566share/doc/groonga/ja/html/_static/comment-bright.png 588share/doc/groonga/ja/html/_static/comment-bright.png
567share/doc/groonga/ja/html/_static/comment-close.png 589share/doc/groonga/ja/html/_static/comment-close.png
568share/doc/groonga/ja/html/_static/comment.png 590share/doc/groonga/ja/html/_static/comment.png
569share/doc/groonga/ja/html/_static/doctools.js 591share/doc/groonga/ja/html/_static/doctools.js
570share/doc/groonga/ja/html/_static/down-pressed.png 592share/doc/groonga/ja/html/_static/down-pressed.png
571share/doc/groonga/ja/html/_static/down.png 593share/doc/groonga/ja/html/_static/down.png
572share/doc/groonga/ja/html/_static/favicon.ico 594share/doc/groonga/ja/html/_static/favicon.ico
573share/doc/groonga/ja/html/_static/file.png 595share/doc/groonga/ja/html/_static/file.png
574share/doc/groonga/ja/html/_static/groonga.css 596share/doc/groonga/ja/html/_static/groonga.css
575share/doc/groonga/ja/html/_static/header-background.png 597share/doc/groonga/ja/html/_static/header-background.png
576share/doc/groonga/ja/html/_static/jp.png 598share/doc/groonga/ja/html/_static/jp.png
 599share/doc/groonga/ja/html/_static/jquery-1.11.1.js
577share/doc/groonga/ja/html/_static/jquery.js 600share/doc/groonga/ja/html/_static/jquery.js
578share/doc/groonga/ja/html/_static/logo.png 601share/doc/groonga/ja/html/_static/logo.png
579share/doc/groonga/ja/html/_static/minus.png 602share/doc/groonga/ja/html/_static/minus.png
580share/doc/groonga/ja/html/_static/navigation-bar.png 603share/doc/groonga/ja/html/_static/navigation-bar.png
581share/doc/groonga/ja/html/_static/plus.png 604share/doc/groonga/ja/html/_static/plus.png
582share/doc/groonga/ja/html/_static/pygments.css 605share/doc/groonga/ja/html/_static/pygments.css
583share/doc/groonga/ja/html/_static/searchtools.js 606share/doc/groonga/ja/html/_static/searchtools.js
 607share/doc/groonga/ja/html/_static/underscore-1.3.1.js
584share/doc/groonga/ja/html/_static/underscore.js 608share/doc/groonga/ja/html/_static/underscore.js
585share/doc/groonga/ja/html/_static/up-pressed.png 609share/doc/groonga/ja/html/_static/up-pressed.png
586share/doc/groonga/ja/html/_static/up.png 610share/doc/groonga/ja/html/_static/up.png
587share/doc/groonga/ja/html/_static/us.png 611share/doc/groonga/ja/html/_static/us.png
588share/doc/groonga/ja/html/_static/websupport.js 612share/doc/groonga/ja/html/_static/websupport.js
589share/doc/groonga/ja/html/characteristic.html 613share/doc/groonga/ja/html/characteristic.html
590share/doc/groonga/ja/html/client.html 614share/doc/groonga/ja/html/client.html
591share/doc/groonga/ja/html/community.html 615share/doc/groonga/ja/html/community.html
592share/doc/groonga/ja/html/contribution.html 616share/doc/groonga/ja/html/contribution.html
593share/doc/groonga/ja/html/contribution/development.html 617share/doc/groonga/ja/html/contribution/development.html
594share/doc/groonga/ja/html/contribution/development/com.html 618share/doc/groonga/ja/html/contribution/development/com.html
595share/doc/groonga/ja/html/contribution/development/cooperation.html 619share/doc/groonga/ja/html/contribution/development/cooperation.html
596share/doc/groonga/ja/html/contribution/development/query.html 620share/doc/groonga/ja/html/contribution/development/query.html
@@ -622,26 +646,27 @@ share/doc/groonga/ja/html/news/1.0.x.htm @@ -622,26 +646,27 @@ share/doc/groonga/ja/html/news/1.0.x.htm
622share/doc/groonga/ja/html/news/1.1.x.html 646share/doc/groonga/ja/html/news/1.1.x.html
623share/doc/groonga/ja/html/news/1.2.x.html 647share/doc/groonga/ja/html/news/1.2.x.html
624share/doc/groonga/ja/html/news/1.3.x.html 648share/doc/groonga/ja/html/news/1.3.x.html
625share/doc/groonga/ja/html/news/2.x.html 649share/doc/groonga/ja/html/news/2.x.html
626share/doc/groonga/ja/html/news/3.x.html 650share/doc/groonga/ja/html/news/3.x.html
627share/doc/groonga/ja/html/news/senna.html 651share/doc/groonga/ja/html/news/senna.html
628share/doc/groonga/ja/html/objects.inv 652share/doc/groonga/ja/html/objects.inv
629share/doc/groonga/ja/html/reference.html 653share/doc/groonga/ja/html/reference.html
630share/doc/groonga/ja/html/reference/api.html 654share/doc/groonga/ja/html/reference/api.html
631share/doc/groonga/ja/html/reference/api/global_configurations.html 655share/doc/groonga/ja/html/reference/api/global_configurations.html
632share/doc/groonga/ja/html/reference/api/grn_cache.html 656share/doc/groonga/ja/html/reference/api/grn_cache.html
633share/doc/groonga/ja/html/reference/api/grn_column.html 657share/doc/groonga/ja/html/reference/api/grn_column.html
634share/doc/groonga/ja/html/reference/api/grn_command_version.html 658share/doc/groonga/ja/html/reference/api/grn_command_version.html
 659share/doc/groonga/ja/html/reference/api/grn_content_type.html
635share/doc/groonga/ja/html/reference/api/grn_ctx.html 660share/doc/groonga/ja/html/reference/api/grn_ctx.html
636share/doc/groonga/ja/html/reference/api/grn_db.html 661share/doc/groonga/ja/html/reference/api/grn_db.html
637share/doc/groonga/ja/html/reference/api/grn_encoding.html 662share/doc/groonga/ja/html/reference/api/grn_encoding.html
638share/doc/groonga/ja/html/reference/api/grn_expr.html 663share/doc/groonga/ja/html/reference/api/grn_expr.html
639share/doc/groonga/ja/html/reference/api/grn_geo.html 664share/doc/groonga/ja/html/reference/api/grn_geo.html
640share/doc/groonga/ja/html/reference/api/grn_hook.html 665share/doc/groonga/ja/html/reference/api/grn_hook.html
641share/doc/groonga/ja/html/reference/api/grn_ii.html 666share/doc/groonga/ja/html/reference/api/grn_ii.html
642share/doc/groonga/ja/html/reference/api/grn_index_cursor.html 667share/doc/groonga/ja/html/reference/api/grn_index_cursor.html
643share/doc/groonga/ja/html/reference/api/grn_info.html 668share/doc/groonga/ja/html/reference/api/grn_info.html
644share/doc/groonga/ja/html/reference/api/grn_match_escalation.html 669share/doc/groonga/ja/html/reference/api/grn_match_escalation.html
645share/doc/groonga/ja/html/reference/api/grn_obj.html 670share/doc/groonga/ja/html/reference/api/grn_obj.html
646share/doc/groonga/ja/html/reference/api/grn_proc.html 671share/doc/groonga/ja/html/reference/api/grn_proc.html
647share/doc/groonga/ja/html/reference/api/grn_search.html 672share/doc/groonga/ja/html/reference/api/grn_search.html
@@ -666,79 +691,83 @@ share/doc/groonga/ja/html/reference/comm @@ -666,79 +691,83 @@ share/doc/groonga/ja/html/reference/comm
666share/doc/groonga/ja/html/reference/commands/column_remove.html 691share/doc/groonga/ja/html/reference/commands/column_remove.html
667share/doc/groonga/ja/html/reference/commands/column_rename.html 692share/doc/groonga/ja/html/reference/commands/column_rename.html
668share/doc/groonga/ja/html/reference/commands/define_selector.html 693share/doc/groonga/ja/html/reference/commands/define_selector.html
669share/doc/groonga/ja/html/reference/commands/defrag.html 694share/doc/groonga/ja/html/reference/commands/defrag.html
670share/doc/groonga/ja/html/reference/commands/delete.html 695share/doc/groonga/ja/html/reference/commands/delete.html
671share/doc/groonga/ja/html/reference/commands/dump.html 696share/doc/groonga/ja/html/reference/commands/dump.html
672share/doc/groonga/ja/html/reference/commands/load.html 697share/doc/groonga/ja/html/reference/commands/load.html
673share/doc/groonga/ja/html/reference/commands/log_level.html 698share/doc/groonga/ja/html/reference/commands/log_level.html
674share/doc/groonga/ja/html/reference/commands/log_put.html 699share/doc/groonga/ja/html/reference/commands/log_put.html
675share/doc/groonga/ja/html/reference/commands/log_reopen.html 700share/doc/groonga/ja/html/reference/commands/log_reopen.html
676share/doc/groonga/ja/html/reference/commands/normalize.html 701share/doc/groonga/ja/html/reference/commands/normalize.html
677share/doc/groonga/ja/html/reference/commands/normalizer_list.html 702share/doc/groonga/ja/html/reference/commands/normalizer_list.html
678share/doc/groonga/ja/html/reference/commands/quit.html 703share/doc/groonga/ja/html/reference/commands/quit.html
 704share/doc/groonga/ja/html/reference/commands/range_filter.html
679share/doc/groonga/ja/html/reference/commands/register.html 705share/doc/groonga/ja/html/reference/commands/register.html
680share/doc/groonga/ja/html/reference/commands/ruby_eval.html 706share/doc/groonga/ja/html/reference/commands/ruby_eval.html
681share/doc/groonga/ja/html/reference/commands/ruby_load.html 707share/doc/groonga/ja/html/reference/commands/ruby_load.html
682share/doc/groonga/ja/html/reference/commands/select.html 708share/doc/groonga/ja/html/reference/commands/select.html
683share/doc/groonga/ja/html/reference/commands/shutdown.html 709share/doc/groonga/ja/html/reference/commands/shutdown.html
684share/doc/groonga/ja/html/reference/commands/status.html 710share/doc/groonga/ja/html/reference/commands/status.html
685share/doc/groonga/ja/html/reference/commands/suggest.html 711share/doc/groonga/ja/html/reference/commands/suggest.html
686share/doc/groonga/ja/html/reference/commands/table_create.html 712share/doc/groonga/ja/html/reference/commands/table_create.html
687share/doc/groonga/ja/html/reference/commands/table_list.html 713share/doc/groonga/ja/html/reference/commands/table_list.html
688share/doc/groonga/ja/html/reference/commands/table_remove.html 714share/doc/groonga/ja/html/reference/commands/table_remove.html
 715share/doc/groonga/ja/html/reference/commands/table_tokenize.html
689share/doc/groonga/ja/html/reference/commands/tokenize.html 716share/doc/groonga/ja/html/reference/commands/tokenize.html
690share/doc/groonga/ja/html/reference/commands/tokenizer_list.html 717share/doc/groonga/ja/html/reference/commands/tokenizer_list.html
691share/doc/groonga/ja/html/reference/commands/truncate.html 718share/doc/groonga/ja/html/reference/commands/truncate.html
692share/doc/groonga/ja/html/reference/executables.html 719share/doc/groonga/ja/html/reference/executables.html
693share/doc/groonga/ja/html/reference/executables/grnslap.html 720share/doc/groonga/ja/html/reference/executables/grnslap.html
694share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html 721share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html
695share/doc/groonga/ja/html/reference/executables/groonga-httpd.html 722share/doc/groonga/ja/html/reference/executables/groonga-httpd.html
696share/doc/groonga/ja/html/reference/executables/groonga-server-http.html 723share/doc/groonga/ja/html/reference/executables/groonga-server-http.html
697share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html 724share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html
698share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html 725share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html
699share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html 726share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html
700share/doc/groonga/ja/html/reference/executables/groonga.html 727share/doc/groonga/ja/html/reference/executables/groonga.html
701share/doc/groonga/ja/html/reference/function.html 728share/doc/groonga/ja/html/reference/function.html
702share/doc/groonga/ja/html/reference/functions/between.html 729share/doc/groonga/ja/html/reference/functions/between.html
703share/doc/groonga/ja/html/reference/functions/edit_distance.html 730share/doc/groonga/ja/html/reference/functions/edit_distance.html
704share/doc/groonga/ja/html/reference/functions/geo_distance.html 731share/doc/groonga/ja/html/reference/functions/geo_distance.html
705share/doc/groonga/ja/html/reference/functions/geo_in_circle.html 732share/doc/groonga/ja/html/reference/functions/geo_in_circle.html
706share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html 733share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html
707share/doc/groonga/ja/html/reference/functions/highlight_full.html 734share/doc/groonga/ja/html/reference/functions/highlight_full.html
708share/doc/groonga/ja/html/reference/functions/highlight_html.html 735share/doc/groonga/ja/html/reference/functions/highlight_html.html
709share/doc/groonga/ja/html/reference/functions/html_untag.html 736share/doc/groonga/ja/html/reference/functions/html_untag.html
 737share/doc/groonga/ja/html/reference/functions/in_values.html
710share/doc/groonga/ja/html/reference/functions/now.html 738share/doc/groonga/ja/html/reference/functions/now.html
711share/doc/groonga/ja/html/reference/functions/query.html 739share/doc/groonga/ja/html/reference/functions/query.html
712share/doc/groonga/ja/html/reference/functions/rand.html 740share/doc/groonga/ja/html/reference/functions/rand.html
713share/doc/groonga/ja/html/reference/functions/snippet_html.html 741share/doc/groonga/ja/html/reference/functions/snippet_html.html
714share/doc/groonga/ja/html/reference/functions/sub_filter.html 742share/doc/groonga/ja/html/reference/functions/sub_filter.html
715share/doc/groonga/ja/html/reference/grn_expr.html 743share/doc/groonga/ja/html/reference/grn_expr.html
716share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html 744share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html
717share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html 745share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html
718share/doc/groonga/ja/html/reference/indexing.html 746share/doc/groonga/ja/html/reference/indexing.html
719share/doc/groonga/ja/html/reference/log.html 747share/doc/groonga/ja/html/reference/log.html
720share/doc/groonga/ja/html/reference/normalizers.html 748share/doc/groonga/ja/html/reference/normalizers.html
721share/doc/groonga/ja/html/reference/operations.html 749share/doc/groonga/ja/html/reference/operations.html
722share/doc/groonga/ja/html/reference/operations/geolocation_search.html 750share/doc/groonga/ja/html/reference/operations/geolocation_search.html
723share/doc/groonga/ja/html/reference/output.html 751share/doc/groonga/ja/html/reference/output.html
724share/doc/groonga/ja/html/reference/query_expanders.html 752share/doc/groonga/ja/html/reference/query_expanders.html
725share/doc/groonga/ja/html/reference/query_expanders/tsv.html 753share/doc/groonga/ja/html/reference/query_expanders/tsv.html
726share/doc/groonga/ja/html/reference/suggest.html 754share/doc/groonga/ja/html/reference/suggest.html
727share/doc/groonga/ja/html/reference/suggest/completion.html 755share/doc/groonga/ja/html/reference/suggest/completion.html
728share/doc/groonga/ja/html/reference/suggest/correction.html 756share/doc/groonga/ja/html/reference/suggest/correction.html
729share/doc/groonga/ja/html/reference/suggest/introduction.html 757share/doc/groonga/ja/html/reference/suggest/introduction.html
730share/doc/groonga/ja/html/reference/suggest/suggestion.html 758share/doc/groonga/ja/html/reference/suggest/suggestion.html
731share/doc/groonga/ja/html/reference/tables.html 759share/doc/groonga/ja/html/reference/tables.html
 760share/doc/groonga/ja/html/reference/token_filters.html
732share/doc/groonga/ja/html/reference/tokenizers.html 761share/doc/groonga/ja/html/reference/tokenizers.html
733share/doc/groonga/ja/html/reference/tuning.html 762share/doc/groonga/ja/html/reference/tuning.html
734share/doc/groonga/ja/html/reference/types.html 763share/doc/groonga/ja/html/reference/types.html
735share/doc/groonga/ja/html/search.html 764share/doc/groonga/ja/html/search.html
736share/doc/groonga/ja/html/searchindex.js 765share/doc/groonga/ja/html/searchindex.js
737share/doc/groonga/ja/html/server.html 766share/doc/groonga/ja/html/server.html
738share/doc/groonga/ja/html/server/gqtp.html 767share/doc/groonga/ja/html/server/gqtp.html
739share/doc/groonga/ja/html/server/http.html 768share/doc/groonga/ja/html/server/http.html
740share/doc/groonga/ja/html/server/http/comparison.html 769share/doc/groonga/ja/html/server/http/comparison.html
741share/doc/groonga/ja/html/server/http/groonga-httpd.html 770share/doc/groonga/ja/html/server/http/groonga-httpd.html
742share/doc/groonga/ja/html/server/http/groonga.html 771share/doc/groonga/ja/html/server/http/groonga.html
743share/doc/groonga/ja/html/server/package.html 772share/doc/groonga/ja/html/server/package.html
744share/doc/groonga/ja/html/spec.html 773share/doc/groonga/ja/html/spec.html
@@ -791,28 +820,28 @@ share/groonga/examples/dictionary/html/c @@ -791,28 +820,28 @@ share/groonga/examples/dictionary/html/c
791share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png 820share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
792share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png 821share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
793share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png 822share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
794share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png 823share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
795share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png 824share/groonga/examples/dictionary/html/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
796share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png 825share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_222222_256x240.png
797share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png 826share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_2e83ff_256x240.png
798share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png 827share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_454545_256x240.png
799share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png 828share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_888888_256x240.png
800share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png 829share/groonga/examples/dictionary/html/css/smoothness/images/ui-icons_cd0a0a_256x240.png
801share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css 830share/groonga/examples/dictionary/html/css/smoothness/jquery-ui-1.8.12.custom.css
802share/groonga/examples/dictionary/html/index.html 831share/groonga/examples/dictionary/html/index.html
803share/groonga/examples/dictionary/html/js/dictionary.js 832share/groonga/examples/dictionary/html/js/dictionary.js
804share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js 833share/groonga/examples/dictionary/html/js/jquery-1.7.2.js
805share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js 834share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.js
806share/groonga/examples/dictionary/init-db.sh 835share/groonga/examples/dictionary/init-db.sh
807share/groonga/examples/dictionary/jmdict/jmdict.rb 836share/groonga/examples/dictionary/jmdict/jmdict.rb
808share/groonga/examples/dictionary/readme.txt 837share/groonga/examples/dictionary/readme.txt
809share/groonga/html/admin/css/groonga-admin.css 838share/groonga/html/admin/css/groonga-admin.css
810share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png 839share/groonga/html/admin/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png
811share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png 840share/groonga/html/admin/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png
812share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png 841share/groonga/html/admin/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
813share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png 842share/groonga/html/admin/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
814share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png 843share/groonga/html/admin/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png
815share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png 844share/groonga/html/admin/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
816share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png 845share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
817share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png 846share/groonga/html/admin/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
818share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png 847share/groonga/html/admin/css/redmond/images/ui-icons_217bc0_256x240.png
@@ -823,29 +852,29 @@ share/groonga/html/admin/css/redmond/ima @@ -823,29 +852,29 @@ share/groonga/html/admin/css/redmond/ima
823share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png 852share/groonga/html/admin/css/redmond/images/ui-icons_d8e7f3_256x240.png
824share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png 853share/groonga/html/admin/css/redmond/images/ui-icons_f9bd01_256x240.png
825share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css 854share/groonga/html/admin/css/redmond/jquery-ui-1.8.18.custom.css
826share/groonga/html/admin/favicon.ico 855share/groonga/html/admin/favicon.ico
827share/groonga/html/admin/favicon.png 856share/groonga/html/admin/favicon.png
828share/groonga/html/admin/favicon.svg 857share/groonga/html/admin/favicon.svg
829share/groonga/html/admin/images/groonga.png 858share/groonga/html/admin/images/groonga.png
830share/groonga/html/admin/images/groonga.svg 859share/groonga/html/admin/images/groonga.svg
831share/groonga/html/admin/images/loading.gif 860share/groonga/html/admin/images/loading.gif
832share/groonga/html/admin/index.html 861share/groonga/html/admin/index.html
833share/groonga/html/admin/index.ja.html 862share/groonga/html/admin/index.ja.html
834share/groonga/html/admin/js/groonga-admin.ja.js 863share/groonga/html/admin/js/groonga-admin.ja.js
835share/groonga/html/admin/js/groonga-admin.js 864share/groonga/html/admin/js/groonga-admin.js
836share/groonga/html/admin/js/jquery-1.7.2.min.js 865share/groonga/html/admin/js/jquery-1.7.2.js
837share/groonga/html/admin/js/jquery-ui-1.8.18.custom.min.js 866share/groonga/html/admin/js/jquery-ui-1.8.18.custom.js
838share/groonga/html/admin/js/jquery.flot-0.7.min.js 867share/groonga/html/admin/js/jquery.flot-0.7.js
839share/groonga/html/admin/js/jquery.flot.license.txt 868share/groonga/html/admin/js/jquery.flot.license.txt
840share/groonga/images/logo/groonga-icon-foreground-white.png 869share/groonga/images/logo/groonga-icon-foreground-white.png
841share/groonga/images/logo/groonga-icon-foreground-white.svg 870share/groonga/images/logo/groonga-icon-foreground-white.svg
842share/groonga/images/logo/groonga-icon-full-size.png 871share/groonga/images/logo/groonga-icon-full-size.png
843share/groonga/images/logo/groonga-icon-full-size.svg 872share/groonga/images/logo/groonga-icon-full-size.svg
844share/groonga/images/logo/groonga-icon.png 873share/groonga/images/logo/groonga-icon.png
845share/groonga/images/logo/groonga-icon.svg 874share/groonga/images/logo/groonga-icon.svg
846share/groonga/images/logo/groonga-logo-foreground-white.png 875share/groonga/images/logo/groonga-logo-foreground-white.png
847share/groonga/images/logo/groonga-logo-foreground-white.svg 876share/groonga/images/logo/groonga-logo-foreground-white.svg
848share/groonga/images/logo/groonga-logo.png 877share/groonga/images/logo/groonga-logo.png
849share/groonga/images/logo/groonga-logo.svg 878share/groonga/images/logo/groonga-logo.svg
850share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png 879share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.png
851share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg 880share/groonga/images/logo/groonga-powered-by-banner-bar-foreground-white.svg

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

--- pkgsrc/textproc/groonga/distinfo 2014/11/04 11:40:20 1.32
+++ pkgsrc/textproc/groonga/distinfo 2014/12/03 08:47:11 1.33
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.32 2014/11/04 11:40:20 obache Exp $ 1$NetBSD: distinfo,v 1.33 2014/12/03 08:47:11 obache Exp $
2 2
3SHA1 (groonga-4.0.7.tar.gz) = b00c56c6d7318fe1a87f6f55366182ace4014a2a 3SHA1 (groonga-4.0.8.tar.gz) = 894bf426c79aaab6e3b1f19811db4634aecdc4c2
4RMD160 (groonga-4.0.7.tar.gz) = 9254e7651161b196f5ed57987cb5cdb8195d8e1b 4RMD160 (groonga-4.0.8.tar.gz) = ec9317049a5ef468ac66a2da93f2352ba6a20e8e
5Size (groonga-4.0.7.tar.gz) = 10990151 bytes 5Size (groonga-4.0.8.tar.gz) = 11343571 bytes
 6SHA1 (patch-lib_grn.h) = 8d1c150fa96dd19fe9092d61ce9e82b425049251

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

--- pkgsrc/textproc/groonga/options.mk 2014/11/08 11:24:28 1.14
+++ pkgsrc/textproc/groonga/options.mk 2014/12/03 08:47:11 1.15
@@ -1,49 +1,40 @@ @@ -1,49 +1,40 @@
1# $NetBSD: options.mk,v 1.14 2014/11/08 11:24:28 obache Exp $ 1# $NetBSD: options.mk,v 1.15 2014/12/03 08:47:11 obache 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
15CONFIGURE_ARGS+= --with-mecab-config=${BUILDLINK_PREFIX.mecab}/bin/mecab-config 15CONFIGURE_ARGS+= --with-mecab-config=${BUILDLINK_PREFIX.mecab}/bin/mecab-config
16.include "../../textproc/mecab/buildlink3.mk" 16.include "../../textproc/mecab/buildlink3.mk"
17PLIST.mecab= yes 17PLIST.mecab= yes
18.else 18.else
19CONFIGURE_ARGS+= --without-mecab 19CONFIGURE_ARGS+= --without-mecab
20.endif 20.endif
21 21
22.if !empty(PKG_OPTIONS:Mtests) 22.if !empty(PKG_OPTIONS:Mtests)
23CONFIGURE_ARGS+= --with-cutter 23CONFIGURE_ARGS+= --with-cutter
24USE_TOOLS+= gmake 24USE_TOOLS+= gmake
25TEST_TARGET= check 25TEST_TARGET= check
26TEST_ENV+= RUBYOPT="-Ku" 
27.include "../../lang/ruby/buildlink3.mk" 
28BUILDLINK_API_DEPENDS.cutter+= cutter>=1.1.6 26BUILDLINK_API_DEPENDS.cutter+= cutter>=1.1.6
29.include "../../devel/cutter/buildlink3.mk" 27.include "../../devel/cutter/buildlink3.mk"
30RUBY_JSON_REQD= 1.8.0:build 
31BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-bundler-[0-9]*:../../misc/ruby-bundler 
32BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-msgpack>=0.5.6:../../devel/ruby-msgpack 
33BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-test-unit>=2.5.5:../../devel/ruby-test-unit 
34BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-test-unit-notify>=1.0.1:../../devel/ruby-test-unit-notify 
35RUBY_JSON_REQD= 0:build 
36.include "../../lang/ruby/json.mk" 
37.else 28.else
38CONFIGURE_ARGS+= --without-cutter 29CONFIGURE_ARGS+= --without-cutter
39.endif 30.endif
40 31
41.if !empty(PKG_OPTIONS:Mzlib) 32.if !empty(PKG_OPTIONS:Mzlib)
42CONFIGURE_ARGS+= --with-zlib 33CONFIGURE_ARGS+= --with-zlib
43.include "../../devel/zlib/buildlink3.mk" 34.include "../../devel/zlib/buildlink3.mk"
44.else 35.else
45CONFIGURE_ARGS+= --without-zlib 36CONFIGURE_ARGS+= --without-zlib
46.endif 37.endif
47 38
48.if !empty(PKG_OPTIONS:Mlz4) 39.if !empty(PKG_OPTIONS:Mlz4)
49CONFIGURE_ARGS+= --with-lz4 40CONFIGURE_ARGS+= --with-lz4
@@ -91,18 +82,18 @@ CONF_FILES+= share/examples/${PKGBASE}/h @@ -91,18 +82,18 @@ CONF_FILES+= share/examples/${PKGBASE}/h
91CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-win \ 82CONF_FILES+= share/examples/${PKGBASE}/httpd/koi-win \
92 ${PKG_SYSCONFDIR}/httpd/koi-win 83 ${PKG_SYSCONFDIR}/httpd/koi-win
93CONF_FILES+= share/examples/${PKGBASE}/httpd/mime.types \ 84CONF_FILES+= share/examples/${PKGBASE}/httpd/mime.types \
94 ${PKG_SYSCONFDIR}/httpd/mime.types 85 ${PKG_SYSCONFDIR}/httpd/mime.types
95CONF_FILES+= share/examples/${PKGBASE}/httpd/scgi_params \ 86CONF_FILES+= share/examples/${PKGBASE}/httpd/scgi_params \
96 ${PKG_SYSCONFDIR}/httpd/scgi_params 87 ${PKG_SYSCONFDIR}/httpd/scgi_params
97CONF_FILES+= share/examples/${PKGBASE}/httpd/uwsgi_params \ 88CONF_FILES+= share/examples/${PKGBASE}/httpd/uwsgi_params \
98 ${PKG_SYSCONFDIR}/httpd/uwsgi_params 89 ${PKG_SYSCONFDIR}/httpd/uwsgi_params
99CONF_FILES+= share/examples/${PKGBASE}/httpd/win-utf \ 90CONF_FILES+= share/examples/${PKGBASE}/httpd/win-utf \
100 ${PKG_SYSCONFDIR}/httpd/win-utf 91 ${PKG_SYSCONFDIR}/httpd/win-utf
101 92
102SUBST_CLASSES+= confpath 93SUBST_CLASSES+= confpath
103SUBST_STAGE.confpath= post-configure 94SUBST_STAGE.confpath= post-configure
104SUBST_FILES.confpath= vendor/nginx-1.7.6/objs/Makefile 95SUBST_FILES.confpath= vendor/nginx-1.7.7/objs/Makefile
105SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g' 96SUBST_SED.confpath= -e 's,\$$(DESTDIR)${PKG_SYSCONFDIR}/httpd,\$$(DESTDIR)${PREFIX}/share/examples/${PKGBASE}/httpd,g'
106.else 97.else
107CONFIGURE_ARGS+= --disable-groonga-httpd 98CONFIGURE_ARGS+= --disable-groonga-httpd
108.endif 99.endif

File Added: pkgsrc/textproc/groonga/patches/Attic/patch-lib_grn.h
$NetBSD: patch-lib_grn.h,v 1.1 2014/12/03 08:47:11 obache Exp $

*BSD doesn't define off64_t. We should use off_t on the environment.
https://github.com/groonga/groonga/commit/c019cfbfbf5365c28ce727a46448aa6f77de8543

--- lib/grn.h.orig	2014-11-28 03:10:30.000000000 +0000
+++ lib/grn.h
@@ -174,6 +174,10 @@ typedef SOCKET grn_sock;
 #  include <unistd.h>
 # endif /* HAVE_UNISTD_H */
 
+# ifndef __off64_t_defined
+typedef off_t off64_t;
+# endif
+
 # ifndef PATH_MAX
 #  if defined(MAXPATHLEN)
 #   define PATH_MAX MAXPATHLEN