[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/DependencyFramework - Exceptions.py:1.1.2.1 Exception.py:NONE

Jim Fulton jim@zope.com
Sat, 30 Nov 2002 07:44:24 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/DependencyFramework
In directory cvs.zope.org:/tmp/cvs-serv30047/lib/python/Zope/App/DependencyFramework

Added Files:
      Tag: Zope3-Bangalore-TTW-Branch
	Exceptions.py 
Removed Files:
      Tag: Zope3-Bangalore-TTW-Branch
	Exception.py 
Log Message:
Refactored the way TTW component registration is done.  There are now
separate registry objects that abstract the machinery for registering
multiple conflicting configurations and deciding which, if any are
active.  Also provided a new field and widget for the status
information.

Along the way, cleaned up and streamlined placeful testing
infrastructure a bit.

Now checking into branch. Will give file-by-file (or at least more
specific logs) when the changes are merged into the head.


=== Added File Zope3/lib/python/Zope/App/DependencyFramework/Exceptions.py ===
##############################################################################
#
# Copyright (c) 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.
# 
##############################################################################
"""
$Id: Exceptions.py,v 1.1.2.1 2002/11/30 12:44:24 jim Exp $
"""

class DependencyError(Exception):
    """ This object is dependable"""
    

=== Removed File Zope3/lib/python/Zope/App/DependencyFramework/Exception.py ===