pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Sun, 19 Jan 2014 13:37:33 +0100
changeset 169 934e2d8e279d
parent 168 da7e673fae7b
child 170 e424a57cba5d
permissions -rwxr-xr-x
unicode strings
     1 from flask import Flask
     2 from flask import render_template
     3 from flask import request
     4 from flask import abort, redirect, url_for
     5 import os
     6 from flask import send_from_directory
     7 import logging
     8 from logging import Formatter
     9 
    10 from flask.ext.babel import gettext as _
    11 from flask.ext.babel import Babel
    12 
    13 from config import LANGUAGES
    14 from sayings import get_saying
    15 from jinja2 import Environment, FileSystemLoader
    16 
    17 import codecs
    18 from docutils.core import publish_parts
    19 
    20 
    21 LANGUAGE_SELECTED = "de"
    22 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    23 
    24 app = Flask(__name__)
    25 babel = Babel(app)
    26 
    27 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    28 
    29 def get_content(filename):
    30     content = u""
    31     if os.path.isfile(filename):
    32         with codecs.open(filename, 'r', 'utf-8') as f:
    33             rst_data = f.read()
    34         f.close()
    35         content = publish_parts(rst_data, writer_name='html')['html_body']
    36     return content
    37 
    38 def get_topmenue():
    39     menue =  [('/competition', _(u'Competition')),
    40               ('/task', _(u'Task')),
    41               ('/submission', _(u'Submission')),
    42               ('/coursematerial', _(u'Coursematerial')),
    43               ]
    44     return menue
    45 
    46 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    47 
    48 
    49 @babel.localeselector
    50 def get_locale():
    51     """ToDo: if translation is completed, switch to en """
    52     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    53 
    54 
    55 @app.route("/")
    56 @app.route("/index")
    57 def index():
    58     saying, author = get_saying()
    59     return render_template("/index.html", 
    60                            saying = saying,
    61                            author = author,
    62                            competition_info=_(u'About Competition'),
    63                            dates=_(u'Dates'))
    64 
    65 @app.route('/de')
    66 def de():
    67     global LANGUAGE_SELECTED
    68     LANGUAGE_SELECTED = "de"
    69     saying, author = get_saying()
    70     return render_template("/index.html",
    71                            saying = saying,
    72                            author = author,
    73                            competition_info=_(u'About Competition'),
    74                            dates=_(u'Dates'))
    75 
    76 @app.route('/en')
    77 def en():
    78     saying, author = get_saying()
    79     global LANGUAGE_SELECTED
    80     LANGUAGE_SELECTED = "en"
    81     return render_template("/index.html",
    82                            saying = saying,
    83                            author = author,
    84                            competition_info=_(u'About Competition'),
    85                            dates=_(u'Dates'))
    86 
    87 @app.route("/competition")
    88 def competition():
    89     filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
    90     content = get_content(filename)
    91     return render_template("/competition.html", act="competition", content=content)
    92 
    93 @app.route("/task")
    94 def task():
    95     filename = os.path.join("templates", get_locale(), "rst", "task.rst")
    96     content = get_content(filename)
    97     return render_template("/task.html", act="task", content=content)
    98 
    99 @app.route("/submission")
   100 def submission():
   101     filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
   102     content = get_content(filename)
   103     return render_template("/submission.html", act="submission", content=content)
   104 
   105 @app.route("/coursematerial")
   106 def coursematerial():
   107     filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
   108     content = get_content(filename)
   109     return render_template("/coursematerial.html", act="coursematerial", content=content)
   110 
   111 @app.route("/imprint")
   112 def imprint():
   113     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   114     content = get_content(filename)
   115     return render_template("/imprint.html", act="imprint", content=content)
   116 
   117 @app.route("/privacy")
   118 def privacy():
   119     filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
   120     content = get_content(filename)
   121     return render_template("/privacy.html", act="privacy", content=content)
   122 
   123 @app.route("/competition/2013")
   124 def competition_2013():
   125     print get_locale() + "/archive/competitions/2013/index.html"
   126     return render_template(get_locale() + "/archive/competitions/2013/index.html", 
   127                            act="coursematerial")
   128 
   129 @app.route("/competition/2014")
   130 def competition_2014():
   131     print get_locale() + "/archive/competitions/2014/index.html"
   132     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
   133                            act="coursematerial")
   134 
   135 
   136 @app.route("/dates")
   137 def dates():
   138     filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
   139     content = get_content(filename)
   140     return render_template("/dates.html",
   141                            act="dates", content=content)
   142 
   143 
   144 @app.errorhandler(404)
   145 def page_not_found(e):
   146     msg = _(u"Url: %(url)s not found" , url=request.url)
   147     info = _(u"This information is not available!")
   148     return render_template("404.html", msg=msg, info=info)
   149 
   150 if __name__ == "__main__":
   151     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung