[Zope3-checkins] CVS: Zope3/src/zope/configuration/tests/contact - __init__.py:1.1.2.1 contact.py:1.1.2.1 contact.zcml:1.1.2.1 test_include.zcml:1.1.2.1 testhandler.py:1.1.2.1 testincludehandler.py:1.1.2.1
Jim Fulton
jim@zope.com
Mon, 23 Dec 2002 14:32:46 -0500
Update of /cvs-repository/Zope3/src/zope/configuration/tests/contact
In directory cvs.zope.org:/tmp/cvs-serv19908/zope/configuration/tests/contact
Added Files:
Tag: NameGeddon-branch
__init__.py contact.py contact.zcml test_include.zcml
testhandler.py testincludehandler.py
Log Message:
Initial renaming before debugging
=== Added File Zope3/src/zope/configuration/tests/contact/__init__.py ===
#
# This file is necessary to make this directory a package.
=== Added File Zope3/src/zope/configuration/tests/contact/contact.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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.
#
##############################################################################
""" Faux class for tesing name resolution. """
class Contact: n=1
=== Added File Zope3/src/zope/configuration/tests/contact/contact.zcml ===
<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
<directives namespace="test">
<directive
name="test"
handler="zope.configuration.tests.contact.testhandler.TestHandler" />
</directives>
<!-- test if the included zcml file keeps the package of this file -->
<include file="test_include.zcml" />
</zopeConfigure>
=== Added File Zope3/src/zope/configuration/tests/contact/test_include.zcml ===
<zopeConfigure xmlns='http://namespaces.zope.org/zope'>
<directives namespace="test">
<directive
name="test_include"
handler="zope.configuration.tests.contact.testincludehandler.TestIncludeHandler" />
</directives>
</zopeConfigure>
=== Added File Zope3/src/zope/configuration/tests/contact/testhandler.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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: testhandler.py,v 1.1.2.1 2002/12/23 19:32:44 jim Exp $
"""
class TestHandler:
"""Test handler. We only care whether we can find this.
"""
=== Added File Zope3/src/zope/configuration/tests/contact/testincludehandler.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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: testincludehandler.py,v 1.1.2.1 2002/12/23 19:32:44 jim Exp $
"""
class TestIncludeHandler:
"""Test include handler. We only care whether we can find this.
"""