Add an extinction theme
authorMatthijs Kooijman <matthijs@stdin.nl>
Wed, 19 Nov 2008 17:45:02 +0000 (18:45 +0100)
committerMatthijs Kooijman <matthijs@stdin.nl>
Wed, 19 Nov 2008 17:45:02 +0000 (18:45 +0100)
plugin/theme/extinction.py [new file with mode: 0644]

diff --git a/plugin/theme/extinction.py b/plugin/theme/extinction.py
new file mode 100644 (file)
index 0000000..e4e3984
--- /dev/null
@@ -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)