Author: phobos Date: 2010-10-27 18:23:19 +0000 (Wed, 27 Oct 2010) New Revision: 23694
Modified: check/trunk/cgi-bin/TorCheck.py Log: fix the urls in the tor check page. Modified: check/trunk/cgi-bin/TorCheck.py =================================================================== --- check/trunk/cgi-bin/TorCheck.py 2010-10-27 16:41:20 UTC (rev 23693) +++ check/trunk/cgi-bin/TorCheck.py 2010-10-27 18:23:19 UTC (rev 23694) @@ -20,7 +20,7 @@ __program__ = 'TorCheck.py' __version__ = '20100429.01' -__url__ = 'https://tor-svn.freehaven.net/svn/check/' +__url__ = 'https://svn.torproject.org/svn/check/' __author__ = 'Jacob Appelbaum <[email protected]>' __copyright__ = 'Copyright (c) 2008, Jacob Appelbaum' __license__ = 'See LICENSE for licensing information' @@ -232,7 +232,10 @@ req.write(_('Congratulations. You are using Tor.')) req.write('<br>\n<br>\n') req.write('</h1>\n') - req.write(_('Please refer to the <a href="https://www.torproject.org/">Tor website</a> for further information about using Tor safely.')) + req.write(_('Please refer to the <a +href="https://www.torproject.org/">Tor website</a> for further +information about using Tor safely. You are now free to browse the +Internet anonymously.')) req.write('<br>\n<br>\n') # This is the case where we have an NXDOMAIN and they aren't using Tor @@ -245,7 +248,9 @@ req.write(_('Sorry. You are not using Tor.')) req.write('<br>\n<br>\n') req.write('</h1>') - req.write(_('If you are attempting to use a Tor client, please refer to the <a href="https://www.torproject.org/">Tor website</a> and specifically the <a href="https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ#ItDoesntWork">instructions for configuring your Tor client</a>.')) + req.write(_('If you are attempting to use a Tor client, please +refer to the <a href="https://www.torproject.org/">Tor website</a> and +specifically the <a href="https://www.torproject.org/docs/faq#DoesntWork">instructions for configuring your Tor client</a>.')) req.write('<br>\n<br>\n') # This means we have some strange data response we don't understand @@ -258,7 +263,7 @@ req.write(_('Sorry, your query failed or an unexpected response was received.')) req.write('<br>\n') req.write('</h1>') - req.write(_('A temporary service outage prevents us from determining if your source IP address is a <a href="https://www.torproject.org/">Tor</a> node. For other ways to test whether you are using Tor, please visit <a href="https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ#IsMyConnectionPrivate">this FAQ entry</a>.')) + req.write(_('A temporary service outage prevents us from determining if your source IP address is a <a href="https://www.torproject.org/">Tor</a> node.')) req.write('<br>\n<br>\n') # Now we'll close up this html rat hole
