comparison README @ 39:d2c45f4ba57e

add downloads.html
author souliane <souliane@mailoo.org>
date Tue, 27 Jan 2015 18:23:39 +0100
parents 31d196cf3b34
children dfe7139dae0a
comparison
equal deleted inserted replaced
38:e501f5ff7191 39:d2c45f4ba57e
33 33
34 ** SETTINGS ** 34 ** SETTINGS **
35 35
36 The following values can be set in site's settings.py: 36 The following values can be set in site's settings.py:
37 37
38 # this link should point to a SàT archive in the form sat-version.tar.bz2 38 # External URL pointing the projects archives directory
39 SAT_LINK_PATH = '/path/to/sat_link.tar.bz2' 39 PROJECTS_EXTERNAL_PATH = 'ftp://ftp.goffi.org'
40 40
41 # this prefix will be joined to the filename pointed by the previous link 41 # Internal path to the projects archives directory
42 SAT_DL_PREFIX = 'ftp://ftp.goffi.org/sat' 42 PROJECTS_INTERNAL_PATH = '/var/www/projects'
43 43
44 # if set, this link will be used instead of the joined dl_prefix + filename 44 # List of couples with the project directory name and the project name (set to None if it's the same)
45 SAT_DL_PATH = 'ftp://ftp.goffi.org/sat/sat.tar.bz2' 45 PROJECTS_NAMES = [('sat', None), ('sat_media', None), ('urwid-satext', 'urwid_satext'), ('sat_pubsub', None), ('libervia', None)]
46
47 # Extension used to name the project archives
48 ARCHIVE_SUFFIX = '.tar.bz2'
46 49
47 # URL to Libervia online demo 50 # URL to Libervia online demo
48 LIBERVIA_DEMO_URL = 'https://www.libervia.org' 51 LIBERVIA_DEMO_URL = 'https://www.libervia.org'
49 52
50 # Actual number of members 53 # Actual and target number of members
51 ASSO_MEMBERS_ACTUAL = 3400 54 ASSO_MEMBERS_ACTUAL = 3400
52
53 # Target number of members
54 ASSO_MEMBERS_TARGET = 6000 55 ASSO_MEMBERS_TARGET = 6000
55 56
56 # Available amount to finance the association (in euros) 57 # Actual and target amount to finance the association (in euros)
57 ASSO_FINANCE_ACTUAL = 40000 58 ASSO_FINANCE_ACTUAL = 40000
58
59 # Target amount to finance the association (in euros)
60 ASSO_FINANCE_TARGET = 60000 59 ASSO_FINANCE_TARGET = 60000
61 60
62 # Subscription amounts defined in the Rules of Procedure 61 # Subscription amounts as defined in the Rules of Procedure
63 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100) 62 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100)
64 63
65 64
66 Note that the Django application "markdown_deux" ( https://github.com/trentm/django-markdown-deux ) is required. 65 Note that the Django application "markdown_deux" ( https://github.com/trentm/django-markdown-deux ) is required.
67 For more information, check the local_settings.py file which is distributed in the sat_website directory. 66 For more information, check the local_settings.py file which is distributed in the sat_website directory.