From: Matthijs Kooijman Date: Wed, 19 Nov 2008 17:45:02 +0000 (+0100) Subject: Add an extinction theme X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fwipi.git;a=commitdiff_plain;h=16d6641d8e7bd26747eaf02d86c094365c852030 Add an extinction theme --- diff --git a/plugin/theme/extinction.py b/plugin/theme/extinction.py new file mode 100644 index 0000000..e4e3984 --- /dev/null +++ b/plugin/theme/extinction.py @@ -0,0 +1,23 @@ +# -*- coding: iso-8859-1 -*- +""" + MoinMoin - modern theme + + @copyright: 2003-2005 Nir Soffer, Thomas Waldmann + @license: GNU GPL, see COPYING for details. +""" + +from site import SiteTheme + +class Theme(SiteTheme): + + name = "extinction" + +def execute(request): + """ + Generate and return a theme object + + @param request: the request object + @rtype: MoinTheme + @return: Theme object + """ + return Theme(request)