X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=plugin%2Ftheme%2Fsite.py;h=c2e1659eb6dd4b155bd1769b050244319d15fea0;hb=ec5754fc4e62f7603fdbd2dfdf827bd8f8d5dd7a;hp=19b10bd51df4c26ed6676a853cd6ac9ec6ea20c0;hpb=b3fdc992a52066a8a5bd004834445eec6eb70961;p=matthijs%2Fprojects%2Fwipi.git diff --git a/plugin/theme/site.py b/plugin/theme/site.py index 19b10bd..c2e1659 100644 --- a/plugin/theme/site.py +++ b/plugin/theme/site.py @@ -1,6 +1,9 @@ # -*- coding: iso-8859-1 -*- """ - Evolution Events, website theme + MoinMoin - Generic website theme. + + @copyright: 2009+ Matthijs Kooijman + @license: GNU GPL, see COPYING for details. This theme is meant for wiki's that are meant to function as a website, meaning nothing fancy and wiki-ish (at least when you're not logged in). @@ -12,6 +15,7 @@ from MoinMoin.theme import ThemeBase from MoinMoin.Page import Page from MoinMoin import wikiutil +from StringIO import StringIO class SiteTheme(ThemeBase): @@ -135,18 +139,8 @@ class SiteTheme(ThemeBase): @rtype: unicode @return: menu html """ - items = Page(self.request, 'Site/Menu').data.split('\n') - - html = '' - - return html + menu = Page(self.request, 'Site/Menu') + return u'' % parse_wiki_page(self.request, menu) def theme_script(self, name): """ Format script html from this theme's static dir """ @@ -184,4 +178,34 @@ class SiteTheme(ThemeBase): # This adds #pagebottom and closes #page return html +def parse_wiki_page(request, page): + """ + This is an ugly hack to render a page into a string. By default, + formatters render using request.write automatically, which prevents us + from capturing the output. By disguising a StringIO buffer as a request + object, we manage to get at the rendered contents. + + However, when {{{#!wiki or similar blocks are used, stuff breaks (since + that creates a second parser that doesn't get our StringIO buffer). + """ + Parser = wikiutil.searchAndImportPlugin(request.cfg, "parser", 'wiki') + # Create a stringIO buffer, to capture the output + buffer = StringIO() + # Make the buffer look like the request, since the parser writes + # directly to the request + buffer.form = request.form + buffer.getText = request.getText + buffer.cfg = request.cfg + # Create a new formatter. Since we need to set its page, we can't use + # request.formatter. + from MoinMoin.formatter.text_html import Formatter + formatter = Formatter(request) + formatter.setPage(page) + + # Create the parser and parse the page + parser = Parser(page.data, buffer) + parser.format(formatter) + # Return the captured buffer + return buffer.getvalue() + # vim: set sw=4 sts=4 expandtab: