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