[Zope-CVS] CVS: Products/DBTab/www - chooseDatabase.pt:1.1
Shane Hathaway
shane@zope.com
Wed, 16 Oct 2002 17:13:05 -0400
Update of /cvs-repository/Products/DBTab/www
In directory cvs.zope.org:/tmp/cvs-serv20980/www
Added Files:
chooseDatabase.pt
Log Message:
- Added a patch to view and manage all databases in the Control_Panel.
- Added a patch for Zope's undo feature so you can undo in the mounted
databases. (Yee-haw!)
- Gave each database an independent activity monitor.
=== Added File Products/DBTab/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" />