rere 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (168) hide show
  1. data/.classpath +260 -0
  2. data/.gitignore +28 -0
  3. data/.project +14 -0
  4. data/.ruby-version +1 -0
  5. data/.settings/org.eclim.prefs +3 -0
  6. data/.settings/org.eclipse.jdt.core.prefs +5 -0
  7. data/.settings/org.eclipse.jdt.ui.prefs +2 -0
  8. data/Gemfile +7 -0
  9. data/LICENSE +22 -0
  10. data/README.md +44 -0
  11. data/Rakefile +65 -0
  12. data/bin/solr +61 -0
  13. data/example/config/solr.yml +23 -0
  14. data/example/log/.gitkeep +0 -0
  15. data/example/solr/README.txt +63 -0
  16. data/example/solr/collection1/README.txt +50 -0
  17. data/example/solr/collection1/conf/admin-extra.html +24 -0
  18. data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
  19. data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
  20. data/example/solr/collection1/conf/currency.xml +67 -0
  21. data/example/solr/collection1/conf/elevate.xml +38 -0
  22. data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
  23. data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
  24. data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
  25. data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
  26. data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
  27. data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
  28. data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
  29. data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
  30. data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
  31. data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
  32. data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
  33. data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
  34. data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
  35. data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
  36. data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
  37. data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
  38. data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
  39. data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
  40. data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
  41. data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
  42. data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
  43. data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
  44. data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
  45. data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
  46. data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
  47. data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
  48. data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
  49. data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
  50. data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
  51. data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
  52. data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
  53. data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
  54. data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
  55. data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
  56. data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
  57. data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
  58. data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
  59. data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
  60. data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
  61. data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
  62. data/example/solr/collection1/conf/protwords.txt +21 -0
  63. data/example/solr/collection1/conf/schema.xml +1125 -0
  64. data/example/solr/collection1/conf/scripts.conf +24 -0
  65. data/example/solr/collection1/conf/solrconfig.xml +1816 -0
  66. data/example/solr/collection1/conf/spellings.txt +2 -0
  67. data/example/solr/collection1/conf/stopwords.txt +14 -0
  68. data/example/solr/collection1/conf/synonyms.txt +29 -0
  69. data/example/solr/collection1/conf/update-script.js +53 -0
  70. data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
  71. data/example/solr/collection1/conf/velocity/browse.vm +50 -0
  72. data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
  73. data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
  74. data/example/solr/collection1/conf/velocity/debug.vm +17 -0
  75. data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
  76. data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
  77. data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
  78. data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
  79. data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
  80. data/example/solr/collection1/conf/velocity/facets.vm +5 -0
  81. data/example/solr/collection1/conf/velocity/footer.vm +17 -0
  82. data/example/solr/collection1/conf/velocity/head.vm +32 -0
  83. data/example/solr/collection1/conf/velocity/header.vm +3 -0
  84. data/example/solr/collection1/conf/velocity/hit.vm +11 -0
  85. data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
  86. data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
  87. data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
  88. data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
  89. data/example/solr/collection1/conf/velocity/layout.vm +20 -0
  90. data/example/solr/collection1/conf/velocity/main.css +208 -0
  91. data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
  92. data/example/solr/collection1/conf/velocity/query.vm +42 -0
  93. data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
  94. data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
  95. data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
  96. data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
  97. data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
  98. data/example/solr/collection1/conf/xslt/example.xsl +132 -0
  99. data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
  100. data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
  101. data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
  102. data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
  103. data/example/solr/collection1/data/index/segments.gen +0 -0
  104. data/example/solr/collection1/data/index/segments_1 +0 -0
  105. data/example/solr/data/development/index/segments.gen +0 -0
  106. data/example/solr/data/development/index/segments_1 +0 -0
  107. data/example/solr/solr.xml +53 -0
  108. data/example/solr/zoo.cfg +17 -0
  109. data/lib/rere.rb +66 -0
  110. data/lib/rere/railtie.rb +8 -0
  111. data/lib/rere/server.rb +380 -0
  112. data/lib/rere/tasks/solr.rake +47 -0
  113. data/lib/rere/version.rb +3 -0
  114. data/pom.xml +168 -0
  115. data/rere.gemspec +26 -0
  116. data/server/README.txt +78 -0
  117. data/server/cloud-scripts/zkcli.bat +12 -0
  118. data/server/cloud-scripts/zkcli.sh +14 -0
  119. data/server/contexts/solr-jetty-context.xml +8 -0
  120. data/server/etc/create-solrtest.keystore.sh +37 -0
  121. data/server/etc/jetty.xml +205 -0
  122. data/server/etc/logging.properties +38 -0
  123. data/server/etc/solrtest.keystore +0 -0
  124. data/server/etc/webdefault.xml +527 -0
  125. data/server/exampledocs/books.csv +11 -0
  126. data/server/exampledocs/books.json +51 -0
  127. data/server/exampledocs/gb18030-example.xml +32 -0
  128. data/server/exampledocs/hd.xml +56 -0
  129. data/server/exampledocs/ipod_other.xml +60 -0
  130. data/server/exampledocs/ipod_video.xml +40 -0
  131. data/server/exampledocs/manufacturers.xml +75 -0
  132. data/server/exampledocs/mem.xml +77 -0
  133. data/server/exampledocs/money.xml +65 -0
  134. data/server/exampledocs/monitor.xml +35 -0
  135. data/server/exampledocs/monitor2.xml +34 -0
  136. data/server/exampledocs/mp500.xml +43 -0
  137. data/server/exampledocs/post.jar +0 -0
  138. data/server/exampledocs/post.sh +30 -0
  139. data/server/exampledocs/sd500.xml +38 -0
  140. data/server/exampledocs/solr.xml +38 -0
  141. data/server/exampledocs/test_utf8.sh +93 -0
  142. data/server/exampledocs/utf8-example.xml +42 -0
  143. data/server/exampledocs/vidcard.xml +62 -0
  144. data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
  145. data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
  146. data/server/lib/ext/log4j-1.2.16.jar +0 -0
  147. data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
  148. data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
  149. data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
  150. data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
  151. data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
  152. data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
  153. data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
  154. data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
  155. data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
  156. data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
  157. data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
  158. data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
  159. data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
  160. data/server/lib/servlet-api-3.0.jar +0 -0
  161. data/server/resources/log4j.properties +19 -0
  162. data/server/solr/README.txt +63 -0
  163. data/server/solr/solr.xml +53 -0
  164. data/server/solr/zoo.cfg +17 -0
  165. data/server/start.jar +0 -0
  166. data/server/webapps/solr.war +0 -0
  167. data/solr/lib/solr-winds-0.1.jar +0 -0
  168. metadata +284 -0
