# HG changeset patch # User Reimar Bauer # Date 1399277049 -7200 # Node ID ec1bb552ce55a6b95d54159ef700c39c5f40f41d # Parent 63405034e0614ab646285dda92343e84998c2396 fork of pymoved3D 231:63405034e061 for initialisation of eskp diff -r 63405034e061 -r ec1bb552ce55 Makefile --- a/Makefile Fri Apr 18 16:27:01 2014 +0200 +++ b/Makefile Mon May 05 10:04:09 2014 +0200 @@ -1,22 +1,22 @@ # -# Makefile for pymove3D +# Makefile for eskp # -# location for the pymove3d.py we use: +# location for the eskp.py we use: export PYTHONPATH=$(PWD) pylint: - pylint ./pymove3d.py + pylint ./eskp.py pybabel_init: - pybabel extract -o ./translations/pymove3d.pot . - pybabel init -i ./translations/pymove3d.pot -d translations -l de - pybabel init -i ./translations/pymove3d.pot -d translations -l en + pybabel extract -o ./translations/eskp.pot . + pybabel init -i ./translations/eskp.pot -d translations -l de + pybabel init -i ./translations/eskp.pot -d translations -l en pybabel_update: - pybabel extract -o ./translations/pymove3d.pot . - pybabel update -i ./translations/pymove3d.pot -d translations -l de - pybabel update -i ./translations/pymove3d.pot -d translations -l en + pybabel extract -o ./translations/eskp.pot . + pybabel update -i ./translations/eskp.pot -d translations -l de + pybabel update -i ./translations/eskp.pot -d translations -l en msgfmt: msgfmt --strict ./translations/de/LC_MESSAGES/messages.po -o ./translations/de/LC_MESSAGES/messages.mo diff -r 63405034e061 -r ec1bb552ce55 README.rst --- a/README.rst Fri Apr 18 16:27:01 2014 +0200 +++ b/README.rst Mon May 05 10:04:09 2014 +0200 @@ -2,13 +2,12 @@ ------------ First you have to clone this repository and all its submodules:: - hg clone ssh://hg@bitbucket.org/pkoppatz/pymove3d-app - cd pymove3d-app + cd eskp-app Next create a virtualenv and install all the requirments into it. In this example we are using virtualenvwrapper to manage the virtualenv:: - mkvirtualenv pymove3d-env + mkvirtualenv eskp-env This repository provides requirements and configurations. @@ -17,9 +16,9 @@ pip install -r requirements.txt -Now that this is complete, you can run pymove3d in that environment:: +Now that this is complete, you can run eskp in that environment:: - python ./pymove3d.py + python ./eskp.py Testing and developing is done with:: diff -r 63405034e061 -r ec1bb552ce55 eskp.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eskp.py Mon May 05 10:04:09 2014 +0200 @@ -0,0 +1,178 @@ +# -*- coding: utf-8 -*- + +import os +import codecs + +from docutils.core import publish_parts +from flask import Flask +from flask import render_template +from flask import request +from flask.ext.babel import gettext as _ +from flask.ext.babel import Babel +from config import LANGUAGES +from sayings import get_saying + + +LANGUAGE_SELECTED = "de" +#ToDo after engelish is implemented set LANGUAGE_SELECTED = None + +app = Flask(__name__) +babel = Babel(app) + +app.config['BABEL_DEFAULT_LOCALE'] = 'de' + + +def get_content(filename, overrides=None): + content = u"" + if os.path.isfile(filename): + with codecs.open(filename, 'r', 'utf-8') as f: + rst_data = f.read() + f.close() + content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body'] + return content + +def get_topmenue(): + menue = [('/competition', _(u'Competition')), + ('/task', _(u'Task')), + ('/coursematerial', _(u'Coursematerial')), + ('/submission', _(u'Submission')), + ('/prizes', _(u'Prizes')), + ] + return menue + +app.jinja_env.globals.update(get_topmenue=get_topmenue) + + +@babel.localeselector +def get_locale(): + """ToDo: if translation is completed, switch to en """ + return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de' + + +@app.route("/") +@app.route("/index") +def index(): + saying, author = get_saying() + return render_template("/index.html", + saying=saying, + author=author, + competition_info=_(u'About Competition'), + dates=_(u'Dates'), + impressions=_(u'Impressions')) + +@app.route('/de') +def de(): + global LANGUAGE_SELECTED + LANGUAGE_SELECTED = "de" + saying, author = get_saying() + return render_template("/index.html", + saying=saying, + author=author, + competition_info=_(u'About Competition'), + dates=_(u'Dates'), + impressions=_(u'Impressions')) + +@app.route('/en') +def en(): + saying, author = get_saying() + global LANGUAGE_SELECTED + LANGUAGE_SELECTED = "en" + return render_template("/index.html", + saying=saying, + author=author, + competition_info=_(u'About Competition'), + dates=_(u'Dates'), + impressions=_(u'Impressions')) + +@app.route("/competition") +def competition(): + filename = os.path.join("templates", get_locale(), "rst", "competition.rst") + content = get_content(filename) + return render_template("/content.html", act="competition", content=content) + +@app.route("/task") +def task(): + filename = os.path.join("templates", get_locale(), "rst", "task.rst") + content = get_content(filename) + return render_template("/content.html", act="task", content=content) + +@app.route("/submission") +def submission(): + filename = os.path.join("templates", get_locale(), "rst", "submission.rst") + content = get_content(filename) + return render_template("/content.html", act="submission", content=content) + +@app.route("/coursematerial") +def coursematerial(): + filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst") + content = get_content(filename) + return render_template("/content.html", act="coursematerial", content=content) + +@app.route("/imprint") +def imprint(): + filename = os.path.join("templates", get_locale(), "rst", "imprint.rst") + content = get_content(filename) + return render_template("/content.html", act="imprint", content=content) + +@app.route("/privacy") +def privacy(): + filename = os.path.join("templates", get_locale(), "rst", "privacy.rst") + overrides = { + 'initial_header_level': 2, + } + content = get_content(filename, overrides=overrides) + return render_template("/content.html", act="privacy", content=content) + +@app.route("/dates") +def dates(): + filename = os.path.join("templates", get_locale(), "rst", "dates.rst") + content = get_content(filename) + return render_template("/content.html", + act="dates", content=content) + +@app.route("/prizes") +def prizes(): + filename = os.path.join("templates", get_locale(), "rst", "prizes.rst") + overrides = { + 'initial_header_level': 2, + } + content = get_content(filename, overrides=overrides) + return render_template("/prizes.html",act="prizes", content=content) + + + +@app.route("/competition/2013") +def competition_2013(): + competition = _(u'Competition 2013') + introduction = _(u'The winners of the programming competition, ' + u'showed at the PyCon.DE 2013 in Cologne their results. ' + u'A short presentation inlcuding a movie about their work done.') + article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'), + _(u'A long applause showed up.' + u' Valentin had 9 months ago learned Python and Blender discovered earlier. ' + u'His Skatsimulation even includes 3D sound.'), + _(u'The preparatory courses were made by volunteers, such as the ' + u'employees of the magazine "Time Online" performed. ' + u'The following blog entry is a little impression of the success of the courses'), + ] + game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«') + skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«') + awards = _(u'The award ceremony') + return render_template("/impressions_2013.html", + act="competition_2013", + competition=competition, + introduction=introduction, + article=article, + game_of_life=game_of_life, + skat_simulation=skat_simulation, + awards=awards) + + +@app.errorhandler(404) +def page_not_found(e): + msg = _(u"Url: %(url)s not found", url=request.url) + info = _(u"This information is not available!") + return render_template("404.html", msg=msg, info=info) + +if __name__ == "__main__": + app.run(host='localhost', port=5014, debug=True) diff -r 63405034e061 -r ec1bb552ce55 eskp_babel.cfg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eskp_babel.cfg Mon May 05 10:04:09 2014 +0200 @@ -0,0 +1,4 @@ +[python: **.py] +[jinja2: **/templates/**.html] +extensions=jinja2.ext.autoescape,jinja2.ext.with_ + diff -r 63405034e061 -r ec1bb552ce55 pymove3d.py --- a/pymove3d.py Fri Apr 18 16:27:01 2014 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,178 +0,0 @@ -# -*- coding: utf-8 -*- - -import os -import codecs - -from docutils.core import publish_parts -from flask import Flask -from flask import render_template -from flask import request -from flask.ext.babel import gettext as _ -from flask.ext.babel import Babel -from config import LANGUAGES -from sayings import get_saying - - -LANGUAGE_SELECTED = "de" -#ToDo after engelish is implemented set LANGUAGE_SELECTED = None - -app = Flask(__name__) -babel = Babel(app) - -app.config['BABEL_DEFAULT_LOCALE'] = 'de' - - -def get_content(filename, overrides=None): - content = u"" - if os.path.isfile(filename): - with codecs.open(filename, 'r', 'utf-8') as f: - rst_data = f.read() - f.close() - content = publish_parts(rst_data, writer_name='html', settings_overrides=overrides)['html_body'] - return content - -def get_topmenue(): - menue = [('/competition', _(u'Competition')), - ('/task', _(u'Task')), - ('/coursematerial', _(u'Coursematerial')), - ('/submission', _(u'Submission')), - ('/prizes', _(u'Prizes')), - ] - return menue - -app.jinja_env.globals.update(get_topmenue=get_topmenue) - - -@babel.localeselector -def get_locale(): - """ToDo: if translation is completed, switch to en """ - return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de' - - -@app.route("/") -@app.route("/index") -def index(): - saying, author = get_saying() - return render_template("/index.html", - saying=saying, - author=author, - competition_info=_(u'About Competition'), - dates=_(u'Dates'), - impressions=_(u'Impressions')) - -@app.route('/de') -def de(): - global LANGUAGE_SELECTED - LANGUAGE_SELECTED = "de" - saying, author = get_saying() - return render_template("/index.html", - saying=saying, - author=author, - competition_info=_(u'About Competition'), - dates=_(u'Dates'), - impressions=_(u'Impressions')) - -@app.route('/en') -def en(): - saying, author = get_saying() - global LANGUAGE_SELECTED - LANGUAGE_SELECTED = "en" - return render_template("/index.html", - saying=saying, - author=author, - competition_info=_(u'About Competition'), - dates=_(u'Dates'), - impressions=_(u'Impressions')) - -@app.route("/competition") -def competition(): - filename = os.path.join("templates", get_locale(), "rst", "competition.rst") - content = get_content(filename) - return render_template("/content.html", act="competition", content=content) - -@app.route("/task") -def task(): - filename = os.path.join("templates", get_locale(), "rst", "task.rst") - content = get_content(filename) - return render_template("/content.html", act="task", content=content) - -@app.route("/submission") -def submission(): - filename = os.path.join("templates", get_locale(), "rst", "submission.rst") - content = get_content(filename) - return render_template("/content.html", act="submission", content=content) - -@app.route("/coursematerial") -def coursematerial(): - filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst") - content = get_content(filename) - return render_template("/content.html", act="coursematerial", content=content) - -@app.route("/imprint") -def imprint(): - filename = os.path.join("templates", get_locale(), "rst", "imprint.rst") - content = get_content(filename) - return render_template("/content.html", act="imprint", content=content) - -@app.route("/privacy") -def privacy(): - filename = os.path.join("templates", get_locale(), "rst", "privacy.rst") - overrides = { - 'initial_header_level': 2, - } - content = get_content(filename, overrides=overrides) - return render_template("/content.html", act="privacy", content=content) - -@app.route("/dates") -def dates(): - filename = os.path.join("templates", get_locale(), "rst", "dates.rst") - content = get_content(filename) - return render_template("/content.html", - act="dates", content=content) - -@app.route("/prizes") -def prizes(): - filename = os.path.join("templates", get_locale(), "rst", "prizes.rst") - overrides = { - 'initial_header_level': 2, - } - content = get_content(filename, overrides=overrides) - return render_template("/prizes.html",act="prizes", content=content) - - - -@app.route("/competition/2013") -def competition_2013(): - competition = _(u'Competition 2013') - introduction = _(u'The winners of the programming competition, ' - u'showed at the PyCon.DE 2013 in Cologne their results. ' - u'A short presentation inlcuding a movie about their work done.') - article = [_(u'Both students presented to the astonished audience of over 250 Python developers their work.'), - _(u'A long applause showed up.' - u' Valentin had 9 months ago learned Python and Blender discovered earlier. ' - u'His Skatsimulation even includes 3D sound.'), - _(u'The preparatory courses were made by volunteers, such as the ' - u'employees of the magazine "Time Online" performed. ' - u'The following blog entry is a little impression of the success of the courses'), - ] - game_of_life = _(u'Anne a 15 year old girl showed a 3D-Version of the »Game of life«') - skat_simulation = _(u'Valentin (13 years) demomstrates his »Skat-Simulation«') - awards = _(u'The award ceremony') - return render_template("/impressions_2013.html", - act="competition_2013", - competition=competition, - introduction=introduction, - article=article, - game_of_life=game_of_life, - skat_simulation=skat_simulation, - awards=awards) - - -@app.errorhandler(404) -def page_not_found(e): - msg = _(u"Url: %(url)s not found", url=request.url) - info = _(u"This information is not available!") - return render_template("404.html", msg=msg, info=info) - -if __name__ == "__main__": - app.run(host='localhost', port=5014, debug=True) diff -r 63405034e061 -r ec1bb552ce55 pymove3d_babel.cfg --- a/pymove3d_babel.cfg Fri Apr 18 16:27:01 2014 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ -[python: **.py] -[jinja2: **/templates/**.html] -extensions=jinja2.ext.autoescape,jinja2.ext.with_ -