rroonga 0.9.5-x86-mingw32 → 1.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/NEWS.ja.rdoc +24 -0
 - data/NEWS.rdoc +24 -0
 - data/README.ja.rdoc +3 -2
 - data/README.rdoc +3 -2
 - data/Rakefile +15 -6
 - data/ext/groonga/extconf.rb +25 -25
 - data/ext/groonga/groonga.def +2 -0
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-exception.c +14 -0
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +13 -1
 - data/ext/groonga/rb-grn-object.c +2 -2
 - data/ext/groonga/rb-grn-patricia-trie.c +394 -1
 - data/ext/groonga/rb-grn-table.c +33 -2
 - data/ext/groonga/rb-grn.h +3 -3
 - data/html/index.html +1 -1
 - data/lib/1.8/groonga.so +0 -0
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/groonga/record.rb +32 -2
 - data/lib/groonga/schema.rb +1 -1
 - data/rroonga-build.rb +3 -3
 - data/test/test-patricia-trie.rb +172 -1
 - data/test/test-record.rb +7 -0
 - data/test/test-remote.rb +2 -1
 - data/test/test-table-cursor.rb +35 -1
 - data/test/test-table-select-normalize.rb +7 -3
 - data/vendor/local/bin/grntest.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/etc/groonga/groonga.conf +11 -0
 - data/vendor/local/etc/groonga/init.d/redhat/groonga +168 -0
 - data/vendor/local/etc/groonga/init.d/redhat/sysconfig/groonga +8 -0
 - data/vendor/local/include/groonga/groonga.h +38 -12
 - data/vendor/local/lib/groonga/modules/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/modules/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/modules/{functions/cast.la → suggest/suggest.la} +6 -6
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +1 -1
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/css/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/admin_html/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/admin_html/js/jquery.json-2.2.min.js +31 -0
 - data/vendor/local/share/groonga/doc/ja/html/.buildinfo +4 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/suggest.txt +79 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/html/_sources/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/basic.css +509 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/default.css +277 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/doctools.js +247 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/jquery.js +6240 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/pygments.css +61 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/searchtools.js +518 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/sidebar.js +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/_static/underscore.js +16 -0
 - data/vendor/local/share/groonga/doc/ja/html/characteristic.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/cache_limit.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/check.html +285 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/clearlock.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_create.html +210 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_list.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/column_remove.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/define_selector.html +221 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/defrag.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/delete.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/dump.html +177 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/load.html +208 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_level.html +187 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_put.html +190 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/log_reopen.html +188 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/quit.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/select.html +331 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/shutdown.html +156 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/status.html +179 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/suggest.html +191 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_create.html +222 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_list.html +202 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/table_remove.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands/view_add.html +175 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/add.html +180 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/get.html +161 -0
 - data/vendor/local/share/groonga/doc/ja/html/commands_not_implemented/set.html +182 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer.html +118 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/com.html +136 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/document.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/query.html +336 -0
 - data/vendor/local/share/groonga/doc/ja/html/developer/test.html +220 -0
 - data/vendor/local/share/groonga/doc/ja/html/execfile.html +370 -0
 - data/vendor/local/share/groonga/doc/ja/html/expr.html +157 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions.html +122 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/edit_distance.html +162 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_distance.html +170 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_circle.html +173 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/geo_in_rectangle.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/now.html +152 -0
 - data/vendor/local/share/groonga/doc/ja/html/functions/rand.html +159 -0
 - data/vendor/local/share/groonga/doc/ja/html/genindex.html +227 -0
 - data/vendor/local/share/groonga/doc/ja/html/grnslap.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/grntest.html +368 -0
 - data/vendor/local/share/groonga/doc/ja/html/http.html +163 -0
 - data/vendor/local/share/groonga/doc/ja/html/index.html +291 -0
 - data/vendor/local/share/groonga/doc/ja/html/install.html +228 -0
 - data/vendor/local/share/groonga/doc/ja/html/news.html +310 -0
 - data/vendor/local/share/groonga/doc/ja/html/objects.inv +0 -0
 - data/vendor/local/share/groonga/doc/ja/html/process.html +120 -0
 - data/vendor/local/share/groonga/doc/ja/html/pseudo_column.html +147 -0
 - data/vendor/local/share/groonga/doc/ja/html/reference.html +174 -0
 - data/vendor/local/share/groonga/doc/ja/html/search.html +96 -0
 - data/vendor/local/share/groonga/doc/ja/html/searchindex.js +1 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial.html +172 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial01.html +388 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial02.html +214 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial03.html +183 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial04.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial05.html +169 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial06.html +209 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial07.html +212 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial08.html +139 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial09.html +114 -0
 - data/vendor/local/share/groonga/doc/ja/html/tutorial/tutorial10.html +458 -0
 - data/vendor/local/share/groonga/doc/ja/html/type.html +217 -0
 - data/vendor/local/share/groonga/doc/ja/source/__init__.py +0 -0
 - data/vendor/local/share/groonga/doc/ja/source/characteristic.txt +56 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/cache_limit.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/check.txt +164 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/clearlock.txt +61 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_create.txt +93 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_list.txt +97 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/column_remove.txt +58 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/define_selector.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/defrag.txt +57 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/delete.txt +68 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/dump.txt +62 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/load.txt +98 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_level.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_put.txt +69 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/log_reopen.txt +66 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/quit.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/select.txt +247 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/shutdown.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/status.txt +59 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_create.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_list.txt +87 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/table_remove.txt +50 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands/view_add.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/add.txt +102 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/get.txt +78 -0
 - data/vendor/local/share/groonga/doc/ja/source/commands_not_implemented/set.txt +103 -0
 - data/vendor/local/share/groonga/doc/ja/source/conf.py +265 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/com.txt +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/document.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/query.txt +212 -0
 - data/vendor/local/share/groonga/doc/ja/source/developer/test.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-1.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-11.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-12.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-13.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-14.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-15.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-16.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-17.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-7.log +16 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial01-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-1.log +8 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-2.log +6 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial02-3.log +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-1.log +18 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-2.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial03-3.log +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-2.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-3.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-4.log +13 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial04-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-1.log +24 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial05-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-1.log +25 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-3.log +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-4.log +7 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial06-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-1.log +22 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-2.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-3.log +20 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial07-4.log +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial08-1.log +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-1.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-10.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-2.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-3.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-4.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-5.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-6.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-7.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-8.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/example/tutorial10-9.log +5 -0
 - data/vendor/local/share/groonga/doc/ja/source/execfile.txt +226 -0
 - data/vendor/local/share/groonga/doc/ja/source/expr.txt +43 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/edit_distance.txt +48 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_distance.txt +51 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_circle.txt +54 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/geo_in_rectangle.txt +55 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/now.txt +34 -0
 - data/vendor/local/share/groonga/doc/ja/source/functions/rand.txt +41 -0
 - data/vendor/local/share/groonga/doc/ja/source/grnslap.txt +64 -0
 - data/vendor/local/share/groonga/doc/ja/source/grntest.txt +259 -0
 - data/vendor/local/share/groonga/doc/ja/source/http.txt +52 -0
 - data/vendor/local/share/groonga/doc/ja/source/index.txt +21 -0
 - data/vendor/local/share/groonga/doc/ja/source/install.txt +114 -0
 - data/vendor/local/share/groonga/doc/ja/source/news.txt +199 -0
 - data/vendor/local/share/groonga/doc/ja/source/process.txt +12 -0
 - data/vendor/local/share/groonga/doc/ja/source/pseudo_column.txt +38 -0
 - data/vendor/local/share/groonga/doc/ja/source/rdoc.py +762 -0
 - data/vendor/local/share/groonga/doc/ja/source/reference.txt +14 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial.txt +10 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial01.txt +293 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial02.txt +100 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial03.txt +72 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial04.txt +111 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial05.txt +65 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial06.txt +91 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial07.txt +92 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial08.txt +53 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial09.txt +9 -0
 - data/vendor/local/share/groonga/doc/ja/source/tutorial/tutorial10.txt +486 -0
 - data/vendor/local/share/groonga/doc/ja/source/type.txt +118 -0
 - data/vendor/local/share/groonga/doc/ja/source/update_execution_example.py +113 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +61 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +46 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene_import.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/css/dictionary.css +3 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/index.html +26 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js +51 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.4.2.min.js +154 -0
 - data/vendor/local/share/groonga/examples/dictionary/init_db.sh +10 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +42 -0
 - data/vendor/local/share/groonga/examples/dictionary/readme.txt +71 -0
 - data/vendor/local/share/man/man1/groonga.1 +5498 -0
 - metadata +360 -118
 - data/pkg-config.rb +0 -333
 - data/pkg/rroonga-0.9.5/NEWS.ja.rdoc +0 -156
 - data/pkg/rroonga-0.9.5/NEWS.rdoc +0 -158
 - data/pkg/rroonga-0.9.5/README.ja.rdoc +0 -65
 - data/pkg/rroonga-0.9.5/README.rdoc +0 -66
 - data/pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc +0 -394
 - data/pkg/rroonga-0.9.5/text/expression.rdoc +0 -285
 - data/test-unit/Rakefile +0 -40
 - data/test-unit/TODO +0 -5
 - data/test-unit/bin/testrb +0 -5
 - data/test-unit/html/classic.html +0 -15
 - data/test-unit/html/index.html +0 -25
 - data/test-unit/html/index.html.ja +0 -27
 - data/test-unit/lib/test/unit.rb +0 -323
 - data/test-unit/lib/test/unit/assertionfailederror.rb +0 -25
 - data/test-unit/lib/test/unit/assertions.rb +0 -1230
 - data/test-unit/lib/test/unit/attribute.rb +0 -125
 - data/test-unit/lib/test/unit/autorunner.rb +0 -360
 - data/test-unit/lib/test/unit/collector.rb +0 -36
 - data/test-unit/lib/test/unit/collector/descendant.rb +0 -23
 - data/test-unit/lib/test/unit/collector/dir.rb +0 -108
 - data/test-unit/lib/test/unit/collector/load.rb +0 -144
 - data/test-unit/lib/test/unit/collector/objectspace.rb +0 -34
 - data/test-unit/lib/test/unit/color-scheme.rb +0 -102
 - data/test-unit/lib/test/unit/color.rb +0 -96
 - data/test-unit/lib/test/unit/diff.rb +0 -724
 - data/test-unit/lib/test/unit/error.rb +0 -130
 - data/test-unit/lib/test/unit/exceptionhandler.rb +0 -39
 - data/test-unit/lib/test/unit/failure.rb +0 -136
 - data/test-unit/lib/test/unit/fixture.rb +0 -176
 - data/test-unit/lib/test/unit/notification.rb +0 -129
 - data/test-unit/lib/test/unit/omission.rb +0 -191
 - data/test-unit/lib/test/unit/pending.rb +0 -150
 - data/test-unit/lib/test/unit/priority.rb +0 -180
 - data/test-unit/lib/test/unit/runner/console.rb +0 -52
 - data/test-unit/lib/test/unit/runner/emacs.rb +0 -8
 - data/test-unit/lib/test/unit/runner/tap.rb +0 -8
 - data/test-unit/lib/test/unit/testcase.rb +0 -476
 - data/test-unit/lib/test/unit/testresult.rb +0 -89
 - data/test-unit/lib/test/unit/testsuite.rb +0 -110
 - data/test-unit/lib/test/unit/ui/console/outputlevel.rb +0 -14
 - data/test-unit/lib/test/unit/ui/console/testrunner.rb +0 -466
 - data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +0 -63
 - data/test-unit/lib/test/unit/ui/tap/testrunner.rb +0 -92
 - data/test-unit/lib/test/unit/ui/testrunner.rb +0 -28
 - data/test-unit/lib/test/unit/ui/testrunnermediator.rb +0 -77
 - data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +0 -41
 - data/test-unit/lib/test/unit/util/backtracefilter.rb +0 -41
 - data/test-unit/lib/test/unit/util/method-owner-finder.rb +0 -28
 - data/test-unit/lib/test/unit/util/observable.rb +0 -90
 - data/test-unit/lib/test/unit/util/procwrapper.rb +0 -48
 - data/test-unit/lib/test/unit/version.rb +0 -7
 - data/test-unit/sample/adder.rb +0 -13
 - data/test-unit/sample/subtracter.rb +0 -12
 - data/test-unit/sample/test_adder.rb +0 -20
 - data/test-unit/sample/test_subtracter.rb +0 -20
 - data/test-unit/sample/test_user.rb +0 -23
 - data/test-unit/test/collector/test-descendant.rb +0 -133
 - data/test-unit/test/collector/test-load.rb +0 -442
 - data/test-unit/test/collector/test_dir.rb +0 -406
 - data/test-unit/test/collector/test_objectspace.rb +0 -100
 - data/test-unit/test/run-test.rb +0 -15
 - data/test-unit/test/test-attribute.rb +0 -86
 - data/test-unit/test/test-color-scheme.rb +0 -67
 - data/test-unit/test/test-color.rb +0 -47
 - data/test-unit/test/test-diff.rb +0 -518
 - data/test-unit/test/test-emacs-runner.rb +0 -60
 - data/test-unit/test/test-fixture.rb +0 -287
 - data/test-unit/test/test-notification.rb +0 -33
 - data/test-unit/test/test-omission.rb +0 -81
 - data/test-unit/test/test-pending.rb +0 -70
 - data/test-unit/test/test-priority.rb +0 -119
 - data/test-unit/test/test-testcase.rb +0 -544
 - data/test-unit/test/test_assertions.rb +0 -1151
 - data/test-unit/test/test_error.rb +0 -26
 - data/test-unit/test/test_failure.rb +0 -33
 - data/test-unit/test/test_testresult.rb +0 -113
 - data/test-unit/test/test_testsuite.rb +0 -129
 - data/test-unit/test/testunit-test-util.rb +0 -14
 - data/test-unit/test/ui/test_testrunmediator.rb +0 -20
 - data/test-unit/test/util/test-method-owner-finder.rb +0 -38
 - data/test-unit/test/util/test_backtracefilter.rb +0 -41
 - data/test-unit/test/util/test_observable.rb +0 -102
 - data/test-unit/test/util/test_procwrapper.rb +0 -36
 - data/vendor/local/lib/groonga/modules/functions/cast.dll +0 -0
 