@@ -0,0 +1,108 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/danish/stop.txt
2
+ | This file is distributed under the BSD License.
3
+ | See http://snowball.tartarus.org/license.php
4
+ | Also see http://www.opensource.org/licenses/bsd-license.html
5
+ | - Encoding was converted to UTF-8.
6
+ | - This notice was added.
7
+
8
+ | A Danish stop word list. Comments begin with vertical bar. Each stop
9
+ | word is at the start of a line.
10
+
11
+ | This is a ranked list (commonest to rarest) of stopwords derived from
12
+ | a large text sample.
13
+
14
+
15
+ og | and
16
+ i | in
17
+ jeg | I
18
+ det | that (dem. pronoun)/it (pers. pronoun)
19
+ at | that (in front of a sentence)/to (with infinitive)
20
+ en | a/an
21
+ den | it (pers. pronoun)/that (dem. pronoun)
22
+ til | to/at/for/until/against/by/of/into, more
23
+ er | present tense of "to be"
24
+ som | who, as
25
+ på | on/upon/in/on/at/to/after/of/with/for, on
26
+ de | they
27
+ med | with/by/in, along
28
+ han | he
29
+ af | of/by/from/off/for/in/with/on, off
30
+ for | at/for/to/from/by/of/ago, in front/before, because
31
+ ikke | not
32
+ der | who/which, there/those
33
+ var | past tense of "to be"
34
+ mig | me/myself
35
+ sig | oneself/himself/herself/itself/themselves
36
+ men | but
37
+ et | a/an/one, one (number), someone/somebody/one
38
+ har | present tense of "to have"
39
+ om | round/about/for/in/a, about/around/down, if
40
+ vi | we
41
+ min | my
42
+ havde | past tense of "to have"
43
+ ham | him
44
+ hun | she
45
+ nu | now
46
+ over | over/above/across/by/beyond/past/on/about, over/past
47
+ da | then, when/as/since
48
+ fra | from/off/since, off, since
49
+ du | you
50
+ ud | out
51
+ sin | his/her/its/one's
52
+ dem | them
53
+ os | us/ourselves
54
+ op | up
55
+ man | you/one
56
+ hans | his
57
+ hvor | where
58
+ eller | or
59
+ hvad | what
60
+ skal | must/shall etc.
61
+ selv | myself/youself/herself/ourselves etc., even
62
+ her | here
63
+ alle | all/everyone/everybody etc.
64
+ vil | will (verb)
65
+ blev | past tense of "to stay/to remain/to get/to become"
66
+ kunne | could
67
+ ind | in
68
+ når | when
69
+ være | present tense of "to be"
70
+ dog | however/yet/after all
71
+ noget | something
72
+ ville | would
73
+ jo | you know/you see (adv), yes
74
+ deres | their/theirs
75
+ efter | after/behind/according to/for/by/from, later/afterwards
76
+ ned | down
77
+ skulle | should
78
+ denne | this
79
+ end | than
80
+ dette | this
81
+ mit | my/mine
82
+ også | also
83
+ under | under/beneath/below/during, below/underneath
84
+ have | have
85
+ dig | you
86
+ anden | other
87
+ hende | her
88
+ mine | my
89
+ alt | everything
90
+ meget | much/very, plenty of
91
+ sit | his, her, its, one's
92
+ sine | his, her, its, one's
93
+ vor | our
94
+ mod | against
95
+ disse | these
96
+ hvis | if
97
+ din | your/yours
98
+ nogle | some
99
+ hos | by/at
100
+ blive | be/become
101
+ mange | many
102
+ ad | by/through
103
+ bliver | present tense of "to be/to become"
104
+ hendes | her/hers
105
+ været | be
106
+ thi | for (conj)
107
+ jer | you
108
+ sådan | such, like this/like that
@@ -0,0 +1,292 @@
1
+ | From svn.tartarus.org/snowball/trunk/website/algorithms/german/stop.txt
2
+ | This file is distributed under the BSD License.
3
+ | See http://snowball.tartarus.org/license.php
4
+ | Also see http://www.opensource.org/licenses/bsd-license.html
5
+ | - Encoding was converted to UTF-8.
6
+ | - This notice was added.
7
+
8
+ | A German stop word list. Comments begin with vertical bar. Each stop
9
+ | word is at the start of a line.
10
+
11
+ | The number of forms in this list is reduced significantly by passing it
12
+ | through the German stemmer.
13
+
14
+
15
+ aber | but
16
+
17
+ alle | all
18
+ allem
19
+ allen
20
+ aller
21
+ alles
22
+
23
+ als | than, as
24
+ also | so
25
+ am | an + dem
26
+ an | at
27
+
28
+ ander | other
29
+ andere
30
+ anderem
31
+ anderen
32
+ anderer
33
+ anderes
34
+ anderm
35
+ andern
36
+ anderr
37
+ anders
38
+
39
+ auch | also
40
+ auf | on
41
+ aus | out of
42
+ bei | by
43
+ bin | am
44
+ bis | until
45
+ bist | art
46
+ da | there
47
+ damit | with it
48
+ dann | then
49
+
50
+ der | the
51
+ den
52
+ des
53
+ dem
54
+ die
55
+ das
56
+
57
+ daß | that
58
+
59
+ derselbe | the same
60
+ derselben
61
+ denselben
62
+ desselben
63
+ demselben
64
+ dieselbe
65
+ dieselben
66
+ dasselbe
67
+
68
+ dazu | to that
69
+
70
+ dein | thy
71
+ deine
72
+ deinem
73
+ deinen
74
+ deiner
75
+ deines
76
+
77
+ denn | because
78
+
79
+ derer | of those
80
+ dessen | of him
81
+
82
+ dich | thee
83
+ dir | to thee
84
+ du | thou
85
+
86
+ dies | this
87
+ diese
88
+ diesem
89
+ diesen
90
+ dieser
91
+ dieses
92
+
93
+
94
+ doch | (several meanings)
95
+ dort | (over) there
96
+
97
+
98
+ durch | through
99
+
100
+ ein | a
101
+ eine
102
+ einem
103
+ einen
104
+ einer
105
+ eines
106
+
107
+ einig | some
108
+ einige
109
+ einigem
110
+ einigen
111
+ einiger
112
+ einiges
113
+
114
+ einmal | once
115
+
116
+ er | he
117
+ ihn | him
118
+ ihm | to him
119
+
120
+ es | it
121
+ etwas | something
122
+
123
+ euer | your
124
+ eure
125
+ eurem
126
+ euren
127
+ eurer
128
+ eures
129
+
130
+ für | for
131
+ gegen | towards
132
+ gewesen | p.p. of sein
133
+ hab | have
134
+ habe | have
135
+ haben | have
136
+ hat | has
137
+ hatte | had
138
+ hatten | had
139
+ hier | here
140
+ hin | there
141
+ hinter | behind
142
+
143
+ ich | I
144
+ mich | me
145
+ mir | to me
146
+
147
+
148
+ ihr | you, to her
149
+ ihre
150
+ ihrem
151
+ ihren
152
+ ihrer
153
+ ihres
154
+ euch | to you
155
+
156
+ im | in + dem
157
+ in | in
158
+ indem | while
159
+ ins | in + das
160
+ ist | is
161
+
162
+ jede | each, every
163
+ jedem
164
+ jeden
165
+ jeder
166
+ jedes
167
+
168
+ jene | that
169
+ jenem
170
+ jenen
171
+ jener
172
+ jenes
173
+
174
+ jetzt | now
175
+ kann | can
176
+
177
+ kein | no
178
+ keine
179
+ keinem
180
+ keinen
181
+ keiner
182
+ keines
183
+
184
+ können | can
185
+ könnte | could
186
+ machen | do
187
+ man | one
188
+
189
+ manche | some, many a
190
+ manchem
191
+ manchen
192
+ mancher
193
+ manches
194
+
195
+ mein | my
196
+ meine
197
+ meinem
198
+ meinen
199
+ meiner
200
+ meines
201
+
202
+ mit | with
203
+ muss | must
204
+ musste | had to
205
+ nach | to(wards)
206
+ nicht | not
207
+ nichts | nothing
208
+ noch | still, yet
209
+ nun | now
210
+ nur | only
211
+ ob | whether
212
+ oder | or
213
+ ohne | without
214
+ sehr | very
215
+
216
+ sein | his
217
+ seine
218
+ seinem
219
+ seinen
220
+ seiner
221
+ seines
222
+
223
+ selbst | self
224
+ sich | herself
225
+
226
+ sie | they, she
227
+ ihnen | to them
228
+
229
+ sind | are
230
+ so | so
231
+
232
+ solche | such
233
+ solchem
234
+ solchen
235
+ solcher
236
+ solches
237
+
238
+ soll | shall
239
+ sollte | should
240
+ sondern | but
241
+ sonst | else
242
+ über | over
243
+ um | about, around
244
+ und | and
245
+
246
+ uns | us
247
+ unse
248
+ unsem
249
+ unsen
250
+ unser
251
+ unses
252
+
253
+ unter | under
254
+ viel | much
255
+ vom | von + dem
256
+ von | from
257
+ vor | before
258
+ während | while
259
+ war | was
260
+ waren | were
261
+ warst | wast
262
+ was | what
263
+ weg | away, off
264
+ weil | because
265
+ weiter | further
266
+
267
+ welche | which
268
+ welchem
269
+ welchen
270
+ welcher
271
+ welches
272
+
273
+ wenn | when
274
+ werde | will
275
+ werden | will
276
+ wie | how
277
+ wieder | again
278
+ will | want
279
+ wir | we
280
+ wird | will
281
+ wirst | willst
282
+ wo | where
283
+ wollen | want
284
+ wollte | wanted
285
+ würde | would
286
+ würden | would
287
+ zu | to
288
+ zum | zu + dem
289
+ zur | zu + der
290
+ zwar | indeed
291
+ zwischen | between
292
+
@@ -0,0 +1,78 @@
1
+ # Lucene Greek Stopwords list
2
+ # Note: by default this file is used after GreekLowerCaseFilter,
3
+ # so when modifying this file use 'σ' instead of 'ς'
4
+ ο
5
+ η
6
+ το
7
+ οι
8
+ τα
9
+ του
10
+ τησ
11
+ των
12
+ τον
13
+ την
14
+ και
15
+ κι
16
+ κ
17
+ ειμαι
18
+ εισαι
19
+ ειναι
20
+ ειμαστε
21
+ ειστε
22
+ στο
23
+ στον
24
+ στη
25
+ στην
26
+ μα
27
+ αλλα
28
+ απο
29
+ για
30
+ προσ
31
+ με
32
+ σε
33
+ ωσ
34
+ παρα
35
+ αντι
36
+ κατα
37
+ μετα
38
+ θα
39
+ να
40
+ δε
41
+ δεν
42
+ μη
43
+ μην
44
+ επι
45
+ ενω
46
+ εαν
47
+ αν
48
+ τοτε
49
+ που
50
+ πωσ
51
+ ποιοσ
52
+ ποια
53
+ ποιο
54
+ ποιοι
55
+ ποιεσ
56
+ ποιων
57
+ ποιουσ
58
+ αυτοσ
59
+ αυτη
60
+ αυτο
61
+ αυτοι
62
+ αυτων
63
+ αυτουσ
64
+ αυτεσ
65
+ αυτα
66
+ εκεινοσ
67
+ εκεινη
68
+ εκεινο
69
+ εκεινοι
70
+ εκεινεσ
71
+ εκεινα
72
+ εκεινων
73
+ εκεινουσ
74
+ οπωσ
75
+ ομωσ
76
+ ισωσ
77
+ οσο
78
+ οτι