summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-29[brand] README: add SearXNG logoMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-28Merge pull request #541 from dalf/simple-theme-svg2pngMarkus Heiser
Simple theme svg2png
2021-11-28[build] /staticMarkus Heiser
2021-11-28[mod] simple theme: use sharp instead of convert to create .png from .svgAlexandre Flament
define a custom grunt task, since grunt-sharp is too old (it can't be installed). in gruntfile.js, the image tasks are moved at the end the build chain. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-28[mod] gruntfile: do some polish (no functional change)Markus Heiser
- remove unused 'path' constant - fix indentation - Put all image tasks at the end, where it is easy to list which image is processed. Suggested -by: @dalf https://github.com/searxng/searxng/pull/541#discussion_r756247157 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-27Merge pull request #554 from return42/fix-google-videoMarkus Heiser
[fix] google-videos engine: ignore news articles
2021-11-27Merge pull request #555 from return42/fix-autocompleteMarkus Heiser
[fix] route /autocompleter: escape '<' and '>' in the response
2021-11-27[fix] route /autocompleter: escape '<' and '>' in the responseMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-27Merge pull request #549 from searxng/dependabot/pip/master/pylint-2.12.1Markus Heiser
Bump pylint from 2.11.1 to 2.12.1
2021-11-26Bump pylint from 2.11.1 to 2.12.1dependabot[bot]
Bumps [pylint](https://github.com/PyCQA/pylint) from 2.11.1 to 2.12.1. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Changelog](https://github.com/PyCQA/pylint/blob/main/ChangeLog) - [Commits](https://github.com/PyCQA/pylint/compare/v2.11.1...v2.12.1) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
2021-11-27Merge pull request #553 from return42/fix-oscarMarkus Heiser
[fix] oscar theme: use SearXNG logo and wordmark
2021-11-27Merge pull request #551 from dalf/fix-results-lockMarkus Heiser
[fix] searx.results: fix pylint issue "useless-with-lock"
2021-11-27Merge pull request #545 from return42/fix-523Markus Heiser
[fix] simple-theme templates: polish HTML <img> elements
2021-11-26[build] /staticmrpaulblack
2021-11-26[oscar theme] center search on index and use logo with ponthimrpaulblack
2021-11-26[fix] google-videos engine: ignore news articlesMarkus Heiser
In the video search, google also sometimes includes news. E.g. in the DE language when you search for `!gov paris`, google adds an article from a german newspaper (FAZ), I assume these are sponsored link (not tagged advertisement?) Those links do not have an image / this patch ignores *video links* wqithout an image ID. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-26[fix] oscar theme: use SearXNG logo and wordmarkMarkus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-26Merge pull request #552 from return42/fix-searx.shMarkus Heiser
[fix] searx.sh update: replace git pull by a hard reset
2021-11-26[fix] searx.sh update: replace git pull by a hard resetMarkus Heiser
If the fetched branch has been rebased a 'git pull' will fails. To get fetched branch in the working tree, a git reset is needed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-26[fix] searx.results: fix pylint issue "useless-with-lock"Alexandre Flament
Replace "with threading.Lock():" by "with self._lock"
2021-11-26Merge pull request #550 from searxng/translations_updateAlexandre Flament
Update translations
2021-11-26Merge pull request #547 from return42/fix-442Alexandre Flament
[fix] google & google video engines
2021-11-26[translations] updatesearxng-bot
647aee3b - 2021-11-25 - Markus Heiser <markus.heiser@darmarit.de>
2021-11-26[fix] google video engine - rework of the HTML parserMarkus Heiser
The google video response has been changed slightly, a rework of the parser was needed. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-25[fix] google engine - suggestionMarkus Heiser
BTW: google no longer offers *spelling suggestions* Closes: https://github.com/searxng/searxng/issues/442 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-25[fix] simple-theme templates: polish HTML <img> elementsMarkus Heiser
- <img> [1] element does not have an end tag, no need for a leading `/>` - add global attribute title[2] to result_templates/images.html (result-images-source) - in jinja macro 'macro result_header' remove duplicate of class="image" - in jinja macro 'macro result_header' remove alt attribute (fix [3]):: alt="{{ result.title|striptags }}" the result.title is already shown in:: <h3>{{ result_link(result.url, result.title|safe) }}</h3> [1] https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img [2] https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes#attr-title [3] https://github.com/searxng/searxng/issues/523 Closes: https://github.com/searxng/searxng/issues/523 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-24Merge pull request #543 from return42/fix-485Markus Heiser
[fix] templates: remove unneeded escape \' of single quotation mark
2021-11-24[fix] templates: remove unneeded escape \' of single quotation markMarkus Heiser
Strings like:: 'Query in the page\'s title' are hard to read / remove escape sequence by using double quotation marks for strings :: "Query in the page's title" BTW: remove a leading dot in the simple theme [1]. [1] https://github.com/searxng/searxng/pull/485/files/80fb77476fad4b229418c530f3ffda67f357a15a#r756112716 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-24Merge pull request #485 from dalf/pref_query_in_titleAlexandre Flament
[mod] new preference: query_in_title
2021-11-23Merge pull request #537 from return42/moz-warningsMarkus Heiser
[simple theme] remove '-moz-border-radius' property
2021-11-23Merge pull request #539 from searxng/fix-pr-535Markus Heiser
fix PR #535
2021-11-23[build] /staticMarkus Heiser
2021-11-23[simple theme] remove '-webkit-border-radius' propertyMarkus Heiser
[1] https://github.com/searxng/searxng/pull/537#issuecomment-976582675 Suggested-by: @dalf [1] Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-23[simple theme] remove '-moz-border-radius' propertyMarkus Heiser
Support for the prefixed version (-moz-border-radius) was removed in Gecko 13.0 (Firefox 13.0 / Thunderbird 13.0 / SeaMonkey 2.10) [1]. [1] https://developer.mozilla.org/pt-BR/docs/Web/CSS/border-radius Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-23fix PR #535Alexandre Flament
Use the "empty_element" CSS class.
2021-11-23Merge pull request #535 from mrpaulblack/article-default-descriptionPaul Braeuning
[simple template] return a default string if there is no description
2021-11-23[build] /staticMarkus Heiser
2021-11-23[simple template] format default string 'italic'Markus Heiser
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-23[simple template] return a default string if there is no descriptionmrpaulblack
2021-11-23Merge pull request #536 from return42/jinja2-mode.elMarkus Heiser
[emacs] .dir-locals.el: use jinja2-mode to format html files
2021-11-23[emacs] .dir-locals.el: use jinja2-mode to format html filesMarkus Heiser
The jinja2-mode [1] can be installed from melpa [2]:: M-x package-install / jinja2-mode [1] https://github.com/paradoxxxzero/jinja2-mode [2] https://melpa.org/#/jinja2-mode Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-11-23Merge pull request #527 from dalf/fix-simple-modalMarkus Heiser
[fix] simple theme: fix modal dialog
2021-11-23[build] /staticMarkus Heiser
2021-11-23[simple theme] add animations.less for keyframe animationsmrpaulblack
2021-11-23[fix] simple theme: fix modal dialogAlexandre Flament
2021-11-23Merge pull request #510 from mrpaulblack/result-article-improvmentsPaul Braeuning
[simple theme] rework select and impove url
2021-11-23Merge pull request #516 from return42/searxng/filtronMarkus Heiser
[mod] filtron.sh - install github.com/searxng/filtron
2021-11-21Merge pull request #529 from return42/nvm-improveMarkus Heiser
Various improvements of the NVM environment
2021-11-21[build] /staticmrpaulblack
2021-11-21[simple theme] rework select; add safesearch to search and replace / with ↵mrpaulblack
› in article url * rework selection UI in pref (fix based on: https://github.com/twelsby/searx/commit/78643e9f43a103c523f112e9f3ce26a5c7bb3a0f) * moved search filters underneath categories * cut params from url and replace / with › * make h3 and url in article bigger * add safe search select to search filter (this will not override settings and only be valid while on result page in a session) * make search form button not overlap each other when js is disabled * 1rem padding around preview image and thumbnail in default article template