| 
         Binary file 
     | 
| 
         Binary file 
     | 
| 
         @@ -0,0 +1,61 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .hll { background-color: #ffffcc }
         
     | 
| 
      
 2 
     | 
    
         
            +
            .c { color: #408090; font-style: italic } /* Comment */
         
     | 
| 
      
 3 
     | 
    
         
            +
            .err { border: 1px solid #FF0000 } /* Error */
         
     | 
| 
      
 4 
     | 
    
         
            +
            .k { color: #007020; font-weight: bold } /* Keyword */
         
     | 
| 
      
 5 
     | 
    
         
            +
            .o { color: #666666 } /* Operator */
         
     | 
| 
      
 6 
     | 
    
         
            +
            .cm { color: #408090; font-style: italic } /* Comment.Multiline */
         
     | 
| 
      
 7 
     | 
    
         
            +
            .cp { color: #007020 } /* Comment.Preproc */
         
     | 
| 
      
 8 
     | 
    
         
            +
            .c1 { color: #408090; font-style: italic } /* Comment.Single */
         
     | 
| 
      
 9 
     | 
    
         
            +
            .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
         
     | 
| 
      
 10 
     | 
    
         
            +
            .gd { color: #A00000 } /* Generic.Deleted */
         
     | 
| 
      
 11 
     | 
    
         
            +
            .ge { font-style: italic } /* Generic.Emph */
         
     | 
| 
      
 12 
     | 
    
         
            +
            .gr { color: #FF0000 } /* Generic.Error */
         
     | 
| 
      
 13 
     | 
    
         
            +
            .gh { color: #000080; font-weight: bold } /* Generic.Heading */
         
     | 
| 
      
 14 
     | 
    
         
            +
            .gi { color: #00A000 } /* Generic.Inserted */
         
     | 
| 
      
 15 
     | 
    
         
            +
            .go { color: #303030 } /* Generic.Output */
         
     | 
| 
      
 16 
     | 
    
         
            +
            .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
         
     | 
| 
      
 17 
     | 
    
         
            +
            .gs { font-weight: bold } /* Generic.Strong */
         
     | 
| 
      
 18 
     | 
    
         
            +
            .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
         
     | 
| 
      
 19 
     | 
    
         
            +
            .gt { color: #0040D0 } /* Generic.Traceback */
         
     | 
| 
      
 20 
     | 
    
         
            +
            .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
         
     | 
| 
      
 21 
     | 
    
         
            +
            .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
         
     | 
| 
      
 22 
     | 
    
         
            +
            .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
         
     | 
| 
      
 23 
     | 
    
         
            +
            .kp { color: #007020 } /* Keyword.Pseudo */
         
     | 
| 
      
 24 
     | 
    
         
            +
            .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */
         
     | 
| 
      
 25 
     | 
    
         
            +
            .kt { color: #902000 } /* Keyword.Type */
         
     | 
| 
      
 26 
     | 
    
         
            +
            .m { color: #208050 } /* Literal.Number */
         
     | 
| 
      
 27 
     | 
    
         
            +
            .s { color: #4070a0 } /* Literal.String */
         
     | 
| 
      
 28 
     | 
    
         
            +
            .na { color: #4070a0 } /* Name.Attribute */
         
     | 
| 
      
 29 
     | 
    
         
            +
            .nb { color: #007020 } /* Name.Builtin */
         
     | 
| 
      
 30 
     | 
    
         
            +
            .nc { color: #0e84b5; font-weight: bold } /* Name.Class */
         
     | 
| 
      
 31 
     | 
    
         
            +
            .no { color: #60add5 } /* Name.Constant */
         
     | 
| 
      
 32 
     | 
    
         
            +
            .nd { color: #555555; font-weight: bold } /* Name.Decorator */
         
     | 
| 
      
 33 
     | 
    
         
            +
            .ni { color: #d55537; font-weight: bold } /* Name.Entity */
         
     | 
| 
      
 34 
     | 
    
         
            +
            .ne { color: #007020 } /* Name.Exception */
         
     | 
| 
      
 35 
     | 
    
         
            +
            .nf { color: #06287e } /* Name.Function */
         
     | 
| 
      
 36 
     | 
    
         
            +
            .nl { color: #002070; font-weight: bold } /* Name.Label */
         
     | 
| 
      
 37 
     | 
    
         
            +
            .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */
         
     | 
| 
      
 38 
     | 
    
         
            +
            .nt { color: #062873; font-weight: bold } /* Name.Tag */
         
     | 
| 
      
 39 
     | 
    
         
            +
            .nv { color: #bb60d5 } /* Name.Variable */
         
     | 
| 
      
 40 
     | 
    
         
            +
            .ow { color: #007020; font-weight: bold } /* Operator.Word */
         
     | 
| 
      
 41 
     | 
    
         
            +
            .w { color: #bbbbbb } /* Text.Whitespace */
         
     | 
| 
      
 42 
     | 
    
         
            +
            .mf { color: #208050 } /* Literal.Number.Float */
         
     | 
| 
      
 43 
     | 
    
         
            +
            .mh { color: #208050 } /* Literal.Number.Hex */
         
     | 
| 
      
 44 
     | 
    
         
            +
            .mi { color: #208050 } /* Literal.Number.Integer */
         
     | 
| 
      
 45 
     | 
    
         
            +
            .mo { color: #208050 } /* Literal.Number.Oct */
         
     | 
| 
      
 46 
     | 
    
         
            +
            .sb { color: #4070a0 } /* Literal.String.Backtick */
         
     | 
| 
      
 47 
     | 
    
         
            +
            .sc { color: #4070a0 } /* Literal.String.Char */
         
     | 
| 
      
 48 
     | 
    
         
            +
            .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
         
     | 
| 
      
 49 
     | 
    
         
            +
            .s2 { color: #4070a0 } /* Literal.String.Double */
         
     | 
| 
      
 50 
     | 
    
         
            +
            .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
         
     | 
| 
      
 51 
     | 
    
         
            +
            .sh { color: #4070a0 } /* Literal.String.Heredoc */
         
     | 
| 
      
 52 
     | 
    
         
            +
            .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */
         
     | 
| 
      
 53 
     | 
    
         
            +
            .sx { color: #c65d09 } /* Literal.String.Other */
         
     | 
| 
      
 54 
     | 
    
         
            +
            .sr { color: #235388 } /* Literal.String.Regex */
         
     | 
| 
      
 55 
     | 
    
         
            +
            .s1 { color: #4070a0 } /* Literal.String.Single */
         
     | 
| 
      
 56 
     | 
    
         
            +
            .ss { color: #517918 } /* Literal.String.Symbol */
         
     | 
| 
      
 57 
     | 
    
         
            +
            .bp { color: #007020 } /* Name.Builtin.Pseudo */
         
     | 
| 
      
 58 
     | 
    
         
            +
            .vc { color: #bb60d5 } /* Name.Variable.Class */
         
     | 
| 
      
 59 
     | 
    
         
            +
            .vg { color: #bb60d5 } /* Name.Variable.Global */
         
     | 
| 
      
 60 
     | 
    
         
            +
            .vi { color: #bb60d5 } /* Name.Variable.Instance */
         
     | 
| 
      
 61 
     | 
    
         
            +
            .il { color: #208050 } /* Literal.Number.Integer.Long */
         
     | 
| 
         @@ -0,0 +1,518 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            /*
         
     | 
| 
      
 2 
     | 
    
         
            +
             * searchtools.js
         
     | 
| 
      
 3 
     | 
    
         
            +
             * ~~~~~~~~~~~~~~
         
     | 
| 
      
 4 
     | 
    
         
            +
             *
         
     | 
| 
      
 5 
     | 
    
         
            +
             * Sphinx JavaScript utilties for the full-text search.
         
     | 
| 
      
 6 
     | 
    
         
            +
             *
         
     | 
| 
      
 7 
     | 
    
         
            +
             * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
         
     | 
| 
      
 8 
     | 
    
         
            +
             * :license: BSD, see LICENSE for details.
         
     | 
| 
      
 9 
     | 
    
         
            +
             *
         
     | 
| 
      
 10 
     | 
    
         
            +
             */
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            /**
         
     | 
| 
      
 13 
     | 
    
         
            +
             * helper function to return a node containing the
         
     | 
| 
      
 14 
     | 
    
         
            +
             * search summary for a given text. keywords is a list
         
     | 
| 
      
 15 
     | 
    
         
            +
             * of stemmed words, hlwords is the list of normal, unstemmed
         
     | 
| 
      
 16 
     | 
    
         
            +
             * words. the first one is used to find the occurance, the
         
     | 
| 
      
 17 
     | 
    
         
            +
             * latter for highlighting it.
         
     | 
| 
      
 18 
     | 
    
         
            +
             */
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            jQuery.makeSearchSummary = function(text, keywords, hlwords) {
         
     | 
| 
      
 21 
     | 
    
         
            +
              var textLower = text.toLowerCase();
         
     | 
| 
      
 22 
     | 
    
         
            +
              var start = 0;
         
     | 
| 
      
 23 
     | 
    
         
            +
              $.each(keywords, function() {
         
     | 
| 
      
 24 
     | 
    
         
            +
                var i = textLower.indexOf(this.toLowerCase());
         
     | 
| 
      
 25 
     | 
    
         
            +
                if (i > -1)
         
     | 
| 
      
 26 
     | 
    
         
            +
                  start = i;
         
     | 
| 
      
 27 
     | 
    
         
            +
              });
         
     | 
| 
      
 28 
     | 
    
         
            +
              start = Math.max(start - 120, 0);
         
     | 
| 
      
 29 
     | 
    
         
            +
              var excerpt = ((start > 0) ? '...' : '') +
         
     | 
| 
      
 30 
     | 
    
         
            +
              $.trim(text.substr(start, 240)) +
         
     | 
| 
      
 31 
     | 
    
         
            +
              ((start + 240 - text.length) ? '...' : '');
         
     | 
| 
      
 32 
     | 
    
         
            +
              var rv = $('<div class="context"></div>').text(excerpt);
         
     | 
| 
      
 33 
     | 
    
         
            +
              $.each(hlwords, function() {
         
     | 
| 
      
 34 
     | 
    
         
            +
                rv = rv.highlightText(this, 'highlighted');
         
     | 
| 
      
 35 
     | 
    
         
            +
              });
         
     | 
| 
      
 36 
     | 
    
         
            +
              return rv;
         
     | 
| 
      
 37 
     | 
    
         
            +
            }
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
            /**
         
     | 
| 
      
 40 
     | 
    
         
            +
             * Porter Stemmer
         
     | 
| 
      
 41 
     | 
    
         
            +
             */
         
     | 
| 
      
 42 
     | 
    
         
            +
            var PorterStemmer = function() {
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
              var step2list = {
         
     | 
| 
      
 45 
     | 
    
         
            +
                ational: 'ate',
         
     | 
| 
      
 46 
     | 
    
         
            +
                tional: 'tion',
         
     | 
| 
      
 47 
     | 
    
         
            +
                enci: 'ence',
         
     | 
| 
      
 48 
     | 
    
         
            +
                anci: 'ance',
         
     | 
| 
      
 49 
     | 
    
         
            +
                izer: 'ize',
         
     | 
| 
      
 50 
     | 
    
         
            +
                bli: 'ble',
         
     | 
| 
      
 51 
     | 
    
         
            +
                alli: 'al',
         
     | 
| 
      
 52 
     | 
    
         
            +
                entli: 'ent',
         
     | 
| 
      
 53 
     | 
    
         
            +
                eli: 'e',
         
     | 
| 
      
 54 
     | 
    
         
            +
                ousli: 'ous',
         
     | 
| 
      
 55 
     | 
    
         
            +
                ization: 'ize',
         
     | 
| 
      
 56 
     | 
    
         
            +
                ation: 'ate',
         
     | 
| 
      
 57 
     | 
    
         
            +
                ator: 'ate',
         
     | 
| 
      
 58 
     | 
    
         
            +
                alism: 'al',
         
     | 
| 
      
 59 
     | 
    
         
            +
                iveness: 'ive',
         
     | 
| 
      
 60 
     | 
    
         
            +
                fulness: 'ful',
         
     | 
| 
      
 61 
     | 
    
         
            +
                ousness: 'ous',
         
     | 
| 
      
 62 
     | 
    
         
            +
                aliti: 'al',
         
     | 
| 
      
 63 
     | 
    
         
            +
                iviti: 'ive',
         
     | 
| 
      
 64 
     | 
    
         
            +
                biliti: 'ble',
         
     | 
| 
      
 65 
     | 
    
         
            +
                logi: 'log'
         
     | 
| 
      
 66 
     | 
    
         
            +
              };
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
              var step3list = {
         
     | 
| 
      
 69 
     | 
    
         
            +
                icate: 'ic',
         
     | 
| 
      
 70 
     | 
    
         
            +
                ative: '',
         
     | 
| 
      
 71 
     | 
    
         
            +
                alize: 'al',
         
     | 
| 
      
 72 
     | 
    
         
            +
                iciti: 'ic',
         
     | 
| 
      
 73 
     | 
    
         
            +
                ical: 'ic',
         
     | 
| 
      
 74 
     | 
    
         
            +
                ful: '',
         
     | 
| 
      
 75 
     | 
    
         
            +
                ness: ''
         
     | 
| 
      
 76 
     | 
    
         
            +
              };
         
     | 
| 
      
 77 
     | 
    
         
            +
             
     | 
| 
      
 78 
     | 
    
         
            +
              var c = "[^aeiou]";          // consonant
         
     | 
| 
      
 79 
     | 
    
         
            +
              var v = "[aeiouy]";          // vowel
         
     | 
| 
      
 80 
     | 
    
         
            +
              var C = c + "[^aeiouy]*";    // consonant sequence
         
     | 
| 
      
 81 
     | 
    
         
            +
              var V = v + "[aeiou]*";      // vowel sequence
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
              var mgr0 = "^(" + C + ")?" + V + C;                      // [C]VC... is m>0
         
     | 
| 
      
 84 
     | 
    
         
            +
              var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$";    // [C]VC[V] is m=1
         
     | 
| 
      
 85 
     | 
    
         
            +
              var mgr1 = "^(" + C + ")?" + V + C + V + C;              // [C]VCVC... is m>1
         
     | 
| 
      
 86 
     | 
    
         
            +
              var s_v   = "^(" + C + ")?" + v;                         // vowel in stem
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
              this.stemWord = function (w) {
         
     | 
| 
      
 89 
     | 
    
         
            +
                var stem;
         
     | 
| 
      
 90 
     | 
    
         
            +
                var suffix;
         
     | 
| 
      
 91 
     | 
    
         
            +
                var firstch;
         
     | 
| 
      
 92 
     | 
    
         
            +
                var origword = w;
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
                if (w.length < 3)
         
     | 
| 
      
 95 
     | 
    
         
            +
                  return w;
         
     | 
| 
      
 96 
     | 
    
         
            +
             
     | 
| 
      
 97 
     | 
    
         
            +
                var re;
         
     | 
| 
      
 98 
     | 
    
         
            +
                var re2;
         
     | 
| 
      
 99 
     | 
    
         
            +
                var re3;
         
     | 
| 
      
 100 
     | 
    
         
            +
                var re4;
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
| 
      
 102 
     | 
    
         
            +
                firstch = w.substr(0,1);
         
     | 
| 
      
 103 
     | 
    
         
            +
                if (firstch == "y")
         
     | 
| 
      
 104 
     | 
    
         
            +
                  w = firstch.toUpperCase() + w.substr(1);
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
                // Step 1a
         
     | 
| 
      
 107 
     | 
    
         
            +
                re = /^(.+?)(ss|i)es$/;
         
     | 
| 
      
 108 
     | 
    
         
            +
                re2 = /^(.+?)([^s])s$/;
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
                if (re.test(w))
         
     | 
| 
      
 111 
     | 
    
         
            +
                  w = w.replace(re,"$1$2");
         
     | 
| 
      
 112 
     | 
    
         
            +
                else if (re2.test(w))
         
     | 
| 
      
 113 
     | 
    
         
            +
                  w = w.replace(re2,"$1$2");
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
                // Step 1b
         
     | 
| 
      
 116 
     | 
    
         
            +
                re = /^(.+?)eed$/;
         
     | 
| 
      
 117 
     | 
    
         
            +
                re2 = /^(.+?)(ed|ing)$/;
         
     | 
| 
      
 118 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 119 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 120 
     | 
    
         
            +
                  re = new RegExp(mgr0);
         
     | 
| 
      
 121 
     | 
    
         
            +
                  if (re.test(fp[1])) {
         
     | 
| 
      
 122 
     | 
    
         
            +
                    re = /.$/;
         
     | 
| 
      
 123 
     | 
    
         
            +
                    w = w.replace(re,"");
         
     | 
| 
      
 124 
     | 
    
         
            +
                  }
         
     | 
| 
      
 125 
     | 
    
         
            +
                }
         
     | 
| 
      
 126 
     | 
    
         
            +
                else if (re2.test(w)) {
         
     | 
| 
      
 127 
     | 
    
         
            +
                  var fp = re2.exec(w);
         
     | 
| 
      
 128 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 129 
     | 
    
         
            +
                  re2 = new RegExp(s_v);
         
     | 
| 
      
 130 
     | 
    
         
            +
                  if (re2.test(stem)) {
         
     | 
| 
      
 131 
     | 
    
         
            +
                    w = stem;
         
     | 
| 
      
 132 
     | 
    
         
            +
                    re2 = /(at|bl|iz)$/;
         
     | 
| 
      
 133 
     | 
    
         
            +
                    re3 = new RegExp("([^aeiouylsz])\\1$");
         
     | 
| 
      
 134 
     | 
    
         
            +
                    re4 = new RegExp("^" + C + v + "[^aeiouwxy]$");
         
     | 
| 
      
 135 
     | 
    
         
            +
                    if (re2.test(w))
         
     | 
| 
      
 136 
     | 
    
         
            +
                      w = w + "e";
         
     | 
| 
      
 137 
     | 
    
         
            +
                    else if (re3.test(w)) {
         
     | 
| 
      
 138 
     | 
    
         
            +
                      re = /.$/;
         
     | 
| 
      
 139 
     | 
    
         
            +
                      w = w.replace(re,"");
         
     | 
| 
      
 140 
     | 
    
         
            +
                    }
         
     | 
| 
      
 141 
     | 
    
         
            +
                    else if (re4.test(w))
         
     | 
| 
      
 142 
     | 
    
         
            +
                      w = w + "e";
         
     | 
| 
      
 143 
     | 
    
         
            +
                  }
         
     | 
| 
      
 144 
     | 
    
         
            +
                }
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
                // Step 1c
         
     | 
| 
      
 147 
     | 
    
         
            +
                re = /^(.+?)y$/;
         
     | 
| 
      
 148 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 149 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 150 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 151 
     | 
    
         
            +
                  re = new RegExp(s_v);
         
     | 
| 
      
 152 
     | 
    
         
            +
                  if (re.test(stem))
         
     | 
| 
      
 153 
     | 
    
         
            +
                    w = stem + "i";
         
     | 
| 
      
 154 
     | 
    
         
            +
                }
         
     | 
| 
      
 155 
     | 
    
         
            +
             
     | 
| 
      
 156 
     | 
    
         
            +
                // Step 2
         
     | 
| 
      
 157 
     | 
    
         
            +
                re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;
         
     | 
| 
      
 158 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 159 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 160 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 161 
     | 
    
         
            +
                  suffix = fp[2];
         
     | 
| 
      
 162 
     | 
    
         
            +
                  re = new RegExp(mgr0);
         
     | 
| 
      
 163 
     | 
    
         
            +
                  if (re.test(stem))
         
     | 
| 
      
 164 
     | 
    
         
            +
                    w = stem + step2list[suffix];
         
     | 
| 
      
 165 
     | 
    
         
            +
                }
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                // Step 3
         
     | 
| 
      
 168 
     | 
    
         
            +
                re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;
         
     | 
| 
      
 169 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 170 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 171 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 172 
     | 
    
         
            +
                  suffix = fp[2];
         
     | 
| 
      
 173 
     | 
    
         
            +
                  re = new RegExp(mgr0);
         
     | 
| 
      
 174 
     | 
    
         
            +
                  if (re.test(stem))
         
     | 
| 
      
 175 
     | 
    
         
            +
                    w = stem + step3list[suffix];
         
     | 
| 
      
 176 
     | 
    
         
            +
                }
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
                // Step 4
         
     | 
| 
      
 179 
     | 
    
         
            +
                re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;
         
     | 
| 
      
 180 
     | 
    
         
            +
                re2 = /^(.+?)(s|t)(ion)$/;
         
     | 
| 
      
 181 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 182 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 183 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 184 
     | 
    
         
            +
                  re = new RegExp(mgr1);
         
     | 
| 
      
 185 
     | 
    
         
            +
                  if (re.test(stem))
         
     | 
| 
      
 186 
     | 
    
         
            +
                    w = stem;
         
     | 
| 
      
 187 
     | 
    
         
            +
                }
         
     | 
| 
      
 188 
     | 
    
         
            +
                else if (re2.test(w)) {
         
     | 
| 
      
 189 
     | 
    
         
            +
                  var fp = re2.exec(w);
         
     | 
| 
      
 190 
     | 
    
         
            +
                  stem = fp[1] + fp[2];
         
     | 
| 
      
 191 
     | 
    
         
            +
                  re2 = new RegExp(mgr1);
         
     | 
| 
      
 192 
     | 
    
         
            +
                  if (re2.test(stem))
         
     | 
| 
      
 193 
     | 
    
         
            +
                    w = stem;
         
     | 
| 
      
 194 
     | 
    
         
            +
                }
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
                // Step 5
         
     | 
| 
      
 197 
     | 
    
         
            +
                re = /^(.+?)e$/;
         
     | 
| 
      
 198 
     | 
    
         
            +
                if (re.test(w)) {
         
     | 
| 
      
 199 
     | 
    
         
            +
                  var fp = re.exec(w);
         
     | 
| 
      
 200 
     | 
    
         
            +
                  stem = fp[1];
         
     | 
| 
      
 201 
     | 
    
         
            +
                  re = new RegExp(mgr1);
         
     | 
| 
      
 202 
     | 
    
         
            +
                  re2 = new RegExp(meq1);
         
     | 
| 
      
 203 
     | 
    
         
            +
                  re3 = new RegExp("^" + C + v + "[^aeiouwxy]$");
         
     | 
| 
      
 204 
     | 
    
         
            +
                  if (re.test(stem) || (re2.test(stem) && !(re3.test(stem))))
         
     | 
| 
      
 205 
     | 
    
         
            +
                    w = stem;
         
     | 
| 
      
 206 
     | 
    
         
            +
                }
         
     | 
| 
      
 207 
     | 
    
         
            +
                re = /ll$/;
         
     | 
| 
      
 208 
     | 
    
         
            +
                re2 = new RegExp(mgr1);
         
     | 
| 
      
 209 
     | 
    
         
            +
                if (re.test(w) && re2.test(w)) {
         
     | 
| 
      
 210 
     | 
    
         
            +
                  re = /.$/;
         
     | 
| 
      
 211 
     | 
    
         
            +
                  w = w.replace(re,"");
         
     | 
| 
      
 212 
     | 
    
         
            +
                }
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
                // and turn initial Y back to y
         
     | 
| 
      
 215 
     | 
    
         
            +
                if (firstch == "y")
         
     | 
| 
      
 216 
     | 
    
         
            +
                  w = firstch.toLowerCase() + w.substr(1);
         
     | 
| 
      
 217 
     | 
    
         
            +
                return w;
         
     | 
| 
      
 218 
     | 
    
         
            +
              }
         
     | 
| 
      
 219 
     | 
    
         
            +
            }
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
            /**
         
     | 
| 
      
 223 
     | 
    
         
            +
             * Search Module
         
     | 
| 
      
 224 
     | 
    
         
            +
             */
         
     | 
| 
      
 225 
     | 
    
         
            +
            var Search = {
         
     | 
| 
      
 226 
     | 
    
         
            +
             
     | 
| 
      
 227 
     | 
    
         
            +
              _index : null,
         
     | 
| 
      
 228 
     | 
    
         
            +
              _queued_query : null,
         
     | 
| 
      
 229 
     | 
    
         
            +
              _pulse_status : -1,
         
     | 
| 
      
 230 
     | 
    
         
            +
             
     | 
| 
      
 231 
     | 
    
         
            +
              init : function() {
         
     | 
| 
      
 232 
     | 
    
         
            +
                  var params = $.getQueryParameters();
         
     | 
| 
      
 233 
     | 
    
         
            +
                  if (params.q) {
         
     | 
| 
      
 234 
     | 
    
         
            +
                      var query = params.q[0];
         
     | 
| 
      
 235 
     | 
    
         
            +
                      $('input[name="q"]')[0].value = query;
         
     | 
| 
      
 236 
     | 
    
         
            +
                      this.performSearch(query);
         
     | 
| 
      
 237 
     | 
    
         
            +
                  }
         
     | 
| 
      
 238 
     | 
    
         
            +
              },
         
     | 
| 
      
 239 
     | 
    
         
            +
             
     | 
| 
      
 240 
     | 
    
         
            +
              loadIndex : function(url) {
         
     | 
| 
      
 241 
     | 
    
         
            +
                $.ajax({type: "GET", url: url, data: null, success: null,
         
     | 
| 
      
 242 
     | 
    
         
            +
                        dataType: "script", cache: true});
         
     | 
| 
      
 243 
     | 
    
         
            +
              },
         
     | 
| 
      
 244 
     | 
    
         
            +
             
     | 
| 
      
 245 
     | 
    
         
            +
              setIndex : function(index) {
         
     | 
| 
      
 246 
     | 
    
         
            +
                var q;
         
     | 
| 
      
 247 
     | 
    
         
            +
                this._index = index;
         
     | 
| 
      
 248 
     | 
    
         
            +
                if ((q = this._queued_query) !== null) {
         
     | 
| 
      
 249 
     | 
    
         
            +
                  this._queued_query = null;
         
     | 
| 
      
 250 
     | 
    
         
            +
                  Search.query(q);
         
     | 
| 
      
 251 
     | 
    
         
            +
                }
         
     | 
| 
      
 252 
     | 
    
         
            +
              },
         
     | 
| 
      
 253 
     | 
    
         
            +
             
     | 
| 
      
 254 
     | 
    
         
            +
              hasIndex : function() {
         
     | 
| 
      
 255 
     | 
    
         
            +
                  return this._index !== null;
         
     | 
| 
      
 256 
     | 
    
         
            +
              },
         
     | 
| 
      
 257 
     | 
    
         
            +
             
     | 
| 
      
 258 
     | 
    
         
            +
              deferQuery : function(query) {
         
     | 
| 
      
 259 
     | 
    
         
            +
                  this._queued_query = query;
         
     | 
| 
      
 260 
     | 
    
         
            +
              },
         
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
              stopPulse : function() {
         
     | 
| 
      
 263 
     | 
    
         
            +
                  this._pulse_status = 0;
         
     | 
| 
      
 264 
     | 
    
         
            +
              },
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
              startPulse : function() {
         
     | 
| 
      
 267 
     | 
    
         
            +
                if (this._pulse_status >= 0)
         
     | 
| 
      
 268 
     | 
    
         
            +
                    return;
         
     | 
| 
      
 269 
     | 
    
         
            +
                function pulse() {
         
     | 
| 
      
 270 
     | 
    
         
            +
                  Search._pulse_status = (Search._pulse_status + 1) % 4;
         
     | 
| 
      
 271 
     | 
    
         
            +
                  var dotString = '';
         
     | 
| 
      
 272 
     | 
    
         
            +
                  for (var i = 0; i < Search._pulse_status; i++)
         
     | 
| 
      
 273 
     | 
    
         
            +
                    dotString += '.';
         
     | 
| 
      
 274 
     | 
    
         
            +
                  Search.dots.text(dotString);
         
     | 
| 
      
 275 
     | 
    
         
            +
                  if (Search._pulse_status > -1)
         
     | 
| 
      
 276 
     | 
    
         
            +
                    window.setTimeout(pulse, 500);
         
     | 
| 
      
 277 
     | 
    
         
            +
                };
         
     | 
| 
      
 278 
     | 
    
         
            +
                pulse();
         
     | 
| 
      
 279 
     | 
    
         
            +
              },
         
     | 
| 
      
 280 
     | 
    
         
            +
             
     | 
| 
      
 281 
     | 
    
         
            +
              /**
         
     | 
| 
      
 282 
     | 
    
         
            +
               * perform a search for something
         
     | 
| 
      
 283 
     | 
    
         
            +
               */
         
     | 
| 
      
 284 
     | 
    
         
            +
              performSearch : function(query) {
         
     | 
| 
      
 285 
     | 
    
         
            +
                // create the required interface elements
         
     | 
| 
      
 286 
     | 
    
         
            +
                this.out = $('#search-results');
         
     | 
| 
      
 287 
     | 
    
         
            +
                this.title = $('<h2>' + _('Searching') + '</h2>').appendTo(this.out);
         
     | 
| 
      
 288 
     | 
    
         
            +
                this.dots = $('<span></span>').appendTo(this.title);
         
     | 
| 
      
 289 
     | 
    
         
            +
                this.status = $('<p style="display: none"></p>').appendTo(this.out);
         
     | 
| 
      
 290 
     | 
    
         
            +
                this.output = $('<ul class="search"/>').appendTo(this.out);
         
     | 
| 
      
 291 
     | 
    
         
            +
             
     | 
| 
      
 292 
     | 
    
         
            +
                $('#search-progress').text(_('Preparing search...'));
         
     | 
| 
      
 293 
     | 
    
         
            +
                this.startPulse();
         
     | 
| 
      
 294 
     | 
    
         
            +
             
     | 
| 
      
 295 
     | 
    
         
            +
                // index already loaded, the browser was quick!
         
     | 
| 
      
 296 
     | 
    
         
            +
                if (this.hasIndex())
         
     | 
| 
      
 297 
     | 
    
         
            +
                  this.query(query);
         
     | 
| 
      
 298 
     | 
    
         
            +
                else
         
     | 
| 
      
 299 
     | 
    
         
            +
                  this.deferQuery(query);
         
     | 
| 
      
 300 
     | 
    
         
            +
              },
         
     | 
| 
      
 301 
     | 
    
         
            +
             
     | 
| 
      
 302 
     | 
    
         
            +
              query : function(query) {
         
     | 
| 
      
 303 
     | 
    
         
            +
                var stopwords = ['and', 'then', 'into', 'it', 'as', 'are', 'in',
         
     | 
| 
      
 304 
     | 
    
         
            +
                                 'if', 'for', 'no', 'there', 'their', 'was', 'is',
         
     | 
| 
      
 305 
     | 
    
         
            +
                                 'be', 'to', 'that', 'but', 'they', 'not', 'such',
         
     | 
| 
      
 306 
     | 
    
         
            +
                                 'with', 'by', 'a', 'on', 'these', 'of', 'will',
         
     | 
| 
      
 307 
     | 
    
         
            +
                                 'this', 'near', 'the', 'or', 'at'];
         
     | 
| 
      
 308 
     | 
    
         
            +
             
     | 
| 
      
 309 
     | 
    
         
            +
                // stem the searchterms and add them to the correct list
         
     | 
| 
      
 310 
     | 
    
         
            +
                var stemmer = new PorterStemmer();
         
     | 
| 
      
 311 
     | 
    
         
            +
                var searchterms = [];
         
     | 
| 
      
 312 
     | 
    
         
            +
                var excluded = [];
         
     | 
| 
      
 313 
     | 
    
         
            +
                var hlterms = [];
         
     | 
| 
      
 314 
     | 
    
         
            +
                var tmp = query.split(/\s+/);
         
     | 
| 
      
 315 
     | 
    
         
            +
                var object = (tmp.length == 1) ? tmp[0].toLowerCase() : null;
         
     | 
| 
      
 316 
     | 
    
         
            +
                for (var i = 0; i < tmp.length; i++) {
         
     | 
| 
      
 317 
     | 
    
         
            +
                  if ($u.indexOf(stopwords, tmp[i]) != -1 || tmp[i].match(/^\d+$/) ||
         
     | 
| 
      
 318 
     | 
    
         
            +
                      tmp[i] == "") {
         
     | 
| 
      
 319 
     | 
    
         
            +
                    // skip this "word"
         
     | 
| 
      
 320 
     | 
    
         
            +
                    continue;
         
     | 
| 
      
 321 
     | 
    
         
            +
                  }
         
     | 
| 
      
 322 
     | 
    
         
            +
                  // stem the word
         
     | 
| 
      
 323 
     | 
    
         
            +
                  var word = stemmer.stemWord(tmp[i]).toLowerCase();
         
     | 
| 
      
 324 
     | 
    
         
            +
                  // select the correct list
         
     | 
| 
      
 325 
     | 
    
         
            +
                  if (word[0] == '-') {
         
     | 
| 
      
 326 
     | 
    
         
            +
                    var toAppend = excluded;
         
     | 
| 
      
 327 
     | 
    
         
            +
                    word = word.substr(1);
         
     | 
| 
      
 328 
     | 
    
         
            +
                  }
         
     | 
| 
      
 329 
     | 
    
         
            +
                  else {
         
     | 
| 
      
 330 
     | 
    
         
            +
                    var toAppend = searchterms;
         
     | 
| 
      
 331 
     | 
    
         
            +
                    hlterms.push(tmp[i].toLowerCase());
         
     | 
| 
      
 332 
     | 
    
         
            +
                  }
         
     | 
| 
      
 333 
     | 
    
         
            +
                  // only add if not already in the list
         
     | 
| 
      
 334 
     | 
    
         
            +
                  if (!$.contains(toAppend, word))
         
     | 
| 
      
 335 
     | 
    
         
            +
                    toAppend.push(word);
         
     | 
| 
      
 336 
     | 
    
         
            +
                };
         
     | 
| 
      
 337 
     | 
    
         
            +
                var highlightstring = '?highlight=' + $.urlencode(hlterms.join(" "));
         
     | 
| 
      
 338 
     | 
    
         
            +
             
     | 
| 
      
 339 
     | 
    
         
            +
                // console.debug('SEARCH: searching for:');
         
     | 
| 
      
 340 
     | 
    
         
            +
                // console.info('required: ', searchterms);
         
     | 
| 
      
 341 
     | 
    
         
            +
                // console.info('excluded: ', excluded);
         
     | 
| 
      
 342 
     | 
    
         
            +
             
     | 
| 
      
 343 
     | 
    
         
            +
                // prepare search
         
     | 
| 
      
 344 
     | 
    
         
            +
                var filenames = this._index.filenames;
         
     | 
| 
      
 345 
     | 
    
         
            +
                var titles = this._index.titles;
         
     | 
| 
      
 346 
     | 
    
         
            +
                var terms = this._index.terms;
         
     | 
| 
      
 347 
     | 
    
         
            +
                var objects = this._index.objects;
         
     | 
| 
      
 348 
     | 
    
         
            +
                var objtypes = this._index.objtypes;
         
     | 
| 
      
 349 
     | 
    
         
            +
                var objnames = this._index.objnames;
         
     | 
| 
      
 350 
     | 
    
         
            +
                var fileMap = {};
         
     | 
| 
      
 351 
     | 
    
         
            +
                var files = null;
         
     | 
| 
      
 352 
     | 
    
         
            +
                // different result priorities
         
     | 
| 
      
 353 
     | 
    
         
            +
                var importantResults = [];
         
     | 
| 
      
 354 
     | 
    
         
            +
                var objectResults = [];
         
     | 
| 
      
 355 
     | 
    
         
            +
                var regularResults = [];
         
     | 
| 
      
 356 
     | 
    
         
            +
                var unimportantResults = [];
         
     | 
| 
      
 357 
     | 
    
         
            +
                $('#search-progress').empty();
         
     | 
| 
      
 358 
     | 
    
         
            +
             
     | 
| 
      
 359 
     | 
    
         
            +
                // lookup as object
         
     | 
| 
      
 360 
     | 
    
         
            +
                if (object != null) {
         
     | 
| 
      
 361 
     | 
    
         
            +
                  for (var prefix in objects) {
         
     | 
| 
      
 362 
     | 
    
         
            +
                    for (var name in objects[prefix]) {
         
     | 
| 
      
 363 
     | 
    
         
            +
                      var fullname = (prefix ? prefix + '.' : '') + name;
         
     | 
| 
      
 364 
     | 
    
         
            +
                      if (fullname.toLowerCase().indexOf(object) > -1) {
         
     | 
| 
      
 365 
     | 
    
         
            +
                        match = objects[prefix][name];
         
     | 
| 
      
 366 
     | 
    
         
            +
                        descr = objnames[match[1]] + _(', in ') + titles[match[0]];
         
     | 
| 
      
 367 
     | 
    
         
            +
                        // XXX the generated anchors are not generally correct
         
     | 
| 
      
 368 
     | 
    
         
            +
                        // XXX there may be custom prefixes
         
     | 
| 
      
 369 
     | 
    
         
            +
                        result = [filenames[match[0]], fullname, '#'+fullname, descr];
         
     | 
| 
      
 370 
     | 
    
         
            +
                        switch (match[2]) {
         
     | 
| 
      
 371 
     | 
    
         
            +
                        case 1: objectResults.push(result); break;
         
     | 
| 
      
 372 
     | 
    
         
            +
                        case 0: importantResults.push(result); break;
         
     | 
| 
      
 373 
     | 
    
         
            +
                        case 2: unimportantResults.push(result); break;
         
     | 
| 
      
 374 
     | 
    
         
            +
                        }
         
     | 
| 
      
 375 
     | 
    
         
            +
                      }
         
     | 
| 
      
 376 
     | 
    
         
            +
                    }
         
     | 
| 
      
 377 
     | 
    
         
            +
                  }
         
     | 
| 
      
 378 
     | 
    
         
            +
                }
         
     | 
| 
      
 379 
     | 
    
         
            +
             
     | 
| 
      
 380 
     | 
    
         
            +
                // sort results descending
         
     | 
| 
      
 381 
     | 
    
         
            +
                objectResults.sort(function(a, b) {
         
     | 
| 
      
 382 
     | 
    
         
            +
                  return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0);
         
     | 
| 
      
 383 
     | 
    
         
            +
                });
         
     | 
| 
      
 384 
     | 
    
         
            +
             
     | 
| 
      
 385 
     | 
    
         
            +
                importantResults.sort(function(a, b) {
         
     | 
| 
      
 386 
     | 
    
         
            +
                  return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0);
         
     | 
| 
      
 387 
     | 
    
         
            +
                });
         
     | 
| 
      
 388 
     | 
    
         
            +
             
     | 
| 
      
 389 
     | 
    
         
            +
                unimportantResults.sort(function(a, b) {
         
     | 
| 
      
 390 
     | 
    
         
            +
                  return (a[1] > b[1]) ? -1 : ((a[1] < b[1]) ? 1 : 0);
         
     | 
| 
      
 391 
     | 
    
         
            +
                });
         
     | 
| 
      
 392 
     | 
    
         
            +
             
     | 
| 
      
 393 
     | 
    
         
            +
             
     | 
| 
      
 394 
     | 
    
         
            +
                // perform the search on the required terms
         
     | 
| 
      
 395 
     | 
    
         
            +
                for (var i = 0; i < searchterms.length; i++) {
         
     | 
| 
      
 396 
     | 
    
         
            +
                  var word = searchterms[i];
         
     | 
| 
      
 397 
     | 
    
         
            +
                  // no match but word was a required one
         
     | 
| 
      
 398 
     | 
    
         
            +
                  if ((files = terms[word]) == null)
         
     | 
| 
      
 399 
     | 
    
         
            +
                    break;
         
     | 
| 
      
 400 
     | 
    
         
            +
                  if (files.length == undefined) {
         
     | 
| 
      
 401 
     | 
    
         
            +
                    files = [files];
         
     | 
| 
      
 402 
     | 
    
         
            +
                  }
         
     | 
| 
      
 403 
     | 
    
         
            +
                  // create the mapping
         
     | 
| 
      
 404 
     | 
    
         
            +
                  for (var j = 0; j < files.length; j++) {
         
     | 
| 
      
 405 
     | 
    
         
            +
                    var file = files[j];
         
     | 
| 
      
 406 
     | 
    
         
            +
                    if (file in fileMap)
         
     | 
| 
      
 407 
     | 
    
         
            +
                      fileMap[file].push(word);
         
     | 
| 
      
 408 
     | 
    
         
            +
                    else
         
     | 
| 
      
 409 
     | 
    
         
            +
                      fileMap[file] = [word];
         
     | 
| 
      
 410 
     | 
    
         
            +
                  }
         
     | 
| 
      
 411 
     | 
    
         
            +
                }
         
     | 
| 
      
 412 
     | 
    
         
            +
             
     | 
| 
      
 413 
     | 
    
         
            +
                // now check if the files don't contain excluded terms
         
     | 
| 
      
 414 
     | 
    
         
            +
                for (var file in fileMap) {
         
     | 
| 
      
 415 
     | 
    
         
            +
                  var valid = true;
         
     | 
| 
      
 416 
     | 
    
         
            +
             
     | 
| 
      
 417 
     | 
    
         
            +
                  // check if all requirements are matched
         
     | 
| 
      
 418 
     | 
    
         
            +
                  if (fileMap[file].length != searchterms.length)
         
     | 
| 
      
 419 
     | 
    
         
            +
                    continue;
         
     | 
| 
      
 420 
     | 
    
         
            +
             
     | 
| 
      
 421 
     | 
    
         
            +
                  // ensure that none of the excluded terms is in the
         
     | 
| 
      
 422 
     | 
    
         
            +
                  // search result.
         
     | 
| 
      
 423 
     | 
    
         
            +
                  for (var i = 0; i < excluded.length; i++) {
         
     | 
| 
      
 424 
     | 
    
         
            +
                    if (terms[excluded[i]] == file ||
         
     | 
| 
      
 425 
     | 
    
         
            +
                        $.contains(terms[excluded[i]] || [], file)) {
         
     | 
| 
      
 426 
     | 
    
         
            +
                      valid = false;
         
     | 
| 
      
 427 
     | 
    
         
            +
                      break;
         
     | 
| 
      
 428 
     | 
    
         
            +
                    }
         
     | 
| 
      
 429 
     | 
    
         
            +
                  }
         
     | 
| 
      
 430 
     | 
    
         
            +
             
     | 
| 
      
 431 
     | 
    
         
            +
                  // if we have still a valid result we can add it
         
     | 
| 
      
 432 
     | 
    
         
            +
                  // to the result list
         
     | 
| 
      
 433 
     | 
    
         
            +
                  if (valid)
         
     | 
| 
      
 434 
     | 
    
         
            +
                    regularResults.push([filenames[file], titles[file], '', null]);
         
     | 
| 
      
 435 
     | 
    
         
            +
                }
         
     | 
| 
      
 436 
     | 
    
         
            +
             
     | 
| 
      
 437 
     | 
    
         
            +
                // delete unused variables in order to not waste
         
     | 
| 
      
 438 
     | 
    
         
            +
                // memory until list is retrieved completely
         
     | 
| 
      
 439 
     | 
    
         
            +
                delete filenames, titles, terms;
         
     | 
| 
      
 440 
     | 
    
         
            +
             
     | 
| 
      
 441 
     | 
    
         
            +
                // now sort the regular results descending by title
         
     | 
| 
      
 442 
     | 
    
         
            +
                regularResults.sort(function(a, b) {
         
     | 
| 
      
 443 
     | 
    
         
            +
                  var left = a[1].toLowerCase();
         
     | 
| 
      
 444 
     | 
    
         
            +
                  var right = b[1].toLowerCase();
         
     | 
| 
      
 445 
     | 
    
         
            +
                  return (left > right) ? -1 : ((left < right) ? 1 : 0);
         
     | 
| 
      
 446 
     | 
    
         
            +
                });
         
     | 
| 
      
 447 
     | 
    
         
            +
             
     | 
| 
      
 448 
     | 
    
         
            +
                // combine all results
         
     | 
| 
      
 449 
     | 
    
         
            +
                var results = unimportantResults.concat(regularResults)
         
     | 
| 
      
 450 
     | 
    
         
            +
                  .concat(objectResults).concat(importantResults);
         
     | 
| 
      
 451 
     | 
    
         
            +
             
     | 
| 
      
 452 
     | 
    
         
            +
                // print the results
         
     | 
| 
      
 453 
     | 
    
         
            +
                var resultCount = results.length;
         
     | 
| 
      
 454 
     | 
    
         
            +
                function displayNextItem() {
         
     | 
| 
      
 455 
     | 
    
         
            +
                  // results left, load the summary and display it
         
     | 
| 
      
 456 
     | 
    
         
            +
                  if (results.length) {
         
     | 
| 
      
 457 
     | 
    
         
            +
                    var item = results.pop();
         
     | 
| 
      
 458 
     | 
    
         
            +
                    var listItem = $('<li style="display:none"></li>');
         
     | 
| 
      
 459 
     | 
    
         
            +
                    if (DOCUMENTATION_OPTIONS.FILE_SUFFIX == '') {
         
     | 
| 
      
 460 
     | 
    
         
            +
                      // dirhtml builder
         
     | 
| 
      
 461 
     | 
    
         
            +
                      var dirname = item[0] + '/';
         
     | 
| 
      
 462 
     | 
    
         
            +
                      if (dirname.match(/\/index\/$/)) {
         
     | 
| 
      
 463 
     | 
    
         
            +
                        dirname = dirname.substring(0, dirname.length-6);
         
     | 
| 
      
 464 
     | 
    
         
            +
                      } else if (dirname == 'index/') {
         
     | 
| 
      
 465 
     | 
    
         
            +
                        dirname = '';
         
     | 
| 
      
 466 
     | 
    
         
            +
                      }
         
     | 
| 
      
 467 
     | 
    
         
            +
                      listItem.append($('<a/>').attr('href',
         
     | 
| 
      
 468 
     | 
    
         
            +
                        DOCUMENTATION_OPTIONS.URL_ROOT + dirname +
         
     | 
| 
      
 469 
     | 
    
         
            +
                        highlightstring + item[2]).html(item[1]));
         
     | 
| 
      
 470 
     | 
    
         
            +
                    } else {
         
     | 
| 
      
 471 
     | 
    
         
            +
                      // normal html builders
         
     | 
| 
      
 472 
     | 
    
         
            +
                      listItem.append($('<a/>').attr('href',
         
     | 
| 
      
 473 
     | 
    
         
            +
                        item[0] + DOCUMENTATION_OPTIONS.FILE_SUFFIX +
         
     | 
| 
      
 474 
     | 
    
         
            +
                        highlightstring + item[2]).html(item[1]));
         
     | 
| 
      
 475 
     | 
    
         
            +
                    }
         
     | 
| 
      
 476 
     | 
    
         
            +
                    if (item[3]) {
         
     | 
| 
      
 477 
     | 
    
         
            +
                      listItem.append($('<span> (' + item[3] + ')</span>'));
         
     | 
| 
      
 478 
     | 
    
         
            +
                      Search.output.append(listItem);
         
     | 
| 
      
 479 
     | 
    
         
            +
                      listItem.slideDown(5, function() {
         
     | 
| 
      
 480 
     | 
    
         
            +
                        displayNextItem();
         
     | 
| 
      
 481 
     | 
    
         
            +
                      });
         
     | 
| 
      
 482 
     | 
    
         
            +
                    } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) {
         
     | 
| 
      
 483 
     | 
    
         
            +
                      $.get(DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' +
         
     | 
| 
      
 484 
     | 
    
         
            +
                            item[0] + '.txt', function(data) {
         
     | 
| 
      
 485 
     | 
    
         
            +
                        if (data != '') {
         
     | 
| 
      
 486 
     | 
    
         
            +
                          listItem.append($.makeSearchSummary(data, searchterms, hlterms));
         
     | 
| 
      
 487 
     | 
    
         
            +
                          Search.output.append(listItem);
         
     | 
| 
      
 488 
     | 
    
         
            +
                        }
         
     | 
| 
      
 489 
     | 
    
         
            +
                        listItem.slideDown(5, function() {
         
     | 
| 
      
 490 
     | 
    
         
            +
                          displayNextItem();
         
     | 
| 
      
 491 
     | 
    
         
            +
                        });
         
     | 
| 
      
 492 
     | 
    
         
            +
                      });
         
     | 
| 
      
 493 
     | 
    
         
            +
                    } else {
         
     | 
| 
      
 494 
     | 
    
         
            +
                      // no source available, just display title
         
     | 
| 
      
 495 
     | 
    
         
            +
                      Search.output.append(listItem);
         
     | 
| 
      
 496 
     | 
    
         
            +
                      listItem.slideDown(5, function() {
         
     | 
| 
      
 497 
     | 
    
         
            +
                        displayNextItem();
         
     | 
| 
      
 498 
     | 
    
         
            +
                      });
         
     | 
| 
      
 499 
     | 
    
         
            +
                    }
         
     | 
| 
      
 500 
     | 
    
         
            +
                  }
         
     | 
| 
      
 501 
     | 
    
         
            +
                  // search finished, update title and status message
         
     | 
| 
      
 502 
     | 
    
         
            +
                  else {
         
     | 
| 
      
 503 
     | 
    
         
            +
                    Search.stopPulse();
         
     | 
| 
      
 504 
     | 
    
         
            +
                    Search.title.text(_('Search Results'));
         
     | 
| 
      
 505 
     | 
    
         
            +
                    if (!resultCount)
         
     | 
| 
      
 506 
     | 
    
         
            +
                      Search.status.text(_('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.'));
         
     | 
| 
      
 507 
     | 
    
         
            +
                    else
         
     | 
| 
      
 508 
     | 
    
         
            +
                        Search.status.text(_('Search finished, found %s page(s) matching the search query.').replace('%s', resultCount));
         
     | 
| 
      
 509 
     | 
    
         
            +
                    Search.status.fadeIn(500);
         
     | 
| 
      
 510 
     | 
    
         
            +
                  }
         
     | 
| 
      
 511 
     | 
    
         
            +
                }
         
     | 
| 
      
 512 
     | 
    
         
            +
                displayNextItem();
         
     | 
| 
      
 513 
     | 
    
         
            +
              }
         
     | 
| 
      
 514 
     | 
    
         
            +
            }
         
     | 
| 
      
 515 
     | 
    
         
            +
             
     | 
| 
      
 516 
     | 
    
         
            +
            $(document).ready(function() {
         
     | 
| 
      
 517 
     | 
    
         
            +
              Search.init();
         
     | 
| 
      
 518 
     | 
    
         
            +
            });
         
     |