commit 783f2adbbdc80908bf953c0d4166526f5884682f
Author: Translation commit bot <translation(a)torproject.org>
Date: Sun Jan 5 06:45:08 2014 +0000
Update translations for tsum
---
uk/short-user-manual_uk_noimg.xhtml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/uk/short-user-manual_uk_noimg.xhtml b/uk/short-user-manual_uk_noimg.xhtml
index 2e03054..f41be3f 100644
--- a/uk/short-user-manual_uk_noimg.xhtml
+++ b/uk/short-user-manual_uk_noimg.xhtml
@@ -12,7 +…
[View More]12,7 @@
<p>The image above illustrates a user browsing to different websites over Tor. The green monitors represent relays in the Tor network, while the three keys represent the layers of encryption between the user and each relay.</p>
<p>Tor will anonymize the origin of your traffic, and it will encrypt everything between you and the Tor network. Tor will also encrypt your traffic inside the Tor network, but it cannot encrypt your traffic between the Tor network and its final destination.</p>
<p>If you are communicating sensitive information, for example when logging on to a website with a username and password, make sure that you are using HTTPS (e.g. <strong>https</strong>://torproject.org/, not <strong>http</strong>://torproject.org/).</p>
- <h2 id="how-to-download-tor">How to download Tor</h2>
+ <h2 id="how-to-download-tor">Як завантажити Tor</h2>
<p>The bundle we recommend to most users is the <a href="https://www.torproject.org/projects/torbrowser.html">Tor Browser Bundle</a>. This bundle contains a browser preconfigured to safely browse the Internet through Tor, and requires no installation. You download the bundle, extract the archive, and start Tor.</p>
<p>There are two different ways to get hold of the Tor software. You can either browse to the <a href="https://www.torproject.org/">Tor Project website</a> and download it there, or you can use GetTor, the email autoresponder.</p>
<h3 id="how-to-get-tor-via-email">How to get Tor via email</h3>
[View Less]
commit 32aadbc7f7918d5c9f47a748a288fad16ce5ca69
Author: Damian Johnson <atagar(a)torproject.org>
Date: Sat Jan 4 11:44:51 2014 -0800
Checking for the pyflakes modules we use
Presently our jenkins tests are failing since the system has pyflakes version
0.5 which evidently doesn't have the pyflakes.api module...
https://trac.torproject.org/10539
Checking explicitly for the modules we use when determining if pyflakes is
avaialable.
---
test/util.…
[View More]py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/util.py b/test/util.py
index 295f883..a889b92 100644
--- a/test/util.py
+++ b/test/util.py
@@ -166,7 +166,8 @@ def is_pyflakes_available():
"""
try:
- import pyflakes
+ import pyflakes.api
+ import pyflakes.reporter
return True
except ImportError:
return False
[View Less]
Author: asn
Date: 2014-01-04 17:10:55 +0000 (Sat, 04 Jan 2014)
New Revision: 26521
Modified:
website/trunk/projects/en/obfsproxy-debian-instructions.wml
website/trunk/projects/en/obfsproxy-instructions.wml
Log:
Update obfsproxy instructions now that 0.2.4.x is not experimental anymore.
Modified: website/trunk/projects/en/obfsproxy-debian-instructions.wml
===================================================================
--- website/trunk/projects/en/obfsproxy-debian-instructions.wml …
[View More]2014-01-03 06:22:40 UTC (rev 26520)
+++ website/trunk/projects/en/obfsproxy-debian-instructions.wml 2014-01-04 17:10:55 UTC (rev 26521)
@@ -34,11 +34,11 @@
recommend you to upgrade to the Python version!
</p>
- <h3>Step 0: Move to the development version of Tor</h3>
+ <h3>Step 0: Install a recent version of Tor (>= 0.2.4.1)</h3>
<br>
<p>
- Add the <a href="<page docs/debian>#development">development Tor
+ Add the <a href="<page docs/debian>#ubuntu">official Tor
APT repository</a> and run the specified commands to install <code>tor</code>
and <code>deb.torproject.org-keyring</code>. You need <em>Tor 0.2.4.x</em> because
it knows how to automatically report your obfsproxy address to <a
Modified: website/trunk/projects/en/obfsproxy-instructions.wml
===================================================================
--- website/trunk/projects/en/obfsproxy-instructions.wml 2014-01-03 06:22:40 UTC (rev 26520)
+++ website/trunk/projects/en/obfsproxy-instructions.wml 2014-01-04 17:10:55 UTC (rev 26521)
@@ -41,7 +41,7 @@
<p>
You will also need a recent version of Tor (>= 0.2.4.1). We recommend you use
- <a href="<page docs/debian>#development">Tor's experimental repositories for Debian/Ubuntu</a>
+ <a href="<page docs/debian>#ubuntu">Tor's repositories for Debian/Ubuntu</a>
or
<a href="https://gitweb.torproject.org/tor.git">install Tor from git</a>.
</p>
[View Less]