[Zope3-checkins] SVN: Zope3/branches/3.2/ Fixed #98269
Christian Theune
ct at gocept.com
Sun Aug 12 06:14:02 EDT 2007
Log message for revision 78759:
Fixed #98269
Changed:
U Zope3/branches/3.2/doc/CHANGES.txt
U Zope3/branches/3.2/src/zope/app/boston/README.txt
U Zope3/branches/3.2/src/zope/app/boston/browser/widget_macros.pt
-=-
Modified: Zope3/branches/3.2/doc/CHANGES.txt
===================================================================
--- Zope3/branches/3.2/doc/CHANGES.txt 2007-08-12 10:10:31 UTC (rev 78758)
+++ Zope3/branches/3.2/doc/CHANGES.txt 2007-08-12 10:14:01 UTC (rev 78759)
@@ -6,6 +6,12 @@
For information on future releases, see ROADMAP.txt.
+ After 3.2.3
+
+ Bug fixes
+
+ - Fixed #98269: Invalid HTML in zope.app.boston's widget_macros.
+
Zope 3.2.3 (2007/07/03)
Bug fixes
Modified: Zope3/branches/3.2/src/zope/app/boston/README.txt
===================================================================
--- Zope3/branches/3.2/src/zope/app/boston/README.txt 2007-08-12 10:10:31 UTC (rev 78758)
+++ Zope3/branches/3.2/src/zope/app/boston/README.txt 2007-08-12 10:14:01 UTC (rev 78759)
@@ -45,3 +45,7 @@
'...id="xmltree"...'
>>> browser.contents
'...id="addinginfo"...'
+
+Make sure the edit form "works":
+
+ >>> browser.open('http://localhost/++skin++Boston/+/zope.app.dtmlpage.DTMLPage=')
Modified: Zope3/branches/3.2/src/zope/app/boston/browser/widget_macros.pt
===================================================================
--- Zope3/branches/3.2/src/zope/app/boston/browser/widget_macros.pt 2007-08-12 10:10:31 UTC (rev 78758)
+++ Zope3/branches/3.2/src/zope/app/boston/browser/widget_macros.pt 2007-08-12 10:14:01 UTC (rev 78759)
@@ -3,7 +3,7 @@
<metal:block define-macro="widget_rows">
<table id="widgets" border="0" cellspacing="0" cellpadding="0">
- <div class="row" tal:repeat="widget view/widgets">
+ <tal:block repeat="widget view/widgets">
<metal:block define-macro="widget_row">
<tr>
<td class="labels">
@@ -28,7 +28,7 @@
</td>
</tr>
</metal:block>
- </div>
+ </tal:block>
</table>
</metal:block>
More information about the Zope3-Checkins
mailing list