Skip to content

Commit 9ab73b2

Browse files
authored
Update URLs for the Snowball project (#13571)
1 parent c76d1bd commit 9ab73b2

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

sphinx/search/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def word_filter(self, word: str) -> bool:
130130
def parse_stop_word(source: str) -> set[str]:
131131
"""Parse snowball style word list like this:
132132
133-
* https://snowball.tartarus.org/algorithms/finnish/stop.txt
133+
* https://snowballstem.org/algorithms/finnish/stop.txt
134134
"""
135135
result: set[str] = set()
136136
for line in source.splitlines():

sphinx/search/da.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
danish_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/danish/stop.txt
10+
| source: https://snowballstem.org/algorithms/danish/stop.txt
1111
og | and
1212
i | in
1313
jeg | I

sphinx/search/de.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
german_stopwords = parse_stop_word("""
10-
|source: https://snowball.tartarus.org/algorithms/german/stop.txt
10+
|source: https://snowballstem.org/algorithms/german/stop.txt
1111
aber | but
1212
1313
alle | all

sphinx/search/es.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
spanish_stopwords = parse_stop_word("""
10-
|source: https://snowball.tartarus.org/algorithms/spanish/stop.txt
10+
|source: https://snowballstem.org/algorithms/spanish/stop.txt
1111
de | from, of
1212
la | the, her
1313
que | who, that

sphinx/search/fi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
finnish_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/finnish/stop.txt
10+
| source: https://snowballstem.org/algorithms/finnish/stop.txt
1111
| forms of BE
1212
1313
olla

sphinx/search/fr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
french_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/french/stop.txt
10+
| source: https://snowballstem.org/algorithms/french/stop.txt
1111
au | a + le
1212
aux | a + les
1313
avec | with

sphinx/search/hu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
hungarian_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/hungarian/stop.txt
10+
| source: https://snowballstem.org/algorithms/hungarian/stop.txt
1111
| prepared by Anna Tordai
1212
a
1313
ahogy

sphinx/search/it.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
italian_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/italian/stop.txt
10+
| source: https://snowballstem.org/algorithms/italian/stop.txt
1111
ad | a (to) before vowel
1212
al | a + il
1313
allo | a + lo

sphinx/search/nl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
dutch_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/dutch/stop.txt
10+
| source: https://snowballstem.org/algorithms/dutch/stop.txt
1111
de | the
1212
en | and
1313
van | of, from

sphinx/search/no.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
norwegian_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/norwegian/stop.txt
10+
| source: https://snowballstem.org/algorithms/norwegian/stop.txt
1111
og | and
1212
i | in
1313
jeg | I

sphinx/search/pt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
portuguese_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/portuguese/stop.txt
10+
| source: https://snowballstem.org/algorithms/portuguese/stop.txt
1111
de | of, from
1212
a | the; to, at; her
1313
o | the; him

sphinx/search/ru.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
russian_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/russian/stop.txt
10+
| source: https://snowballstem.org/algorithms/russian/stop.txt
1111
и | and
1212
в | in/into
1313
во | alternative form

sphinx/search/sv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from sphinx.search import SearchLanguage, parse_stop_word
88

99
swedish_stopwords = parse_stop_word("""
10-
| source: https://snowball.tartarus.org/algorithms/swedish/stop.txt
10+
| source: https://snowballstem.org/algorithms/swedish/stop.txt
1111
och | and
1212
det | it, this/that
1313
att | to (with infinitive)

0 commit comments

Comments
 (0)