# HG changeset patch # User Peter Koppatz # Date 1385552437 -3600 # Node ID 3aa6f55df0398248a3808bf05d8ca77ac86eaa0f # Parent 46abfb767ff2824fdd50971f210aae169e492837 All pages as dummy prepaired diff -r 46abfb767ff2 -r 3aa6f55df039 .hgignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,36 @@ +syntax: glob +# This line is a comment, and will be skipped. +# Empty lines are skipped too. +# Backup files left behind by the Emacs editor. + +*~ + +# Lock files used by the Emacs editor. +# Notice that the "#" character is quoted with a backslash. +# This prevents it from being interpreted as starting a comment. + +.\#* + +# Temporary files used by the vim editor. +.*.swp + +# A hidden file created by the Mac OS X Finder. +.DS_Store +# temporare Dateien die mit "make html" jederzeit neu generieren kann. + +*.pyc +spam.log +pid.txt +sphinxdocs +modules1 +dummy* +_build +build +*.log +*.aux +*.synctex.gz +*.out +pyhasse.similarity/* +oldies +level/Level* +static/js/prettify* \ No newline at end of file diff -r 46abfb767ff2 -r 3aa6f55df039 babel.cfg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/babel.cfg Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,4 @@ +[python: **.py] +[jinja2: **/templates/**.html] +extensions=jinja2.ext.autoescape,jinja2.ext.with_ + diff -r 46abfb767ff2 -r 3aa6f55df039 config.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/config.py Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# ... +# available languages +LANGUAGES = { + 'en': 'English', + 'de': 'Deutsch', + 'it': 'Italiano' +} diff -r 46abfb767ff2 -r 3aa6f55df039 pymove3d.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pymove3d.py Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,49 @@ +from flask import Flask +from flask import render_template +from flask import request +from flask import abort, redirect, url_for +import os +from flask import send_from_directory +import logging +from logging import Formatter + +from flask.ext.babel import gettext +from flask.ext.babel import Babel + +app = Flask(__name__) +babel = Babel(app) + +@babel.localeselector +def get_locale(): + return "en" #request.accept_languages.best_match(LANGUAGES.keys()) + +@app.route("/") + +@app.route("/index") +def index(): + return render_template("index.html", act="index") + +@app.route("/competition") +def competition(): + return render_template("competition.html", act="competition") + +@app.route("/task") +def task(): + return render_template("task.html", act="task") + +@app.route("/submission") +def submission(): + return render_template("submission.html", act="submission") + +@app.route("/coursematerial") +def coursematerial(): + return render_template("coursematerial.html", act="coursematerial") + +@app.errorhandler(404) +def page_not_found(e): + return render_template("404.html"), 404 + +if __name__ == "__main__": + app.run(host='localhost', port=5014, debug=True) + + diff -r 46abfb767ff2 -r 3aa6f55df039 static/css/pymove3d.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/static/css/pymove3d.css Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,1 @@ +h1 {text-align: center;} \ No newline at end of file diff -r 46abfb767ff2 -r 3aa6f55df039 templates/404.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/404.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,5 @@ +{% extends "theme.html" %} +{% block body %} +

Page Not Found

+

_('This information is not available!')

_('Home') +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/competition.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/competition.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,16 @@ +{% extends "theme.html" %} + +{% block jumbotron %} + + {% include "jumbotron-competition.html" %} +

Spezial Jubotron...

+ +{% endblock %} + + +{% block body %} +

+Competition +

+ +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/coursematerial.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/coursematerial.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,16 @@ +{% extends "theme.html" %} + +{% block jumbotron %} + + {% include "jumbotron-coursematerial.html" %} +

Spezial Jubotron...

+ +{% endblock %} + + +{% block body %} +

+Course material +

+ +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/en/theme.html --- a/templates/en/theme.html Wed Nov 27 11:18:18 2013 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,91 +0,0 @@ - - - - - - - - - - - Navbar Template for Bootstrap - - - - - - - - - - - - - - - - -
- - - - - -
-

Navbar example

-

This example is a quick exercise to illustrate how the -default, static navbar and fixed to top navbar work. It includes the -responsive CSS and HTML, so it also adapts to your viewport and device.

-

- View navbar docs » -

-
- -
- - - - - - - - - \ No newline at end of file diff -r 46abfb767ff2 -r 3aa6f55df039 templates/index.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/index.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,18 @@ +{% extends "theme.html" %} + +{% block jumbotron %} + + {% include "jumbotron-default.html" %} +

Spezial Jubotron...

+ +{% endblock %} + + +{% block body %} +

+Welcome to the
+Python competition
+2014 +

+ +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/jumbotron-competition.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/jumbotron-competition.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,7 @@ +

Jumbotron: competition

+

This example is a quick exercise to illustrate how the + default, static navbar and fixed to top navbar work. It includes the + responsive CSS and HTML, so it also adapts to your viewport and device.

+

+ View navbar docs » +

diff -r 46abfb767ff2 -r 3aa6f55df039 templates/jumbotron-coursematerial.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/jumbotron-coursematerial.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,7 @@ +

Jumbotron: coursematerial

+

This example is a quick exercise to illustrate how the + default, static navbar and fixed to top navbar work. It includes the + responsive CSS and HTML, so it also adapts to your viewport and device.

+

+ View navbar docs » +

diff -r 46abfb767ff2 -r 3aa6f55df039 templates/jumbotron-default.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/jumbotron-default.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,7 @@ +

Default-jumbotron

+

This example is a quick exercise to illustrate how the + default, static navbar and fixed to top navbar work. It includes the + responsive CSS and HTML, so it also adapts to your viewport and device.

+

+ View navbar docs » +

diff -r 46abfb767ff2 -r 3aa6f55df039 templates/jumbotron-submission.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/jumbotron-submission.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,7 @@ +

Jumbotron: submission

+

This example is a quick exercise to illustrate how the + default, static navbar and fixed to top navbar work. It includes the + responsive CSS and HTML, so it also adapts to your viewport and device.

+

+ View navbar docs » +

diff -r 46abfb767ff2 -r 3aa6f55df039 templates/jumbotron-task.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/jumbotron-task.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,7 @@ +

Jumbotron: Task

+

This example is a quick exercise to illustrate how the + default, static navbar and fixed to top navbar work. It includes the + responsive CSS and HTML, so it also adapts to your viewport and device.

+

+ View navbar docs » +

diff -r 46abfb767ff2 -r 3aa6f55df039 templates/submission.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/submission.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,16 @@ +{% extends "theme.html" %} + +{% block jumbotron %} + + {% include "jumbotron-submission.html" %} +

Spezial Jubotron...

+ +{% endblock %} + + +{% block body %} +

+Submission +

+ +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/task.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/task.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,16 @@ +{% extends "theme.html" %} + +{% block jumbotron %} + + {% include "jumbotron-task.html" %} +

Spezial Jubotron...

+ +{% endblock %} + + +{% block body %} +

+Task +

+ +{% endblock %} diff -r 46abfb767ff2 -r 3aa6f55df039 templates/theme.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/theme.html Wed Nov 27 12:40:37 2013 +0100 @@ -0,0 +1,92 @@ + + + + + + + + + + + Navbar Template for Bootstrap + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+ {% block jumbotron %}{% endblock %} +
+ + {% block body %}{% endblock %} + +
+ + + + + + + + +