eskp.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Tue, 06 May 2014 16:22:40 +0200
changeset 245 b209c747888e
parent 244 0310fe6b2beb
child 246 591429b20748
permissions -rwxr-xr-x
print statements removed
     1 # -*- coding: utf-8 -*-
     2 
     3 import os
     4 import codecs
     5 
     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 
    14 LANGUAGE_SELECTED = "de"
    15 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    16 
    17 app = Flask(__name__)
    18 babel = Babel(app)
    19 
    20 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    21 
    22 
    23 def get_content(filename, overrides=None):
    24     content = u""
    25     if os.path.isfile(filename):
    26         with codecs.open(filename, 'r', 'utf-8') as f:
    27             rst_data = f.read()
    28         f.close()
    29         content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
    30     return content
    31 
    32 def get_topmenue():
    33     menue = [
    34              ('/ozoneloss', _(u'Ozoneloss')),
    35              ('/eskp', _(u'ESKP')),
    36              ('/iek-7', _(u'IEK-7')),
    37             ]
    38     return menue
    39 
    40 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    41 
    42 def get_ozone_dates():
    43     menue = [('/ozoneloss/2014', _(u'2014')),
    44              ('/ozoneloss/2013', _(u'2013')),
    45              ('/ozoneloss/2012', _(u'2012')),
    46              ('/ozoneloss/2011', _(u'2011')),
    47              ('/ozoneloss/2010', _(u'2010')),
    48              ]
    49     return menue
    50 
    51 app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates)
    52 
    53 @babel.localeselector
    54 def get_locale():
    55     """ToDo: if translation is completed, switch to en """
    56     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    57 
    58 
    59 @app.route("/")
    60 @app.route("/index")
    61 def index():
    62     return render_template("/index.html",
    63                            eskp_info=_(u'About ESKP'),
    64                            )
    65 
    66 
    67 @app.route('/ozoneloss/2014')
    68 def y2014():
    69     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    70     content = get_content(filename)
    71     return render_template("/ozoneloss.html", act="ozoneloss/2014", content=content, year=2014)
    72 
    73 @app.route('/ozoneloss/2013')
    74 def y2013():
    75     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    76     content = get_content(filename)
    77     return render_template("/ozoneloss.html", act="ozoneloss/2013", content=content, year=2013)
    78 
    79 @app.route('/ozoneloss/2012')
    80 def y2012():
    81     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    82     content = get_content(filename)
    83     return render_template("/ozoneloss.html", act="ozoneloss/2012", content=content, year=2012)
    84 
    85 @app.route('/ozoneloss/2011')
    86 def y2011():
    87     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    88     content = get_content(filename)
    89     return render_template("/ozoneloss.html", act="ozoneloss/2011", content=content, year=2011)
    90 
    91 @app.route('/ozoneloss/2010')
    92 def y2010():
    93     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    94     content = get_content(filename)
    95     return render_template("/ozoneloss.html", act="ozoneloss/2010", content=content, year=2010)
    96 
    97 @app.route('/de')
    98 def de():
    99     global LANGUAGE_SELECTED
   100     LANGUAGE_SELECTED = "de"
   101     saying, author = get_saying()
   102     return render_template("/index.html",
   103                            saying=saying,
   104                            author=author,
   105                            eskp_info=_(u'About ESKP'),
   106                            )
   107 
   108 @app.route('/en')
   109 def en():
   110     saying, author = get_saying()
   111     global LANGUAGE_SELECTED
   112     LANGUAGE_SELECTED = "en"
   113     return render_template("/index.html",
   114                            saying=saying,
   115                            author=author,
   116                            eskp_info=_(u'About ESKP'),
   117                            )
   118 
   119 @app.route("/eskp")
   120 def eskp():
   121     filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
   122     content = get_content(filename)
   123     return render_template("/content.html", act="eskp", content=content)
   124 
   125 @app.route("/ozoneloss")
   126 def task():
   127     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
   128     content = get_content(filename)
   129     return render_template("/ozoneloss.html", act="ozoneloss", content=content, year=2014)
   130 
   131 @app.route("/iek-7")
   132 def submission():
   133     filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
   134     content = get_content(filename)
   135     return render_template("/content.html", act="submission", content=content)
   136 
   137 
   138 @app.route("/imprint")
   139 def imprint():
   140     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   141     content = get_content(filename)
   142     return render_template("/content.html", act="imprint", content=content)
   143 
   144 
   145 
   146 @app.errorhandler(404)
   147 def page_not_found(e):
   148     msg = _(u"Url: %(url)s not found", url=request.url)
   149     info = _(u"This information is not available!")
   150     return render_template("404.html", msg=msg, info=info)
   151 
   152 if __name__ == "__main__":
   153     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung