pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Sun, 19 Jan 2014 11:40:20 +0100
changeset 161 cb62df6e4e77
parent 160 e4f16be8b5b0
child 162 90e47d2a2c40
permissions -rwxr-xr-x
template dates imports content from a rst table
     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_topmenue():
    30     menue =  [('/competition', _(u'Competition')),
    31               ('/task', _(u'Task')),
    32               ('/submission', _(u'Submission')),
    33               ('/coursematerial', _(u'Coursematerial')),
    34               ]
    35     return menue
    36 
    37 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    38 
    39 
    40 @babel.localeselector
    41 def get_locale():
    42     """ToDo: if translation is completed, switch to en """
    43     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    44 
    45 
    46 @app.route("/")
    47 @app.route("/index")
    48 def index():
    49     saying, author = get_saying()
    50     return render_template("/index.html", 
    51                            saying = saying,
    52                            author = author)
    53 
    54 @app.route('/de')
    55 def de():
    56     global LANGUAGE_SELECTED
    57     LANGUAGE_SELECTED = "de"
    58     saying, author = get_saying()
    59     return render_template("/index.html",
    60                            saying = saying,
    61                            author = author)
    62 
    63 @app.route('/en')
    64 def en():
    65     saying, author = get_saying()
    66     global LANGUAGE_SELECTED
    67     LANGUAGE_SELECTED = "en"
    68     return render_template("/index.html",
    69                            saying = saying,
    70                            author = author)
    71 
    72 @app.route("/competition")
    73 def competition():
    74     return render_template(get_locale() + "/competition.html", act="competition")
    75 
    76 @app.route("/task")
    77 def task():
    78     return render_template(get_locale() + "/task.html", act="task")
    79 
    80 @app.route("/submission")
    81 def submission():
    82     return render_template(get_locale() + "/submission.html", act="submission")
    83 
    84 @app.route("/coursematerial")
    85 def coursematerial():
    86     return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
    87 
    88 @app.route("/imprint")
    89 def imprint():
    90     return render_template(get_locale() + "/imprint.html", act="imprint")
    91 
    92 @app.route("/privacy")
    93 def privacy():
    94     return render_template(get_locale() + "/privacy.html", act="privacy")
    95 
    96 @app.route("/competition/2013")
    97 def competition_2013():
    98     print get_locale() + "/archive/competitions/2013/index.html"
    99     return render_template(get_locale() + "/archive/competitions/2013/index.html", 
   100                            act="coursematerial")
   101 
   102 @app.route("/competition/2014")
   103 def competition_2014():
   104     print get_locale() + "/archive/competitions/2014/index.html"
   105     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
   106                            act="coursematerial")
   107 
   108 @app.route("/dates")
   109 def dates():
   110     content = u""
   111     filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
   112     if os.path.isfile(filename):
   113         with codecs.open(filename, 'r', 'utf-8') as f:
   114             rst_data = f.read()
   115         f.close()
   116         content = publish_parts(rst_data, writer_name='html')['html_body']
   117     return render_template("/dates.html",
   118                            act="dates", content=content)
   119 
   120 
   121 @app.errorhandler(404)
   122 def page_not_found(e):
   123     msg = _(u"Url: %(url)s not found" , url=request.url)
   124     info = _(u"This information is not available!")
   125     return render_template("404.html", msg=msg, info=info)
   126 
   127 if __name__ == "__main__":
   128     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung