[Zope3-checkins] CVS: Zope3/src/zope/app/content/tests - test_xmldocument.py:1.3
Philipp von Weitershausen
philikon@philikon.de
Fri, 11 Apr 2003 06:52:46 -0400
Update of /cvs-repository/Zope3/src/zope/app/content/tests
In directory cvs.zope.org:/tmp/cvs-serv8990/content/tests
Modified Files:
test_xmldocument.py
Log Message:
Renamed IXMLRepresentable to IXMLSource and updated the documentation
accordingly.
=== Zope3/src/zope/app/content/tests/test_xmldocument.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/content/tests/test_xmldocument.py:1.2 Thu Apr 10 09:04:43 2003
+++ Zope3/src/zope/app/content/tests/test_xmldocument.py Fri Apr 11 06:52:16 2003
@@ -26,7 +26,7 @@
from zope.interface import Interface
from zope.interface.interface import InterfaceClass
-from zope.app.interfaces.xml.representable import IXMLRepresentable
+from zope.app.interfaces.xml.source import IXMLSource
from zope.app.component.globalinterfaceservice import interfaceService
class IRandomInterface(Interface):
@@ -59,7 +59,7 @@
schema1 = 'http://schema.zope.org/hypothetical/schema1'
schema2 = 'http://schema.zope.org/hypothetical/schema2'
- extends = (IXMLRepresentable,)
+ extends = (IXMLSource,)
interface1 = InterfaceClass(schema1, extends, {})
interface2 = InterfaceClass(schema2, extends, {})
@@ -113,7 +113,7 @@
schema1 = 'http://schema.zope.org/hypothetical/schema1'
schema2 = 'http://schema.zope.org/hypothetical/schema2'
- extends = (IXMLRepresentable,)
+ extends = (IXMLSource,)
interface1 = InterfaceClass(schema1, extends, {})
interface2 = InterfaceClass(schema2, extends, {})