1 # -*- coding: utf-8 -*-
10 from docutils.core import publish_parts
11 from flask import Flask
12 from flask import render_template
13 from flask import request
14 from flask.ext.babel import gettext as _
15 from flask.ext.babel import Babel
16 from config import LANGUAGES
20 LANGUAGE_SELECTED = "de"
21 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
23 # We need the path of this file to find templates to translate
24 ESKP_PATH = os.path.dirname(os.path.abspath(__file__))
29 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
33 def get_vcard(filename):
34 with codecs.open(filename, 'r', 'utf-8') as f:
37 return vobject.readOne(vcard)
40 def get_content(filename, overrides=None):
42 filename = os.path.join(ESKP_PATH, filename)
43 if os.path.isfile(filename):
44 with codecs.open(filename, 'r', 'utf-8') as f:
47 content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
52 ('/ozoneloss', _(u'Ozoneloss')),
53 ('/eskp', _(u'ESKP')),
54 ('/iek-7', _(u'IEK-7')),
58 app.jinja_env.globals.update(get_topmenue=get_topmenue)
60 def get_o3lossclams_dates():
61 menue = [('/ozoneloss/clams/2012', _(u'2012')),
62 ('/ozoneloss/clams/2011', _(u'2011')),
63 ('/ozoneloss/clams/2010', _(u'2010')),
68 menue = [('/ozoneloss/vpsc/2014', _(u'2014')),
69 ('/ozoneloss/vpsc/2013', _(u'2013')),
70 ('/ozoneloss/vpsc/2012', _(u'2012')),
71 ('/ozoneloss/vpsc/2011', _(u'2011')),
72 ('/ozoneloss/vpsc/2010', _(u'2010')),
76 app.jinja_env.globals.update(get_o3lossclams_dates=get_o3lossclams_dates)
77 app.jinja_env.globals.update(get_vpsc_dates=get_vpsc_dates)
80 def modal_info(template, act, title, filename):
81 content = get_content(filename)
82 html = render_template(template, act=act, title=title, content=content, exit=_(u"Close"))
88 """ToDo: if translation is completed, switch to en """
89 return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
95 return render_template("/index.html",
96 eskp_info=_(u'About ESKP'),
100 @app.route('/ozoneloss/clams/<year>')
101 def ozoneloss_clams_year(year):
102 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
103 content = get_content(filename)
104 return render_template("/ozoneloss_clams.html", act="ozoneloss/clams/%s" % year, content=content, year=year)
107 @app.route('/ozoneloss/vpsc/<year>')
108 def ozoneloss_vspc_year(year):
109 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
110 content = get_content(filename)
111 filename = os.path.join("templates", get_locale(), "rst", "explanation_vpsc.rst")
112 explanation = get_content(filename)
114 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc/%s" % year, content=content,
115 content_explanation=explanation, year=year)
119 global LANGUAGE_SELECTED
120 LANGUAGE_SELECTED = "de"
121 return render_template("/index.html",
122 eskp_info=_(u'About ESKP'),
127 global LANGUAGE_SELECTED
128 LANGUAGE_SELECTED = "en"
129 return render_template("/index.html",
130 eskp_info=_(u'About ESKP'),
135 filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
136 content = get_content(filename)
137 filename = os.path.join("templates", get_locale(), "rst", "eskp_title.rst")
138 headline = get_content(filename)
139 return render_template("/eskp.html", act="eskp", content=content, headline=headline)
142 def qr_image_data(card):
143 buf= StringIO.StringIO()
146 error_correction=qrcode.constants.ERROR_CORRECT_L,
150 qr.add_data(card.serialize())
152 img = qr.make_image()
154 image = buf.getvalue()
155 return base64.b64encode(image)
158 @app.route("/ozoneloss")
161 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
162 content = get_content(filename)
164 vcard_file = os.path.join("vcards", "jug.vcf")
167 card = get_vcard(vcard_file)
171 qr_image = qr_image_data(card)
172 author = render_template("/author_info.html", act="author", title=_(u"Ozoneloss"),
173 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
175 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_publications.rst")
176 publications = modal_info("/publications_info.html", "publications", _(u"Ozoneloss"), filename)
177 return render_template("/ozoneloss.html", act="ozoneloss", content=content,
178 author=author,card=card, publications=publications )
180 @app.route("/ozoneloss/clams")
181 def ozoneloss_clams():
182 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_clams.rst")
183 content = get_content(filename)
184 return render_template("/ozoneloss_clams.html", act="ozoneloss/clams", content=content)
186 @app.route("/ozoneloss/vpsc")
187 def ozoneloss_vspc():
188 filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_vpsc.rst")
189 content = get_content(filename)
190 return render_template("/ozoneloss_vpsc.html", act="ozoneloss/vpsc", content=content)
194 filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
195 content = get_content(filename)
196 vcard_file = os.path.join("vcards", "sas.vcf")
199 card = get_vcard(vcard_file)
203 qr_image = qr_image_data(card)
204 author = render_template("/author_info.html", act="author", title=_(u"IEK-7"),
205 card=card, image=qr_image, contact=_(u"Contact"), exit=_(u"Close"))
207 return render_template("/iek-7.html", act="iek-7", content=content,
208 author=author, card=card, contact = u"IEK-7")
211 @app.route("/imprint")
213 filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
214 content = get_content(filename)
215 return render_template("/content.html", act="imprint", content=content)
221 @app.errorhandler(404)
222 def page_not_found(e):
223 msg = _(u"Url: %(url)s not found", url=request.url)
224 info = _(u"This information is not available!")
225 return render_template("404.html", msg=msg, info=info)
227 if __name__ == "__main__":
228 app.run(host='localhost', port=5014, debug=True)