# HG changeset patch # User Peter Koppatz # Date 1390071979 -3600 # Node ID ea70f3d8167632d553aba4f8b7da5542140aba2c # Parent ae4cd5fbf65fb20a0883575280e82dccb4a6a945 Sayings implemented diff -r ae4cd5fbf65f -r ea70f3d81676 pymove3d.py --- a/pymove3d.py Sat Jan 18 16:29:40 2014 +0100 +++ b/pymove3d.py Sat Jan 18 20:06:19 2014 +0100 @@ -11,6 +11,7 @@ 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 @@ -27,7 +28,10 @@ @app.route("/") @app.route("/index") def index(): - return render_template(get_locale() + "/index.html") + saying, author = get_saying() + return render_template(get_locale() + "/index.html", + saying = saying, + author = author) @app.route('/de') def de(): diff -r ae4cd5fbf65f -r ea70f3d81676 sayings.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sayings.py Sat Jan 18 20:06:19 2014 +0100 @@ -0,0 +1,28 @@ +from random import shuffle + +def get_saying(): + sayings = [('The Zen of Python, by Tim Peters', '__Tim Peters, The Zen of Python'), + ("Beautiful is better than ugly.", '__Tim Peters, The Zen of Python'), + ("Explicit is better than implicit.", '__Tim Peters, The Zen of Python'), + ("Simple is better than complex.", '__Tim Peters, The Zen of Python'), + ("Complex is better than complicated.", '__Tim Peters, The Zen of Python'), + ("Flat is better than nested.", '__Tim Peters, The Zen of Python'), + ("Sparse is better than dense.", '__Tim Peters, The Zen of Python'), + ("Readability counts.", '__Tim Peters, The Zen of Python'), + ("Special cases aren't special enough to break the rules.", '__Tim Peters, The Zen of Python'), + ("Although practicality beats purity.", '__Tim Peters, The Zen of Python'), + ("Errors should never pass silently.", '__Tim Peters, The Zen of Python'), + ("Unless explicitly silenced.", '__Tim Peters, The Zen of Python'), + ("In the face of ambiguity, refuse the temptation to guess.", '__Tim Peters, The Zen of Python'), + ("Although that way may not be obvious at first unless you're Dutch.", '__Tim Peters, The Zen of Python'), + ("Now is better than never.", '__Tim Peters, The Zen of Python'), + ("Although never is often better than *right* now.", '__Tim Peters, The Zen of Python'), + ("If the implementation is hard to explain, it's a bad idea.", '__Tim Peters, The Zen of Python'), + ("If the implementation is easy to explain, it may be a good idea.", '__Tim Peters, The Zen of Python'), + ("Namespaces are one honking great idea -- let's do more of those!", '__Tim Peters, The Zen of Python'), + ] + + shuffle(sayings) + + saying, author = sayings[0] + return saying, author diff -r ae4cd5fbf65f -r ea70f3d81676 templates/claims.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/claims.html Sat Jan 18 20:06:19 2014 +0100 @@ -0,0 +1,36 @@ +
+
+
+

+ + + + + + + {{ saying }} + + + + + + + +

+
+

{{ author }}

+
+
+ diff -r ae4cd5fbf65f -r ea70f3d81676 templates/de/index.html --- a/templates/de/index.html Sat Jan 18 16:29:40 2014 +0100 +++ b/templates/de/index.html Sat Jan 18 20:06:19 2014 +0100 @@ -1,139 +1,105 @@ {% extends "theme.html" %} {% block body %}
-
-
-
-

- - - - - - - Beautiful is better than ugly. - Explicit is better than implicit. - Simple is better than complex. - - - - - - - -

-

__Tim Peters, The Zen of Python

-
-
-
-
-
-

Einsendeschluss

-
-
-
    -
  • 1. Mai 2014
  • -
-
-
- -
-
-

Folgen Sie uns auch auf

-
- -
- -
- -
-
-
-

Python bewegt die Welt

-
-
-
    -
  • Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in - der Softwareentwicklung eignet.
  • -
  • Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin - entwickelt worden.
  • -
  • Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.
  • -
-
-
-
+ {% include "claims.html" %} +
+
+
+

Einsendeschluss

+
+
    +
  • 1. Mai 2014
  • +
+
+
+ +
+
+

Folgen Sie uns auch auf

+
+ +
+ +
+ +
+
+
+

Python bewegt die Welt

+
+
+
    +
  • Python ist eine moderne Programmiersprache, die sich für fast jedes Anwendungsgebiet in + der Softwareentwicklung eignet.
  • +
  • Python ist dynamisch und objektorientiert und von Anfang an auf den einfachen Einstieg hin + entwickelt worden.
  • +
  • Python wird weltweit in vielen der bekanntesten Software Projekte eingesetzt.
  • +
+
+
+
+
{% endblock %} diff -r ae4cd5fbf65f -r ea70f3d81676 tests/test_sayings.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test_sayings.py Sat Jan 18 20:06:19 2014 +0100 @@ -0,0 +1,6 @@ +from sayings import get_saying + +def test_saying(): + saying, author = get_saying() + assert saying is not None + assert author is not None