2009-06-29 14:06:01 +02:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
from appy.gen import *
|
2011-11-28 22:50:01 +01:00
|
|
|
Grp = Group # Avoid name clashes with the Group class below and appy.gen.Group
|
2012-03-26 19:09:45 +02:00
|
|
|
Pge = Page # Avoid name clashes with the Page class below and appy.gen.Page
|
2011-12-05 15:11:29 +01: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 19:09:45 +02:00
|
|
|
from appy.gen.wrappers.PageWrapper import PageWrapper as WPage
|
2009-09-18 14:42:31 +02:00
|
|
|
from Globals import InitializeClass
|
|
|
|
from AccessControl import ClassSecurityInfo
|
2014-03-05 13:25:36 +01:00
|
|
|
# Layouts for Translation fields
|
|
|
|
tfw = {"edit":"f","cell":"f","view":"f","search":"f"}
|
2009-06-29 14:06:01 +02:00
|
|
|
<!imports!>
|
|
|
|
|
2011-01-14 09:06:25 +01:00
|
|
|
<!User!>
|
2011-11-28 22:50:01 +01:00
|
|
|
<!Group!>
|
2011-01-14 09:06:25 +01:00
|
|
|
<!Translation!>
|
2012-03-26 19:09:45 +02:00
|
|
|
<!Page!>
|
2012-08-21 19:57:23 +02:00
|
|
|
autoref(Page, Page.pages)
|
2012-03-26 19:09:45 +02:00
|
|
|
|
2011-01-14 09:06:25 +01:00
|
|
|
<!Tool!>
|
2009-06-29 14:06:01 +02:00
|
|
|
<!wrappers!>
|
|
|
|
# ------------------------------------------------------------------------------
|