pymove3d.py
author Stefania Trabucchi <info@trabucchi.de>
Thu, 13 Mar 2014 22:46:25 +0100
changeset 226 a49b43868b34
parent 223 50d9837e301b
permissions -rwxr-xr-x
styles for prizes
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')),
peter@223
    37
              ('/coursematerial', _(u'Coursematerial')),
rb@154
    38
              ('/submission', _(u'Submission')),
peter@223
    39
              ('/prizes', _(u'Prizes')),
rb@186
    40
            ]
peter@145
    41
    return menue
peter@142
    42
peter@142
    43
app.jinja_env.globals.update(get_topmenue=get_topmenue)
peter@142
    44
peter@142
    45
peter@1
    46
@babel.localeselector
peter@1
    47
def get_locale():
peter@109
    48
    """ToDo: if translation is completed, switch to en """
rb@118
    49
    return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
peter@1
    50
rb@100
    51
peter@1
    52
@app.route("/")
rb@100
    53
@app.route("/index")
peter@1
    54
def index():
peter@141
    55
    saying, author = get_saying()
rb@213
    56
    return render_template("/index.html",
rb@186
    57
                           saying=saying,
rb@186
    58
                           author=author,
rb@169
    59
                           competition_info=_(u'About Competition'),
rb@173
    60
                           dates=_(u'Dates'),
rb@173
    61
                           impressions=_(u'Impressions'))
peter@1
    62
rb@118
    63
@app.route('/de')
rb@118
    64
def de():
rb@118
    65
    global LANGUAGE_SELECTED
rb@118
    66
    LANGUAGE_SELECTED = "de"
peter@146
    67
    saying, author = get_saying()
peter@160
    68
    return render_template("/index.html",
rb@186
    69
                           saying=saying,
rb@186
    70
                           author=author,
rb@169
    71
                           competition_info=_(u'About Competition'),
rb@173
    72
                           dates=_(u'Dates'),
rb@173
    73
                           impressions=_(u'Impressions'))
rb@118
    74
rb@118
    75
@app.route('/en')
rb@118
    76
def en():
peter@146
    77
    saying, author = get_saying()
rb@118
    78
    global LANGUAGE_SELECTED
rb@118
    79
    LANGUAGE_SELECTED = "en"
peter@160
    80
    return render_template("/index.html",
rb@186
    81
                           saying=saying,
rb@186
    82
                           author=author,
rb@169
    83
                           competition_info=_(u'About Competition'),
rb@173
    84
                           dates=_(u'Dates'),
rb@173
    85
                           impressions=_(u'Impressions'))
rb@118
    86
rb@100
    87
@app.route("/competition")
peter@1
    88
def competition():
rb@162
    89
    filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
rb@162
    90
    content = get_content(filename)
rb@170
    91
    return render_template("/content.html", act="competition", content=content)
peter@1
    92
rb@100
    93
@app.route("/task")
peter@1
    94
def task():
rb@165
    95
    filename = os.path.join("templates", get_locale(), "rst", "task.rst")
rb@165
    96
    content = get_content(filename)
rb@170
    97
    return render_template("/content.html", act="task", content=content)
peter@1
    98
rb@100
    99
@app.route("/submission")
peter@1
   100
def submission():
rb@167
   101
    filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
rb@167
   102
    content = get_content(filename)
rb@170
   103
    return render_template("/content.html", act="submission", content=content)
peter@1
   104
rb@100
   105
@app.route("/coursematerial")
peter@1
   106
def coursematerial():
rb@166
   107
    filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
rb@166
   108
    content = get_content(filename)
rb@170
   109
    return render_template("/content.html", act="coursematerial", content=content)
peter@1
   110
rb@100
   111
@app.route("/imprint")
peter@88
   112
def imprint():
rb@163
   113
    filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
rb@163
   114
    content = get_content(filename)
rb@170
   115
    return render_template("/content.html", act="imprint", content=content)
peter@88
   116
rb@100
   117
@app.route("/privacy")
peter@88
   118
def privacy():
rb@164
   119
    filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
rb@214
   120
    overrides = {
rb@214
   121
                 'initial_header_level': 2,
rb@214
   122
                }
rb@214
   123
    content = get_content(filename, overrides=overrides)
rb@170
   124
    return render_template("/content.html", act="privacy", content=content)
rb@170
   125
rb@170
   126
@app.route("/dates")
rb@170
   127
def dates():
rb@170
   128
    filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
rb@170
   129
    content = get_content(filename)
rb@170
   130
    return render_template("/content.html",
rb@170
   131
                           act="dates", content=content)
peter@88
   132
rb@222
   133
@app.route("/prizes")
rb@222
   134
def prizes():
rb@222
   135
    filename = os.path.join("templates", get_locale(), "rst", "prizes.rst")
rb@222
   136
    overrides = {
rb@222
   137
                 'initial_header_level': 2,
rb@222
   138
                }
rb@222
   139
    content = get_content(filename, overrides=overrides)
info@226
   140
    return render_template("/prizes.html",act="prizes", content=content)
rb@222
   141
rb@222
   142
rb@222
   143
peter@123
   144
@app.route("/competition/2013")
peter@109
   145
def competition_2013():
rb@217
   146
    competition = _(u'Competition 2013')
rb@217
   147
    introduction = _(u'The winners of the programming competition, '
rb@217
   148
                     u'showed at the PyCon.DE 2013 in Cologne their results. '
rb@217
   149
                     u'A short presentation inlcuding a movie about their work done.')
rb@217
   150
    article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'),
rb@217
   151
               _(u'A long applause showed up.'
rb@217
   152
                 u' Valentin had 9 months ago learned Python and Blender discovered earlier. '
rb@217
   153
                 u'His Skatsimulation even includes 3D sound.'),
rb@217
   154
               _(u'The preparatory courses were made by volunteers, such as the '
rb@217
   155
                 u'employees of the magazine "Time Online" performed. '
rb@217
   156
                 u'The following blog entry is a little impression of the success of the courses'),
rb@217
   157
              ]
rb@217
   158
    game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«')
rb@217
   159
    skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«')
rb@217
   160
    awards = _(u'The award ceremony')
rb@176
   161
    return render_template("/impressions_2013.html",
rb@217
   162
                           act="competition_2013",
rb@217
   163
                           competition=competition,
rb@217
   164
                           introduction=introduction,
rb@217
   165
                           article=article,
rb@217
   166
                           game_of_life=game_of_life,
rb@217
   167
                           skat_simulation=skat_simulation,
rb@217
   168
                           awards=awards)
peter@109
   169
peter@88
   170
peter@1
   171
@app.errorhandler(404)
peter@1
   172
def page_not_found(e):
rb@213
   173
    msg = _(u"Url: %(url)s not found", url=request.url)
rb@157
   174
    info = _(u"This information is not available!")
rb@157
   175
    return render_template("404.html", msg=msg, info=info)
peter@1
   176
peter@1
   177
if __name__ == "__main__":
peter@1
   178
    app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung