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']
39 ('/ozoneloss', _(u'Ozoneloss')),
40 ('/eskp', _(u'ESKP')),
41 ('/iek-7', _(u'IEK-7')),
45 app.jinja_env.globals.update(get_topmenue=get_topmenue)
47 def get_ozone_dates():
48 menue = [('/ozoneloss/years/2014', _(u'2014')),
49 ('/ozoneloss/years/2013', _(u'2013')),
50 ('/ozoneloss/years/2012', _(u'2012')),
51 ('/ozoneloss/years/2011', _(u'2011')),
52 ('/ozoneloss/years/2010', _(u'2010')),
56 app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates)
60 """ToDo: if translation is completed, switch to en """
61 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
67 return render_template("/index.html",
68 eskp_info=_(u'About ESKP'),
72 @app.route('/ozoneloss/years/2014')
74 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
75 content = get_content(filename)
76 return render_template("/ozoneloss_years.html", act="ozoneloss/years/2014", content=content, year=2014)
78 @app.route('/ozoneloss/years/2013')
80 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
81 content = get_content(filename)
82 return render_template("/ozoneloss_years.html", act="ozoneloss/years/2013", content=content, year=2013)
84 @app.route('/ozoneloss/years/2012')
86 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
87 content = get_content(filename)
88 return render_template("/ozoneloss_years.html", act="ozoneloss/years/2012", content=content, year=2012)
90 @app.route('/ozoneloss/years/2011')
92 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
93 content = get_content(filename)
94 return render_template("/ozoneloss_years.html", act="ozoneloss/years/2011", content=content, year=2011)
96 @app.route('/ozoneloss/years/2010')
98 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
99 content = get_content(filename)
100 return render_template("/ozoneloss_years.html", act="ozoneloss/years/2010", content=content, year=2010)
104 global LANGUAGE_SELECTED
105 LANGUAGE_SELECTED = "de"
106 saying, author = get_saying()
107 return render_template("/index.html",
110 eskp_info=_(u'About ESKP'),
115 saying, author = get_saying()
116 global LANGUAGE_SELECTED
117 LANGUAGE_SELECTED = "en"
118 return render_template("/index.html",
121 eskp_info=_(u'About ESKP'),
126 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
127 content = get_content(filename)
128 return render_template("/content.html", act="eskp", content=content)
130 @app.route("/ozoneloss")
132 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
133 content = get_content(filename)
134 return render_template("/ozoneloss.html", act="ozoneloss", content=content)
136 @app.route("/ozoneloss/years")
138 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
139 content = get_content(filename)
140 return render_template("/ozoneloss_years.html", act="ozoneloss/years", content=content)
144 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
145 content = get_content(filename)
146 return render_template("/content.html", act="submission", content=content)
149 @app.route("/imprint")
151 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
152 content = get_content(filename)
153 return render_template("/content.html", act="imprint", content=content)
157 @app.errorhandler(404)
158 def page_not_found(e):
159 msg = _(u"Url: %(url)s not found", url=request.url)
160 info = _(u"This information is not available!")
161 return render_template("404.html", msg=msg, info=info)
163 if __name__ == "__main__":
164 app.run(host='localhost', port=5014, debug=True)