Mercurial > sat_legacy_website
comparison sat_website/local_settings.py @ 60:0d20fb28c32e
many small changes:
- set opacity 0.85 to libervia screenshot on the main page
- remove videos from the repository (stored on external ftp)
- more details in the README concerning the i18n
- settings can be overriden by an external file (for the stats)
- add in basic features.html a button to experimental features
- add a link to the SàT MUC in downloads section
- add link to bugzilla + improve other links in dev/community
- add + symbol for projects using standard blogging system
- add ~ symbol for projects being no communication tool
- save subscription form results to a text file
- update press.py and links.py
author | souliane <souliane@mailoo.org> |
---|---|
date | Fri, 15 May 2015 17:15:40 +0200 |
parents | 746e53efc188 |
children | c902ce09d4ed |
comparison
equal
deleted
inserted
replaced
59:01738ae70f2d | 60:0d20fb28c32e |
---|---|
112 | 112 |
113 # External URL pointing the projects archives directory | 113 # External URL pointing the projects archives directory |
114 PROJECTS_EXTERNAL_URL = 'ftp://ftp.goffi.org' | 114 PROJECTS_EXTERNAL_URL = 'ftp://ftp.goffi.org' |
115 | 115 |
116 # Internal path to the the projects archives directory | 116 # Internal path to the the projects archives directory |
117 PROJECTS_INTERNAL_PATH = '/var/www/projects' | 117 PROJECTS_INTERNAL_PATH = '/srv/ftp' |
118 | 118 |
119 # List of couples with the project directory name and the project name (set to None if it's the same) | 119 # List of couples with the project directory name and the project name (set to None if it's the same) |
120 PROJECTS_NAMES = [('sat', None), ('sat_media', None), ('urwid-satext', 'urwid_satext'), ('sat_pubsub', None), ('libervia', None)] | 120 PROJECTS_NAMES = [('sat', None), ('sat_media', None), ('urwid-satext', 'urwid_satext'), ('sat_pubsub', None), ('libervia', None)] |
121 | 121 |
122 # Extension used to name the project archives | 122 # Extension used to name the project archives |
134 ASSO_FINANCE_TARGET = 60000 | 134 ASSO_FINANCE_TARGET = 60000 |
135 | 135 |
136 # Subscription amounts as defined in the Rules of Procedure | 136 # Subscription amounts as defined in the Rules of Procedure |
137 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100) | 137 ASSO_SUBSCR_AMOUNTS = (0, 10, 20, 30, 50, 80, 100) |
138 | 138 |
139 # Path the CSV file where all the subscriptions are written | |
140 ASSO_SUBSCR_CSV = "/home/souliane/sat_website_subscriptions.csv" | |
141 | |
139 # Bank account information | 142 # Bank account information |
140 ASSO_IBAN = u"FR76 1027 8060 4300 0207 3220 109" | 143 ASSO_IBAN = u"FR76 1027 8060 4300 0207 3220 109" |
141 ASSO_BIC = u"CMCIFR2A" | 144 ASSO_BIC = u"CMCIFR2A" |
142 | 145 |
143 # URL to the Statutes and Rules of the association | 146 # URL to the Statutes and Rules of the association |
144 ASSO_URL_STATUTES = 'http://repos.goffi.org/sat_docs/raw-file/tip/association/statuts.pdf' | 147 ASSO_URL_STATUTES = 'http://repos.goffi.org/sat_docs/raw-file/tip/association/statuts.pdf' |
145 ASSO_URL_RULES = 'http://repos.goffi.org/sat_docs/raw-file/tip/association/r%C3%A8glement%20int%C3%A9rieur.pdf' | 148 ASSO_URL_RULES = 'http://repos.goffi.org/sat_docs/raw-file/tip/association/r%C3%A8glement%20int%C3%A9rieur.pdf' |
149 | |
150 # Import another settings file that can override these settings (for example to daily update the stats when you don't want a script to directly modify this file) | |
151 from sys import path | |
152 path.append('/home/souliane') | |
153 from sat_website_external_settings import * |