From 63caf646fa72121852eeb4944b6b9ce606665ba0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 27 Mar 2013 10:27:16 -0400 Subject: find templates -type f -exec sed -i 's/\({% block title %}\)Arch Linux/\1{{ BRANDING_DISTRONAME }}/' {} + --- templates/releng/add.html | 2 +- templates/releng/results.html | 2 +- templates/releng/thanks.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'templates/releng') diff --git a/templates/releng/add.html b/templates/releng/add.html index ed02984e..29587cb9 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Test Result Entry{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Test Result Entry{% endblock %} {% block content %}
diff --git a/templates/releng/results.html b/templates/releng/results.html index c19b42a6..82073ffe 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Release Engineering Testbuild Results{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %} {% block content %}
diff --git a/templates/releng/thanks.html b/templates/releng/thanks.html index 66d65a5c..1ad7260d 100644 --- a/templates/releng/thanks.html +++ b/templates/releng/thanks.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% load url from future %} -{% block title %}Arch Linux - Feedback - Thanks!{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - Feedback - Thanks!{% endblock %} {% block content %}
-- cgit v1.2.3-2-g168b From fcf5c3aaf087b2131bae34bdb7f1e08b292a0357 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 19 Apr 2013 18:06:13 -0400 Subject: replace a bunch more instances of "Arch" in templates manually --- templates/releng/add.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'templates/releng') diff --git a/templates/releng/add.html b/templates/releng/add.html index 29587cb9..ec3b6d8a 100644 --- a/templates/releng/add.html +++ b/templates/releng/add.html @@ -5,9 +5,9 @@ {% block content %}
-

Arch Releng Testbuild Feedback Entry

+

{{ BRANDING_SHORTNAME }} Releng Testbuild Feedback Entry

-

This page allows you to submit feedback after testing an Arch Linux installation +

This page allows you to submit feedback after testing an {{ BRANDING_SHORTNAME }} installation using a release engineering testbuild. Mark all the options you used during the installation; at the end you can specify whether everything went OK. Be sure to only denote a successful install after having checked the -- cgit v1.2.3-2-g168b From ae9ee14ff153698dd90c6560437e42ff124a6d0b Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 19 Apr 2013 21:46:51 -0400 Subject: Abstract ArchWiki URLs and references. Notable things: * Standardize on "ArchWiki", instead of also having "Arch Wiki", via BRANDING_WIKINAME * Link to the article "Install_Guide" instead of "Official_Arch_Linux_Install_Guide", it's a redirect anyway. * On the download page, it assumes the that the version is just appended to the URL for the wiki link. * For the wiki RSS link, It now uses "/${title}?feed=rss" instead of "?title=${title}&feed=rss". --- templates/releng/results.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'templates/releng') diff --git a/templates/releng/results.html b/templates/releng/results.html index 82073ffe..df98d1ac 100644 --- a/templates/releng/results.html +++ b/templates/releng/results.html @@ -1,5 +1,6 @@ {% extends "base.html" %} {% load url from future %} +{% load wiki %} {% block title %}{{ BRANDING_DISTRONAME }} - Release Engineering Testbuild Results{% endblock %} @@ -18,7 +19,7 @@ the overview.

For more information, see the documentation + href="{% wiki_url 'DeveloperWiki:releng_testimages_feedback' %}">documentation on the wiki.

All ISOs referenced on this page are available from -- cgit v1.2.3-2-g168b