#!/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') ] }