[Zope3-checkins] CVS: Zope3/src/zope/app/browser/skins/zopetop - standardmacros.py:1.4
Sidnei da Silva
sidnei@x3ng.com.br
Sun, 30 Mar 2003 10:41:28 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/skins/zopetop
In directory cvs.zope.org:/tmp/cvs-serv18283/src/zope/app/browser/skins/zopetop
Modified Files:
standardmacros.py
Log Message:
Slight changes to IObjectCopier to allow copying without children. Its somewhat crufty, but I cant think of a better solution. Comes with tests :)
=== Zope3/src/zope/app/browser/skins/zopetop/standardmacros.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/browser/skins/zopetop/standardmacros.py:1.3 Thu Dec 26 15:20:48 2002
+++ Zope3/src/zope/app/browser/skins/zopetop/standardmacros.py Sun Mar 30 10:40:57 2003
@@ -19,10 +19,10 @@
"""
from zope.app.browser.skins.basic.standardmacros import StandardMacros
-ZMIMacros = StandardMacros
+BaseMacros = StandardMacros
-class StandardMacros(ZMIMacros):
+class StandardMacros(BaseMacros):
- __implements__ = ZMIMacros.__implements__
+ __implements__ = BaseMacros.__implements__
macro_pages = ('view_macros', 'widget_macros', 'dialog_macros')