diff sat_website/local_settings.py @ 39:d2c45f4ba57e

add downloads.html
author souliane <souliane@mailoo.org>
date Tue, 27 Jan 2015 18:23:39 +0100
parents 31d196cf3b34
children dfe7139dae0a
line wrap: on
line diff
--- a/sat_website/local_settings.py	Tue Jan 27 12:17:09 2015 +0100
+++ b/sat_website/local_settings.py	Tue Jan 27 18:23:39 2015 +0100
@@ -97,13 +97,28 @@
 
 # Options for SàT website (see README)
 
-SAT_LINK_PATH = '/srv/ftp/sat/sat.tar.bz2'
-SAT_DL_PREFIX = 'ftp://ftp.goffi.org/sat'
-#SAT_DL_PATH = 'ftp://ftp.goffi.org/sat/sat.tar.bz2'
+# External URL pointing the projects archives directory
+PROJECTS_EXTERNAL_PATH = 'ftp://ftp.goffi.org'
+
+# Internal path to the the projects archives directory
+PROJECTS_INTERNAL_PATH = '/var/www/projects'
+
+# List of couples with the project directory name and the project name (set to None if it's the same)
+PROJECTS_NAMES = [('sat', None), ('sat_media', None), ('urwid-satext', 'urwid_satext'), ('sat_pubsub', None), ('libervia', None)]
+
+# Extension used to name the project archives
+ARCHIVE_SUFFIX = '.tar.bz2'
+
+# URL to Libervia online demo
 LIBERVIA_DEMO_URL = 'https://www.libervia.org'
 
+# Actual and target number of members
 ASSO_MEMBERS_ACTUAL = 3400
 ASSO_MEMBERS_TARGET = 6000
-ASSO_FINANCE_ACTUAL = 34000
+
+# Actual and target amount to finance the association (in euros)
+ASSO_FINANCE_ACTUAL = 40000
 ASSO_FINANCE_TARGET = 60000
+
+# Subscription amounts as defined in the Rules of Procedure
 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100)