Reorder mirrors, cypher's removal, and fix the code syntax I broke.
Jon@svn.torproject.org

Jon@svn.torproject.org commited on 2009-06-29 06:51:30
Zeige 1 geänderte Dateien mit 21 Einfügungen und 21 Löschungen.

... ...
@@ -12,8 +12,6 @@ use Date::Format;
12 12
 # This is Free Software (GPLv3)
13 13
 # http://www.gnu.org/licenses/gpl-3.0.txt
14 14
 #
15
-# 001 Timoutes 	Contacted
16
-# 002 403 	Contacted
17 15
 
18 16
 print "Creating LWP agent ($LWP::VERSION)...\n";
19 17
 my $lua = LWP::UserAgent->new(
... ...
@@ -76,7 +74,27 @@ sub FetchDate {
76 74
 
77 75
 # This is the list of all known Tor mirrors
78 76
 # Add new mirrors to the bottom!
79
-my %m = 
77
+my %m = (
78
+        mirror000 => {
79
+            adminContact => "tor AT goodeid DOT com",
80
+            orgName => "goodeid.com",
81
+            isoCC => "CAN",
82
+            subRegion => "",
83
+            region => "CAN",
84
+            ipv4 => "True",
85
+            ipv6 => "False",
86
+            loadBalanced => "No",
87
+            httpWebsiteMirror => "http://tor-node.goodeid.com/",
88
+            httpsWebsiteMirror => "https://tor-node.goodeid.com/",
89
+            rsyncWebsiteMirror => "",
90
+            ftpWebsiteMirror => "",
91
+            httpDistMirror => "http://tor-node.goodeid.com/dist/",
92
+            httpsDistMirror => "https://tor-node.goodeid.com/dist/",
93
+            rsyncDistMirror => "",
94
+            hiddenServiceMirror => "",
95
+            updateDate => "Unknown",
96
+        },
97
+
80 98
        mirror001 => {
81 99
             adminContact => "webmaster AT depthstrike DOT com",
82 100
             orgName => "Depthstrike",
... ...
@@ -841,24 +859,6 @@ my %m =
841 859
             rsyncDistMirror => "",
842 860
             hiddenServiceMirror => "",
843 861
             updateDate => "Unknown",
844
-        },       mirror044 => {
845
-            adminContact => "tor AT goodeid DOT com",
846
-            orgName => "goodeid.com",
847
-            isoCC => "CAN",
848
-            subRegion => "",
849
-            region => "CAN",
850
-            ipv4 => "True",
851
-            ipv6 => "False",
852
-            loadBalanced => "No",
853
-            httpWebsiteMirror => "http://tor-node.goodeid.com/",
854
-            httpsWebsiteMirror => "https://tor-node.goodeid.com/",
855
-            rsyncWebsiteMirror => "",
856
-            ftpWebsiteMirror => "",
857
-            httpDistMirror => "http://tor-node.goodeid.com/dist/",
858
-            httpsDistMirror => "https://tor-node.goodeid.com/dist/",
859
-            rsyncDistMirror => "",
860
-            hiddenServiceMirror => "",
861
-            updateDate => "Unknown",
862 862
         }
863 863
 );
864 864
 
865 865