2009-06-29 07:06:01 -05:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
from appy.gen import *
|
2010-08-05 11:23:17 -05:00
|
|
|
from appy.gen.plone25.wrappers import AbstractWrapper
|
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
|
2010-09-02 09:16:08 -05:00
|
|
|
from appy.gen.plone25.wrappers.UserWrapper import UserWrapper
|
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!>
|
2010-09-02 09:16:08 -05:00
|
|
|
class User(UserWrapper):
|
|
|
|
'''This class represents a user.'''
|
|
|
|
<!userBody!>
|
2009-06-29 07:06:01 -05:00
|
|
|
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!>
|
|
|
|
# ------------------------------------------------------------------------------
|