[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/ - Collector #1844: fixed whitespace handling in the ZMI "Find" tab

Andreas Jung andreas at andreas-jung.com
Mon Jul 18 01:53:54 EDT 2005


Log message for revision 37206:
        - Collector #1844: fixed whitespace handling in the ZMI "Find" tab
  

Changed:
  U   Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
  U   Zope/branches/Zope-2_8-branch/lib/python/OFS/dtml/findResult.dtml

-=-
Modified: Zope/branches/Zope-2_8-branch/doc/CHANGES.txt
===================================================================
--- Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-07-18 05:52:35 UTC (rev 37205)
+++ Zope/branches/Zope-2_8-branch/doc/CHANGES.txt	2005-07-18 05:53:52 UTC (rev 37206)
@@ -38,6 +38,8 @@
 
     Bugs Fixed
 
+      - Collector #1844: fixed whitespace handling in the ZMI "Find" tab
+
       - Collector #1813: removed spurious inclusion of CMFBTreeFolder.
         in Products/BTreeFolder2 (CMFCore will include it after 1.5, with
         an appropriate module alias for backward compatibility).

Modified: Zope/branches/Zope-2_8-branch/lib/python/OFS/dtml/findResult.dtml
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/OFS/dtml/findResult.dtml	2005-07-18 05:52:35 UTC (rev 37205)
+++ Zope/branches/Zope-2_8-branch/lib/python/OFS/dtml/findResult.dtml	2005-07-18 05:53:52 UTC (rev 37206)
@@ -128,12 +128,7 @@
   </div>
   </TD>
   <TD ALIGN="LEFT" VALIGN="TOP">
-  <INPUT TYPE="TEXT" NAME="obj_ids:tokens" SIZE="30" VALUE="<dtml-unless "REQUEST.obj_ids == []">
-<dtml-in expr="REQUEST.obj_ids">
-&dtml-sequence-item;&nbsp;
-
-</dtml-in>
-</dtml-unless>">
+  <INPUT TYPE="TEXT" NAME="obj_ids:tokens" SIZE="30" VALUE="<dtml-var "' '.join(obj_ids or [])">">
   </TD>
 </TR>
 



More information about the Zope-Checkins mailing list