summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-11-15 14:37:46 -0600
committerDan McGee <dan@archlinux.org>2011-11-15 14:37:46 -0600
commit84679f90a772e591dae2dea28194730d5453e6cf (patch)
tree9cae0fe61eba1d6051618a3d141862ff04a7b3e5 /settings.py
parent5b63c29fe1c37ce9d946adedeaf13f5ad94d144a (diff)
downloadarchweb-84679f90a772e591dae2dea28194730d5453e6cf.tar.gz
archweb-84679f90a772e591dae2dea28194730d5453e6cf.zip
Move certain settings above local settings importrelease_2011-11-15
This ensures one can override them in local_settings.py if necesary. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'settings.py')
-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: