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
21 """ToDo: if translation is completed, switch to en """
22 return request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
29 return render_template(get_locale() + "/index.html")
31 @app.route("/competition")
33 return render_template(get_locale() + "/competition.html", act="competition")
37 return render_template(get_locale() + "/task.html", act="task")
39 @app.route("/submission")
41 return render_template(get_locale() + "/submission.html", act="submission")
43 @app.route("/coursematerial")
45 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
47 @app.route("/imprint")
49 return render_template(get_locale() + "/imprint.html", act="imprint")
51 @app.route("/privacy")
53 return render_template(get_locale() + "/privacy.html", act="privacy")
55 @app.route(_("/competition-2013"))
56 def competition_2013():
57 return render_template(get_locale() + "/archive/competitions/2013/comptetition_2013.html",
60 @app.route(_("/competition-2014"))
61 def competition_2014():
62 return render_template(get_locale() + "archive/competitions/2014/competition_2014.html",
65 @app.errorhandler(404)
66 def page_not_found(e):
67 return render_template(get_locale() + "/404.html")
69 if __name__ == "__main__":
70 app.run(host='localhost', port=5014, debug=True)