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
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, overrides=None):
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', settings_overrides=overrides)['html_body']
34 ('/ozoneloss', _(u'Ozoneloss')),
35 ('/eskp', _(u'ESKP')),
36 ('/iek-7', _(u'IEK-7')),
40 app.jinja_env.globals.update(get_topmenue=get_topmenue)
42 def get_ozone_dates():
43 menue = [('/ozoneloss/2014', _(u'2014')),
44 ('/ozoneloss/2013', _(u'2013')),
45 ('/ozoneloss/2012', _(u'2012')),
46 ('/ozoneloss/2011', _(u'2011')),
47 ('/ozoneloss/2010', _(u'2010')),
51 app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates)
55 """ToDo: if translation is completed, switch to en """
56 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
62 return render_template("/index.html",
63 eskp_info=_(u'About ESKP'),
67 @app.route('/ozoneloss/2014')
69 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
70 content = get_content(filename)
71 return render_template("/ozoneloss.html", act="ozoneloss/2014", content=content, year=2014)
73 @app.route('/ozoneloss/2013')
75 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
76 content = get_content(filename)
77 return render_template("/ozoneloss.html", act="ozoneloss/2013", content=content, year=2013)
79 @app.route('/ozoneloss/2012')
81 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
82 content = get_content(filename)
83 return render_template("/ozoneloss.html", act="ozoneloss/2012", content=content, year=2012)
85 @app.route('/ozoneloss/2011')
87 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
88 content = get_content(filename)
89 return render_template("/ozoneloss.html", act="ozoneloss/2011", content=content, year=2011)
91 @app.route('/ozoneloss/2010')
93 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
94 content = get_content(filename)
95 return render_template("/ozoneloss.html", act="ozoneloss/2010", content=content, year=2010)
99 global LANGUAGE_SELECTED
100 LANGUAGE_SELECTED = "de"
101 saying, author = get_saying()
102 return render_template("/index.html",
105 eskp_info=_(u'About ESKP'),
110 saying, author = get_saying()
111 global LANGUAGE_SELECTED
112 LANGUAGE_SELECTED = "en"
113 return render_template("/index.html",
116 eskp_info=_(u'About ESKP'),
121 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
122 content = get_content(filename)
123 return render_template("/content.html", act="eskp", content=content)
125 @app.route("/ozoneloss")
127 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
128 content = get_content(filename)
129 return render_template("/ozoneloss.html", act="ozoneloss", content=content, year=2014)
133 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
134 content = get_content(filename)
135 return render_template("/content.html", act="submission", content=content)
138 @app.route("/imprint")
140 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
141 content = get_content(filename)
142 return render_template("/content.html", act="imprint", content=content)
146 @app.errorhandler(404)
147 def page_not_found(e):
148 msg = _(u"Url: %(url)s not found", url=request.url)
149 info = _(u"This information is not available!")
150 return render_template("404.html", msg=msg, info=info)
152 if __name__ == "__main__":
153 app.run(host='localhost', port=5014, debug=True)