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