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
13 from sayings import get_saying
16 LANGUAGE_SELECTED = "de"
17 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
22 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
25 def get_content(filename, overrides=None):
27 if os.path.isfile(filename):
28 with codecs.open(filename, 'r', 'utf-8') as f:
31 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
35 menue = [('/eskp', _(u'ESKP')),
36 ('/ozoneloss', _(u'Ozoneloss')),
37 ('/iek-7', _(u'IEK-7')),
41 app.jinja_env.globals.update(get_topmenue=get_topmenue)
46 """ToDo: if translation is completed, switch to en """
47 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
53 saying, author = get_saying()
54 return render_template("/index.html",
57 eskp_info=_(u'About ESKP'),
62 global LANGUAGE_SELECTED
63 LANGUAGE_SELECTED = "de"
64 saying, author = get_saying()
65 return render_template("/index.html",
68 eskp_info=_(u'About ESKP'),
73 saying, author = get_saying()
74 global LANGUAGE_SELECTED
75 LANGUAGE_SELECTED = "en"
76 return render_template("/index.html",
79 eskp_info=_(u'About ESKP'),
84 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
85 content = get_content(filename)
86 return render_template("/content.html", act="eskp", content=content)
88 @app.route("/ozoneloss")
90 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
91 content = get_content(filename)
94 return render_template("/content.html", act="ozoneloss", content=content)
98 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
99 content = get_content(filename)
100 return render_template("/content.html", act="submission", content=content)
103 @app.route("/imprint")
105 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
106 content = get_content(filename)
107 return render_template("/content.html", act="imprint", content=content)
111 @app.errorhandler(404)
112 def page_not_found(e):
113 msg = _(u"Url: %(url)s not found", url=request.url)
114 info = _(u"This information is not available!")
115 return render_template("404.html", msg=msg, info=info)
117 if __name__ == "__main__":
118 app.run(host='localhost', port=5014, debug=True)