summaryrefslogtreecommitdiffstats
path: root/config.cfg.dist
blob: ce3ac183b267a1bbbab97a2e44613d8f75378b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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')
    ]
}