[Zope3-checkins] CVS: Zope3/src/zope/app/browser/services - componentconfigitemedit.pt:1.3 editconfiguration.pt:1.3
Steve Alexander
steve@cat-box.net
Mon, 20 Jan 2003 17:52:40 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/services
In directory cvs.zope.org:/tmp/cvs-serv16735
Modified Files:
componentconfigitemedit.pt editconfiguration.pt
Log Message:
Changed tables into divs.
Someone who knows what they're doing should look this over and put in
proper styles etc.
=== Zope3/src/zope/app/browser/services/componentconfigitemedit.pt 1.2 => 1.3 ===
--- Zope3/src/zope/app/browser/services/componentconfigitemedit.pt:1.2 Wed Dec 25 09:12:36 2002
+++ Zope3/src/zope/app/browser/services/componentconfigitemedit.pt Mon Jan 20 17:52:38 2003
@@ -8,16 +8,16 @@
</a>
</h5>
- <table>
- <tr metal:fill-slot="extra_top">
- <td>Component Path</td>
- <td>
+ <div>
+ <div metal:fill-slot="extra_top" class="row">
+ <div class="label">Component Path</div>
+ <div class="field">
<a href="."
tal:content="view/componentPath"
tal:attributes="href view/componentURL"
>Foo</a>
- </td>
- </tr>
- </table>
+ </div>
+ </div>
+ </div>
</div>
=== Zope3/src/zope/app/browser/services/editconfiguration.pt 1.2 => 1.3 ===
--- Zope3/src/zope/app/browser/services/editconfiguration.pt:1.2 Wed Dec 25 09:12:36 2002
+++ Zope3/src/zope/app/browser/services/editconfiguration.pt Mon Jan 20 17:52:38 2003
@@ -9,38 +9,28 @@
tal:attributes="action request/URL">
<div tal:condition="info" tal:content="info" />
-
-<table align=center width=100% cellspacing=0 cellpadding=0>
- <tr tal:repeat="config view/configInfo">
- <td valign=top>
- <input type=checkbox name='keys:list'
- value='2'
- tal:attributes="value config/key"/>
- </td>
- <td>
- <table border=1 width=100%>
- <tr><td tal:content="structure config/view">
- Edit Adapter Directives
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <input type=submit name='refresh_submit' value="Refresh">
- <input type=submit name='UPDATE_SUBMIT' value="Update">
- <input type=submit name='add_submit' value="Add">
- <input type=submit name='remove_submit' value="Remove">
- <input type=submit name='top_submit' value="Top">
- <input type=submit name='up_submit' value="Up">
- <input type=submit name='down_submit' value="Down">
- <input type=submit name='bottom_submit' value="Bottom">
- </td>
- </tr>
-</table>
-
+<div class="row" tal:repeat="config view/configInfo">
+ <div style="float:left">
+ <input type=checkbox name='keys:list'
+ value='2'
+ tal:attributes="value config/key"/>
+ </div>
+ <div class="item">
+ <div tal:content="structure config/view">
+ Edit Adapter Directives
+ </div>
+ </div>
+</div>
+<div class="row">
+ <input type=submit name='refresh_submit' value="Refresh">
+ <input type=submit name='UPDATE_SUBMIT' value="Update">
+ <input type=submit name='add_submit' value="Add">
+ <input type=submit name='remove_submit' value="Remove">
+ <input type=submit name='top_submit' value="Top">
+ <input type=submit name='up_submit' value="Up">
+ <input type=submit name='down_submit' value="Down">
+ <input type=submit name='bottom_submit' value="Bottom">
+</div>
</form>
</div>
</body>