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
14 from sayings import get_saying
16 LANGUAGE_SELECTED = "de"
17 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
24 """ToDo: if translation is completed, switch to en """
25 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
31 saying, author = get_saying()
32 return render_template(get_locale() + "/index.html",
38 global LANGUAGE_SELECTED
39 LANGUAGE_SELECTED = "de"
40 return render_template("/de/index.html")
44 global LANGUAGE_SELECTED
45 LANGUAGE_SELECTED = "en"
46 return render_template("/en/index.html")
48 @app.route("/competition")
50 return render_template(get_locale() + "/competition.html", act="competition")
54 return render_template(get_locale() + "/task.html", act="task")
56 @app.route("/submission")
58 return render_template(get_locale() + "/submission.html", act="submission")
60 @app.route("/coursematerial")
62 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
64 @app.route("/imprint")
66 return render_template(get_locale() + "/imprint.html", act="imprint")
68 @app.route("/privacy")
70 return render_template(get_locale() + "/privacy.html", act="privacy")
72 @app.route("/competition/2013")
73 def competition_2013():
74 print get_locale() + "/archive/competitions/2013/index.html"
75 return render_template(get_locale() + "/archive/competitions/2013/index.html",
78 @app.route("/competition/2014")
79 def competition_2014():
80 print get_locale() + "/archive/competitions/2014/index.html"
81 return render_template(get_locale() + "/archive/competitions/2014/index.html",
84 @app.route(_("/dates"))
86 return render_template(get_locale() + "/dates.html",
90 @app.errorhandler(404)
91 def page_not_found(e):
92 return render_template(get_locale() + "/404.html")
94 if __name__ == "__main__":
95 app.run(host='localhost', port=5014, debug=True)