ZCML File
configure.zcml

<zope:configure
    xmlns="http://namespaces.zope.org/browser"
    xmlns:zope="http://namespaces.zope.org/zope"
    >
<view
    class="zope.app.container.browser.adding.Adding"
    permission="zope.ManageServices"
    for="zope.rdb.interfaces.IZopeDatabaseAdapter"
    name="+"
    />
<pages
    class=".rdb.Connection"
    for="zope.rdb.interfaces.IManageableZopeDatabaseAdapter"
    permission="zope.ManageServices"
    >
<page
    name="editForm.html"
    template="rdbconnection.pt"
    menu="zmi_views"
    title="Edit"
    />
<page
    name="edit.html"
    attribute="edit"
    />
<page
    name="connect.html"
    attribute="connect"
    />
<page
    name="disconnect.html"
    attribute="disconnect"
    />
</pages>
<pages
    class=".rdb.TestSQL"
    for="zope.rdb.interfaces.IManageableZopeDatabaseAdapter"
    permission="zope.ManageServices"
    >
<page
    name="testForm.html"
    template="rdbtestsql.pt"
    menu="zmi_views"
    title="[test-page-title] Test"
    />
<page
    name="test.html"
    template="rdbtestresults.pt"
    />
</pages>
<defaultView
    name="editForm.html"
    for="zope.rdb.interfaces.IManageableZopeDatabaseAdapter"
    />
<zope:include
    file="gadflyda.zcml"
    />
</zope:configure>