appypod-rattail/gen/plone25/templates/Install.py
2010-09-02 16:16:08 +02:00

16 lines
651 B
Python

<!codeHeader!>
import appy.gen
from appy.gen.plone25.installer import PloneInstaller
import Products.<!applicationName!>.config as config
# ------------------------------------------------------------------------------
def install(self, reinstall=False):
'''Installation procedure.'''
return PloneInstaller(reinstall, self, config).install()
# ------------------------------------------------------------------------------
def uninstall(self, reinstall=False):
'''Uninstallation procedure.'''
return PloneInstaller(reinstall, self, config).uninstall()
# ------------------------------------------------------------------------------