<feed xmlns='http://www.w3.org/2005/Atom'>
<title>searxng/.git/searx/templates/__common__/about.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>[help] render user documentation once on startup</title>
<updated>2022-01-23T07:01:55+00:00</updated>
<author>
<name>Martin Fischer</name>
<email>martin@push-f.com</email>
</author>
<published>2022-01-15T05:09:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=05149db4c1e495eecaf74d267e91f61dee7ee40d'/>
<id>05149db4c1e495eecaf74d267e91f61dee7ee40d</id>
<content type='text'>
Currently we have two kinds of user documentation:

* the about page[1] which is written in HTML and part of the web
  application and can therefore link instance-specific pages
  (like e.g. the preferences) via Jinja variables

* the Sphinx documentation[2] which is written in reStructuredText
  and cannot link instance-specific pages since it doesn't know
  which instance the user is using

The plan is to integrate the user documentation currently in Sphinx
into the application, so that it can also link instance specific pages.
We also want to enable the user documentation to be translated.

This commit implements the first step in this endeavor (see #722).

[1]: searx/templates/__common__/about.html
[2]: docs/user/ (currently served at https://docs.searxng.org/user/)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently we have two kinds of user documentation:

* the about page[1] which is written in HTML and part of the web
  application and can therefore link instance-specific pages
  (like e.g. the preferences) via Jinja variables

* the Sphinx documentation[2] which is written in reStructuredText
  and cannot link instance-specific pages since it doesn't know
  which instance the user is using

The plan is to integrate the user documentation currently in Sphinx
into the application, so that it can also link instance specific pages.
We also want to enable the user documentation to be translated.

This commit implements the first step in this endeavor (see #722).

[1]: searx/templates/__common__/about.html
[2]: docs/user/ (currently served at https://docs.searxng.org/user/)
</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] remove references to transifex</title>
<updated>2021-09-09T19:29:55+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2021-09-09T19:29:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=70c9bb6f2c76b576ced9a4aa17e882b8fba47c2d'/>
<id>70c9bb6f2c76b576ced9a4aa17e882b8fba47c2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>version based on the git repository</title>
<updated>2021-07-30T12:40:09+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2021-07-27T16:37:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=4b43775c91a3c2ef415527edb4b3c041859453b4'/>
<id>4b43775c91a3c2ef415527edb4b3c041859453b4</id>
<content type='text'>
This commit remove the need to update the brand for GIT_URL and GIT_BRANCH:
there are read from the git repository.

It is possible to call python -m searx.version freeze to freeze the current version.
Useful when the code is installed outside git (distro package, docker, etc...)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit remove the need to update the brand for GIT_URL and GIT_BRANCH:
there are read from the git repository.

It is possible to call python -m searx.version freeze to freeze the current version.
Useful when the code is installed outside git (distro package, docker, etc...)
</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>[brand] searxng -- fix links to issue tracker &amp; WEB-GUI</title>
<updated>2021-04-25T12:25:08+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2021-04-25T10:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=28b25185c51d320c8124292a6194e4c34fa9c3e8'/>
<id>28b25185c51d320c8124292a6194e4c34fa9c3e8</id>
<content type='text'>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[brand] searxng is a fork from searx</title>
<updated>2021-04-25T09:42:42+00:00</updated>
<author>
<name>Markus Heiser</name>
<email>markus.heiser@darmarit.de</email>
</author>
<published>2021-04-25T09:42:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=c6a5cc019ae27b1892b38afd33090653d07f33be'/>
<id>c6a5cc019ae27b1892b38afd33090653d07f33be</id>
<content type='text'>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Markus Heiser &lt;markus.heiser@darmarit.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #2226 from dalf/fix-searx-migration</title>
<updated>2020-09-29T10:35:11+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2020-09-29T10:35:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=9740618227bbd9abe67ceb45c7491d4b444f347d'/>
<id>9740618227bbd9abe67ceb45c7491d4b444f347d</id>
<content type='text'>
[fix] migration from github.com/asciimoo/searx to github.com/searx/searx : fix URLs</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[fix] migration from github.com/asciimoo/searx to github.com/searx/searx : fix URLs</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] about.html:  fix small inconsistencies in about page (#2219)</title>
<updated>2020-09-28T14:56:25+00:00</updated>
<author>
<name>Qt Resynth</name>
<email>resynth1943@tutanota.com</email>
</author>
<published>2020-09-28T14:56:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=246b8cd1a40a35191a42f5aa1df6e112a5c79ec8'/>
<id>246b8cd1a40a35191a42f5aa1df6e112a5c79ec8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[fix] migration from github.com/asciimoo/searx to github.com/searx/searx : fix URLs</title>
<updated>2020-09-28T14:44:14+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2020-09-28T14:44:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=f204e4903da3e97629bbf37c74e1b603b2e12830'/>
<id>f204e4903da3e97629bbf37c74e1b603b2e12830</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>"Egde" → "Edge"</title>
<updated>2020-09-22T15:44:32+00:00</updated>
<author>
<name>Qt Resynth</name>
<email>resynth1943@tutanota.com</email>
</author>
<published>2020-09-22T13:01:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=21dbc7e852a5c48097c0067e78f0600972e54823'/>
<id>21dbc7e852a5c48097c0067e78f0600972e54823</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
