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
17 # We need the path of this file to find templates to translate
18 ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
23 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
26 def get_content(filename, overrides=None):
28 filename = os.path.join(ESKP_PATH, filename)
29 if os.path.isfile(filename):
30 with codecs.open(filename, 'r', 'utf-8') as f:
33 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
38 ('/ozoneloss', _(u'Ozoneloss')),
39 ('/eskp', _(u'ESKP')),
40 ('/iek-7', _(u'IEK-7')),
44 app.jinja_env.globals.update(get_topmenue=get_topmenue)
46 def get_ozone_dates():
47 menue = [('/ozoneloss/2014', _(u'2014')),
48 ('/ozoneloss/2013', _(u'2013')),
49 ('/ozoneloss/2012', _(u'2012')),
50 ('/ozoneloss/2011', _(u'2011')),
51 ('/ozoneloss/2010', _(u'2010')),
55 app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates)
59 """ToDo: if translation is completed, switch to en """
60 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
66 return render_template("/index.html",
67 eskp_info=_(u'About ESKP'),
71 @app.route('/ozoneloss/2014')
73 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
74 content = get_content(filename)
75 return render_template("/ozoneloss.html", act="ozoneloss/2014", content=content, year=2014)
77 @app.route('/ozoneloss/2013')
79 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
80 content = get_content(filename)
81 return render_template("/ozoneloss.html", act="ozoneloss/2013", content=content, year=2013)
83 @app.route('/ozoneloss/2012')
85 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
86 content = get_content(filename)
87 return render_template("/ozoneloss.html", act="ozoneloss/2012", content=content, year=2012)
89 @app.route('/ozoneloss/2011')
91 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
92 content = get_content(filename)
93 return render_template("/ozoneloss.html", act="ozoneloss/2011", content=content, year=2011)
95 @app.route('/ozoneloss/2010')
97 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
98 content = get_content(filename)
99 return render_template("/ozoneloss.html", act="ozoneloss/2010", content=content, year=2010)
103 global LANGUAGE_SELECTED
104 LANGUAGE_SELECTED = "de"
105 saying, author = get_saying()
106 return render_template("/index.html",
109 eskp_info=_(u'About ESKP'),
114 saying, author = get_saying()
115 global LANGUAGE_SELECTED
116 LANGUAGE_SELECTED = "en"
117 return render_template("/index.html",
120 eskp_info=_(u'About ESKP'),
125 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
126 content = get_content(filename)
127 return render_template("/content.html", act="eskp", content=content)
129 @app.route("/ozoneloss")
131 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
132 content = get_content(filename)
133 return render_template("/ozoneloss.html", act="ozoneloss", content=content, year=2014)
137 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
138 content = get_content(filename)
139 return render_template("/content.html", act="submission", content=content)
142 @app.route("/imprint")
144 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
145 content = get_content(filename)
146 return render_template("/content.html", act="imprint", content=content)
150 @app.errorhandler(404)
151 def page_not_found(e):
152 msg = _(u"Url: %(url)s not found", url=request.url)
153 info = _(u"This information is not available!")
154 return render_template("404.html", msg=msg, info=info)
156 if __name__ == "__main__":
157 app.run(host='localhost', port=5014, debug=True)