- 12 Dec, 2019 4 commits
-
-
Markus Heiser authored
The old searx theme was a copy of the flask theme. In the meantime this theme is available from the python module pallets-sphinx-themes. This patch makes pallets-sphinx-themes as a (dev) requirement and drops most of the old and obsolete searx theme settings/files. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
BTW: - add build & dist folder to .gitignore - justify indentation of build messages (makefile.python) Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
- 11 Dec, 2019 2 commits
-
-
Adam Tauber authored
User agents update
-
Adam Tauber authored
themes: remove CR from newlines
-
- 10 Dec, 2019 10 commits
-
-
Markus Heiser authored
was inadvertently included in the commit [1] [1] https://github.com/asciimoo/searx/commit/f34ac58752b3857468d01c79d7bc3409e8b03fe3#diff-0243d1c24e9981002156cc87cc10bd53R103Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
l - language field s - search field t - time range field The way to activate the accesskey depends on the browser and its platform [1] [1] https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/accesskeySigned-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
https://github.com/asciimoo/searxMarkus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
[mod] tidy oscar HTML output
-
Markus Heiser authored
-
Adam Tauber authored
RFC: Makefile based boilerplate for python projects
-
Markus Heiser authored
-
Dalf authored
-
- 09 Dec, 2019 2 commits
-
-
Adam Tauber authored
-
Adam Tauber authored
[fix] Update xpaths for new Google results page
-
- 08 Dec, 2019 2 commits
-
-
Markus Heiser authored
Adding a CR in some files and in others not, is a good starting point for a DOS+Unix mess we all have already seen in many projects. Patch fixes all files matching (even those comming from grunt's build):: find ./searx -exec file {} \; | grep CR BTW: Same with mixing TAB and SPACE indent styles in one and the same file. So if sources are tuched here in this patch, its also fixed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Marc Abonce Seguin authored
-
- 03 Dec, 2019 1 commit
-
-
- 02 Dec, 2019 7 commits
-
-
Adam Tauber authored
Add --no-cache to tell apk to not cache packages
-
Adam Tauber authored
Mojeek engine hotfix
-
Adam Tauber authored
[mod] speed optimization
-
Adam Tauber authored
[fix] duckduckgo_definitions
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Adam Tauber authored
Add Seedpeer again
-
Adam Tauber authored
[fix] soundcloud: URLs of JS sources has been moved
-
- 29 Nov, 2019 4 commits
-
-
Markus Heiser authored
Fix this error while travis build:: /home/travis/build/asciimoo/searx/searx/engines/duckduckgo_definitions.py:21:44: E225 missing whitespace around operator Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Do not try to get text when 'AnswerType' is 'calc'. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
The client_id is found under (new) URL: https://a-v2.sndcdn.com/assets/49-a0c01933-3.jsSigned-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
- 28 Nov, 2019 8 commits
-
-
-
Adam Tauber authored
[fix] mojeek engine
-
Adam Tauber authored
Fix python 3.8 compatibility
-
Markus Heiser authored
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>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-
Markus Heiser authored
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>
-
Markus Heiser authored
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>
-