summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-28boilerplate: add .dir-locals.el with emacs python enviromentMarkus Heiser
The .dir-locals.el set the project's python enviroment for the emacs tasks like flycheck or jedi. The py-environment has to be next to <repo>/.dir-locals.el:: ./local/py3 To setup such an environment build target 'pyenv' or 'pyenvinstall':: $ make pyenvinstall TL;DR Alternatively create the virtualenv, source it and install jedi + epc (required by `emacs-jedi <https://tkf.github.io/emacs-jedi>`_):: $ virtualenv --python=python3 "--no-site-packages" ./local/py3 ... $ source ./local/py3/bin/activate (py3)$ # now install into the activated 'py3' environment .. (py3)$ pip install jedi epc ... Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-28boilerplate: add pylint / WIP: balance linting with pylintMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-28Makefile: add test.pep8 test.unit test.robot (from manage.sh)Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-28boilerplate: add inital Makefile with run & install targetsMarkus Heiser
Add *Makefile* boilerplate useful for python projects. All python tasks are using a virtualenv from ./local/py3 $ make help run - run developer instance install - developer install (./local) uninstall - uninstall (./local) Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-28seatup.py: fix [dev_]requirements and open file with contextMarkus Heiser
setup(..) named arguments 'install_requires' and 'extras_require' need lists arguments, the <map object> is ignored when installing extra environment 'test':: pip install -e .\[test\] Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2019-11-26Merge pull request #1689 from MarcAbonce/images_fixesAdam Tauber
[fix] Google Images
2019-11-26Merge pull request #1749 from unixfox/patch-1Adam Tauber
[fix] Force Google old UI with a new user agent
2019-11-24add seedpeer againMarc Abonce Seguin
2019-11-23update user agentsMarc Abonce Seguin
2019-11-23add a shortcut for utils/fetch_firefox_version.py in manage.shMarc Abonce Seguin
2019-11-22[fix] Force Google old UI with a new user agentEmilien Devos
2019-11-16webapp.py: use html.escape if cgi.escape is not availablelorddavidiii
- cgi.escape was removed in python 3.8 - also use html.escape in framalibre.py
2019-11-15[mod] speed optimizationDalf
compile XPath only once avoid redundant call to urlparse get_locale(webapp.py): avoid useless call to request.accept_languages.best_match
2019-11-03Mojeek engine hotfixx250
2019-11-01Merge pull request #1719 from Monogramm/feature/accessibilityNoémi Ványi
Add aria labels for oscar buttons
2019-10-29Merge branch 'master' into feature/accessibilityMathieu Brunot
2019-10-24Merge pull request #1728 from MarcAbonce/corrections_fixNoémi Ványi
[fix] Preserve bangs in corrections
2019-10-24Merge branch 'master' into corrections_fixNoémi Ványi
2019-10-24Merge pull request #1729 from MarcAbonce/fix_tracker_removerNoémi Ványi
Fix out of range error in tracker remover plugin
2019-10-23Merge pull request #1730 from kvch/gh-pagesAdam Tauber
Add post about introducing offline engines to blog
2019-10-23add post about introducing offline enginesNoémi Ványi
2019-10-22fix out of range error in tracker remover pluginMarc Abonce Seguin
2019-10-22[fix] preserve bangs in correctionsMarc Abonce Seguin
2019-10-16Merge branch 'master' into feature/accessibilityMathieu Brunot
2019-10-16Merge pull request #1700 from kvch/intro-offline-enginesAdam Tauber
Initialize support for offline engines
2019-10-16fix pep 8 checkNoémi Ványi
2019-10-16add initial support for offline engines && command engineNoémi Ványi
2019-10-16Merge pull request #1720 from Monogramm/docker/configAdam Tauber
Config for instance name and autocomplete
2019-10-16[mod] remove cloudflare protected digbt from engines listAdam Tauber
2019-10-16[fix] remove useless engine testsAdam Tauber
2019-10-16[fix] pep8Adam Tauber
2019-10-16[fix] update gigablast engineAdam Tauber
2019-10-16[fix] update digg engineAdam Tauber
2019-10-16[fix] convert bytes type to string in language detection (fixes dictzone)Adam Tauber
2019-10-16[fix] update devianart engineAdam Tauber
2019-10-16[fix] update 1x engineAdam Tauber
2019-10-16[fix] enable paging support for arxiv engineAdam Tauber
2019-10-14[fix] pep8Adam Tauber
2019-10-14[fix] engine testAdam Tauber
2019-10-14[fix] add message to SearxParameterException - fixes #1722Adam Tauber
2019-10-14[fix] update query params sanitization - closes #722Adam Tauber
2019-10-14[fix] update voat xpaths - closes #1581Adam Tauber
2019-10-14[fix] update startpage engine - closes #1601Adam Tauber
2019-10-14[fix] normalize time range parameterAdam Tauber
2019-10-14[fix] duckduckgo paging - closes #1677Adam Tauber
2019-10-14:whale: Config for instance name and autocompletemathieu.brunot
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
2019-10-14:wheelchair: Add aria labels for oscar buttonsmathieu.brunot
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
2019-10-01Update README.rstCaffeinatedTech
Fixed some grammar in README.rst
2019-08-26[fix] google imagesMarc Abonce Seguin
2019-08-20[fix] mojeek engineVenca24