pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Sat, 18 Jan 2014 13:00:28 +0100
changeset 118 8f3447e7f36e
parent 112 61b346446ea7
child 122 cafae4de01b3
permissions -rwxr-xr-x
language selector from frontpage implemented
     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 
    15 LANGUAGE_SELECTED = None
    16 
    17 app = Flask(__name__)
    18 babel = Babel(app)
    19 
    20 @babel.localeselector
    21 def get_locale():
    22     """ToDo: if translation is completed, switch to en """
    23     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    24 
    25 
    26 @app.route("/")
    27 @app.route("/index")
    28 def index():
    29     return render_template(get_locale() + "/index.html")
    30 
    31 @app.route('/de')
    32 def de():
    33     global LANGUAGE_SELECTED
    34     LANGUAGE_SELECTED = "de"
    35     return render_template("/de/index.html")
    36 
    37 @app.route('/en')
    38 def en():
    39     global LANGUAGE_SELECTED
    40     LANGUAGE_SELECTED = "en"
    41     return render_template("/en/index.html")
    42 
    43 @app.route("/competition")
    44 def competition():
    45     return render_template(get_locale() + "/competition.html", act="competition")
    46 
    47 @app.route("/task")
    48 def task():
    49     return render_template(get_locale() + "/task.html", act="task")
    50 
    51 @app.route("/submission")
    52 def submission():
    53     return render_template(get_locale() + "/submission.html", act="submission")
    54 
    55 @app.route("/coursematerial")
    56 def coursematerial():
    57     return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
    58 
    59 @app.route("/imprint")
    60 def imprint():
    61     return render_template(get_locale() + "/imprint.html", act="imprint")
    62 
    63 @app.route("/privacy")
    64 def privacy():
    65     return render_template(get_locale() + "/privacy.html", act="privacy")
    66 
    67 
    68 @app.route(_("/competition-2013"))
    69 def competition_2013():
    70     return render_template(get_locale() + "/archive/competitions/2013/comptetition_2013.html",
    71                            act="coursematerial")
    72 
    73 @app.route(_("/competition-2014"))
    74 def competition_2014():
    75     return render_template(get_locale() + "archive/competitions/2014/competition_2014.html",
    76                            act="coursematerial")
    77 
    78 @app.route(_("/dates"))
    79 def dates():
    80     return render_template(get_locale() + "/dates.html",
    81                            act="dates")
    82 
    83 
    84 @app.errorhandler(404)
    85 def page_not_found(e):
    86     return render_template(get_locale() + "/404.html")
    87 
    88 if __name__ == "__main__":
    89     app.run(host='localhost', port=5014, debug=True)
    90 
    91 
Impressum Datenschutzerklärung