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 = "de"
16 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
23 """ToDo: if translation is completed, switch to en """
24 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
30 return render_template(get_locale() + "/index.html")
34 global LANGUAGE_SELECTED
35 LANGUAGE_SELECTED = "de"
36 return render_template("/de/index.html")
40 global LANGUAGE_SELECTED
41 LANGUAGE_SELECTED = "en"
42 return render_template("/en/index.html")
44 @app.route("/competition")
46 return render_template(get_locale() + "/competition.html", act="competition")
50 return render_template(get_locale() + "/task.html", act="task")
52 @app.route("/submission")
54 return render_template(get_locale() + "/submission.html", act="submission")
56 @app.route("/coursematerial")
58 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
60 @app.route("/imprint")
62 return render_template(get_locale() + "/imprint.html", act="imprint")
64 @app.route("/privacy")
66 return render_template(get_locale() + "/privacy.html", act="privacy")
68 @app.route("/competition/2013")
69 def competition_2013():
70 print get_locale() + "/archive/competitions/2013/index.html"
71 return render_template(get_locale() + "/archive/competitions/2013/index.html",
74 @app.route("/competition/2014")
75 def competition_2014():
76 print get_locale() + "/archive/competitions/2014/index.html"
77 return render_template(get_locale() + "/archive/competitions/2014/index.html",
80 @app.route(_("/dates"))
82 return render_template(get_locale() + "/dates.html",
86 @app.errorhandler(404)
87 def page_not_found(e):
88 return render_template(get_locale() + "/404.html")
90 if __name__ == "__main__":
91 app.run(host='localhost', port=5014, debug=True)