appypod-rattail/gen/templates/wrappers.py

20 lines
839 B
Python
Raw Normal View History

2009-06-29 07:06:01 -05:00
# ------------------------------------------------------------------------------
from appy.gen import *
2011-11-28 15:50:01 -06:00
Grp = Group # Avoid name clashes with the Group class below and appy.gen.Group
from appy.gen.plone25.wrappers import AbstractWrapper
from appy.gen.plone25.wrappers.ToolWrapper import ToolWrapper as WTool
from appy.gen.plone25.wrappers.UserWrapper import UserWrapper as WUser
2011-11-28 15:50:01 -06:00
from appy.gen.plone25.wrappers.GroupWrapper import GroupWrapper as WGroup
from appy.gen.plone25.wrappers.TranslationWrapper import TranslationWrapper as WT
from Globals import InitializeClass
from AccessControl import ClassSecurityInfo
tfw = {"edit":"f","cell":"f","view":"f"} # Layout for Translation fields
2009-06-29 07:06:01 -05:00
<!imports!>
<!User!>
2011-11-28 15:50:01 -06:00
<!Group!>
<!Translation!>
<!Tool!>
2009-06-29 07:06:01 -05:00
<!wrappers!>
# ------------------------------------------------------------------------------