4 from docutils.core import publish_parts
5 from flask import Flask
6 from flask import render_template
7 from flask import request
8 from flask.ext.babel import gettext as _
9 from flask.ext.babel import Babel
10 from config import LANGUAGES
11 from sayings import get_saying
14 LANGUAGE_SELECTED = "de"
15 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
20 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
23 def get_content(filename):
25 if os.path.isfile(filename):
26 with codecs.open(filename, 'r', 'utf-8') as f:
29 content = publish_parts(rst_data, writer_name='html')['html_body']
33 menue = [('/competition', _(u'Competition')),
34 ('/task', _(u'Task')),
35 ('/submission', _(u'Submission')),
36 ('/coursematerial', _(u'Coursematerial')),
40 app.jinja_env.globals.update(get_topmenue=get_topmenue)
45 """ToDo: if translation is completed, switch to en """
46 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
52 saying, author = get_saying()
53 return render_template("/index.html",
56 competition_info=_(u'About Competition'),
58 impressions=_(u'Impressions'))
62 global LANGUAGE_SELECTED
63 LANGUAGE_SELECTED = "de"
64 saying, author = get_saying()
65 return render_template("/index.html",
68 competition_info=_(u'About Competition'),
70 impressions=_(u'Impressions'))
74 saying, author = get_saying()
75 global LANGUAGE_SELECTED
76 LANGUAGE_SELECTED = "en"
77 return render_template("/index.html",
80 competition_info=_(u'About Competition'),
82 impressions=_(u'Impressions'))
84 @app.route("/competition")
86 filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
87 content = get_content(filename)
88 return render_template("/content.html", act="competition", content=content)
92 filename = os.path.join("templates", get_locale(), "rst", "task.rst")
93 content = get_content(filename)
94 return render_template("/content.html", act="task", content=content)
96 @app.route("/submission")
98 filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
99 content = get_content(filename)
100 return render_template("/content.html", act="submission", content=content)
102 @app.route("/coursematerial")
103 def coursematerial():
104 filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
105 content = get_content(filename)
106 return render_template("/content.html", act="coursematerial", content=content)
108 @app.route("/imprint")
110 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
111 content = get_content(filename)
112 return render_template("/content.html", act="imprint", content=content)
114 @app.route("/privacy")
116 filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
117 content = get_content(filename)
118 return render_template("/content.html", act="privacy", content=content)
122 filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
123 content = get_content(filename)
124 return render_template("/content.html",
125 act="dates", content=content)
127 @app.route("/competition/2013")
128 def competition_2013():
129 filename = os.path.join("templates", get_locale(), "archive", "2013", "competitions", "rst", "2013.rst")
130 content = get_content(filename)
131 return render_template("/impressions_2013.html",
132 act="competition_2013", content=content)
135 @app.errorhandler(404)
136 def page_not_found(e):
137 msg = _(u"Url: %(url)s not found" , url=request.url)
138 info = _(u"This information is not available!")
139 return render_template("404.html", msg=msg, info=info)
141 if __name__ == "__main__":
142 app.run(host='localhost', port=5014, debug=True)