pymove3d.py
author Peter Koppatz <peter@koppatz.com>
Sat, 18 Jan 2014 21:05:22 +0100
changeset 144 3b768d0f09ef
parent 142 6dea01810014
child 145 95d788307e42
permissions -rwxr-xr-x
code revue
     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 LANGUAGE_SELECTED = "de"
    18 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    19 
    20 app = Flask(__name__)
    21 babel = Babel(app)
    22 
    23 def get_topmenue():
    24     topmenue = [('/competition', _('Competition')),
    25                 ('/task', _('Task')),
    26                 ('/submission', _('Submission')),
    27                 ('/coursematerial', _('Coursematerial')),
    28                 ]
    29     
    30     return topmenue
    31 
    32 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    33 
    34 
    35 @babel.localeselector
    36 def get_locale():
    37     """ToDo: if translation is completed, switch to en """
    38     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    39 
    40 
    41 @app.route("/")
    42 @app.route("/index")
    43 def index():
    44     saying, author = get_saying()
    45     return render_template(get_locale() + "/index.html", 
    46                            saying = saying,
    47                            author = author)
    48 
    49 @app.route('/de')
    50 def de():
    51     global LANGUAGE_SELECTED
    52     LANGUAGE_SELECTED = "de"
    53     return render_template("/de/index.html")
    54 
    55 @app.route('/en')
    56 def en():
    57     global LANGUAGE_SELECTED
    58     LANGUAGE_SELECTED = "en"
    59     return render_template("/en/index.html")
    60 
    61 @app.route("/competition")
    62 def competition():
    63     return render_template(get_locale() + "/competition.html", act="competition")
    64 
    65 @app.route("/task")
    66 def task():
    67     return render_template(get_locale() + "/task.html", act="task")
    68 
    69 @app.route("/submission")
    70 def submission():
    71     return render_template(get_locale() + "/submission.html", act="submission")
    72 
    73 @app.route("/coursematerial")
    74 def coursematerial():
    75     return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
    76 
    77 @app.route("/imprint")
    78 def imprint():
    79     return render_template(get_locale() + "/imprint.html", act="imprint")
    80 
    81 @app.route("/privacy")
    82 def privacy():
    83     return render_template(get_locale() + "/privacy.html", act="privacy")
    84 
    85 @app.route("/competition/2013")
    86 def competition_2013():
    87     print get_locale() + "/archive/competitions/2013/index.html"
    88     return render_template(get_locale() + "/archive/competitions/2013/index.html", 
    89                            act="coursematerial")
    90 
    91 @app.route("/competition/2014")
    92 def competition_2014():
    93     print get_locale() + "/archive/competitions/2014/index.html"
    94     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
    95                            act="coursematerial")
    96 
    97 @app.route(_("/dates"))
    98 def dates():
    99     return render_template(get_locale() + "/dates.html",
   100                            act="dates")
   101 
   102 
   103 @app.errorhandler(404)
   104 def page_not_found(e):
   105     return render_template(get_locale() + "/404.html")
   106 
   107 if __name__ == "__main__":
   108     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung