[Zope3-checkins] SVN: Zope3/branches/3.3/ Fixed #98269.

Christian Theune ct at gocept.com
Sun Aug 12 06:10:31 EDT 2007


Log message for revision 78758:
  Fixed #98269.
  

Changed:
  U   Zope3/branches/3.3/doc/CHANGES.txt
  U   Zope3/branches/3.3/src/zope/app/boston/README.txt
  U   Zope3/branches/3.3/src/zope/app/boston/browser/widget_macros.pt

-=-
Modified: Zope3/branches/3.3/doc/CHANGES.txt
===================================================================
--- Zope3/branches/3.3/doc/CHANGES.txt	2007-08-12 10:08:56 UTC (rev 78757)
+++ Zope3/branches/3.3/doc/CHANGES.txt	2007-08-12 10:10:31 UTC (rev 78758)
@@ -6,6 +6,10 @@
 
   For information on future releases, see ROADMAP.txt.
 
+  After 3.3.2
+
+      - Fixed #98269: Invalid HTML in zope.app.boston's widget_macros.
+
   Zope 3.3.2 (2007/07/03)
 
     Bugfixes

Modified: Zope3/branches/3.3/src/zope/app/boston/README.txt
===================================================================
--- Zope3/branches/3.3/src/zope/app/boston/README.txt	2007-08-12 10:08:56 UTC (rev 78757)
+++ Zope3/branches/3.3/src/zope/app/boston/README.txt	2007-08-12 10:10:31 UTC (rev 78758)
@@ -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.3/src/zope/app/boston/browser/widget_macros.pt
===================================================================
--- Zope3/branches/3.3/src/zope/app/boston/browser/widget_macros.pt	2007-08-12 10:08:56 UTC (rev 78757)
+++ Zope3/branches/3.3/src/zope/app/boston/browser/widget_macros.pt	2007-08-12 10:10:31 UTC (rev 78758)
@@ -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