commit 535f814f6ac42ee9ba78c77466d311b2b8f6a8f1 Author: Philipp Winter phw@torproject.org Date: Mon Dec 9 11:15:08 2013 +0100
Remove every mention of bridges.
At this point, Atlas is not able to extract bridge information from onionoo data. We shouldn't pretend that it does. --- templates/about.html | 4 ++-- templates/details/main.html | 2 +- templates/search/do.html | 2 +- templates/search/main.html | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/templates/about.html b/templates/about.html index d74a36b..9238c30 100644 --- a/templates/about.html +++ b/templates/about.html @@ -1,7 +1,7 @@ <header id="about"> <h1>Atlas</h1> <p class="lead"> -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. +Atlas is a web application to discover Tor relays. It provides useful information on how relays are configured along with graphics about their past. </p> </header>
@@ -26,7 +26,7 @@ You are able to get a detailed view of how the relay is configured. What its exi <div class="span4"> <h2>Graphs</h2> <p> -The historical data of the bridges bandwidth usage is available in graph form. +The historical data of a relay's bandwidth usage is available in graph form. </p> </div> </div> diff --git a/templates/details/main.html b/templates/details/main.html index 9e7ec1b..8514fa0 100644 --- a/templates/details/main.html +++ b/templates/details/main.html @@ -1,7 +1,7 @@ <% if(relay == null) {%> <div class="alert"> <strong>No Results found!</strong><p> - No Tor bridges or relays matched your query :(</p> + No Tor relays matched your query :(</p> </div> <% } else { %> <h1>Details for: <span id="relay_name"><%= relay.get('nickname') %></span></h1> diff --git a/templates/search/do.html b/templates/search/do.html index c413089..99b30bd 100644 --- a/templates/search/do.html +++ b/templates/search/do.html @@ -3,7 +3,7 @@ <% if(error == 0) {%> <div class="alert"> <strong>No Results found!</strong><p> - No Tor bridges or relays matched your query :(</p> + No Tor relays matched your query :(</p> </div> <% } else if (error == 1) {%> <div class="alert alert-error"> diff --git a/templates/search/main.html b/templates/search/main.html index e89a7ed..c8b82bc 100644 --- a/templates/search/main.html +++ b/templates/search/main.html @@ -1,7 +1,7 @@ <div class="container"> <div class="splash"> <h1>Welcome to Atlas.</h1> - <p>Atlas is a web application to learn about currently running Tor relays and bridges. Enter your search in the above box to get started.</p> + <p>Atlas is a web application to learn about currently running Tor relays. Enter your search in the above box to get started.</p> <p class="learn-more"><a class="btn btn-info btn-large" href="#about">Learn more »</a></p> </div> </div>
tor-commits@lists.torproject.org