[Zope-Checkins] CVS: Zope/lib/python/App/www - chooseDatabase.pt:1.1
Chris McDonough
chrism@zope.com
Sat, 19 Jul 2003 22:55:59 -0400
Update of /cvs-repository/Zope/lib/python/App/www
In directory cvs.zope.org:/tmp/cvs-serv5583/lib/python/App/www
Added Files:
chooseDatabase.pt
Log Message:
Integrate DBTab into HEAD.
DBTab now obtains all values related to storages and databases from zope.conf. It is also now just a package rather than a product.
A new product named ZODBMountPoint exposes the mount point functionality to the ZMI.
=== Added File Zope/lib/python/App/www/chooseDatabase.pt ===
<h1 tal:replace="structure here/manage_page_header" />
<h2 tal:replace="structure here/manage_tabs" />
<h3>Databases</h3>
<table tal:define="url_quote nocall:
modules/Products/PythonScripts/standard/url_quote">
<tr tal:repeat="name here/getDatabaseNames">
<td tal:define="qname python: url_quote(name)">
<img src="/p_/DatabaseManagement_icon" />
<a tal:content="name" tal:attributes="href
string:${here/absolute_url}/${qname}/manage_main">Main</a>
</td>
</tr>
</table>
<h1 tal:replace="structure here/manage_page_footer" />