commit 513656ea359765191a1757a8fd7a776868c4a935 Author: Iain R. Learmonth irl@fsfe.org Date: Tue Apr 2 14:08:02 2019 +0100
Updates URLs for new Tor Project website
Fixes: #29983 --- public/base.html | 4 ++-- public/index.html | 13 +++++-------- 2 files changed, 7 insertions(+), 10 deletions(-)
diff --git a/public/base.html b/public/base.html index 2f9facc..902ede2 100644 --- a/public/base.html +++ b/public/base.html @@ -50,8 +50,8 @@ {{ template "body" . }} </div> <div class="foot"> - <p class="project">{{ GetText .Lang "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy." }} <a href="https://www.torproject.org/about/overview.html.en">{{ GetText .Lang "Learn More »" | UnEscaped }}</a></p> + <p class="project">{{ GetText .Lang "The Tor Project is a US 501(c)(3) non-profit dedicated to the research, development, and education of online anonymity and privacy." }} <a href="https://www.torproject.org/about/history/">{{ GetText .Lang "Learn More »" | UnEscaped }}</a></p> {{ template "foot" . }} </div> </body> -</html> \ No newline at end of file +</html> diff --git a/public/index.html b/public/index.html index 73a79b5..84f7c81 100644 --- a/public/index.html +++ b/public/index.html @@ -89,13 +89,13 @@ {{ if .NotUpToDate }} <p class="security"> {{ GetText .Lang "There is a security update available for Tor Browser." }}<br /> - {{ GetText .Lang "<a href="https://www.torproject.org/download/download-easy.html%5C%22%3EClick here to go to the download page</a>" | UnEscaped }} + {{ GetText .Lang "<a href="https://www.torproject.org/download/%5C%22%3EClick here to go to the download page</a>" | UnEscaped }} </p> {{ else }} {{ if .NotTBB }} <p class="security"> {{ GetText .Lang "However, it does not appear to be Tor Browser." }}<br /> - {{ GetText .Lang "<a href="https://www.torproject.org/download/download-easy.html%5C%22%3EClick here to go to the download page</a>" | UnEscaped }} + {{ GetText .Lang "<a href="https://www.torproject.org/download/%5C%22%3EClick here to go to the download page</a>" | UnEscaped }} </p> {{ end }} {{ end }} @@ -104,14 +104,11 @@ {{ if .IsTor }} {{ GetText .Lang "Please refer to the <a href="https://www.torproject.org/%5C%22%3ETor website</a> for further information about using Tor safely. You are now free to browse the Internet anonymously." | UnEscaped }} {{ GetText .Lang "For more information about this exit relay, see:" }} <a href="https://metrics.torproject.org/rs.html#search/{{ .IP }}">Relay Search</a>. {{ else }} - {{ GetText .Lang "If you are attempting to use a Tor client, please refer to the <a href="https://www.torproject.org/%5C%22%3ETor website</a> and specifically the <a href="https://www.torproject.org/docs/faq#DoesntWork%5C%22%3Einstructions for configuring your Tor client</a>." | UnEscaped }} + {{ GetText .Lang "If you are attempting to use a Tor client, please refer to the <a href="https://www.torproject.org/%5C%22%3ETor website</a> and specifically the <a href="https://support.torproject.org/#faq%5C%22%3Efrequently asked questions</a>." | UnEscaped }} {{ end }} </p> - <a id="donate" href="https://www.torproject.org/donate/donate.html">{{ GetText .Lang "Donate to Support Tor" }}</a> + <a id="donate" href="https://donate.torproject.org/">{{ GetText .Lang "Donate to Support Tor" }}</a> <ul id="links"> - <!-- <li> - <a href="https://torproject.org/dist/manual/short-user-manual_{{ UserManual .Lang }}.xhtml">{{ GetText .Lang "Short User Manual" }}</a> - </li> --> <li> <a href="https://tor.stackexchange.com/">{{ GetText .Lang "Tor Q&A Site" }}</a> </li> @@ -131,7 +128,7 @@ <script> // javascript enabled? var a = document.createElement("a"); - a.href = "https://www.torproject.org/docs/faq#TBBJavaScriptEnabled"; + a.href = "https://support.torproject.org/#tbb-34"; var c = document.createTextNode("{{ GetText .Lang "JavaScript is enabled." }}"); a.appendChild(c); document.getElementById("js").appendChild(a);
tor-commits@lists.torproject.org