pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Fri, 24 Jan 2014 17:13:58 +0100
changeset 217 2c7c55d66ec1
parent 214 7dda7406a677
child 222 fe169c748b0c
permissions -rwxr-xr-x
translations for impressions
rb@217
     1
# -*- coding: utf-8 -*-
rb@217
     2
rb@186
     3
import os
rb@186
     4
import codecs
rb@186
     5
rb@186
     6
from docutils.core import publish_parts
peter@1
     7
from flask import Flask
peter@1
     8
from flask import render_template
peter@1
     9
from flask import request
rb@95
    10
from flask.ext.babel import gettext as _
peter@1
    11
from flask.ext.babel import Babel
rb@95
    12
from config import LANGUAGES
peter@141
    13
from sayings import get_saying
rb@161
    14
rb@161
    15
rb@122
    16
LANGUAGE_SELECTED = "de"
rb@122
    17
#ToDo after engelish is implemented set LANGUAGE_SELECTED = None
rb@95
    18
peter@1
    19
app = Flask(__name__)
peter@1
    20
babel = Babel(app)
peter@1
    21
peter@145
    22
app.config['BABEL_DEFAULT_LOCALE'] = 'de'
peter@145
    23
rb@186
    24
rb@214
    25
def get_content(filename, overrides=None):
rb@162
    26
    content = u""
rb@162
    27
    if os.path.isfile(filename):
rb@162
    28
        with codecs.open(filename, 'r', 'utf-8') as f:
rb@162
    29
            rst_data = f.read()
rb@162
    30
        f.close()
rb@214
    31
        content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body']
rb@162
    32
    return content
rb@162
    33
peter@142
    34
def get_topmenue():
rb@186
    35
    menue = [('/competition', _(u'Competition')),
rb@154
    36
              ('/task', _(u'Task')),
rb@154
    37
              ('/submission', _(u'Submission')),
rb@154
    38
              ('/coursematerial', _(u'Coursematerial')),
rb@186
    39
            ]
peter@145
    40
    return menue
peter@142
    41
peter@142
    42
app.jinja_env.globals.update(get_topmenue=get_topmenue)
peter@142
    43
peter@142
    44
peter@1
    45
@babel.localeselector
peter@1
    46
def get_locale():
peter@109
    47
    """ToDo: if translation is completed, switch to en """
rb@118
    48
    return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
peter@1
    49
rb@100
    50
peter@1
    51
@app.route("/")
rb@100
    52
@app.route("/index")
peter@1
    53
def index():
peter@141
    54
    saying, author = get_saying()
rb@213
    55
    return render_template("/index.html",
rb@186
    56
                           saying=saying,
rb@186
    57
                           author=author,
rb@169
    58
                           competition_info=_(u'About Competition'),
rb@173
    59
                           dates=_(u'Dates'),
rb@173
    60
                           impressions=_(u'Impressions'))
peter@1
    61
rb@118
    62
@app.route('/de')
rb@118
    63
def de():
rb@118
    64
    global LANGUAGE_SELECTED
rb@118
    65
    LANGUAGE_SELECTED = "de"
peter@146
    66
    saying, author = get_saying()
peter@160
    67
    return render_template("/index.html",
rb@186
    68
                           saying=saying,
rb@186
    69
                           author=author,
rb@169
    70
                           competition_info=_(u'About Competition'),
rb@173
    71
                           dates=_(u'Dates'),
rb@173
    72
                           impressions=_(u'Impressions'))
rb@118
    73
rb@118
    74
@app.route('/en')
rb@118
    75
def en():
peter@146
    76
    saying, author = get_saying()
rb@118
    77
    global LANGUAGE_SELECTED
rb@118
    78
    LANGUAGE_SELECTED = "en"
peter@160
    79
    return render_template("/index.html",
rb@186
    80
                           saying=saying,
rb@186
    81
                           author=author,
rb@169
    82
                           competition_info=_(u'About Competition'),
rb@173
    83
                           dates=_(u'Dates'),
rb@173
    84
                           impressions=_(u'Impressions'))
