CVS: Products/ParsedXML/NodePath - ElementIdPath.py:1.4 NodePath.py:1.4 RobustPath.py:1.4 __init__.py:1.4
Martijn Faassen <[email protected]> Tue, 27 Apr 2004 09:06:51 -0400
| Newsgroups | gmane.comp.web.zope.parsed-xml |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs-repository/Products/ParsedXML/NodePath In directory cvs.zope.org:/tmp/cvs-serv30263/NodePath Modified Files: ElementIdPath.py NodePath.py RobustPath.py __init__.py Log Message: Updated LICENSE to ZPL 2.0. === Products/ParsedXML/NodePath/ElementIdPath.py 1.3 => 1.4 === --- Products/ParsedXML/NodePath/ElementIdPath.py:1.3 Sat Dec 8 15:56:25 2001 +++ Products/ParsedXML/NodePath/ElementIdPath.py Tue Apr 27 09:06:20 2004 @@ -1,3 +1,17 @@ +############################################################################## +# +# Copyright (c) 2001-2004 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 +# +############################################################################## + from NodePath import BaseNodePathScheme, registry class ElementIdPathScheme(BaseNodePathScheme): === Products/ParsedXML/NodePath/NodePath.py 1.3 => 1.4 === --- Products/ParsedXML/NodePath/NodePath.py:1.3 Wed Apr 24 09:43:52 2002 +++ Products/ParsedXML/NodePath/NodePath.py Tue Apr 27 09:06:20 2004 @@ -1,3 +1,17 @@ +############################################################################## +# +# Copyright (c) 2001-2004 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 +# +############################################################################## + import string class NodePathError(Exception): === Products/ParsedXML/NodePath/RobustPath.py 1.3 => 1.4 === --- Products/ParsedXML/NodePath/RobustPath.py:1.3 Sat Dec 8 15:56:25 2001 +++ Products/ParsedXML/NodePath/RobustPath.py Tue Apr 27 09:06:20 2004 @@ -1,3 +1,17 @@ +############################################################################## +# +# Copyright (c) 2001-2004 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 +# +############################################################################## + from NodePath import BaseNodePathScheme, NodePathError import random, string, urllib import xml.dom === Products/ParsedXML/NodePath/__init__.py 1.3 => 1.4 === --- Products/ParsedXML/NodePath/__init__.py:1.3 Sat Dec 8 15:56:25 2001 +++ Products/ParsedXML/NodePath/__init__.py Tue Apr 27 09:06:20 2004 @@ -1,3 +1,17 @@ +############################################################################## +# +# Copyright (c) 2001-2004 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 +# +############################################################################## + import NodePath, RobustPath, ElementIdPath from NodePath import registry, BaseNodePathScheme