rere 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.classpath +260 -0
- data/.gitignore +28 -0
- data/.project +14 -0
- data/.ruby-version +1 -0
- data/.settings/org.eclim.prefs +3 -0
- data/.settings/org.eclipse.jdt.core.prefs +5 -0
- data/.settings/org.eclipse.jdt.ui.prefs +2 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/Rakefile +65 -0
- data/bin/solr +61 -0
- data/example/config/solr.yml +23 -0
- data/example/log/.gitkeep +0 -0
- data/example/solr/README.txt +63 -0
- data/example/solr/collection1/README.txt +50 -0
- data/example/solr/collection1/conf/admin-extra.html +24 -0
- data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
- data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
- data/example/solr/collection1/conf/currency.xml +67 -0
- data/example/solr/collection1/conf/elevate.xml +38 -0
- data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
- data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
- data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
- data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
- data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
- data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
- data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
- data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
- data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
- data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
- data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
- data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
- data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
- data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
- data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
- data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
- data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
- data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
- data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
- data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
- data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
- data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
- data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
- data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
- data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
- data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
- data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
- data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
- data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
- data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
- data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
- data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
- data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
- data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
- data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
- data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/example/solr/collection1/conf/protwords.txt +21 -0
- data/example/solr/collection1/conf/schema.xml +1125 -0
- data/example/solr/collection1/conf/scripts.conf +24 -0
- data/example/solr/collection1/conf/solrconfig.xml +1816 -0
- data/example/solr/collection1/conf/spellings.txt +2 -0
- data/example/solr/collection1/conf/stopwords.txt +14 -0
- data/example/solr/collection1/conf/synonyms.txt +29 -0
- data/example/solr/collection1/conf/update-script.js +53 -0
- data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
- data/example/solr/collection1/conf/velocity/browse.vm +50 -0
- data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
- data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
- data/example/solr/collection1/conf/velocity/debug.vm +17 -0
- data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
- data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
- data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
- data/example/solr/collection1/conf/velocity/facets.vm +5 -0
- data/example/solr/collection1/conf/velocity/footer.vm +17 -0
- data/example/solr/collection1/conf/velocity/head.vm +32 -0
- data/example/solr/collection1/conf/velocity/header.vm +3 -0
- data/example/solr/collection1/conf/velocity/hit.vm +11 -0
- data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
- data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
- data/example/solr/collection1/conf/velocity/layout.vm +20 -0
- data/example/solr/collection1/conf/velocity/main.css +208 -0
- data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
- data/example/solr/collection1/conf/velocity/query.vm +42 -0
- data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
- data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
- data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
- data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
- data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
- data/example/solr/collection1/conf/xslt/example.xsl +132 -0
- data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
- data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
- data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
- data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
- data/example/solr/collection1/data/index/segments.gen +0 -0
- data/example/solr/collection1/data/index/segments_1 +0 -0
- data/example/solr/data/development/index/segments.gen +0 -0
- data/example/solr/data/development/index/segments_1 +0 -0
- data/example/solr/solr.xml +53 -0
- data/example/solr/zoo.cfg +17 -0
- data/lib/rere.rb +66 -0
- data/lib/rere/railtie.rb +8 -0
- data/lib/rere/server.rb +380 -0
- data/lib/rere/tasks/solr.rake +47 -0
- data/lib/rere/version.rb +3 -0
- data/pom.xml +168 -0
- data/rere.gemspec +26 -0
- data/server/README.txt +78 -0
- data/server/cloud-scripts/zkcli.bat +12 -0
- data/server/cloud-scripts/zkcli.sh +14 -0
- data/server/contexts/solr-jetty-context.xml +8 -0
- data/server/etc/create-solrtest.keystore.sh +37 -0
- data/server/etc/jetty.xml +205 -0
- data/server/etc/logging.properties +38 -0
- data/server/etc/solrtest.keystore +0 -0
- data/server/etc/webdefault.xml +527 -0
- data/server/exampledocs/books.csv +11 -0
- data/server/exampledocs/books.json +51 -0
- data/server/exampledocs/gb18030-example.xml +32 -0
- data/server/exampledocs/hd.xml +56 -0
- data/server/exampledocs/ipod_other.xml +60 -0
- data/server/exampledocs/ipod_video.xml +40 -0
- data/server/exampledocs/manufacturers.xml +75 -0
- data/server/exampledocs/mem.xml +77 -0
- data/server/exampledocs/money.xml +65 -0
- data/server/exampledocs/monitor.xml +35 -0
- data/server/exampledocs/monitor2.xml +34 -0
- data/server/exampledocs/mp500.xml +43 -0
- data/server/exampledocs/post.jar +0 -0
- data/server/exampledocs/post.sh +30 -0
- data/server/exampledocs/sd500.xml +38 -0
- data/server/exampledocs/solr.xml +38 -0
- data/server/exampledocs/test_utf8.sh +93 -0
- data/server/exampledocs/utf8-example.xml +42 -0
- data/server/exampledocs/vidcard.xml +62 -0
- data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/log4j-1.2.16.jar +0 -0
- data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
- data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
- data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
- data/server/lib/servlet-api-3.0.jar +0 -0
- data/server/resources/log4j.properties +19 -0
- data/server/solr/README.txt +63 -0
- data/server/solr/solr.xml +53 -0
- data/server/solr/zoo.cfg +17 -0
- data/server/start.jar +0 -0
- data/server/webapps/solr.war +0 -0
- data/solr/lib/solr-winds-0.1.jar +0 -0
- 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
|
+
οτι
|