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