pymove3d.py
author Peter Koppatz <peter@koppatz.com>
Sun, 19 Jan 2014 21:34:36 +0100
changeset 188 104211ae0ffa
parent 186 ddcf9027531e
child 202 c8d8bbf51f90
permissions -rwxr-xr-x
W3C errrors
     1 import os
     2 import codecs
     3 
     4 from docutils.core import publish_parts
     5 from flask import Flask
     6 from flask import render_template
     7 from flask import request
     8 from flask.ext.babel import gettext as _
     9 from flask.ext.babel import Babel
    10 from config import LANGUAGES
    11 from sayings import get_saying
    12 
    13 
    14 LANGUAGE_SELECTED = "de"
    15 #ToDo after engelish is implemented set LANGUAGE_SELECTED = None
    16 
    17 app = Flask(__name__)
    18 babel = Babel(app)
    19 
    20 app.config['BABEL_DEFAULT_LOCALE'] = 'de'
    21 
    22 
    23 def get_content(filename):
    24     content = u""
    25     if os.path.isfile(filename):
    26         with codecs.open(filename, 'r', 'utf-8') as f:
    27             rst_data = f.read()
    28         f.close()
    29         content = publish_parts(rst_data, writer_name='html')['html_body']
    30     return content
    31 
    32 def get_topmenue():
    33     menue = [('/competition', _(u'Competition')),
    34               ('/task', _(u'Task')),
    35               ('/submission', _(u'Submission')),
    36               ('/coursematerial', _(u'Coursematerial')),
    37             ]
    38     return menue
    39 
    40 app.jinja_env.globals.update(get_topmenue=get_topmenue)
    41 
    42 
    43 @babel.localeselector
    44 def get_locale():
    45     """ToDo: if translation is completed, switch to en """
    46     return LANGUAGE_SELECTED or request.accept_languages.best_match(LANGUAGES.keys()) or 'de'
    47 
    48 
    49 @app.route("/")
    50 @app.route("/index")
    51 def index():
    52     saying, author = get_saying()
    53     return render_template("/index.html", 
    54                            saying=saying,
    55                            author=author,
    56                            competition_info=_(u'About Competition'),
    57                            dates=_(u'Dates'),
    58                            impressions=_(u'Impressions'))
    59 
    60 @app.route('/de')
    61 def de():
    62     global LANGUAGE_SELECTED
    63     LANGUAGE_SELECTED = "de"
    64     saying, author = get_saying()
    65     return render_template("/index.html",
    66                            saying=saying,
    67                            author=author,
    68                            competition_info=_(u'About Competition'),
    69                            dates=_(u'Dates'),
    70                            impressions=_(u'Impressions'))
    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                            competition_info=_(u'About Competition'),
    81                            dates=_(u'Dates'),
    82                            impressions=_(u'Impressions'))
    83 
    84 @app.route("/competition")
    85 def competition():
    86     filename = os.path.join("templates", get_locale(), "rst", "competition.rst")
    87     content = get_content(filename)
    88     return render_template("/content.html", act="competition", content=content)
    89 
    90 @app.route("/task")
    91 def task():
    92     filename = os.path.join("templates", get_locale(), "rst", "task.rst")
    93     content = get_content(filename)
    94     return render_template("/content.html", act="task", content=content)
    95 
    96 @app.route("/submission")
    97 def submission():
    98     filename = os.path.join("templates", get_locale(), "rst", "submission.rst")
    99     content = get_content(filename)
   100     return render_template("/content.html", act="submission", content=content)
   101 
   102 @app.route("/coursematerial")
   103 def coursematerial():
   104     filename = os.path.join("templates", get_locale(), "rst", "coursematerial.rst")
   105     content = get_content(filename)
   106     return render_template("/content.html", act="coursematerial", content=content)
   107 
   108 @app.route("/imprint")
   109 def imprint():
   110     filename = os.path.join("templates", get_locale(), "rst", "imprint.rst")
   111     content = get_content(filename)
   112     return render_template("/content.html", act="imprint", content=content)
   113 
   114 @app.route("/privacy")
   115 def privacy():
   116     filename = os.path.join("templates", get_locale(), "rst", "privacy.rst")
   117     content = get_content(filename)
   118     return render_template("/content.html", act="privacy", content=content)
   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("/content.html",
   125                            act="dates", content=content)
   126 
   127 @app.route("/competition/2013")
   128 def competition_2013():
   129     filename = os.path.join("templates", get_locale(), "archive", "2013", "competitions", "rst", "2013.rst")
   130     content = get_content(filename)
   131     return render_template("/impressions_2013.html",
   132                            act="competition_2013", content=content)
   133 
   134 
   135 @app.errorhandler(404)
   136 def page_not_found(e):
   137     msg = _(u"Url: %(url)s not found" , url=request.url)
   138     info = _(u"This information is not available!")
   139     return render_template("404.html", msg=msg, info=info)
   140 
   141 if __name__ == "__main__":
   142     app.run(host='localhost', port=5014, debug=True)
Impressum Datenschutzerklärung