1 # -*- coding: utf-8 -*-
6 from docutils.core import publish_parts
7 from flask import Flask
8 from flask import render_template
9 from flask import request
10 from flask.ext.babel import gettext as _
11 from flask.ext.babel import Babel
12 from config import LANGUAGES
13 from sayings import get_saying
16 LANGUAGE_SELECTED = "de"
17 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
22 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
25 def get_content(filename, overrides=None):
27 if os.path.isfile(filename):
28 with codecs.open(filename, 'r', 'utf-8') as f:
31 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
35 menue = [('/competition', _(u'Competition')),
36 ('/task', _(u'Task')),
37 ('/coursematerial', _(u'Coursematerial')),
38 ('/submission', _(u'Submission')),
39 ('/prizes', _(u'Prizes')),
43 app.jinja_env.globals.update(get_topmenue=get_topmenue)
48 """ToDo: if translation is completed, switch to en """
49 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
55 saying, author = get_saying()
56 return render_template("/index.html",
59 competition_info=_(u'About Competition'),
61 impressions=_(u'Impressions'))
65 global LANGUAGE_SELECTED
66 LANGUAGE_SELECTED = "de"
67 saying, author = get_saying()
68 return render_template("/index.html",
71 competition_info=_(u'About Competition'),
73 impressions=_(u'Impressions'))
77 saying, author = get_saying()
78 global LANGUAGE_SELECTED
79 LANGUAGE_SELECTED = "en"
80 return render_template("/index.html",
83 competition_info=_(u'About Competition'),
85 impressions=_(u'Impressions'))
87 @app.route("/competition")
89 filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
90 content = get_content(filename)
91 return render_template("/content.html", act="competition", content=content)
95 filename = os.path.join("templates", get_locale(), "rst", "task.rst")
96 content = get_content(filename)
97 return render_template("/content.html", act="task", content=content)
99 @app.route("/submission")
101 filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
102 content = get_content(filename)
103 return render_template("/content.html", act="submission", content=content)
105 @app.route("/coursematerial")
106 def coursematerial():
107 filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
108 content = get_content(filename)
109 return render_template("/content.html", act="coursematerial", content=content)
111 @app.route("/imprint")
113 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
114 content = get_content(filename)
115 return render_template("/content.html", act="imprint", content=content)
117 @app.route("/privacy")
119 filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
121 'initial_header_level': 2,
123 content = get_content(filename, overrides=overrides)
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("/prizes")
135 filename = os.path.join("templates", get_locale(), "rst", "prizes.rst")
137 'initial_header_level': 2,
139 content = get_content(filename, overrides=overrides)
140 return render_template("/prizes.html",act="prizes", content=content)
144 @app.route("/competition/2013")
145 def competition_2013():
146 competition = _(u'Competition 2013')
147 introduction = _(u'The winners of the programming competition, '
148 u'showed at the PyCon.DE 2013 in Cologne their results. '
149 u'A short presentation inlcuding a movie about their work done.')
150 article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'),
151 _(u'A long applause showed up.'
152 u' Valentin had 9 months ago learned Python and Blender discovered earlier. '
153 u'His Skatsimulation even includes 3D sound.'),
154 _(u'The preparatory courses were made by volunteers, such as the '
155 u'employees of the magazine "Time Online" performed. '
156 u'The following blog entry is a little impression of the success of the courses'),
158 game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«')
159 skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«')
160 awards = _(u'The award ceremony')
161 return render_template("/impressions_2013.html",
162 act="competition_2013",
163 competition=competition,
164 introduction=introduction,
166 game_of_life=game_of_life,
167 skat_simulation=skat_simulation,
171 @app.errorhandler(404)
172 def page_not_found(e):
173 msg = _(u"Url: %(url)s not found", url=request.url)
174 info = _(u"This information is not available!")
175 return render_template("404.html", msg=msg, info=info)
177 if __name__ == "__main__":
178 app.run(host='localhost', port=5014, debug=True)