[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService - configure.zcml:1.1.2.3
Rakesh Naidu
rnaidu@zeomega.com
Wed, 23 Oct 2002 09:38:45 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService
In directory cvs.zope.org:/tmp/cvs-serv23926
Modified Files:
Tag: ErrorReportingService-branch
configure.zcml
Log Message:
Error Reporting Service Configuration directives
=== Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/configure.zcml 1.1.2.2 => 1.1.2.3 ===
--- Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/configure.zcml:1.1.2.2 Fri Oct 18 09:01:01 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/ErrorReportingService/configure.zcml Wed Oct 23 09:38:45 2002
@@ -1,10 +1,29 @@
<zopeConfigure
- xmlns='http://namespaces.zope.org/zope'
- xmlns:browser='http://namespaces.zope.org/browser'
- xmlns:service='http://namespaces.zope.org/service'>
-
+ xmlns='http://namespaces.zope.org/zope'
+ xmlns:browser='http://namespaces.zope.org/browser'
+ xmlns:service='http://namespaces.zope.org/service'
+>
+ <serviceType
+ id="ErrorReportingService"
+ interface=".IErrorReportingService." />
+ <content class='.ErrorReportingService.'>
+ <require
+ permission="Zope.Public"
+ interface=".IErrorReportingService." />
+ <factory
+ id='ErrorReportingService'
+ permission='Zope.Public' />
+ </content>
+ <browser:menuItem menu="add_component" for="Zope.App.OFS.Container.IAdding."
+ action="ErrorReportingService" title='Error Reporting Service'
+ description='Error Reporting Service for Logging Errors' />
+
+ <browser:icon name="zmi_icon"
+ for=".IErrorReportingService."
+ file="error_service.gif" />
+ <include package=".Views" />
</zopeConfigure>