codekasten/wortschlucker/templates/nodes/brainstorming.html
lars 34acd9bf36 unified indentation (spaces instead of tabs)
fixed non-ascii handling for creoleparser (working around a possible creoleparser-bug that causes parsing to fail for unicode text with umlauts - only utf-8 encoded strings work)
2010-04-18 01:31:48 +00:00

37 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html encoding="utf-8"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:py="http://genshi.edgewall.org/">
<xi:include href="../layout.html" />
<?python
from creoleparser import text2html
#text can be creole-encoded, see http://www.wikicreole.org/imageServlet?page=CheatSheet%2Fcreole_cheat_sheet.png&width=340
title = "Brainstorming Online"
# creoleparser seems to require "utf-8" encoded strings - unicode does not work (this seems to be a bug)
content01 = """
dieser mehrzeilige Text ist HTML-escaped und kann Umlaute enthalten.
Falls er <Umlaute> **enthält**, dann muss die Datei utf8-codiert sein und der Text
muss in unicode verwandelt werden (unicode(foo)).
""".encode("utf-8")
content01 = text2html(content01, encoding=None)
?>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<div class="post">
${Markup(content01)}
</div>
${poll_new_small()}
</body>
</html>