2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
from appy.gen import *
|
2009-07-10 08:01:50 -05:00
|
|
|
from appy.gen.plone25.wrappers import AbstractWrapper, FileWrapper
|
2009-06-29 07:06:01 -05:00
|
|
|
from appy.gen.plone25.wrappers.ToolWrapper import ToolWrapper
|
|
|
|
from appy.gen.plone25.wrappers.FlavourWrapper import FlavourWrapper
|
|
|
|
from appy.gen.plone25.wrappers.PodTemplateWrapper import PodTemplateWrapper
|
2009-09-18 07:42:31 -05:00
|
|
|
from Globals import InitializeClass
|
|
|
|
from AccessControl import ClassSecurityInfo
|
2009-06-29 07:06:01 -05:00
|
|
|
<!imports!>
|
|
|
|
|
|
|
|
class PodTemplate(PodTemplateWrapper):
|
|
|
|
'''This class represents a POD template for this application.'''
|
|
|
|
<!podTemplateBody!>
|
|
|
|
class Flavour(FlavourWrapper):
|
|
|
|
'''This class represents the Appy class used for defining a flavour.'''
|
|
|
|
folder=True
|
|
|
|
<!flavourBody!>
|
|
|
|
class Tool(ToolWrapper):
|
|
|
|
'''This class represents the tool for this application.'''
|
|
|
|
folder=True
|
|
|
|
<!toolBody!>
|
|
|
|
<!wrappers!>
|
|
|
|
# ------------------------------------------------------------------------------
|