rere 0.0.1

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.
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,110 @@
1
+
2
+ a
3
+ ach
4
+ ag
5
+ agus
6
+ an
7
+ aon
8
+ ar
9
+ arna
10
+ as
11
+ b'
12
+ ba
13
+ beirt
14
+ bhúr
15
+ caoga
16
+ ceathair
17
+ ceathrar
18
+ chomh
19
+ chtó
20
+ chuig
21
+ chun
22
+ cois
23
+ céad
24
+ cúig
25
+ cúigear
26
+ d'
27
+ daichead
28
+ dar
29
+ de
30
+ deich
31
+ deichniúr
32
+ den
33
+ dhá
34
+ do
35
+ don
36
+ dtí
37
+
38
+ dár
39
+
40
+ faoi
41
+ faoin
42
+ faoina
43
+ faoinár
44
+ fara
45
+ fiche
46
+ gach
47
+ gan
48
+ go
49
+ gur
50
+ haon
51
+ hocht
52
+ i
53
+ iad
54
+ idir
55
+ in
56
+ ina
57
+ ins
58
+ inár
59
+ is
60
+ le
61
+ leis
62
+ lena
63
+ lenár
64
+ m'
65
+ mar
66
+ mo
67
+
68
+ na
69
+ nach
70
+ naoi
71
+ naonúr
72
+
73
+
74
+ níor
75
+
76
+ nócha
77
+ ocht
78
+ ochtar
79
+ os
80
+ roimh
81
+ sa
82
+ seacht
83
+ seachtar
84
+ seachtó
85
+ seasca
86
+ seisear
87
+ siad
88
+ sibh
89
+ sinn
90
+ sna
91
+
92
+
93
+ tar
94
+ thar
95
+ thú
96
+ triúr
97
+ trí
98
+ trína
99
+ trínár
100
+ tríocha
101
+
102
+ um
103
+ ár
104
+ é
105
+ éis
106
+ í
107
+ ó
108
+ ón
109
+ óna
110
+ ónár
@@ -0,0 +1,161 @@
1
+ # galican stopwords
2
+ a
3
+ aínda
4
+ alí
5
+ aquel
6
+ aquela
7
+ aquelas
8
+ aqueles
9
+ aquilo
10
+ aquí
11
+ ao
12
+ aos
13
+ as
14
+ así
15
+ á
16
+ ben
17
+ cando
18
+ che
19
+ co
20
+ coa
21
+ comigo
22
+ con
23
+ connosco
24
+ contigo
25
+ convosco
26
+ coas
27
+ cos
28
+ cun
29
+ cuns
30
+ cunha
31
+ cunhas
32
+ da
33
+ dalgunha
34
+ dalgunhas
35
+ dalgún
36
+ dalgúns
37
+ das
38
+ de
39
+ del
40
+ dela
41
+ delas
42
+ deles
43
+ desde
44
+ deste
45
+ do
46
+ dos
47
+ dun
48
+ duns
49
+ dunha
50
+ dunhas
51
+ e
52
+ el
53
+ ela
54
+ elas
55
+ eles
56
+ en
57
+ era
58
+ eran
59
+ esa
60
+ esas
61
+ ese
62
+ eses
63
+ esta
64
+ estar
65
+ estaba
66
+ está
67
+ están
68
+ este
69
+ estes
70
+ estiven
71
+ estou
72
+ eu
73
+ é
74
+ facer
75
+ foi
76
+ foron
77
+ fun
78
+ había
79
+ hai
80
+ iso
81
+ isto
82
+ la
83
+ las
84
+ lle
85
+ lles
86
+ lo
87
+ los
88
+ mais
89
+ me
90
+ meu
91
+ meus
92
+ min
93
+ miña
94
+ miñas
95
+ moi
96
+ na
97
+ nas
98
+ neste
99
+ nin
100
+ no
101
+ non
102
+ nos
103
+ nosa
104
+ nosas
105
+ noso
106
+ nosos
107
+ nós
108
+ nun
109
+ nunha
110
+ nuns
111
+ nunhas
112
+ o
113
+ os
114
+ ou
115
+ ó
116
+ ós
117
+ para
118
+ pero
119
+ pode
120
+ pois
121
+ pola
122
+ polas
123
+ polo
124
+ polos
125
+ por
126
+ que
127
+ se
128
+ senón
129
+ ser
130
+ seu
131
+ seus
132
+ sexa
133
+ sido
134
+ sobre
135
+ súa
136
+ súas
137
+ tamén
138
+ tan
139
+ te
140
+ ten
141
+ teñen
142
+ teño
143
+ ter
144
+ teu
145
+ teus
146
+ ti
147
+ tido
148
+ tiña
149
+ tiven
150
+ túa
151
+ túas
152
+ un
153
+ unha
154
+ unhas
155
+ uns
156
+ vos
157
+ vosa
158
+ vosas
159
+ voso
160
+ vosos
161
+ vós
@@ -0,0 +1,235 @@
1
+ # Also see http://www.opensource.org/licenses/bsd-license.html
2
+ # See http://members.unine.ch/jacques.savoy/clef/index.html.
3
+ # This file was created by Jacques Savoy and is distributed under the BSD license.
4
+ # Note: by default this file also contains forms normalized by HindiNormalizer
5
+ # for spelling variation (see section below), such that it can be used whether or
6
+ # not you enable that feature. When adding additional entries to this list,
7
+ # please add the normalized form as well.
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
+ जा
79
+ जितना
80
+ जिन
81
+ जिन्हें
82
+ जिन्हों
83
+ जिस
84
+ जिसे
85
+ जीधर
86
+ जैसा
87
+ जैसे
88
+ जो
89
+ तक
90
+ तब
91
+ तरह
92
+ तिन
93
+ तिन्हें
94
+ तिन्हों
95
+ तिस
96
+ तिसे
97
+ तो
98
+ था
99
+ थी
100
+ थे
101
+ दबारा
102
+ दिया
103
+ दुसरा
104
+ दूसरे
105
+ दो
106
+ द्वारा
107
+
108
+ नहीं
109
+ ना
110
+ निहायत
111
+ नीचे
112
+ ने
113
+ पर
114
+ पर
115
+ पहले
116
+ पूरा
117
+ पे
118
+ फिर
119
+ बनी
120
+ बही
121
+ बहुत
122
+ बाद
123
+ बाला
124
+ बिलकुल
125
+ भी
126
+ भीतर
127
+ मगर
128
+ मानो
129
+ मे
130
+ में
131
+ यदि
132
+ यह
133
+ यहाँ
134
+ यही
135
+ या
136
+ यिह
137
+ ये
138
+ रखें
139
+ रहा
140
+ रहे
141
+ ऱ्वासा
142
+ लिए
143
+ लिये
144
+ लेकिन
145
+
146
+ वर्ग
147
+ वह
148
+ वह
149
+ वहाँ
150
+ वहीं
151
+ वाले
152
+ वुह
153
+ वे
154
+ वग़ैरह
155
+ संग
156
+ सकता
157
+ सकते
158
+ सबसे
159
+ सभी
160
+ साथ
161
+ साबुत
162
+ साभ
163
+ सारा
164
+ से
165
+ सो
166
+ ही
167
+ हुआ
168
+ हुई
169
+ हुए
170
+ है
171
+ हैं
172
+ हो
173
+ होता
174
+ होती
175
+ होते
176
+ होना
177
+ होने
178
+ # additional normalized forms of the above
179
+ अपनि
180
+ जेसे
181
+ होति
182
+ सभि
183
+ तिंहों
184
+ इंहों
185
+ दवारा
186
+ इसि
187
+ किंहें
188
+ थि
189
+ उंहों
190
+ ओर
191
+ जिंहें
192
+ वहिं
193
+ अभि
194
+ बनि
195
+ हि
196
+ उंहिं
197
+ उंहें
198
+ हें
199
+ वगेरह
200
+ एसे
201
+ रवासा
202
+ कोन
203
+ निचे
204
+ काफि
205
+ उसि
206
+ पुरा
207
+ भितर
208
+ हे
209
+ बहि
210
+ वहां
211
+ कोइ
212
+ यहां
213
+ जिंहों
214
+ तिंहें
215
+ किसि
216
+ कइ
217
+ यहि
218
+ इंहिं
219
+ जिधर
220
+ इंहें
221
+ अदि
222
+ इतयादि
223
+ हुइ
224
+ कोनसा
225
+ इसकि
226
+ दुसरे
227
+ जहां
228
+ अप
229
+ किंहों
230
+ उनकि
231
+ भि
232
+ वरग
233
+ हुअ
234
+ जेसा
235
+ नहिं