rb@118
    85
rb@100
    86
@app.route("/competition")
peter@1
    87
def competition():
rb@162
    88
    filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
rb@162
    89
    content = get_content(filename)
rb@170
    90
    return render_template("/content.html", act="competition", content=content)
peter@1
    91
rb@100
    92
@app.route("/task")
peter@1
    93
def task():
rb@165
    94
    filename = os.path.join("templates", get_locale(), "rst", "task.rst")
rb@165
    95
    content = get_content(filename)
rb@170
    96
    return render_template("/content.html", act="task", content=content)
peter@1
    97
rb@100
    98
@app.route("/submission")
peter@1
    99
def submission():
rb@167
   100
    filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
rb@167
   101
    content = get_content(filename)
rb@170
   102
    return render_template("/content.html", act="submission", content=content)
peter@1
   103
rb@100
   104
@app.route("/coursematerial")
peter@1
   105
def coursematerial():
rb@166
   106
    filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
rb@166
   107
    content = get_content(filename)
rb@170
   108
    return render_template("/content.html", act="coursematerial", content=content)
peter@1
   109
rb@100
   110
@app.route("/imprint")
peter@88
   111
def imprint():
rb@163
   112
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   113
    content = get_content(filename)
rb@170
   114
    return render_template("/content.html", act="imprint", content=content)
peter@88
   115
rb@100
   116
@app.route("/privacy")
peter@88
   117
def privacy():
rb@164
   118
    filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
rb@214
   119
    overrides = {
rb@214
   120
                 'initial_header_level': 2,
rb@214
   121
                }
rb@214
   122
    content = get_content(filename, overrides=overrides)
rb@170
   123
    return render_template("/content.html", act="privacy", content=content)
rb@170
   124
rb@170
   125
@app.route("/dates")
rb@170
   126
def dates():
rb@170
   127
    filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
rb@170
   128
    content = get_content(filename)
rb@170
   129
    return render_template("/content.html",
rb@170
   130
                           act="dates", content=content)
peter@88
   131
peter@123
   132
@app.route("/competition/2013")
peter@109
   133
def competition_2013():
rb@217
   134
    competition = _(u'Competition 2013')
rb@217
   135
    introduction = _(u'The winners of the programming competition, '
rb@217
   136
                     u'showed at the PyCon.DE 2013 in Cologne their results. '
rb@217
   137
                     u'A short presentation inlcuding a movie about their work done.')
rb@217
   138
    article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'),
rb@217
   139
               _(u'A long applause showed up.'
rb@217
   140
                 u' Valentin had 9 months ago learned Python and Blender discovered earlier. '
rb@217
   141
                 u'His Skatsimulation even includes 3D sound.'),
rb@217
   142
               _(u'The preparatory courses were made by volunteers, such as the '
rb@217
   143
                 u'employees of the magazine "Time Online" performed. '
rb@217
   144
                 u'The following blog entry is a little impression of the success of the courses'),
rb@217
   145
              ]
rb@217
   146
    game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«')
rb@217
   147
    skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«')
rb@217
   148
    awards = _(u'The award ceremony')
rb@176
   149
    return render_template("/impressions_2013.html",
rb@217
   150
                           act="competition_2013",
rb@217
   151
                           competition=competition,
rb@217
   152
                           introduction=introduction,
rb@217
   153
                           article=article,
rb@217
   154
                           game_of_life=game_of_life,
rb@217
   155
                           skat_simulation=skat_simulation,
rb@217
   156
                           awards=awards)
peter@109
   157
peter@88
   158
peter@1
   159
@app.errorhandler(404)
peter@1
   160
def page_not_found(e):
rb@213
   161
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   162
    info = _(u"This information is not available!")
rb@157
   163
    return render_template("404.html", msg=msg, info=info)
peter@1
   164
peter@1
   165
if __name__ == "__main__":
peter@1
   166
    app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung