themes: Add proper copyright.
[matthijs/projects/wipi.git] / plugin / theme / site.py
index c190efb1b8ffd00411b288d45d7f07f098335df7..226680ba6dbcb6a39c6f2dc9a86ebac326f681b7 100644 (file)
@@ -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).
@@ -120,6 +123,7 @@ class SiteTheme(ThemeBase):
             #self.editbar(d),
             #self.credits(d),
             #self.showversion(d, **keywords),
+            u'<div id="footerbottom"></div>',
             u'</div>',
 
             # Post footer custom html
@@ -183,14 +187,4 @@ class SiteTheme(ThemeBase):
         # This adds #pagebottom and closes #page
         return html
 
-def execute(request):
-    """
-    Generate and return a theme object
-        
-    @param request: the request object
-    @rtype: MoinTheme
-    @return: Theme object
-    """
-    return Theme(request)
-
 # vim: set sw=4 sts=4 expandtab: