[atlas/master] Rename all "TorStatus" or "Tor Status" occurrences to "Atlas".

commit 11078fb92f3cde536b0f8aee32eb90b4215ffd45 Author: Philipp Winter <phw@torproject.org> Date: Wed Jul 31 23:17:23 2013 +0200 Rename all "TorStatus" or "Tor Status" occurrences to "Atlas". --- Readme.rst | 8 ++++---- js/router.js | 6 +++--- templates/search/do.html | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Readme.rst b/Readme.rst index bb31355..4a6a0cd 100644 --- a/Readme.rst +++ b/Readme.rst @@ -1,7 +1,7 @@ -Tor Status -========== +Atlas +===== -Tor Status is a web application to discover Tor relays and bridges. It provides useful +Atlas is a web application to discover Tor relays and bridges. It provides useful information on how relays are configured along with graphics about their past. @@ -21,4 +21,4 @@ Once that is done, you can run the server with the following command: python run.py -After which, the Atlas site will be available on http://localhost:8888/index.html \ No newline at end of file +After which, the Atlas site will be available on http://localhost:8888/index.html diff --git a/js/router.js b/js/router.js index b20e947..bd89f9e 100644 --- a/js/router.js +++ b/js/router.js @@ -10,7 +10,7 @@ define([ ], function($, _, Backbone, mainDetailsView, mainSearchView, doSearchView, aboutView){ var AppRouter = Backbone.Router.extend({ routes: { - // Define the routes for the actions in Tor Status + // Define the routes for the actions in Atlas 'details/:fingerprint': 'mainDetails', 'search/:query': 'doSearch', 'about': 'showAbout', @@ -42,7 +42,7 @@ define([ }); }, - // Perform a search on Tor Status + // Perform a search on Atlas doSearch: function(query){ $("#home").removeClass("active"); $("#about").removeClass("active"); @@ -71,7 +71,7 @@ define([ }); } }, - // Display the Tor Status about page + // Display the Atlas about page showAbout: function(){ $("#home").removeClass("active"); $("#about").addClass("active"); diff --git a/templates/search/do.html b/templates/search/do.html index ee3a391..c413089 100644 --- a/templates/search/do.html +++ b/templates/search/do.html @@ -7,7 +7,7 @@ </div> <% } else if (error == 1) {%> <div class="alert alert-error"> - <strong>Too many matches!</strong><p>The current version of Tor Status does + <strong>Too many matches!</strong><p>The current version of Atlas does not support a result set greater than 40. This is due to some performance issues in doing multiple parallel connections in javascript. Future versions will hopefully manage to overcome this issue.</p>
participants (1)
-
phw@torproject.org