1.1 --- a/eskp.py Mon May 05 10:04:09 2014 +0200
1.2 +++ b/eskp.py Mon May 05 11:30:43 2014 +0200
1.3 @@ -32,11 +32,9 @@
1.4 return content
1.5
1.6 def get_topmenue():
1.7 - menue = [('/competition', _(u'Competition')),
1.8 - ('/task', _(u'Task')),
1.9 - ('/coursematerial', _(u'Coursematerial')),
1.10 - ('/submission', _(u'Submission')),
1.11 - ('/prizes', _(u'Prizes')),
1.12 + menue = [('/eskp', _(u'ESKP')),
1.13 + ('/ozoneloss', _(u'Ozoneloss')),
1.14 + ('/iek-7', _(u'IEK-7')),
1.15 ]
1.16 return menue
1.17
1.18 @@ -56,9 +54,8 @@
1.19 return render_template("/index.html",
1.20 saying=saying,
1.21 author=author,
1.22 - competition_info=_(u'About Competition'),
1.23 - dates=_(u'Dates'),
1.24 - impressions=_(u'Impressions'))
1.25 + eskp_info=_(u'About ESKP'),
1.26 + )
1.27
1.28 @app.route('/de')
1.29 def de():
1.30 @@ -68,9 +65,8 @@
1.31 return render_template("/index.html",
1.32 saying=saying,
1.33 author=author,
1.34 - competition_info=_(u'About Competition'),
1.35 - dates=_(u'Dates'),
1.36 - impressions=_(u'Impressions'))
1.37 + eskp_info=_(u'About ESKP'),
1.38 + )
1.39
1.40 @app.route('/en')
1.41 def en():
1.42 @@ -80,33 +76,29 @@
1.43 return render_template("/index.html",
1.44 saying=saying,
1.45 author=author,
1.46 - competition_info=_(u'About Competition'),
1.47 - dates=_(u'Dates'),
1.48 - impressions=_(u'Impressions'))
1.49 + eskp_info=_(u'About ESKP'),
1.50 + )
1.51
1.52 -@app.route("/competition")
1.53 -def competition():
1.54 - filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
1.55 +@app.route("/eskp")
1.56 +def eskp():
1.57 + filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
1.58 content = get_content(filename)
1.59 - return render_template("/content.html", act="competition", content=content)
1.60 + return render_template("/content.html", act="eskp", content=content)
1.61
1.62 -@app.route("/task")
1.63 +@app.route("/ozoneloss")
1.64 def task():
1.65 - filename = os.path.join("templates", get_locale(), "rst", "task.rst")
1.66 + filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
1.67 content = get_content(filename)
1.68 - return render_template("/content.html", act="task", content=content)
1.69 + print content
1.70 + print filename
1.71 + return render_template("/content.html", act="ozoneloss", content=content)
1.72
1.73 -@app.route("/submission")
1.74 +@app.route("/iek-7")
1.75 def submission():
1.76 - filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
1.77 + filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
1.78 content = get_content(filename)
1.79 return render_template("/content.html", act="submission", content=content)
1.80
1.81 -@app.route("/coursematerial")
1.82 -def coursematerial():
1.83 - filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
1.84 - content = get_content(filename)
1.85 - return render_template("/content.html", act="coursematerial", content=content)
1.86
1.87 @app.route("/imprint")
1.88 def imprint():
1.89 @@ -114,58 +106,6 @@
1.90 content = get_content(filename)
1.91 return render_template("/content.html", act="imprint", content=content)
1.92
1.93 -@app.route("/privacy")
1.94 -def privacy():
1.95 - filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
1.96 - overrides = {
1.97 - 'initial_header_level': 2,
1.98 - }
1.99 - content = get_content(filename, overrides=overrides)
1.100 - return render_template("/content.html", act="privacy", content=content)
1.101 -
1.102 -@app.route("/dates")
1.103 -def dates():
1.104 - filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
1.105 - content = get_content(filename)
1.106 - return render_template("/content.html",
1.107 - act="dates", content=content)
1.108 -
1.109 -@app.route("/prizes")
1.110 -def prizes():
1.111 - filename = os.path.join("templates", get_locale(), "rst", "prizes.rst")
1.112 - overrides = {
1.113 - 'initial_header_level': 2,
1.114 - }
1.115 - content = get_content(filename, overrides=overrides)
1.116 - return render_template("/prizes.html",act="prizes", content=content)
1.117 -
1.118 -
1.119 -
1.120 -@app.route("/competition/2013")
1.121 -def competition_2013():
1.122 - competition = _(u'Competition 2013')
1.123 - introduction = _(u'The winners of the programming competition, '
1.124 - u'showed at the PyCon.DE 2013 in Cologne their results. '
1.125 - u'A short presentation inlcuding a movie about their work done.')
1.126 - article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'),
1.127 - _(u'A long applause showed up.'
1.128 - u' Valentin had 9 months ago learned Python and Blender discovered earlier. '
1.129 - u'His Skatsimulation even includes 3D sound.'),
1.130 - _(u'The preparatory courses were made by volunteers, such as the '
1.131 - u'employees of the magazine "Time Online" performed. '
1.132 - u'The following blog entry is a little impression of the success of the courses'),
1.133 - ]
1.134 - game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«')
1.135 - skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«')
1.136 - awards = _(u'The award ceremony')
1.137 - return render_template("/impressions_2013.html",
1.138 - act="competition_2013",
1.139 - competition=competition,
1.140 - introduction=introduction,
1.141 - article=article,
1.142 - game_of_life=game_of_life,
1.143 - skat_simulation=skat_simulation,
1.144 - awards=awards)
1.145
1.146
1.147 @app.errorhandler(404)