Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
sphinx /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
17.22
KB
-rw-r--r--
da.py
3.6
KB
-rw-r--r--
de.py
4.65
KB
-rw-r--r--
en.py
4.9
KB
-rw-r--r--
es.py
5.71
KB
-rw-r--r--
fi.py
3.26
KB
-rw-r--r--
fr.py
3.48
KB
-rw-r--r--
hu.py
2.03
KB
-rw-r--r--
it.py
5.09
KB
-rw-r--r--
ja.py
30.55
KB
-rw-r--r--
jssplitter.py
6.31
KB
-rw-r--r--
nl.py
4.59
KB
-rw-r--r--
no.py
4.9
KB
-rw-r--r--
pt.py
4.66
KB
-rw-r--r--
ro.py
684
B
-rw-r--r--
ru.py
7.84
KB
-rw-r--r--
sv.py
3.48
KB
-rw-r--r--
tr.py
678
B
-rw-r--r--
zh.py
6.12
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fi.py
""" sphinx.search.fi ~~~~~~~~~~~~~~~~ Finnish search language: includes the JS Finnish stemmer. :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from typing import Dict import snowballstemmer from sphinx.search import SearchLanguage, parse_stop_word finnish_stopwords = parse_stop_word(''' | source: http://snowball.tartarus.org/algorithms/finnish/stop.txt | forms of BE olla olen olet on olemme olette ovat ole | negative form oli olisi olisit olisin olisimme olisitte olisivat olit olin olimme olitte olivat ollut olleet en | negation et ei emme ette eivät |Nom Gen Acc Part Iness Elat Illat Adess Ablat Allat Ess Trans minä minun minut minua minussa minusta minuun minulla minulta minulle | I sinä sinun sinut sinua sinussa sinusta sinuun sinulla sinulta sinulle | you hän hänen hänet häntä hänessä hänestä häneen hänellä häneltä hänelle | he she me meidän meidät meitä meissä meistä meihin meillä meiltä meille | we te teidän teidät teitä teissä teistä teihin teillä teiltä teille | you he heidän heidät heitä heissä heistä heihin heillä heiltä heille | they tämä tämän tätä tässä tästä tähän tällä tältä tälle tänä täksi | this tuo tuon tuota tuossa tuosta tuohon tuolla tuolta tuolle tuona tuoksi | that se sen sitä siinä siitä siihen sillä siltä sille sinä siksi | it nämä näiden näitä näissä näistä näihin näillä näiltä näille näinä näiksi | these nuo noiden noita noissa noista noihin noilla noilta noille noina noiksi | those ne niiden niitä niissä niistä niihin niillä niiltä niille niinä niiksi | they kuka kenen kenet ketä kenessä kenestä keneen kenellä keneltä kenelle kenenä keneksi| who ketkä keiden ketkä keitä keissä keistä keihin keillä keiltä keille keinä keiksi | (pl) mikä minkä minkä mitä missä mistä mihin millä miltä mille minä miksi | which what mitkä | (pl) joka jonka jota jossa josta johon jolla jolta jolle jona joksi | who which jotka joiden joita joissa joista joihin joilla joilta joille joina joiksi | (pl) | conjunctions että | that ja | and jos | if koska | because kuin | than mutta | but niin | so sekä | and sillä | for tai | or vaan | but vai | or vaikka | although | prepositions kanssa | with mukaan | according to noin | about poikki | across yli | over, across | other kun | when niin | so nyt | now itse | self ''') class SearchFinnish(SearchLanguage): lang = 'fi' language_name = 'Finnish' js_stemmer_rawcode = 'finnish-stemmer.js' stopwords = finnish_stopwords def init(self, options: Dict) -> None: self.stemmer = snowballstemmer.stemmer('finnish') def stem(self, word: str) -> str: return self.stemmer.stemWord(word.lower())
Close