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/public/feeds.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/public/feeds.html') diff --git a/templates/public/feeds.html b/templates/public/feeds.html index 0f80e1c2..9f62c4b7 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Arch Linux - RSS Feeds{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - RSS Feeds{% endblock %} {% block content %}
-- cgit v1.2.3 From 4ab05a025f424c0b5ce140ff68182e20595b04a2 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 19 Apr 2013 19:11:04 -0400 Subject: manually replace more instances of the Arch name --- templates/public/feeds.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'templates/public/feeds.html') diff --git a/templates/public/feeds.html b/templates/public/feeds.html index 9f62c4b7..764ebd90 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -6,14 +6,14 @@

RSS Feeds

-

Several RSS feeds are available for consumption from the Arch website. +

Several RSS feeds are available for consumption from the {{ BRANDING_SHORTNAME }} website. The majority of these are package-related and allow feeds to be customized for the updates you care about.

News and Activity Feeds

-

Grab the news item feed - to keep up-to-date with the latest news from the Arch Linux development staff.

+

Grab the news item feed + to keep up-to-date with the latest news from the {{ BRANDING_DISTRONAME }} development staff.

The Arch Wiki: Recent changes feed @@ -23,7 +23,7 @@

Package Feeds

If you are interested in all package updates, + title="{{ BRANDING_DISTRONAME }} package updates feed">all package updates, then grab this feed. Note that when a package is updated for multiple architectures, you will see each individual update show up here. Alternatively, you can select a packages feed from the below table that is -- cgit v1.2.3 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/public/feeds.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'templates/public/feeds.html') diff --git a/templates/public/feeds.html b/templates/public/feeds.html index 764ebd90..f298de7f 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "base.html" %}{% load wiki %} {% block title %}{{ BRANDING_DISTRONAME }} - RSS Feeds{% endblock %} {% block content %} @@ -15,10 +15,10 @@

Grab the news item feed to keep up-to-date with the latest news from the {{ BRANDING_DISTRONAME }} development staff.

-

The Arch Wiki: Recent changes feed - is also available to track document changes from the Arch Wiki.

+

The {{ BRANDING_WIKINAME }}: Recent changes feed + is also available to track document changes from the {{ BRANDING_WIKINAME }}.

Package Feeds

-- cgit v1.2.3 From 753784954794259c6a674a7b33e8b1e0105f55d1 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 21 Apr 2013 01:01:35 -0400 Subject: add BUGTRACKER_URL --- templates/public/feeds.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/public/feeds.html') diff --git a/templates/public/feeds.html b/templates/public/feeds.html index f298de7f..91cd9e71 100644 --- a/templates/public/feeds.html +++ b/templates/public/feeds.html @@ -61,7 +61,7 @@

Development Feeds

Subscribe to any of the following to track bug tickets and feature - requests from the Arch Linux Bugtracker:

+ requests from the {{BRANDING_DISTRONAME}} Bugtracker:

-- cgit v1.2.3