[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/xml - source.py:1.1 representable.py:NONE
Philipp von Weitershausen
philikon@philikon.de
Fri, 11 Apr 2003 06:52:17 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces/xml
In directory cvs.zope.org:/tmp/cvs-serv8990/interfaces/xml
Added Files:
source.py
Removed Files:
representable.py
Log Message:
Renamed IXMLRepresentable to IXMLSource and updated the documentation
accordingly.
=== Added File Zope3/src/zope/app/interfaces/xml/source.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""
$Id: source.py,v 1.1 2003/04/11 10:52:16 philikon Exp $
"""
from zope.interface import Interface, Attribute
class IXMLSource(Interface):
"""
This object can be adapted to one form of XML data representation
"""
class IXMLText(IXMLSource):
"""
This object represents XML data as text.
"""
source = Attribute("XML text")
=== Removed File Zope3/src/zope/app/interfaces/xml/representable.py ===