pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Sun, 19 Jan 2014 12:12:17 +0100
changeset 162 90e47d2a2c40
parent 161 cb62df6e4e77
child 163 c87c8fe6c9bf
permissions -rwxr-xr-x
competition imports content from a rst file
     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 import codecs
    18 from docutils.core import publish_parts
    19 
    20 
    21 LANGUAGE_SELECTED = "de"
    22 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    23 
    24 app = Flask(__name__)
    25 babel = Babel(app)
    26 
    27 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    28 
    29 def get_content(filename):
    30     content = u""
    31     if os.path.isfile(filename):
    32         with codecs.open(filename, 'r', 'utf-8') as f:
    33             rst_data = f.read()
    34         f.close()
    35         content = publish_parts(rst_data, writer_name='html')['html_body']
    36     return content
    37 
    38 def get_topmenue():
    39     menue =  [('/competition', _(u'Competition')),
    40               ('/task', _(u'Task')),
    41               ('/submission', _(u'Submission')),
    42               ('/coursematerial', _(u'Coursematerial')),
    43               ]
    44     return menue
    45 
    46 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    47 
    48 
    49 @babel.localeselector
    50 def get_locale():
    51     """ToDo: if translation is completed, switch to en """
    52     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    53 
    54 
    55 @app.route("/")
    56 @app.route("/index")
    57 def index():
    58     saying, author = get_saying()
    59     return render_template("/index.html", 
    60                            saying = saying,
    61                            author = author)
    62 
    63 @app.route('/de')
    64 def de():
    65     global LANGUAGE_SELECTED
    66     LANGUAGE_SELECTED = "de"
    67     saying, author = get_saying()
    68     return render_template("/index.html",
    69                            saying = saying,
    70                            author = author)
    71 
    72 @app.route('/en')
    73 def en():
    74     saying, author = get_saying()
    75     global LANGUAGE_SELECTED
    76     LANGUAGE_SELECTED = "en"
    77     return render_template("/index.html",
    78                            saying = saying,
    79                            author = author)
    80 
    81 @app.route("/competition")
    82 def competition():
    83     filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
    84     content = get_content(filename)
    85     return render_template("/competition.html", act="competition", content=content)
    86 
    87 @app.route("/task")
    88 def task():
    89     return render_template(get_locale() + "/task.html", act="task")
    90 
    91 @app.route("/submission")
    92 def submission():
    93     return render_template(get_locale() + "/submission.html", act="submission")
    94 
    95 @app.route("/coursematerial")
    96 def coursematerial():
    97     return render_template(get_locale() + "/coursematerial.html", act="coursematerial")
    98 
    99 @app.route("/imprint")
   100 def imprint():
   101     return render_template(get_locale() + "/imprint.html", act="imprint")
   102 
   103 @app.route("/privacy")
   104 def privacy():
   105     return render_template(get_locale() + "/privacy.html", act="privacy")
   106 
   107 @app.route("/competition/2013")
   108 def competition_2013():
   109     print get_locale() + "/archive/competitions/2013/index.html"
   110     return render_template(get_locale() + "/archive/competitions/2013/index.html", 
   111                            act="coursematerial")
   112 
   113 @app.route("/competition/2014")
   114 def competition_2014():
   115     print get_locale() + "/archive/competitions/2014/index.html"
   116     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
   117                            act="coursematerial")
   118 
   119 
   120 @app.route("/dates")
   121 def dates():
   122     filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
   123     content = get_content(filename)
   124     return render_template("/dates.html",
   125                            act="dates", content=content)
   126 
   127 
   128 @app.errorhandler(404)
   129 def page_not_found(e):
   130     msg = _(u"Url: %(url)s not found" , url=request.url)
   131     info = _(u"This information is not available!")
   132     return render_template("404.html", msg=msg, info=info)
   133 
   134 if __name__ == "__main__":
   135     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung