Browse Source

Corrected spelling of ads in user/own-instance.html

James Coleman 7 years ago
parent
commit
410403ba59

+ 1
- 1
_sources/user/own-instance.txt View File

18
 
18
 
19
 Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. `Result proxy <https://github.com/asciimoo/morty>`__ is supported, too.
19
 Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. `Result proxy <https://github.com/asciimoo/morty>`__ is supported, too.
20
 
20
 
21
-Searx does not serve adds or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.
21
+Searx does not serve ads or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.
22
 
22
 
23
 What are the consequences of using public instances?
23
 What are the consequences of using public instances?
24
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

+ 4
- 0
_static/pygments.css View File

47
 .highlight .mh { color: #208050 } /* Literal.Number.Hex */
47
 .highlight .mh { color: #208050 } /* Literal.Number.Hex */
48
 .highlight .mi { color: #208050 } /* Literal.Number.Integer */
48
 .highlight .mi { color: #208050 } /* Literal.Number.Integer */
49
 .highlight .mo { color: #208050 } /* Literal.Number.Oct */
49
 .highlight .mo { color: #208050 } /* Literal.Number.Oct */
50
+.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
50
 .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
51
 .highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
51
 .highlight .sc { color: #4070a0 } /* Literal.String.Char */
52
 .highlight .sc { color: #4070a0 } /* Literal.String.Char */
53
+.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
52
 .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
54
 .highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
53
 .highlight .s2 { color: #4070a0 } /* Literal.String.Double */
55
 .highlight .s2 { color: #4070a0 } /* Literal.String.Double */
54
 .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
56
 .highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
59
 .highlight .s1 { color: #4070a0 } /* Literal.String.Single */
61
 .highlight .s1 { color: #4070a0 } /* Literal.String.Single */
60
 .highlight .ss { color: #517918 } /* Literal.String.Symbol */
62
 .highlight .ss { color: #517918 } /* Literal.String.Symbol */
61
 .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
63
 .highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
64
+.highlight .fm { color: #06287e } /* Name.Function.Magic */
62
 .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
65
 .highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
63
 .highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
66
 .highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
64
 .highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
67
 .highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
68
+.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
65
 .highlight .il { color: #208050 } /* Literal.Number.Integer.Long */
69
 .highlight .il { color: #208050 } /* Literal.Number.Integer.Long */

+ 5
- 7
dev/quickstart.html View File

109
 </div>
109
 </div>
110
 <div class="section" id="tips-for-debugging-development">
110
 <div class="section" id="tips-for-debugging-development">
111
 <h2>Tips for debugging/development<a class="headerlink" href="#tips-for-debugging-development" title="Permalink to this headline">¶</a></h2>
111
 <h2>Tips for debugging/development<a class="headerlink" href="#tips-for-debugging-development" title="Permalink to this headline">¶</a></h2>
112
-<ol class="arabic">
112
+<ol class="arabic simple">
113
 <li><dl class="first docutils">
113
 <li><dl class="first docutils">
114
 <dt>Turn on debug logging</dt>
114
 <dt>Turn on debug logging</dt>
115
-<dd><p class="first last">Whether you are working on a new engine or trying to eliminate a bug, it is always a good idea
115
+<dd>Whether you are working on a new engine or trying to eliminate a bug, it is always a good idea
116
 to turn on debug logging. When debug logging is enabled a stack trace appears,
116
 to turn on debug logging. When debug logging is enabled a stack trace appears,
117
 instead of the cryptic <code class="docutils literal"><span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></code> message. It can be turned on by setting
117
 instead of the cryptic <code class="docutils literal"><span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></code> message. It can be turned on by setting
118
-<code class="docutils literal"><span class="pre">debug:</span> <span class="pre">False</span></code> to <code class="docutils literal"><span class="pre">debug:</span> <span class="pre">True</span></code> in settings.yml.</p>
119
-</dd>
118
+<code class="docutils literal"><span class="pre">debug:</span> <span class="pre">False</span></code> to <code class="docutils literal"><span class="pre">debug:</span> <span class="pre">True</span></code> in settings.yml.</dd>
120
 </dl>
119
 </dl>
121
 </li>
120
 </li>
122
 <li><dl class="first docutils">
121
 <li><dl class="first docutils">
123
 <dt>Run <code class="docutils literal"><span class="pre">./manage.sh</span> <span class="pre">tests</span></code> before creating a PR.</dt>
122
 <dt>Run <code class="docutils literal"><span class="pre">./manage.sh</span> <span class="pre">tests</span></code> before creating a PR.</dt>
124
-<dd><p class="first last">Failing build on Travis is common because of PEP8 checks. So a new commit must be created
123
+<dd>Failing build on Travis is common because of PEP8 checks. So a new commit must be created
125
 containing these format fixes. This phase can be skipped if <code class="docutils literal"><span class="pre">./manage.sh</span> <span class="pre">tests</span></code> is run
124
 containing these format fixes. This phase can be skipped if <code class="docutils literal"><span class="pre">./manage.sh</span> <span class="pre">tests</span></code> is run
126
-locally before creating a PR.</p>
127
-</dd>
125
+locally before creating a PR.</dd>
128
 </dl>
126
 </dl>
129
 </li>
127
 </li>
130
 </ol>
128
 </ol>

+ 1
- 1
docs/user/own-instance.rst View File

18
 
18
 
19
 Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. `Result proxy <https://github.com/asciimoo/morty>`__ is supported, too.
19
 Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. `Result proxy <https://github.com/asciimoo/morty>`__ is supported, too.
20
 
20
 
21
-Searx does not serve adds or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.
21
+Searx does not serve ads or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.
22
 
22
 
23
 What are the consequences of using public instances?
23
 What are the consequences of using public instances?
24
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

+ 1
- 1
searchindex.js
File diff suppressed because it is too large
View File


+ 1
- 1
user/own-instance.html View File

57
 </ol>
57
 </ol>
58
 </div></blockquote>
58
 </div></blockquote>
59
 <p>Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. <a class="reference external" href="https://github.com/asciimoo/morty">Result proxy</a> is supported, too.</p>
59
 <p>Removing private data means not sending cookies to external search engines and generating a random browser profile for every request. Thus, it does not matter if a public or private instance handles the request, because it is anonymized in both cases. IP addresses will be the IP of the instance. But searx can be configured to use proxy or Tor. <a class="reference external" href="https://github.com/asciimoo/morty">Result proxy</a> is supported, too.</p>
60
-<p>Searx does not serve adds or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.</p>
60
+<p>Searx does not serve ads or tracking content unlike most search services. So private data is not forwarded to third parties who might monetize it. Besides protecting users from search services, both referring page and search query are hidden from visited result pages.</p>
61
 <div class="section" id="what-are-the-consequences-of-using-public-instances">
61
 <div class="section" id="what-are-the-consequences-of-using-public-instances">
62
 <h3>What are the consequences of using public instances?<a class="headerlink" href="#what-are-the-consequences-of-using-public-instances" title="Permalink to this headline">¶</a></h3>
62
 <h3>What are the consequences of using public instances?<a class="headerlink" href="#what-are-the-consequences-of-using-public-instances" title="Permalink to this headline">¶</a></h3>
63
 <p>If someone uses a public instance, he/she has to trust the administrator of that instance.
63
 <p>If someone uses a public instance, he/she has to trust the administrator of that instance.