[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r13286: Remove "probably". I think it harms usability significantly (check/trunk/cgi-bin)
Author: sjm217
Date: 2008-01-25 17:29:43 -0500 (Fri, 25 Jan 2008)
New Revision: 13286
Modified:
check/trunk/cgi-bin/index.pl
check/trunk/cgi-bin/tor-detector.pl
Log:
Remove "probably". I think it harms usability significantly for little benefit
Modified: check/trunk/cgi-bin/index.pl
===================================================================
--- check/trunk/cgi-bin/index.pl 2008-01-25 22:23:40 UTC (rev 13285)
+++ check/trunk/cgi-bin/index.pl 2008-01-25 22:29:43 UTC (rev 13286)
@@ -106,7 +106,7 @@
if ($result) {
print "<img src='http://check.torproject.org/tor-on.png'>\n<br>";
print "<h1 style='color: #0A0'>";
- print "Congratulations. You are (probably) using Tor.<br><br>";
+ print "Congratulations. You are using Tor.<br><br>";
print "</h1>";
print "Please refer to the <a href='https://www.torproject.org/'>Tor website</a> for further information about using Tor safely.<br><br>";
@@ -114,7 +114,7 @@
print "<img src='http://check.torproject.org/tor-off.png'>\n<br>";
print "<h1 style='color: #A00'>";
- print "Sorry. You are (probably) not using Tor.\n<br><br>";
+ print "Sorry. You are not using Tor.\n<br><br>";
print "</h1>";
print "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>.<br><br>";
Modified: check/trunk/cgi-bin/tor-detector.pl
===================================================================
--- check/trunk/cgi-bin/tor-detector.pl 2008-01-25 22:23:40 UTC (rev 13285)
+++ check/trunk/cgi-bin/tor-detector.pl 2008-01-25 22:29:43 UTC (rev 13286)
@@ -142,13 +142,13 @@
if ($result eq 1) {
print "<img src='http://check.torproject.org/tor-on.png'>\n<br>";
print "<h1 style='color: #0A0'>";
- print "Congratulations. You are (probably) using Tor.<br><br>";
+ print "Congratulations. You are using Tor.<br><br>";
print "</h1>";
print "Please refer to the <a href='https://www.torproject.org/'>Tor website</a> for further information about using Tor safely.<br><br>";
} elsif ($result eq 0) {
print "<img src='http://check.torproject.org/tor-off.png'>\n<br>";
print "<h1 style='color: #A00'>";
- print "Sorry. You are (probably) not using Tor.\n<br><br>";
+ print "Sorry. You are not using Tor.\n<br><br>";
print "</h1>";
print "If you are attempting to use a Tor client, please refer to the <a href='https://www.torproject.org/documentation#RunningTor'>Tor website</a> and specifically the <a href='https://wiki.torproject.org/noreply/TheOnionRouter/TorFAQ#ItDoesntWork'>instructions for configuring your Tor client</a>.<br><br>";
} elsif ($result eq 4) {