ZCML File
configure.zcml

<zope:configure
    xmlns="http://namespaces.zope.org/browser"
    xmlns:zope="http://namespaces.zope.org/zope"
    >
<addMenuItem
    title="RAM Cache"
    description="A RAM cache is a volatile (in memory) cache"
    permission="zope.ManageServices"
    class="zope.app.cache.ram.RAMCache"
    />
<pages
    class="zope.app.cache.browser.ram.RAMCacheView"
    for="zope.app.cache.interfaces.ram.IRAMCache"
    permission="zope.ManageServices"
    >
<page
    name="editAction.html"
    attribute="action"
    />
<page
    name="index.html"
    template="ramedit.pt"
    menu="zmi_views"
    title="Edit"
    />
<page
    name="stats.html"
    template="ramstats.pt"
    menu="zmi_views"
    title="Statistics"
    />
</pages>
</zope:configure>