<feed xmlns='http://www.w3.org/2005/Atom'>
<title>searxng/.git/searx/templates/simple/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>[enh] introduce /help route</title>
<updated>2022-02-01T05:28:26+00:00</updated>
<author>
<name>Martin Fischer</name>
<email>martin@push-f.com</email>
</author>
<published>2022-01-31T10:24:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=fb9eedbf40410a5558bfc03b4c50f7ff41b023b4'/>
<id>fb9eedbf40410a5558bfc03b4c50f7ff41b023b4</id>
<content type='text'>
Translation will be implemented in the future.
For now the "en" in /help/en/&lt;pagename&gt; is hardcoded.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Translation will be implemented in the future.
For now the "en" in /help/en/&lt;pagename&gt; is hardcoded.
</pre>
</div>
</content>
</entry>
<entry>
<title>[simple] introduce page_with_header.html template</title>
<updated>2022-01-30T16:29:21+00:00</updated>
<author>
<name>Martin Fischer</name>
<email>martin@push-f.com</email>
</author>
<published>2022-01-30T08:39:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=6f0ec7e58f9c7c9d188561296546ec139e1f9118'/>
<id>6f0ec7e58f9c7c9d188561296546ec139e1f9118</id>
<content type='text'>
Previously the preferences &amp; stats templates contained the markup:

&lt;a href="{{ url_for('index') }}"&gt;&lt;h1&gt;&lt;span&gt;SearXNG&lt;/span&gt;&lt;/h1&gt;&lt;/a&gt;

There are many things wrong with this:

1. the markup was duplicated

2. the CSS needed to be changed whenever a new page wanted to use this
   header (since the CSS used page-specific selectors)

3. h1 should be reserved for the actual page title
   (e.g. Preferences or Engine stats)

4. the image was set via CSS which also set:

       span { visibility: hidden; }

   which however removes the alternative text from the accessibility
   tree (meaning screen readers will ignore it).

This commit fixes all these problems.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the preferences &amp; stats templates contained the markup:

&lt;a href="{{ url_for('index') }}"&gt;&lt;h1&gt;&lt;span&gt;SearXNG&lt;/span&gt;&lt;/h1&gt;&lt;/a&gt;

There are many things wrong with this:

1. the markup was duplicated

2. the CSS needed to be changed whenever a new page wanted to use this
   header (since the CSS used page-specific selectors)

3. h1 should be reserved for the actual page title
   (e.g. Preferences or Engine stats)

4. the image was set via CSS which also set:

       span { visibility: hidden; }

   which however removes the alternative text from the accessibility
   tree (meaning screen readers will ignore it).

This commit fixes all these problems.
</pre>
</div>
</content>
</entry>
<entry>
<title>[help] stop rendering documentation with Jinja2</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-15T08:34:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=105c5a6a9839c65a81b32cdf82278c5cc629ae4a'/>
<id>105c5a6a9839c65a81b32cdf82278c5cc629ae4a</id>
<content type='text'>
To facilitate translation of the user documentation we move
the templating logic outside of the user documentation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To facilitate translation of the user documentation we move
the templating logic outside of the user documentation.
</pre>
</div>
</content>
</entry>
<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>[enh] add simple theme (WIP)</title>
<updated>2017-08-06T14:04:21+00:00</updated>
<author>
<name>Alexandre Flament</name>
<email>alex@al-f.net</email>
</author>
<published>2017-02-12T14:06:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.slickd.xyz/searxng/.git/commit/?id=10a24bdc2c3870f07ec62dd710841628d325aaf6'/>
<id>10a24bdc2c3870f07ec62dd710841628d325aaf6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
