summaryrefslogtreecommitdiffstats
path: root/config.cfg.dist
blob: 43b82b66e070a78f96bc0384ae1ad490fd65a45b (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
62
#!/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' : [
    (u'ALP1 - Funktionale Programmierung'),
    (u'ALP2 - Objektorientierte Programmierung'),
    (u'ALP3 - Datenstrukturen'),
    (u'ALP4 - Nichtsequentielle Programmierung'),
    (u'ALP5 - Netzprogrammierung'),
    (u'TI1 - Grundlagen der Technischen Informatik'),
    (u'TI2 - Rechnerarchitektur'),
    (u'TI3 - Betriebs- und Kommunikationssysteme'),
    (u'MafI1 - Logik und Diskrete Mathematik'),
    (u'MafI2 - Analysis'),
    (u'MafI3 - Lineare Algebra'),
    (u'Grundlagen der Theoretischen Informatik'),
    (u'Datenbanksysteme'),
    (u'Softwaretechnik'),
    (u'Anwendungssysteme')
  ],
  'bioinformatik' : [
    (u'Informatik A'),
    (u'Informatik B'),
    (u'Algorithmen und Datenstrukturen'),
    (u'Algorithmische Bioinformatik'),
    (u'Mathematik I (Lineare Algebra)'),
    (u'Mathematik II (Analysis)'),
    (u'Computerorientierte Mathematik 1'),
    (u'Computerorientierte Mathematik 2'),
    (u'Statistik für Biowissenschaften 1'),
    (u'Statistik für Biowissenschaften 2'),
    (u'Allgemeine Chemie'),
    (u'Molekularbiologie und Biochemie 1'),
    (u'Molekularbiologie und Biochemie 2'),
    (u'Molekularbiologie und Biochemie 3'),
    (u'Genetik'),
    (u'Physiologie 1'),
    (u'Physiologie 2'),
    (u'Datenbanksysteme')
  ],
  'mathematik' : [
    (u'Analysis 1'),
    (u'Analysis 2'),
    (u'Analysis 3'),
    (u'Computerorientierte Mathematik 1'),
    (u'Computerorientierte Mathematik 2'),
    (u'Lineare Algebra 1'),
    (u'Lineare Algebra 2'),
    (u'Stochastik 1'),
    (u'Numerik 1')
  ]
}