[Zope3-checkins] CVS: Zope3/src/zope/app/workflow -
metadirectives.py:1.4.2.1
Philipp von Weitershausen
philikon at philikon.de
Wed Aug 6 11:25:16 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/workflow
In directory cvs.zope.org:/tmp/cvs-serv12594/workflow
Modified Files:
Tag: zcml-interface-field-branch
metadirectives.py
Log Message:
Change GlobalObject to InterfaceField wherever applicable.
=== Zope3/src/zope/app/workflow/metadirectives.py 1.4 => 1.4.2.1 ===
--- Zope3/src/zope/app/workflow/metadirectives.py:1.4 Sat Aug 2 12:36:54 2003
+++ Zope3/src/zope/app/workflow/metadirectives.py Wed Aug 6 10:25:10 2003
@@ -17,13 +17,14 @@
"""
from zope.configuration.fields import GlobalObject
from zope.interface import Interface
+from zope.app.configuration import InterfaceField
class IHandlerDirective(Interface):
"""Register an Import/Export Handler, that is able to load/save a XML
Representation of a ProcessDefinition and create a persistent Instance for
it."""
- interface = GlobalObject(
+ interface = InterfaceField(
title=u"Interface",
description=u"The interface of the process definition this "\
u"handler can handle (both for either import or export).",
More information about the Zope3-Checkins
mailing list