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
15 from jinja2 import Environment, FileSystemLoader
18 from docutils.core import publish_parts
21 LANGUAGE_SELECTED = "de"
22 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
27 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
30 menue = [('/competition', _(u'Competition')),
31 ('/task', _(u'Task')),
32 ('/submission', _(u'Submission')),
33 ('/coursematerial', _(u'Coursematerial')),
37 app.jinja_env.globals.update(get_topmenue=get_topmenue)
42 """ToDo: if translation is completed, switch to en """
43 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
49 saying, author = get_saying()
50 return render_template("/index.html",
56 global LANGUAGE_SELECTED
57 LANGUAGE_SELECTED = "de"
58 saying, author = get_saying()
59 return render_template("/index.html",
65 saying, author = get_saying()
66 global LANGUAGE_SELECTED
67 LANGUAGE_SELECTED = "en"
68 return render_template("/index.html",
72 @app.route("/competition")
74 return render_template(get_locale() + "/competition.html", act="competition")
78 return render_template(get_locale() + "/task.html", act="task")
80 @app.route("/submission")
82 return render_template(get_locale() + "/submission.html", act="submission")
84 @app.route("/coursematerial")
86 return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
88 @app.route("/imprint")
90 return render_template(get_locale() + "/imprint.html", act="imprint")
92 @app.route("/privacy")
94 return render_template(get_locale() + "/privacy.html", act="privacy")
96 @app.route("/competition/2013")
97 def competition_2013():
98 print get_locale() + "/archive/competitions/2013/index.html"
99 return render_template(get_locale() + "/archive/competitions/2013/index.html",
100 act="coursematerial")
102 @app.route("/competition/2014")
103 def competition_2014():
104 print get_locale() + "/archive/competitions/2014/index.html"
105 return render_template(get_locale() + "/archive/competitions/2014/index.html",
106 act="coursematerial")
111 filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
112 if os.path.isfile(filename):
113 with codecs.open(filename, 'r', 'utf-8') as f:
116 content = publish_parts(rst_data, writer_name='html')['html_body']
117 return render_template("/dates.html",
118 act="dates", content=content)
121 @app.errorhandler(404)
122 def page_not_found(e):
123 msg = _(u"Url: %(url)s not found" , url=request.url)
124 info = _(u"This information is not available!")
125 return render_template("404.html", msg=msg, info=info)
127 if __name__ == "__main__":
128 app.run(host='localhost', port=5014, debug=True)