Selaa lähdekoodia

[enh] about page updates

asciimoo 11 vuotta sitten
vanhempi
commit
d6c8987575
1 muutettua tiedostoa jossa 20 lisäystä ja 25 poistoa
  1. 20
    25
      searx/templates/about.html

+ 20
- 25
searx/templates/about.html Näytä tiedosto

@@ -4,49 +4,44 @@
4 4
 <div class="row">
5 5
     <h1>About <a href="/">searx</a></h1>
6 6
 
7
-    <p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a> inspired by the <a href="http://seeks-project.info/">seeks-project</a>.
8
-    <br />It tries to provide basic privacy by mixing your queries with those from others while avoiding storing search data. For all browsers (except chrom*) queries are made using a POST request. Thus they don't show up in our logs, nor in your url history. For Chrom* users there is an exception, searx is used from the search bar, it issues GET requests.
9
-    <br />You can add it to your browsers search bar and even make it your default search engine.
7
+    <p>Searx is a <a href="https://en.wikipedia.org/wiki/Metasearch_engine">metasearch engine</a>, aggregating the results of other <a href="/engines">search engines</a> while not storing information about its users.
10 8
     </p>
11
-    <h2>What makes searx different</h2>
9
+    <h2>Why use Searx?</h2>
12 10
     <ul>
13
-        <li>No ads - searx is Free Software (free-as-in-freedom), funded by your donations</li>
14
-        <li>Privacy - tries to minimalize the digital footprint of the searches</li>
15
-        <li>Optionally self hosted - see the <a href="#faq">FAQ</a></li>
16
-        <li>Easy to add new engines/categories</li>
11
+        <li>Maybe Searx won’t offer you as personalised results as Google, but it doesn't make a profile about you</li>
12
+        <li>Searx doesn't care about what you search, never shares anything with a third party, and it can't be used to compromise you</li>
13
+        <li>Searx doesn't make money on ads and it isn't customised based on your interests. You get the pure search results</li>
14
+        <li>Searx is a free software, the code is 100% open and you can help to make it better. See more on <a href="https://gmail.com/asciimoo/searx">github</a></li>
17 15
     </ul>
16
+    <p>If you do care about privacy, want to be a conscious user, moreover believe
17
+    in digital freedom, make Searx your default search engine or run it on your own server</p>
18 18
 
19
-<h2>Engines</h2>
19
+<h2>Technical details - How does it work?</h2>
20 20
 
21
-{% for (categ,search_engines) in categs %}
22
-    <h3>{{ categ.capitalize() }}</h3>
23
-    <ul>
24
-        {% for search_engine in search_engines %}
25
-            {% if not search_engine.private %}
26
-                <li>{{ search_engine.name }}</li>
27
-            {% endif %}
28
-        {% endfor %}
29
-    </ul>
30
-{% endfor %}
31
-<p>Please add more engines to this list, pull requests are welcome!</p>
21
+<p>Searx appreciates your suspicion regarding logs, so take the <a href="https://github.com/asciimoo/searx">code</a> and run it yourself! <br />Add your Searx to this <a href="https://github.com/asciimoo/searx/wiki/Searx-instances">list</a> to help other people to have privacy and make the Internet freer!
22
+<br />The more decentralized the Internet is, the more freedom we have!</p>
32 23
 
33
-<h2><a href="https://github.com/asciimoo/searx/wiki/Searx-instances">Running public instances</a></h2>
24
+<hr />
34 25
 
35 26
 <h2 id="faq">FAQ</h2>
36
-<h3>Trust</h3>
37
-<p>It's ok if you don't trust us regarding the logs, <a href="https://github.com/asciimoo/searx">take the code</a> and run it yourself! decentralize!</p>
27
+
38 28
 <h3>How to add to firefox?</h3>
39 29
 <p><a href="#" onclick="window.external.AddSearchProvider(window.location.protocol + '//' + window.location.host + '/opensearch.xml')">Install</a> searx as a search engine on any version of Firefox! (javascript required)</p>
30
+
40 31
 <h2 id="dev_faq">Developer FAQ</h2>
32
+
41 33
 <h3>New engines?</h3>
42 34
 <ul>
43 35
     <li>Edit your engines.cfg, see <a href="https://raw.github.com/asciimoo/searx/master/engines.cfg_sample">sample config</a></li>
44 36
     <li>Create your custom engine module, check the <a href="https://github.com/asciimoo/searx/blob/master/examples/basic_engine.py">example engine</a></li>
45 37
 </ul>
46 38
 <p>Don't forget to restart searx after config edit!</p>
47
-<h3>WSGI support?</h3>
48
-<p><a href="https://about.okhin.fr/posts/Searx/">Okhin wrote</a> a great and detailed article about the setup.</p>
39
+
40
+<h3>Installation/WSGI support?</h3>
41
+<p>See the <a href="https://github.com/asciimoo/searx/wiki/Installation">installation and setup</a> wiki page</p>
42
+
49 43
 <h3>How to debug engines?</h3>
50 44
 <p><a href="/stats">Stats page</a> contains some useful data about the used engines.</p>
45
+
51 46
 </div>
52 47
 {% endblock %}