pymove3d.py
author Peter Koppatz <peter@koppatz.com>
Sun, 19 Jan 2014 08:35:43 +0100
changeset 147 a40c0f419bd0
parent 146 2e05b89881ed
child 152 fc74195fe6b4
permissions -rwxr-xr-x
Buttons refactored
     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 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    24 
    25 def get_topmenue():
    26     menue =  [('/competition', u'Competition'),
    27               ('/task', 'Task'),
    28               ('/submission', u'Submission'),
    29               ('/coursematerial', u'Coursematerial'),
    30               ]
    31     return menue
    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     saying, author = get_saying()
    55     return render_template("/de/index.html",
    56                            saying = saying,
    57                            author = author)
    58 
    59 @app.route('/en')
    60 def en():
    61     saying, author = get_saying()
    62     global LANGUAGE_SELECTED
    63     LANGUAGE_SELECTED = "en"
    64     return render_template("/en/index.html",
    65                            saying = saying,
    66                            author = author)
    67 
    68 @app.route("/competition")
    69 def competition():
    70     return render_template(get_locale() + "/competition.html", act="competition")
    71 
    72 @app.route("/task")
    73 def task():
    74     return render_template(get_locale() + "/task.html", act="task")
    75 
    76 @app.route("/submission")
    77 def submission():
    78     return render_template(get_locale() + "/submission.html", act="submission")
    79 
    80 @app.route("/coursematerial")
    81 def coursematerial():
    82     return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
    83 
    84 @app.route("/imprint")
    85 def imprint():
    86     return render_template(get_locale() + "/imprint.html", act="imprint")
    87 
    88 @app.route("/privacy")
    89 def privacy():
    90     return render_template(get_locale() + "/privacy.html", act="privacy")
    91 
    92 @app.route("/competition/2013")
    93 def competition_2013():
    94     print get_locale() + "/archive/competitions/2013/index.html"
    95     return render_template(get_locale() + "/archive/competitions/2013/index.html", 
    96                            act="coursematerial")
    97 
    98 @app.route("/competition/2014")
    99 def competition_2014():
   100     print get_locale() + "/archive/competitions/2014/index.html"
   101     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
   102                            act="coursematerial")
   103 
   104 @app.route(_("/dates"))
   105 def dates():
   106     return render_template(get_locale() + "/dates.html",
   107                            act="dates")
   108 
   109 
   110 @app.errorhandler(404)
   111 def page_not_found(e):
   112     return render_template(get_locale() + "/404.html")
   113 
   114 if __name__ == "__main__":
   115     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung