1 from flask import Flask
2 from flask import render_template
3 from flask import request
4 from flask import abort, redirect, url_for
6 from flask import send_from_directory
8 from logging import Formatter
10 from flask.ext.babel import gettext as _
11 from flask.ext.babel import Babel
13 from config import LANGUAGES
15 LANGUAGE_SELECTED = None
22 """ToDo: if translation is completed, switch to en """
23 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
29 return render_template(get_locale() + "/index.html")
33 global LANGUAGE_SELECTED
34 LANGUAGE_SELECTED = "de"
35 return render_template("/de/index.html")
39 global LANGUAGE_SELECTED
40 LANGUAGE_SELECTED = "en"
41 return render_template("/en/index.html")
43 @app.route("/competition")
45 return render_template(get_locale() + "/competition.html", act="competition")
49 return render_template(get_locale() + "/task.html", act="task")
51 @app.route("/submission")
53 return render_template(get_locale() + "/submission.html", act="submission")
55 @app.route("/coursematerial")
57 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
59 @app.route("/imprint")
61 return render_template(get_locale() + "/imprint.html", act="imprint")
63 @app.route("/privacy")
65 return render_template(get_locale() + "/privacy.html", act="privacy")
68 @app.route(_("/competition-2013"))
69 def competition_2013():
70 return render_template(get_locale() + "/archive/competitions/2013/comptetition_2013.html",
73 @app.route(_("/competition-2014"))
74 def competition_2014():
75 return render_template(get_locale() + "archive/competitions/2014/competition_2014.html",
78 @app.route(_("/dates"))
80 return render_template(get_locale() + "/dates.html",
84 @app.errorhandler(404)
85 def page_not_found(e):
86 return render_template(get_locale() + "/404.html")
88 if __name__ == "__main__":
89 app.run(host='localhost', port=5014, debug=True)