summaryrefslogtreecommitdiffstats
path: root/config.cfg.dist
diff options
context:
space:
mode:
Diffstat (limited to 'config.cfg.dist')
-rw-r--r--config.cfg.dist61
1 files changed, 61 insertions, 0 deletions
diff --git a/config.cfg.dist b/config.cfg.dist
new file mode 100644
index 0000000..ce3ac18
--- /dev/null
+++ b/config.cfg.dist
@@ -0,0 +1,61 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+SECRET_KEY = 'secret_key_to_fill_in'
+MAX_CONTENT_LENGTH = 10 * 1024 * 1024
+DEBUG = False
+LOG_FILE_PATH = 'app.log'
+
+FORM_START_YEAR = 2000
+ALLOWED_EXTENSIONS = ['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'zip', 'gs',
+'gz', 'html' ]
+
+STUDIES = {
+ 'informatik' : [
+ ('alp1', u'ALP1 - Funktionale Programmierung'),
+ ('alp2', u'ALP2 - Objektorientierte Programmierung'),
+ ('alp3', u'ALP3 - Datenstrukturen'),
+ ('alp4', u'ALP4 - Nichtsequentielle Programmierung'),
+ ('alp5', u'ALP5 - Netzprogrammierung'),
+ ('ti1', u'TI1 - Grundlagen der Technischen Informatik'),
+ ('ti2', u'TI2 - Rechnerarchitektur'),
+ ('ti3', u'TI3 - Betriebs- und Kommunikationssysteme'),
+ ('mafi1', u'MafI1 - Logik und Diskrete Mathematik'),
+ ('mafi2', u'MafI2 - Analysis'),
+ ('mafi3', u'MafI3 - Lineare Algebra'),
+ ('gti', u'Grundlagen der Theoretischen Informatik'),
+ ('dbs', u'Datenbanksysteme'),
+ ('swt', u'Softwaretechnik'),
+ ('aws', u'Anwendungssysteme') ],
+ 'bioinformatik' : [
+ ('info_a', u'Informatik A'),
+ ('info_b', u'Informatik B'),
+ ('alp', u'Algorithmen und Datenstrukturen'),
+ ('albio', u'Algorithmische Bioinformatik'),
+ ('lina', u'Mathematik I (Lineare Algebra)'),
+ ('ana', u'Mathematik II (Analysis)'),
+ ('coma1', u'Computerorientierte Mathematik 1'),
+ ('coma2', u'Computerorientierte Mathematik 2'),
+ ('bio_stat1', u'Statistik für Biowissenschaften 1'),
+ ('bio_stat2', u'Statistik für Biowissenschaften 2'),
+ ('allg_chemie', u'Allgemeine Chemie'),
+ ('molbio1', u'Molekularbiologie und Biochemie 1'),
+ ('molbio2', u'Molekularbiologie und Biochemie 2'),
+ ('molbio3', u'Molekularbiologie und Biochemie 3'),
+ ('genetik', u'Genetik'),
+ ('physio1', u'Physiologie 1'),
+ ('physio2', u'Physiologie 2'),
+ ('dbs', u'Datenbanksysteme')
+ ],
+ 'mathematik' : [
+ ('ana1', u'Analysis 1'),
+ ('ana2', u'Analysis 2'),
+ ('ana3', u'Analysis 3'),
+ ('coma1', u'Computerorientierte Mathematik 1'),
+ ('coma2', u'Computerorientierte Mathematik 2'),
+ ('lina1', u'Lineare Algebra 1'),
+ ('lina2', u'Lineare Algebra 2'),
+ ('stochastik1', u'Stochastik 1'),
+ ('numerik1', u'Numerik 1')
+ ]
+}