themes: Remove some unused code.
authorMatthijs Kooijman <matthijs@stdin.nl>
Mon, 19 Apr 2010 19:45:01 +0000 (21:45 +0200)
committerMatthijs Kooijman <matthijs@stdin.nl>
Mon, 19 Apr 2010 19:45:01 +0000 (21:45 +0200)
It seems the plugin interface for theme plugins changed slightly in
recent moinmoin versions, so this code is no longer used.

plugin/theme/__init__.py
plugin/theme/extinction.py
plugin/theme/site.py

index e4ed3b60f8b622bf55264c217c7ce9fe40cdff44..478f3865084a3c6e6a5eccdc6942ed81297ea96e 100644 (file)
@@ -1,5 +1,2 @@
 # -*- coding: iso-8859-1 -*-
 
-from MoinMoin.util import pysupport
-
-modules = pysupport.getPackageModules(__file__)
index e4e3984e7ea1a659a15e5fbcb2f2d2400bbbb228..22534e69032038610981b8bb68f49e39c5859a9b 100644 (file)
@@ -9,15 +9,5 @@
 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)
index e58d273fb55e27efad6abed19b718313cf56658d..19b10bd51df4c26ed6676a853cd6ac9ec6ea20c0 100644 (file)
@@ -184,14 +184,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: