[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService - ErrorReportingService.py:1.1 IErrorReportingService.py:1.1 configure.zcml:1.1
Rakesh Naidu
rnaidu@zeomega.com
Thu, 17 Oct 2002 13:07:26 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService
In directory cvs.zope.org:/tmp/cvs-serv18742
Added Files:
ErrorReportingService.py IErrorReportingService.py
configure.zcml
Log Message:
Error Reporting Service
CVS ----------------------------------------------------------------------
=== Added File Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/ErrorReportingService.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: ErrorReportingService.py,v 1.1 2002/10/17 17:07:26 rakesh Exp $
"""
=== Added File Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/IErrorReportingService.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: IErrorReportingService.py,v 1.1 2002/10/17 17:07:26 rakesh Exp $
"""
from Interface import Interface
class IErrorReportingService(Interface):
=== Added File Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/configure.zcml ===
<zopeConfigure
xmlns='http://namespaces.zope.org/zope'>
<serviceType id="ErrorReporting" interface=".IErrorReportingService." />
</zopeConfigure>