[Zapp-cvs-commit] ZApp ZApp_CMFBase.py,1.12,1.13
Brought to you by:
sspickle
|
From: <ssp...@us...> - 2003-08-07 16:35:15
|
Update of /cvsroot/zapp/ZApp
In directory sc8-pr-cvs1:/tmp/cvs-serv16318
Modified Files:
ZApp_CMFBase.py
Log Message:
fixed problem with manage_afterAdd
Index: ZApp_CMFBase.py
===================================================================
RCS file: /cvsroot/zapp/ZApp/ZApp_CMFBase.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** ZApp_CMFBase.py 7 Aug 2003 13:50:32 -0000 1.12
--- ZApp_CMFBase.py 7 Aug 2003 16:35:11 -0000 1.13
***************
*** 12,16 ****
props = lpcol(
! [lprop(id='portal_type'),
]
)
--- 12,16 ----
props = lpcol(
! [lprop(id='cmf_portal_type'),
]
)
***************
*** 85,88 ****
--- 85,89 ----
#for action in actions:
#if action.getId() ==
+ print "in notify copy.. "
copyID = '_v_' + self.id + 'copyXML'
setattr(container, copyID, self.safeMiscData.getXMLDict())
***************
*** 91,95 ****
--- 92,98 ----
""" restore XML from volitile attribute.. """
+ print "in manage_afterAdd", self.id
PortalContent.manage_afterAdd(self, item, container)
+ ZApp_Base.manage_afterAdd(self, item, container)
checkID = self.id
***************
*** 236,240 ****
),
},
! )
--- 239,243 ----
),
},
! )
|