xapian-fu 1.7.0 → 1.8.0

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 (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +2 -1
  3. data/lib/xapian_fu/stopper_factory.rb +1 -4
  4. data/lib/xapian_fu/stopwords/af.txt +51 -0
  5. data/lib/xapian_fu/stopwords/ar.txt +480 -0
  6. data/lib/xapian_fu/stopwords/bg.txt +259 -0
  7. data/lib/xapian_fu/stopwords/bn.txt +398 -0
  8. data/lib/xapian_fu/stopwords/br.txt +1203 -0
  9. data/lib/xapian_fu/stopwords/ca.txt +278 -0
  10. data/lib/xapian_fu/stopwords/cs.txt +423 -0
  11. data/lib/xapian_fu/stopwords/da.txt +170 -0
  12. data/lib/xapian_fu/stopwords/danish.txt +1 -0
  13. data/lib/xapian_fu/stopwords/de.txt +620 -0
  14. data/lib/xapian_fu/stopwords/dutch.txt +1 -0
  15. data/lib/xapian_fu/stopwords/el.txt +847 -0
  16. data/lib/xapian_fu/stopwords/en.txt +1298 -0
  17. data/lib/xapian_fu/stopwords/english.txt +1 -0
  18. data/lib/xapian_fu/stopwords/eo.txt +173 -0
  19. data/lib/xapian_fu/stopwords/es.txt +732 -0
  20. data/lib/xapian_fu/stopwords/et.txt +35 -0
  21. data/lib/xapian_fu/stopwords/eu.txt +98 -0
  22. data/lib/xapian_fu/stopwords/fa.txt +799 -0
  23. data/lib/xapian_fu/stopwords/fi.txt +847 -0
  24. data/lib/xapian_fu/stopwords/finnish.txt +1 -0
  25. data/lib/xapian_fu/stopwords/fr.txt +691 -0
  26. data/lib/xapian_fu/stopwords/french.txt +1 -0
  27. data/lib/xapian_fu/stopwords/ga.txt +109 -0
  28. data/lib/xapian_fu/stopwords/german.txt +1 -0
  29. data/lib/xapian_fu/stopwords/gl.txt +160 -0
  30. data/lib/xapian_fu/stopwords/gu.txt +224 -0
  31. data/lib/xapian_fu/stopwords/ha.txt +39 -0
  32. data/lib/xapian_fu/stopwords/he.txt +194 -0
  33. data/lib/xapian_fu/stopwords/hi.txt +225 -0
  34. data/lib/xapian_fu/stopwords/hr.txt +179 -0
  35. data/lib/xapian_fu/stopwords/hu.txt +789 -0
  36. data/lib/xapian_fu/stopwords/hungarian.txt +1 -0
  37. data/lib/xapian_fu/stopwords/hy.txt +45 -0
  38. data/lib/xapian_fu/stopwords/id.txt +758 -0
  39. data/lib/xapian_fu/stopwords/it.txt +632 -0
  40. data/lib/xapian_fu/stopwords/italian.txt +1 -0
  41. data/lib/xapian_fu/stopwords/ja.txt +134 -0
  42. data/lib/xapian_fu/stopwords/ko.txt +679 -0
  43. data/lib/xapian_fu/stopwords/ku.txt +62 -0
  44. data/lib/xapian_fu/stopwords/la.txt +49 -0
  45. data/lib/xapian_fu/stopwords/lt.txt +474 -0
  46. data/lib/xapian_fu/stopwords/lv.txt +161 -0
  47. data/lib/xapian_fu/stopwords/mr.txt +99 -0
  48. data/lib/xapian_fu/stopwords/ms.txt +475 -0
  49. data/lib/xapian_fu/stopwords/nl.txt +413 -0
  50. data/lib/xapian_fu/stopwords/no.txt +221 -0
  51. data/lib/xapian_fu/stopwords/norwegian.txt +1 -0
  52. data/lib/xapian_fu/stopwords/pl.txt +329 -0
  53. data/lib/xapian_fu/stopwords/portuguese.txt +1 -0
  54. data/lib/xapian_fu/stopwords/pt.txt +560 -0
  55. data/lib/xapian_fu/stopwords/ro.txt +434 -0
  56. data/lib/xapian_fu/stopwords/ru.txt +559 -0
  57. data/lib/xapian_fu/stopwords/russian.txt +1 -0
  58. data/lib/xapian_fu/stopwords/sk.txt +418 -0
  59. data/lib/xapian_fu/stopwords/sl.txt +446 -0
  60. data/lib/xapian_fu/stopwords/so.txt +30 -0
  61. data/lib/xapian_fu/stopwords/spanish.txt +1 -0
  62. data/lib/xapian_fu/stopwords/st.txt +31 -0
  63. data/lib/xapian_fu/stopwords/sv.txt +418 -0
  64. data/lib/xapian_fu/stopwords/sw.txt +74 -0
  65. data/lib/xapian_fu/stopwords/swedish.txt +1 -0
  66. data/lib/xapian_fu/stopwords/th.txt +116 -0
  67. data/lib/xapian_fu/stopwords/tl.txt +147 -0
  68. data/lib/xapian_fu/stopwords/tr.txt +504 -0
  69. data/lib/xapian_fu/stopwords/uk.txt +73 -0
  70. data/lib/xapian_fu/stopwords/update.rb +10 -3
  71. data/lib/xapian_fu/stopwords/ur.txt +517 -0
  72. data/lib/xapian_fu/stopwords/vi.txt +645 -0
  73. data/lib/xapian_fu/stopwords/yo.txt +60 -0
  74. data/lib/xapian_fu/stopwords/zh.txt +794 -0
  75. data/lib/xapian_fu/stopwords/zu.txt +29 -0
  76. data/lib/xapian_fu/version.rb +1 -1
  77. data/lib/xapian_fu/xapian_db.rb +3 -0
  78. data/spec/xapian_doc_spec.rb +1 -1
  79. metadata +109 -51
  80. data/lib/xapian_fu/stopwords/danish.txt +0 -102
  81. data/lib/xapian_fu/stopwords/dutch.txt +0 -113
  82. data/lib/xapian_fu/stopwords/english.txt +0 -312
  83. data/lib/xapian_fu/stopwords/finnish.txt +0 -89
  84. data/lib/xapian_fu/stopwords/french.txt +0 -168
  85. data/lib/xapian_fu/stopwords/german.txt +0 -286
  86. data/lib/xapian_fu/stopwords/hungarian.txt +0 -203
  87. data/lib/xapian_fu/stopwords/italian.txt +0 -295
  88. data/lib/xapian_fu/stopwords/norwegian.txt +0 -186
  89. data/lib/xapian_fu/stopwords/portuguese.txt +0 -245
  90. data/lib/xapian_fu/stopwords/russian.txt +0 -236
  91. data/lib/xapian_fu/stopwords/spanish.txt +0 -348
  92. data/lib/xapian_fu/stopwords/swedish.txt +0 -125
@@ -0,0 +1,109 @@
1
+ a
2
+ ach
3
+ ag
4
+ agus
5
+ an
6
+ aon
7
+ ar
8
+ arna
9
+ as
10
+ b'
11
+ ba
12
+ beirt
13
+ bhúr
14
+ caoga
15
+ ceathair
16
+ ceathrar
17
+ chomh
18
+ chtó
19
+ chuig
20
+ chun
21
+ cois
22
+ céad
23
+ cúig
24
+ cúigear
25
+ d'
26
+ daichead
27
+ dar
28
+ de
29
+ deich
30
+ deichniúr
31
+ den
32
+ dhá
33
+ do
34
+ don
35
+ dtí
36
+
37
+ dár
38
+
39
+ faoi
40
+ faoin
41
+ faoina
42
+ faoinár
43
+ fara
44
+ fiche
45
+ gach
46
+ gan
47
+ go
48
+ gur
49
+ haon
50
+ hocht
51
+ i
52
+ iad
53
+ idir
54
+ in
55
+ ina
56
+ ins
57
+ inár
58
+ is
59
+ le
60
+ leis
61
+ lena
62
+ lenár
63
+ m'
64
+ mar
65
+ mo
66
+
67
+ na
68
+ nach
69
+ naoi
70
+ naonúr
71
+
72
+
73
+ níor
74
+
75
+ nócha
76
+ ocht
77
+ ochtar
78
+ os
79
+ roimh
80
+ sa
81
+ seacht
82
+ seachtar
83
+ seachtó
84
+ seasca
85
+ seisear
86
+ siad
87
+ sibh
88
+ sinn
89
+ sna
90
+
91
+
92
+ tar
93
+ thar
94
+ thú
95
+ triúr
96
+ trí
97
+ trína
98
+ trínár
99
+ tríocha
100
+
101
+ um
102
+ ár
103
+ é
104
+ éis
105
+ í
106
+ ó
107
+ ón
108
+ óna
109
+ ónár
@@ -0,0 +1 @@
1
+ de.txt
@@ -0,0 +1,160 @@
1
+ a
2
+ alí
3
+ ao
4
+ aos
5
+ aquel
6
+ aquela
7
+ aquelas
8
+ aqueles
9
+ aquilo
10
+ aquí
11
+ as
12
+ así
13
+ aínda
14
+ ben
15
+ cando
16
+ che
17
+ co
18
+ coa
19
+ coas
20
+ comigo
21
+ con
22
+ connosco
23
+ contigo
24
+ convosco
25
+ cos
26
+ cun
27
+ cunha
28
+ cunhas
29
+ cuns
30
+ da
31
+ dalgunha
32
+ dalgunhas
33
+ dalgún
34
+ dalgúns
35
+ das
36
+ de
37
+ del
38
+ dela
39
+ delas
40
+ deles
41
+ desde
42
+ deste
43
+ do
44
+ dos
45
+ dun
46
+ dunha
47
+ dunhas
48
+ duns
49
+ e
50
+ el
51
+ ela
52
+ elas
53
+ eles
54
+ en
55
+ era
56
+ eran
57
+ esa
58
+ esas
59
+ ese
60
+ eses
61
+ esta
62
+ estaba
63
+ estar
64
+ este
65
+ estes
66
+ estiven
67
+ estou
68
+ está
69
+ están
70
+ eu
71
+ facer
72
+ foi
73
+ foron
74
+ fun
75
+ había
76
+ hai
77
+ iso
78
+ isto
79
+ la
80
+ las
81
+ lle
82
+ lles
83
+ lo
84
+ los
85
+ mais
86
+ me
87
+ meu
88
+ meus
89
+ min
90
+ miña
91
+ miñas
92
+ moi
93
+ na
94
+ nas
95
+ neste
96
+ nin
97
+ no
98
+ non
99
+ nos
100
+ nosa
101
+ nosas
102
+ noso
103
+ nosos
104
+ nun
105
+ nunha
106
+ nunhas
107
+ nuns
108
+ nós
109
+ o
110
+ os
111
+ ou
112
+ para
113
+ pero
114
+ pode
115
+ pois
116
+ pola
117
+ polas
118
+ polo
119
+ polos
120
+ por
121
+ que
122
+ se
123
+ senón
124
+ ser
125
+ seu
126
+ seus
127
+ sexa
128
+ sido
129
+ sobre
130
+ súa
131
+ súas
132
+ tamén
133
+ tan
134
+ te
135
+ ten
136
+ ter
137
+ teu
138
+ teus
139
+ teñen
140
+ teño
141
+ ti
142
+ tido
143
+ tiven
144
+ tiña
145
+ túa
146
+ túas
147
+ un
148
+ unha
149
+ unhas
150
+ uns
151
+ vos
152
+ vosa
153
+ vosas
154
+ voso
155
+ vosos
156
+ vós
157
+ á
158
+ é
159
+ ó
160
+ ós
@@ -0,0 +1,224 @@
1
+ અંગે
2
+ અંદર
3
+ અથવા
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
+ છીએ
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
+ મા
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
+ હોવા
@@ -0,0 +1,39 @@
1
+ a
2
+ amma
3
+ ba
4
+ ban
5
+ ce
6
+ cikin
7
+ da
8
+ don
9
+ ga
10
+ in
11
+ ina
12
+ ita
13
+ ji
14
+ ka
15
+ ko
16
+ kuma
17
+ lokacin
18
+ ma
19
+ mai
20
+ na
21
+ ne
22
+ ni
23
+ sai
24
+ shi
25
+ su
26
+ suka
27
+ sun
28
+ ta
29
+ tafi
30
+ take
31
+ tana
32
+ wani
33
+ wannan
34
+ wata
35
+ ya
36
+ yake
37
+ yana
38
+ yi
39
+ za
@@ -0,0 +1,194 @@
1
+ אבל
2
+ או
3
+ אולי
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
+ זות
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
+ פה
179
+ רק
180
+ שוב
181
+ של
182
+ שלה
183
+ שלהם
184
+ שלהן
185
+ שלו
186
+ שלי
187
+ שלך
188
+ שלכה
189
+ שלכם
190
+ שלכן
191
+ שלנו
192
+ שם
193
+ תהיה
194
+ תחת