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'
29 def get_content(filename):
31 if os.path.isfile(filename):
32 with codecs.open(filename, 'r', 'utf-8') as f:
35 content = publish_parts(rst_data, writer_name='html')['html_body']
39 menue = [('/competition', _(u'Competition')),
40 ('/task', _(u'Task')),
41 ('/submission', _(u'Submission')),
42 ('/coursematerial', _(u'Coursematerial')),
46 app.jinja_env.globals.update(get_topmenue=get_topmenue)
51 """ToDo: if translation is completed, switch to en """
52 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
58 saying, author = get_saying()
59 return render_template("/index.html",
62 competition_info=_(u'About Competition'),
64 impressions=_(u'Impressions'))
68 global LANGUAGE_SELECTED
69 LANGUAGE_SELECTED = "de"
70 saying, author = get_saying()
71 return render_template("/index.html",
74 competition_info=_(u'About Competition'),
76 impressions=_(u'Impressions'))
80 saying, author = get_saying()
81 global LANGUAGE_SELECTED
82 LANGUAGE_SELECTED = "en"
83 return render_template("/index.html",
86 competition_info=_(u'About Competition'),
88 impressions=_(u'Impressions'))
90 @app.route("/competition")
92 filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
93 content = get_content(filename)
94 return render_template("/content.html", act="competition", content=content)
98 filename = os.path.join("templates", get_locale(), "rst", "task.rst")
99 content = get_content(filename)
100 return render_template("/content.html", act="task", content=content)
102 @app.route("/submission")
104 filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
105 content = get_content(filename)
106 return render_template("/content.html", act="submission", content=content)
108 @app.route("/coursematerial")
109 def coursematerial():
110 filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
111 content = get_content(filename)
112 return render_template("/content.html", act="coursematerial", content=content)
114 @app.route("/imprint")
116 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
117 content = get_content(filename)
118 return render_template("/content.html", act="imprint", content=content)
120 @app.route("/privacy")
122 filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
123 content = get_content(filename)
124 return render_template("/content.html", act="privacy", content=content)
128 filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
129 content = get_content(filename)
130 return render_template("/content.html",
131 act="dates", content=content)
133 @app.route("/competition/2013")
134 def competition_2013():
135 print get_locale() + "/archive/competitions/2013/index.html"
136 return render_template(get_locale() + "/archive/competitions/2013/index.html",
137 act="coursematerial")
139 @app.route("/competition/2014")
140 def competition_2014():
141 print get_locale() + "/archive/competitions/2014/index.html"
142 return render_template(get_locale() + "/archive/competitions/2014/index.html",
143 act="coursematerial")
145 @app.errorhandler(404)
146 def page_not_found(e):
147 msg = _(u"Url: %(url)s not found" , url=request.url)
148 info = _(u"This information is not available!")
149 return render_template("404.html", msg=msg, info=info)
151 if __name__ == "__main__":
152 app.run(host='localhost', port=5014, debug=True)