<feed xmlns='http://www.w3.org/2005/Atom'>
<title>searxng/.git/searx/templates/oscar/messages/no_results.html, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/'/>
<entry>
<title>[theme] delete static/themes/oscar and templates/oscar</title>
<updated>2022-04-30T11:20:27+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2022-04-30T06:04:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=ad1aca682318657955369b1f2cb28a86bc25394c'/>
<id>ad1aca682318657955369b1f2cb28a86bc25394c</id>
<content type='text'>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;

 templates/oscar#	gelöscht:       searx/static/themes/oscar/fonts/glyphicons-halflings-regular.ttf
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;

 templates/oscar#	gelöscht:       searx/static/themes/oscar/fonts/glyphicons-halflings-regular.ttf
</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] templates: remove unneeded escape \' of single quotation mark</title>
<updated>2021-11-24T16:40:03+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2021-11-24T16:40:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=3f3097c772e8d6d5f6441e4ed81f18891e551e19'/>
<id>3f3097c772e8d6d5f6441e4ed81f18891e551e19</id>
<content type='text'>
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 &lt;markus.heiser@darmarit.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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 &lt;markus.heiser@darmarit.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>SearXNG: oscar theme</title>
<updated>2021-09-30T16:50:21+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2021-09-30T15:55:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=df06dddc044161c6d5caacab1b2a5b9faa109f01'/>
<id>df06dddc044161c6d5caacab1b2a5b9faa109f01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[mod] drop usage of the searx.brand namespace (templates &amp; /config)</title>
<updated>2021-07-21T11:38:28+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2021-07-18T13:38:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=3f638ed196cdd98d933d6e70dffe374e2d2456dc'/>
<id>3f638ed196cdd98d933d6e70dffe374e2d2456dc</id>
<content type='text'>
In the templates and the /config (JSON) the usage of the 'brand.*' name
space is replaced by 'searx.get_setting' function.

- new_issue_url          --&gt; get_setting('brand.new_issue_url')
- brand.GIT_URL          --&gt; get_setting('brand.git_url')
- brand.PUBLIC_INSTANCES --&gt; get_setting('brand.public_instances')
- brand.DOCS_URL         --&gt; get_setting('brand.docs_url')
- brand.ISSUE_URL        --&gt; get_setting('brand.issue_url')
- brand.CONTACT_URL      --&gt; get_setting('general.contact_url', '')

The macro 'new_issue' from searx/templates/*/messages/no_results.html
is now imported with context::

    {% from '__common__/new_issue.html' import new_issue with context %}

To get *public instances URL* from context's 'get_setting()' function::

    get_setting('brand.public_instances','')

Macro's prototype does no longer need the 'new_issue_url' argument and has been
changed to::

    macro new_issue(engine_name, engine_reliability)

Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the templates and the /config (JSON) the usage of the 'brand.*' name
space is replaced by 'searx.get_setting' function.

- new_issue_url          --&gt; get_setting('brand.new_issue_url')
- brand.GIT_URL          --&gt; get_setting('brand.git_url')
- brand.PUBLIC_INSTANCES --&gt; get_setting('brand.public_instances')
- brand.DOCS_URL         --&gt; get_setting('brand.docs_url')
- brand.ISSUE_URL        --&gt; get_setting('brand.issue_url')
- brand.CONTACT_URL      --&gt; get_setting('general.contact_url', '')

The macro 'new_issue' from searx/templates/*/messages/no_results.html
is now imported with context::

    {% from '__common__/new_issue.html' import new_issue with context %}

To get *public instances URL* from context's 'get_setting()' function::

    get_setting('brand.public_instances','')

Macro's prototype does no longer need the 'new_issue_url' argument and has been
changed to::

    macro new_issue(engine_name, engine_reliability)

Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[mod] engine errors: link to the stats to create an github issue</title>
<updated>2021-04-29T09:10:38+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2021-04-25T12:19:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=34bced29ae8ca7aff69ef43ee34d265677e3a5a2'/>
<id>34bced29ae8ca7aff69ef43ee34d265677e3a5a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[themes] add hyperlink to searx instances list in error message</title>
<updated>2020-12-16T19:24:42+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2020-12-16T19:24:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=9db7d6357b631fd2984b4f6fc852ad48833b113b'/>
<id>9db7d6357b631fd2984b4f6fc852ad48833b113b</id>
<content type='text'>
closes: #2383

Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
closes: #2383

Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>show engine errors when no result is returned at all</title>
<updated>2017-07-15T15:59:50+00:00</updated>
<author>
<name>Noémi Ványi</name>
<email>sitbackandwait@gmail.com</email>
</author>
<published>2017-07-15T15:59:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=bdd9528c6b589a2f55dbde050583bebbba40d898'/>
<id>bdd9528c6b589a2f55dbde050583bebbba40d898</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>show engine errors in infobox &amp;&amp; add new error alert</title>
<updated>2017-07-12T14:29:11+00:00</updated>
<author>
<name>Noémi Ványi</name>
<email>sitbackandwait@gmail.com</email>
</author>
<published>2017-07-09T20:09:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=243d3e4298c93014f37ca6f1f957a60cb09f4ae1'/>
<id>243d3e4298c93014f37ca6f1f957a60cb09f4ae1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>oscar template: add no result message</title>
<updated>2014-10-05T12:40:47+00:00</updated>
<author>
<name>Thomas Pointhuber</name>
<email>thomas.pointhuber@gmx.at</email>
</author>
<published>2014-10-01T17:46:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=c25aab73b72087a9a56d86c155a166bfcf018822'/>
<id>c25aab73b72087a9a56d86c155a166bfcf018822</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
