summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index 4393e693..7571f0fc 100644
--- a/settings.py
+++ b/settings.py
@@ -51,6 +51,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.debug',
'django.contrib.messages.context_processors.messages',
'main.context_processors.secure',
+ 'main.context_processors.branding',
)
TEMPLATE_DIRS = (
@@ -166,12 +167,34 @@ ISO_LIST_URL = 'https://releng.archlinux.org/isos/'
# community bit on the end, repo.svn_root is appended)
SVN_BASE_URL = 'svn://svn.archlinux.org/'
+# URL for linking to mailing lists
+MAILMAN_BASE_URL = 'https://mailman.archlinux.org/'
+
+# URL for linking to the bugtracker
+BUGTRACKER_URL = 'https://bugs.archlinux.org/'
+
+# URL for linking to the release engineering/iso project on the bugtracker
+BUGTRACKER_RELENG_URL = 'https://bugs.archlinux.org/index.php?project=6'
+
+# URL for linking to projects in git
+PROJECTS_URL = 'https://projects.archlinux.org'
+
# Trackers used for ISO download magnet links
TORRENT_TRACKERS = (
'udp://tracker.archlinux.org:6969',
'http://tracker.archlinux.org:6969/announce',
)
+DOMAIN_RE = r'^(.+\.)?archlinux.org$'
+
+BRANDING_APPNAME = 'archweb'
+BRANDING_DISTRONAME = 'Arch Linux'
+BRANDING_SHORTNAME = 'Arch'
+BRANDING_SLUG = 'archlinux'
+BRANDING_WIKINAME = 'ArchWiki'
+BRANDING_EMAIL = 'Arch Website Notification <nobody@archlinux.org>'
+BRANDING_OSEARCH_TAGS = 'linux archlinux package software'
+
# Shorten some names just a bit
COUNTRIES_OVERRIDE = {
'GB': 'United Kingdom',