eskp.py
author Jens-Uwe Grooss <j.-u.grooss@fz-juelich.de>
Wed, 07 May 2014 09:52:18 +0200
changeset 247 6a8a901ba550
parent 246 591429b20748
child 249 3b60bc570d8a
permissions -rwxr-xr-x
Erweiterungen:
rst Texte ge?ndert
ozoneloss mit Kartenprojektion von Ozon und Ozonverlust
VPSC-Bilder der Jahre verschoben nach vpsc/years
     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              ('/', _(u'Home')),
    39              ('/ozoneloss', _(u'Ozoneloss')),
    40              ('/eskp', _(u'ESKP')),
    41              ('/iek-7', _(u'IEK-7')),
    42             ]
    43     return menue
    44 
    45 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    46 
    47 def get_ozone_dates():
    48     menue = [('/ozoneloss/years/2014', _(u'2014')),
    49              ('/ozoneloss/years/2013', _(u'2013')),
    50              ('/ozoneloss/years/2012', _(u'2012')),
    51              ('/ozoneloss/years/2011', _(u'2011')),
    52              ('/ozoneloss/years/2010', _(u'2010')),
    53              ]
    54     return menue
    55 
    56 app.jinja_env.globals.update(get_ozone_dates=get_ozone_dates)
    57 
    58 @babel.localeselector
    59 def get_locale():
    60     """ToDo: if translation is completed, switch to en """
    61     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    62 
    63 
    64 @app.route("/")
    65 @app.route("/index")
    66 def index():
    67     return render_template("/index.html",
    68                            eskp_info=_(u'About ESKP'),
    69                            )
    70 
    71 
    72 @app.route('/ozoneloss/years/2014')
    73 def y2014():
    74     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
    75     content = get_content(filename)
    76     return render_template("/ozoneloss_years.html", act="ozoneloss/years/2014", content=content, year=2014)
    77 
    78 @app.route('/ozoneloss/years/2013')
    79 def y2013():
    80     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
    81     content = get_content(filename)
    82     return render_template("/ozoneloss_years.html", act="ozoneloss/years/2013", content=content, year=2013)
    83 
    84 @app.route('/ozoneloss/years/2012')
    85 def y2012():
    86     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
    87     content = get_content(filename)
    88     return render_template("/ozoneloss_years.html", act="ozoneloss/years/2012", content=content, year=2012)
    89 
    90 @app.route('/ozoneloss/years/2011')
    91 def y2011():
    92     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
    93     content = get_content(filename)
    94     return render_template("/ozoneloss_years.html", act="ozoneloss/years/2011", content=content, year=2011)
    95 
    96 @app.route('/ozoneloss/years/2010')
    97 def y2010():
    98     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
    99     content = get_content(filename)
   100     return render_template("/ozoneloss_years.html", act="ozoneloss/years/2010", content=content, year=2010)
   101 
   102 @app.route('/de')
   103 def de():
   104     global LANGUAGE_SELECTED
   105     LANGUAGE_SELECTED = "de"
   106     saying, author = get_saying()
   107     return render_template("/index.html",
   108                            saying=saying,
   109                            author=author,
   110                            eskp_info=_(u'About ESKP'),
   111                            )
   112 
   113 @app.route('/en')
   114 def en():
   115     saying, author = get_saying()
   116     global LANGUAGE_SELECTED
   117     LANGUAGE_SELECTED = "en"
   118     return render_template("/index.html",
   119                            saying=saying,
   120                            author=author,
   121                            eskp_info=_(u'About ESKP'),
   122                            )
   123 
   124 @app.route("/eskp")
   125 def eskp():
   126     filename = os.path.join("templates", get_locale(), "rst", "eskp.rst")
   127     content = get_content(filename)
   128     return render_template("/content.html", act="eskp", content=content)
   129 
   130 @app.route("/ozoneloss")
   131 def task():
   132     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
   133     content = get_content(filename)
   134     return render_template("/ozoneloss.html", act="ozoneloss", content=content)
   135 
   136 @app.route("/ozoneloss/years")
   137 def task1():
   138     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss_years.rst")
   139     content = get_content(filename)
   140     return render_template("/ozoneloss_years.html", act="ozoneloss/years", content=content)
   141 
   142 @app.route("/iek-7")
   143 def submission():
   144     filename = os.path.join("templates", get_locale(), "rst", "iek-7.rst")
   145     content = get_content(filename)
   146     return render_template("/content.html", act="submission", content=content)
   147 
   148 
   149 @app.route("/imprint")
   150 def imprint():
   151     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   152     content = get_content(filename)
   153     return render_template("/content.html", act="imprint", content=content)
   154 
   155 
   156 
   157 @app.errorhandler(404)
   158 def page_not_found(e):
   159     msg = _(u"Url: %(url)s not found", url=request.url)
   160     info = _(u"This information is not available!")
   161     return render_template("404.html", msg=msg, info=info)
   162 
   163 if __name__ == "__main__":
   164     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung