diff options
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/settings.py b/settings.py index 77f84ba2..ed12bbec 100644 --- a/settings.py +++ b/settings.py @@ -13,7 +13,7 @@ ADMINS = () MANAGERS = ADMINS # Package out-of-date emails for orphans -NOTIFICATIONS = ['arch-notifications@archlinux.org'] +NOTIFICATIONS = ['dev@lists.parabolagnulinux.org'] # Full path to the data directory DEPLOY_PATH = os.path.dirname(os.path.realpath(__file__)) @@ -109,19 +109,11 @@ INSTALLED_APPS = ( 'public', 'south', # database migration support 'releng', - '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 * @@ -139,4 +131,7 @@ if DEBUG_TOOLBAR: INSTALLED_APPS = list(INSTALLED_APPS) + [ 'debug_toolbar' ] +# URL to fetch a current list of available ISOs +ISO_LIST_URL = 'https://repo.parabolagnulinux.org/isos/' + # vim: set ts=4 sw=4 et: |