[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser - browser.zcml:1.1.4.2.2.4
Steve Alexander
steve@cat-box.net
Mon, 3 Jun 2002 18:57:54 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv30105/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser
Modified Files:
Tag: Zope3InWonderland-branch
browser.zcml
Log Message:
wonderland updates to zcml files.
=== Zope3/lib/python/Zope/App/OFS/Services/ServiceManager/Views/Browser/browser.zcml 1.1.4.2.2.3 => 1.1.4.2.2.4 ===
>
-<security:protectClass
- class="Zope.App.OFS.Services.ServiceManager.Views.Browser.Contents."
- permission="Zope.ManageServices"
- names="index listContentInfo remove removeObjects confirmRemoved"/>
-
-<browser:defaultView
- name="contents"
- for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
- factory="Zope.App.OFS.Services.ServiceManager.Views.Browser.Contents." />
-
-<security:protectClass
- class="Zope.App.OFS.Services.ServiceManager.Views.Browser.Adder."
- permission="Zope.ManageServices"
- names="index confirmed action listAddableInfo"/>
-
-<browser:view
- name="adder"
- for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
- factory="Zope.App.OFS.Services.ServiceManager.Views.Browser.Adder." />
-
-<security:protectClass
- class="Zope.App.OFS.Services.ServiceManager.Views.Browser.Bindings."
- permission="Zope.ManageServices"
- names="index action getServicesTable" />
-
-<browser:view
- name="bindings"
- for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
- factory="Zope.App.OFS.Services.ServiceManager.Views.Browser.Bindings." />
-
-
-<zmi:tabs for="Zope.App.OFS.Services.ServiceManager.ServiceManager.IServiceManager.">
- <zmi:tab label="Contents" action="view::contents"/>
- <zmi:tab label="Bindings" action="view::bindings"/>
-</zmi:tabs>
+ <content class=".Contents.">
+ <security:require
+ permission="Zope.ManageServices"
+ attributes="index listContentInfo remove removeObjects
+ confirmRemoved" />
+ </content>
+
+ <browser:defaultView
+ name="contents"
+ for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
+ factory=".Contents." />
+
+
+ <content class=".Adder.">
+ <security:protectClass
+ permission="Zope.ManageServices"
+ attributes="index confirmed action listAddableInfo"/>
+ </content>
+
+ <browser:view
+ name="adder"
+ for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
+ factory=".Adder." />
+
+ <content class=".Bindings.">
+ <security:require
+ permission="Zope.ManageServices"
+ attributes="index action getServicesTable" />
+ </content>
+
+ <browser:view
+ name="bindings"
+ for="Zope.App.OFS.Services.ServiceManager.IServiceManager."
+ factory=".Bindings." />
+
+
+ <zmi:tabs for="Zope.App.OFS.Services.ServiceManager.ServiceManager.IServiceManager.">
+ <zmi:tab label="Contents" action="view::contents"/>
+ <zmi:tab label="Bindings" action="view::bindings"/>
+ </zmi:tabs>
</zopeConfigure>