1 # -*- coding: utf-8 -*-
6 from docutils.core import publish_parts
7 from flask import Flask, Response
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'
25 def get_content(filename, overrides=None):
27 filename = os.path.join(ESKP_PATH, filename)
28 if os.path.isfile(filename):
29 with codecs.open(filename, 'r', 'utf-8') as f:
32 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
37 ('/ozoneloss', _(u'Ozoneloss')),
38 ('/eskp', _(u'ESKP')),
39 ('/iek-7', _(u'IEK-7')),
43 app.jinja_env.globals.update(get_topmenue=get_topmenue)
45 def get_o3lossclams_dates():
46 menue = [('/ozoneloss/clams/2012', _(u'2012')),
47 ('/ozoneloss/clams/2011', _(u'2011')),
48 ('/ozoneloss/clams/2010', _(u'2010')),
53 menue = [('/ozoneloss/vpsc/2014', _(u'2014')),
54 ('/ozoneloss/vpsc/2013', _(u'2013')),
55 ('/ozoneloss/vpsc/2012', _(u'2012')),
56 ('/ozoneloss/vpsc/2011', _(u'2011')),
57 ('/ozoneloss/vpsc/2010', _(u'2010')),
61 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
62 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
65 def modal_info(template, act, title, filename):
66 content = get_content(filename)
68 html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
74 """ToDo: if translation is completed, switch to en """
75 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
81 return render_template("/index.html",
82 eskp_info=_(u'About ESKP'),
86 @app.route('/ozoneloss/clams/<year>')
87 def ozoneloss_clams_year(year):
88 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
89 content = get_content(filename)
90 return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
93 @app.route('/ozoneloss/vpsc/<year>')
94 def ozoneloss_vspc_year(year):
95 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
96 content = get_content(filename)
97 filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
98 explanation = get_content(filename)
100 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
101 content_explanation=explanation, year=year)
105 global LANGUAGE_SELECTED
106 LANGUAGE_SELECTED = "de"
107 return render_template("/index.html",
108 eskp_info=_(u'About ESKP'),
113 global LANGUAGE_SELECTED
114 LANGUAGE_SELECTED = "en"
115 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("/eskp.html", act="eskp", content=content)
126 @app.route("/ozoneloss")
128 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
129 content = get_content(filename)
130 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_author.rst")
131 author = modal_info("/author_info.html", "author", _(u"Ozoneloss"), filename)
132 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
133 publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
134 return render_template("/ozoneloss.html", act="ozoneloss", content=content,
135 author=author, contact = u"Dr. Jens-Uwe Grooß", publications=publications )
137 @app.route("/ozoneloss/clams")
138 def ozoneloss_clams():
139 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
140 content = get_content(filename)
141 return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
143 @app.route("/ozoneloss/vpsc")
144 def ozoneloss_vspc():
145 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
146 content = get_content(filename)
147 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
151 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
152 content = get_content(filename)
153 filename = os.path.join("templates", get_locale(), "rst", "iek-7_author.rst")
154 author = modal_info("/author_info.html", "author", _(u"IEK-7"), filename)
155 return render_template("/iek-7.html", act="iek-7", content=content,
156 author=author, contact = u"Sandra Stein")
159 @app.route("/imprint")
161 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
162 content = get_content(filename)
163 return render_template("/content.html", act="imprint", content=content)
169 @app.errorhandler(404)
170 def page_not_found(e):
171 msg = _(u"Url: %(url)s not found", url=request.url)
172 info = _(u"This information is not available!")
173 return render_template("404.html", msg=msg, info=info)
175 if __name__ == "__main__":
176 app.run(host='localhost', port=5014, debug=True)