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,233 @@
|
|
1
|
+
# This file was created by Jacques Savoy and is distributed under the BSD license.
|
2
|
+
# See http://members.unine.ch/jacques.savoy/clef/index.html.
|
3
|
+
# Also see http://www.opensource.org/licenses/bsd-license.html
|
4
|
+
acea
|
5
|
+
aceasta
|
6
|
+
această
|
7
|
+
aceea
|
8
|
+
acei
|
9
|
+
aceia
|
10
|
+
acel
|
11
|
+
acela
|
12
|
+
acele
|
13
|
+
acelea
|
14
|
+
acest
|
15
|
+
acesta
|
16
|
+
aceste
|
17
|
+
acestea
|
18
|
+
aceşti
|
19
|
+
aceştia
|
20
|
+
acolo
|
21
|
+
acum
|
22
|
+
ai
|
23
|
+
aia
|
24
|
+
aibă
|
25
|
+
aici
|
26
|
+
al
|
27
|
+
ăla
|
28
|
+
ale
|
29
|
+
alea
|
30
|
+
ălea
|
31
|
+
altceva
|
32
|
+
altcineva
|
33
|
+
am
|
34
|
+
ar
|
35
|
+
are
|
36
|
+
aş
|
37
|
+
aşadar
|
38
|
+
asemenea
|
39
|
+
asta
|
40
|
+
ăsta
|
41
|
+
astăzi
|
42
|
+
astea
|
43
|
+
ăstea
|
44
|
+
ăştia
|
45
|
+
asupra
|
46
|
+
aţi
|
47
|
+
au
|
48
|
+
avea
|
49
|
+
avem
|
50
|
+
aveţi
|
51
|
+
azi
|
52
|
+
bine
|
53
|
+
bucur
|
54
|
+
bună
|
55
|
+
ca
|
56
|
+
că
|
57
|
+
căci
|
58
|
+
când
|
59
|
+
care
|
60
|
+
cărei
|
61
|
+
căror
|
62
|
+
cărui
|
63
|
+
cât
|
64
|
+
câte
|
65
|
+
câţi
|
66
|
+
către
|
67
|
+
câtva
|
68
|
+
ce
|
69
|
+
cel
|
70
|
+
ceva
|
71
|
+
chiar
|
72
|
+
cînd
|
73
|
+
cine
|
74
|
+
cineva
|
75
|
+
cît
|
76
|
+
cîte
|
77
|
+
cîţi
|
78
|
+
cîtva
|
79
|
+
contra
|
80
|
+
cu
|
81
|
+
cum
|
82
|
+
cumva
|
83
|
+
curând
|
84
|
+
curînd
|
85
|
+
da
|
86
|
+
dă
|
87
|
+
dacă
|
88
|
+
dar
|
89
|
+
datorită
|
90
|
+
de
|
91
|
+
deci
|
92
|
+
deja
|
93
|
+
deoarece
|
94
|
+
departe
|
95
|
+
deşi
|
96
|
+
din
|
97
|
+
dinaintea
|
98
|
+
dintr
|
99
|
+
dintre
|
100
|
+
drept
|
101
|
+
după
|
102
|
+
ea
|
103
|
+
ei
|
104
|
+
el
|
105
|
+
ele
|
106
|
+
eram
|
107
|
+
este
|
108
|
+
eşti
|
109
|
+
eu
|
110
|
+
face
|
111
|
+
fără
|
112
|
+
fi
|
113
|
+
fie
|
114
|
+
fiecare
|
115
|
+
fii
|
116
|
+
fim
|
117
|
+
fiţi
|
118
|
+
iar
|
119
|
+
ieri
|
120
|
+
îi
|
121
|
+
îl
|
122
|
+
îmi
|
123
|
+
împotriva
|
124
|
+
în
|
125
|
+
înainte
|
126
|
+
înaintea
|
127
|
+
încât
|
128
|
+
încît
|
129
|
+
încotro
|
130
|
+
între
|
131
|
+
întrucât
|
132
|
+
întrucît
|
133
|
+
îţi
|
134
|
+
la
|
135
|
+
lângă
|
136
|
+
le
|
137
|
+
li
|
138
|
+
lîngă
|
139
|
+
lor
|
140
|
+
lui
|
141
|
+
mă
|
142
|
+
mâine
|
143
|
+
mea
|
144
|
+
mei
|
145
|
+
mele
|
146
|
+
mereu
|
147
|
+
meu
|
148
|
+
mi
|
149
|
+
mine
|
150
|
+
mult
|
151
|
+
multă
|
152
|
+
mulţi
|
153
|
+
ne
|
154
|
+
nicăieri
|
155
|
+
nici
|
156
|
+
nimeni
|
157
|
+
nişte
|
158
|
+
noastră
|
159
|
+
noastre
|
160
|
+
noi
|
161
|
+
noştri
|
162
|
+
nostru
|
163
|
+
nu
|
164
|
+
ori
|
165
|
+
oricând
|
166
|
+
oricare
|
167
|
+
oricât
|
168
|
+
orice
|
169
|
+
oricînd
|
170
|
+
oricine
|
171
|
+
oricît
|
172
|
+
oricum
|
173
|
+
oriunde
|
174
|
+
până
|
175
|
+
pe
|
176
|
+
pentru
|
177
|
+
peste
|
178
|
+
pînă
|
179
|
+
poate
|
180
|
+
pot
|
181
|
+
prea
|
182
|
+
prima
|
183
|
+
primul
|
184
|
+
prin
|
185
|
+
printr
|
186
|
+
sa
|
187
|
+
să
|
188
|
+
săi
|
189
|
+
sale
|
190
|
+
sau
|
191
|
+
său
|
192
|
+
se
|
193
|
+
şi
|
194
|
+
sînt
|
195
|
+
sîntem
|
196
|
+
sînteţi
|
197
|
+
spre
|
198
|
+
sub
|
199
|
+
sunt
|
200
|
+
suntem
|
201
|
+
sunteţi
|
202
|
+
ta
|
203
|
+
tăi
|
204
|
+
tale
|
205
|
+
tău
|
206
|
+
te
|
207
|
+
ţi
|
208
|
+
ţie
|
209
|
+
tine
|
210
|
+
toată
|
211
|
+
toate
|
212
|
+
tot
|
213
|
+
toţi
|
214
|
+
totuşi
|
215
|
+
tu
|
216
|
+
un
|
217
|
+
una
|
218
|
+
unde
|
219
|
+
undeva
|
220
|
+
unei
|
221
|
+
unele
|
222
|
+
uneori
|
223
|
+
unor
|
224
|
+
vă
|
225
|
+
vi
|
226
|
+
voastră
|
227
|
+
voastre
|
228
|
+
voi
|
229
|
+
voştri
|
230
|
+
vostru
|
231
|
+
vouă
|
232
|
+
vreo
|
233
|
+
vreun
|
@@ -0,0 +1,241 @@
|
|
1
|
+
| From svn.tartarus.org/snowball/trunk/website/algorithms/russian/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 russian 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
|
+
| letter `ё' is translated to `е'.
|
15
|
+
|
16
|
+
и | and
|
17
|
+
в | in/into
|
18
|
+
во | alternative form
|
19
|
+
не | not
|
20
|
+
что | what/that
|
21
|
+
он | he
|
22
|
+
на | on/onto
|
23
|
+
я | i
|
24
|
+
с | from
|
25
|
+
со | alternative form
|
26
|
+
как | how
|
27
|
+
а | milder form of `no' (but)
|
28
|
+
то | conjunction and form of `that'
|
29
|
+
все | all
|
30
|
+
она | she
|
31
|
+
так | so, thus
|
32
|
+
его | him
|
33
|
+
но | but
|
34
|
+
да | yes/and
|
35
|
+
ты | thou
|
36
|
+
к | towards, by
|
37
|
+
у | around, chez
|
38
|
+
же | intensifier particle
|
39
|
+
вы | you
|
40
|
+
за | beyond, behind
|
41
|
+
бы | conditional/subj. particle
|
42
|
+
по | up to, along
|
43
|
+
только | only
|
44
|
+
ее | her
|
45
|
+
мне | to me
|
46
|
+
было | it was
|
47
|
+
вот | here is/are, particle
|
48
|
+
от | away from
|
49
|
+
меня | me
|
50
|
+
еще | still, yet, more
|
51
|
+
нет | no, there isnt/arent
|
52
|
+
о | about
|
53
|
+
из | out of
|
54
|
+
ему | to him
|
55
|
+
теперь | now
|
56
|
+
когда | when
|
57
|
+
даже | even
|
58
|
+
ну | so, well
|
59
|
+
вдруг | suddenly
|
60
|
+
ли | interrogative particle
|
61
|
+
если | if
|
62
|
+
уже | already, but homonym of `narrower'
|
63
|
+
или | or
|
64
|
+
ни | neither
|
65
|
+
быть | to be
|
66
|
+
был | he was
|
67
|
+
него | prepositional form of его
|
68
|
+
до | up to
|
69
|
+
вас | you accusative
|
70
|
+
нибудь | indef. suffix preceded by hyphen
|
71
|
+
опять | again
|
72
|
+
уж | already, but homonym of `adder'
|
73
|
+
вам | to you
|
74
|
+
сказал | he said
|
75
|
+
ведь | particle `after all'
|
76
|
+
там | there
|
77
|
+
потом | then
|
78
|
+
себя | oneself
|
79
|
+
ничего | nothing
|
80
|
+
ей | to her
|
81
|
+
может | usually with `быть' as `maybe'
|
82
|
+
они | they
|
83
|
+
тут | here
|
84
|
+
где | where
|
85
|
+
есть | there is/are
|
86
|
+
надо | got to, must
|
87
|
+
ней | prepositional form of ей
|
88
|
+
для | for
|
89
|
+
мы | we
|
90
|
+
тебя | thee
|
91
|
+
их | them, their
|
92
|
+
чем | than
|
93
|
+
была | she was
|
94
|
+
сам | self
|
95
|
+
чтоб | in order to
|
96
|
+
без | without
|
97
|
+
будто | as if
|
98
|
+
человек | man, person, one
|
99
|
+
чего | genitive form of `what'
|
100
|
+
раз | once
|
101
|
+
тоже | also
|
102
|
+
себе | to oneself
|
103
|
+
под | beneath
|
104
|
+
жизнь | life
|
105
|
+
будет | will be
|
106
|
+
ж | short form of intensifer particle `же'
|
107
|
+
тогда | then
|
108
|
+
кто | who
|
109
|
+
этот | this
|
110
|
+
говорил | was saying
|
111
|
+
того | genitive form of `that'
|
112
|
+
потому | for that reason
|
113
|
+
этого | genitive form of `this'
|
114
|
+
какой | which
|
115
|
+
совсем | altogether
|
116
|
+
ним | prepositional form of `его', `они'
|
117
|
+
здесь | here
|
118
|
+
этом | prepositional form of `этот'
|
119
|
+
один | one
|
120
|
+
почти | almost
|
121
|
+
мой | my
|
122
|
+
тем | instrumental/dative plural of `тот', `то'
|
123
|
+
чтобы | full form of `in order that'
|
124
|
+
нее | her (acc.)
|
125
|
+
кажется | it seems
|
126
|
+
сейчас | now
|
127
|
+
были | they were
|
128
|
+
куда | where to
|
129
|
+
зачем | why
|
130
|
+
сказать | to say
|
131
|
+
всех | all (acc., gen. preposn. plural)
|
132
|
+
никогда | never
|
133
|
+
сегодня | today
|
134
|
+
можно | possible, one can
|
135
|
+
при | by
|
136
|
+
наконец | finally
|
137
|
+
два | two
|
138
|
+
об | alternative form of `о', about
|
139
|
+
другой | another
|
140
|
+
хоть | even
|
141
|
+
после | after
|
142
|
+
над | above
|
143
|
+
больше | more
|
144
|
+
тот | that one (masc.)
|
145
|
+
через | across, in
|
146
|
+
эти | these
|
147
|
+
нас | us
|
148
|
+
про | about
|
149
|
+
всего | in all, only, of all
|
150
|
+
них | prepositional form of `они' (they)
|
151
|
+
какая | which, feminine
|
152
|
+
много | lots
|
153
|
+
разве | interrogative particle
|
154
|
+
сказала | she said
|
155
|
+
три | three
|
156
|
+
эту | this, acc. fem. sing.
|
157
|
+
моя | my, feminine
|
158
|
+
впрочем | moreover, besides
|
159
|
+
хорошо | good
|
160
|
+
свою | ones own, acc. fem. sing.
|
161
|
+
этой | oblique form of `эта', fem. `this'
|
162
|
+
перед | in front of
|
163
|
+
иногда | sometimes
|
164
|
+
лучше | better
|
165
|
+
чуть | a little
|
166
|
+
том | preposn. form of `that one'
|
167
|
+
нельзя | one must not
|
168
|
+
такой | such a one
|
169
|
+
им | to them
|
170
|
+
более | more
|
171
|
+
всегда | always
|
172
|
+
конечно | of course
|
173
|
+
всю | acc. fem. sing of `all'
|
174
|
+
между | between
|
175
|
+
|
176
|
+
|
177
|
+
| b: some paradigms
|
178
|
+
|
|
179
|
+
| personal pronouns
|
180
|
+
|
|
181
|
+
| я меня мне мной [мною]
|
182
|
+
| ты тебя тебе тобой [тобою]
|
183
|
+
| он его ему им [него, нему, ним]
|
184
|
+
| она ее эи ею [нее, нэи, нею]
|
185
|
+
| оно его ему им [него, нему, ним]
|
186
|
+
|
|
187
|
+
| мы нас нам нами
|
188
|
+
| вы вас вам вами
|
189
|
+
| они их им ими [них, ним, ними]
|
190
|
+
|
|
191
|
+
| себя себе собой [собою]
|
192
|
+
|
|
193
|
+
| demonstrative pronouns: этот (this), тот (that)
|
194
|
+
|
|
195
|
+
| этот эта это эти
|
196
|
+
| этого эты это эти
|
197
|
+
| этого этой этого этих
|
198
|
+
| этому этой этому этим
|
199
|
+
| этим этой этим [этою] этими
|
200
|
+
| этом этой этом этих
|
201
|
+
|
|
202
|
+
| тот та то те
|
203
|
+
| того ту то те
|
204
|
+
| того той того тех
|
205
|
+
| тому той тому тем
|
206
|
+
| тем той тем [тою] теми
|
207
|
+
| том той том тех
|
208
|
+
|
|
209
|
+
| determinative pronouns
|
210
|
+
|
|
211
|
+
| (a) весь (all)
|
212
|
+
|
|
213
|
+
| весь вся все все
|
214
|
+
| всего всю все все
|
215
|
+
| всего всей всего всех
|
216
|
+
| всему всей всему всем
|
217
|
+
| всем всей всем [всею] всеми
|
218
|
+
| всем всей всем всех
|
219
|
+
|
|
220
|
+
| (b) сам (himself etc)
|
221
|
+
|
|
222
|
+
| сам сама само сами
|
223
|
+
| самого саму само самих
|
224
|
+
| самого самой самого самих
|
225
|
+
| самому самой самому самим
|
226
|
+
| самим самой самим [самою] самими
|
227
|
+
| самом самой самом самих
|
228
|
+
|
|
229
|
+
| stems of verbs `to be', `to have', `to do' and modal
|
230
|
+
|
|
231
|
+
| быть бы буд быв есть суть
|
232
|
+
| име
|
233
|
+
| дел
|
234
|
+
| мог мож мочь
|
235
|
+
| уме
|
236
|
+
| хоч хот
|
237
|
+
| долж
|
238
|
+
| можн
|
239
|
+
| нужн
|
240
|
+
| нельзя
|
241
|
+
|