summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--settings.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/settings.py b/settings.py
index 80e024af..77f84ba2 100644
--- a/settings.py
+++ b/settings.py
@@ -112,8 +112,16 @@ INSTALLED_APPS = (
'visualize',
)
+## Server used for linking to PGP keysearch results
PGP_SERVER = 'pgp.mit.edu:11371'
+# URL to fetch a current list of available ISOs
+ISO_LIST_URL = 'http://releng.archlinux.org/isos/'
+
+# URL for SVN access for fetching commit messages (note absence of packages or
+# community bit on the end, repo.svn_root is appended)
+SVN_BASE_URL = 'svn+ssh://svn.archlinux.org/srv/svn-'
+
## Import local settings
from local_settings import *
@@ -131,11 +139,4 @@ if DEBUG_TOOLBAR:
INSTALLED_APPS = list(INSTALLED_APPS) + [ 'debug_toolbar' ]
-# URL to fetch a current list of available ISOs
-ISO_LIST_URL = 'http://releng.archlinux.org/isos/'
-
-# URL for SVN access for fetching commit messages (note absence of packages or
-# community bit on the end, repo.svn_root is appended)
-SVN_BASE_URL = 'svn+ssh://svn.archlinux.org/srv/svn-'
-
# vim: set ts=4 sw=4 et: