eskp.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Mon, 05 May 2014 11:30:43 +0200
changeset 233 c97120328e9c
parent 232 ec1bb552ce55
child 238 c89b73e1a53a
permissions -rwxr-xr-x
simplified for ESKP
     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 from sayings import get_saying
    14 
    15 
    16 LANGUAGE_SELECTED = "de"
    17 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    18 
    19 app = Flask(__name__)
    20 babel = Babel(app)
    21 
    22 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    23 
    24 
    25 def get_content(filename, overrides=None):
    26     content = u""
    27     if os.path.isfile(filename):
    28         with codecs.open(filename, 'r', 'utf-8') as f:
    29             rst_data = f.read()
    30         f.close()
    31         content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
    32     return content
    33 
    34 def get_topmenue():
    35     menue = [('/eskp', _(u'ESKP')),
    36               ('/ozoneloss', _(u'Ozoneloss')),
    37               ('/iek-7', _(u'IEK-7')),
    38             ]
    39     return menue
    40 
    41 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    42 
    43 
    44 @babel.localeselector
    45 def get_locale():
    46     """ToDo: if translation is completed, switch to en """
    47     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    48 
    49 
    50 @app.route("/")
    51 @app.route("/index")
    52 def index():
    53     saying, author = get_saying()
    54     return render_template("/index.html",
    55                            saying=saying,
    56                            author=author,
    57                            eskp_info=_(u'About ESKP'),
    58                            )
    59 
    60 @app.route('/de')
    61 def de():
    62     global LANGUAGE_SELECTED
    63     LANGUAGE_SELECTED = "de"
    64     saying, author = get_saying()
    65     return render_template("/index.html",
    66                            saying=saying,
    67                            author=author,
    68                            eskp_info=_(u'About ESKP'),
    69                            )
    70 
    71 @app.route('/en')
    72 def en():
    73     saying, author = get_saying()
    74     global LANGUAGE_SELECTED
    75     LANGUAGE_SELECTED = "en"
    76     return render_template("/index.html",
    77                            saying=saying,
    78                            author=author,
    79                            eskp_info=_(u'About ESKP'),
    80                            )
    81 
    82 @app.route("/eskp")
    83 def 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)
    87 
    88 @app.route("/ozoneloss")
    89 def task():
    90     filename = os.path.join("templates", get_locale(), "rst", "ozoneloss.rst")
    91     content = get_content(filename)
    92     print content
    93     print filename
    94     return render_template("/content.html", act="ozoneloss", content=content)
    95 
    96 @app.route("/iek-7")
    97 def submission():
    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)
   101 
   102 
   103 @app.route("/imprint")
   104 def 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)
   108 
   109 
   110 
   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)
   116 
   117 if __name__ == "__main__":
   118     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung