[Zope3-checkins] CVS: Zope3/src/zope/app/browser/cache - configure.zcml:1.4.4.1
Guido van Rossum
guido@python.org
Mon, 3 Mar 2003 15:07:51 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/cache
In directory cvs.zope.org:/tmp/cvs-serv16004/zope/app/browser/cache
Modified Files:
Tag: use-config-branch
configure.zcml
Log Message:
Created a new menu, "add_service", and moved all services into that
menu. This way, the "add_component" menu isn't so big. Downside is
that it takes an extra step to add a service.
=== Zope3/src/zope/app/browser/cache/configure.zcml 1.4 => 1.4.4.1 ===
--- Zope3/src/zope/app/browser/cache/configure.zcml:1.4 Tue Dec 31 13:26:51 2002
+++ Zope3/src/zope/app/browser/cache/configure.zcml Mon Mar 3 15:07:21 2003
@@ -3,10 +3,12 @@
xmlns:browser='http://namespaces.zope.org/browser'
>
- <browser:menuItem menu="add_component"
+ <browser:menuItem
+ menu="add_component"
for="zope.app.interfaces.container.IAdding"
- title="RAM Cache" action="zope.app.caching.RAMCache"
- description="RAM Cache"/>
+ title="RAM Cache"
+ action="zope.app.caching.RAMCache"
+ />
<browser:pages for="zope.app.interfaces.cache.ram.IRAMCache"
class="zope.app.browser.cache.ram.RAMCacheView"