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
|
2012-03-26 12:09:45 -05:00
|
|
|
Pge = Page # Avoid name clashes with the Page class below and appy.gen.Page
|
2011-12-05 08:11:29 -06:00
|
|
|
from appy.gen.wrappers import AbstractWrapper
|
|
|
|
from appy.gen.wrappers.ToolWrapper import ToolWrapper as WTool
|
|
|
|
from appy.gen.wrappers.UserWrapper import UserWrapper as WUser
|
|
|
|
from appy.gen.wrappers.GroupWrapper import GroupWrapper as WGroup
|
|
|
|
from appy.gen.wrappers.TranslationWrapper import TranslationWrapper as WT
|
2012-03-26 12:09:45 -05:00
|
|
|
from appy.gen.wrappers.PageWrapper import PageWrapper as WPage
|
2009-09-18 07:42:31 -05:00
|
|
|
from Globals import InitializeClass
|
|
|
|
from AccessControl import ClassSecurityInfo
|
2011-09-06 14:46:57 -05:00
|
|
|
tfw = {"edit":"f","cell":"f","view":"f"} # Layout for Translation fields
|
2009-06-29 07:06:01 -05:00
|
|
|
<!imports!>
|
|
|
|
|
2011-01-14 02:06:25 -06:00
|
|
|
<!User!>
|
2011-11-28 15:50:01 -06:00
|
|
|
<!Group!>
|
2011-01-14 02:06:25 -06:00
|
|
|
<!Translation!>
|
2012-03-26 12:09:45 -05:00
|
|
|
<!Page!>
|
2012-08-21 12:57:23 -05:00
|
|
|
autoref(Page, Page.pages)
|
2012-03-26 12:09:45 -05:00
|
|
|
|
2011-01-14 02:06:25 -06:00
|
|
|
<!Tool!>
|
2009-06-29 07:06:01 -05:00
|
|
|
<!wrappers!>
|
|
|
|
# ------------------------------------------------------------------------------
|