[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/xml - __init__.py:1.1 field.py:1.1

Martijn Faassen m.faassen@vet.uu.nl
Wed, 9 Apr 2003 05:31:53 -0400


Update of /cvs-repository/Zope3/src/zope/app/interfaces/xml
In directory cvs.zope.org:/tmp/cvs-serv1105/src/zope/app/interfaces/xml

Added Files:
	__init__.py field.py 
Log Message:
Add basic XML field implementation.


=== Added File Zope3/src/zope/app/interfaces/xml/__init__.py ===
# this is a package


=== Added File Zope3/src/zope/app/interfaces/xml/field.py ===
##############################################################################
#
# Copyright (c) 2002, 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.
#
##############################################################################
"""

Revision information:
$Id: field.py,v 1.1 2003/04/09 09:31:52 faassen Exp $
"""
from zope.schema.interfaces import IField

class IXML(IField):
    u"""A field that can store XML text.
    """