pymove3d.py
author Reimar Bauer <rb.proj AT googlemail DOT com>
Sun, 19 Jan 2014 19:47:16 +0100
changeset 176 9d02dff93fce
parent 173 0fa9059d693d
child 177 6010a584dd21
permissions -rwxr-xr-x
impressions_2013 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                            competition_info=_(u'About Competition'),
    63                            dates=_(u'Dates'),
    64                            impressions=_(u'Impressions'))
    65 
    66 @app.route('/de')
    67 def de():
    68     global LANGUAGE_SELECTED
    69     LANGUAGE_SELECTED = "de"
    70     saying, author = get_saying()
    71     return render_template("/index.html",
    72                            saying = saying,
    73                            author = author,
    74                            competition_info=_(u'About Competition'),
    75                            dates=_(u'Dates'),
    76                            impressions=_(u'Impressions'))
    77 
    78 @app.route('/en')
    79 def en():
    80     saying, author = get_saying()
    81     global LANGUAGE_SELECTED
    82     LANGUAGE_SELECTED = "en"
    83     return render_template("/index.html",
    84                            saying = saying,
    85                            author = author,
    86                            competition_info=_(u'About Competition'),
    87                            dates=_(u'Dates'),
    88                            impressions=_(u'Impressions'))
    89 
    90 @app.route("/competition")
    91 def competition():
    92     filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
    93     content = get_content(filename)
    94     return render_template("/content.html", act="competition", content=content)
    95 
    96 @app.route("/task")
    97 def task():
    98     filename = os.path.join("templates", get_locale(), "rst", "task.rst")
    99     content = get_content(filename)
   100     return render_template("/content.html", act="task", content=content)
   101 
   102 @app.route("/submission")
   103 def submission():
   104     filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
   105     content = get_content(filename)
   106     return render_template("/content.html", act="submission", content=content)
   107 
   108 @app.route("/coursematerial")
   109 def coursematerial():
   110     filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
   111     content = get_content(filename)
   112     return render_template("/content.html", act="coursematerial", content=content)
   113 
   114 @app.route("/imprint")
   115 def imprint():
   116     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   117     content = get_content(filename)
   118     return render_template("/content.html", act="imprint", content=content)
   119 
   120 @app.route("/privacy")
   121 def privacy():
   122     filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
   123     content = get_content(filename)
   124     return render_template("/content.html", act="privacy", content=content)
   125 
   126 @app.route("/dates")
   127 def dates():
   128     filename = os.path.join("templates", get_locale(), "rst", "dates.rst")
   129     content = get_content(filename)
   130     return render_template("/content.html",
   131                            act="dates", content=content)
   132 
   133 @app.route("/competition/2013")
   134 def competition_2013():
   135     filename = os.path.join("templates", get_locale(), "archive", "competitions", "2013", "rst", "2013.rst")
   136     content = get_content(filename)
   137     return render_template("/impressions_2013.html",
   138                            act="competition_2013", content=content)
   139 
   140 @app.route("/competition/2014")
   141 def competition_2014():
   142     print get_locale() + "/archive/competitions/2014/index.html"
   143     return render_template(get_locale() + "/archive/competitions/2014/index.html", 
   144                            act="coursematerial")
   145 
   146 @app.errorhandler(404)
   147 def page_not_found(e):
   148     msg = _(u"Url: %(url)s not found" , url=request.url)
   149     info = _(u"This information is not available!")
   150     return render_template("404.html", msg=msg, info=info)
   151 
   152 if __name__ == "__main__":
   153     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung