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