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

Andreas Jung andreas at andreas-jung.com
Mon Jul 18 01:52:37 EDT 2005


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

Changed:
  U   Zope/trunk/doc/CHANGES.txt
  U   Zope/trunk/lib/python/OFS/dtml/findResult.dtml

-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt	2005-07-17 19:46:16 UTC (rev 37204)
+++ Zope/trunk/doc/CHANGES.txt	2005-07-18 05:52:35 UTC (rev 37205)
@@ -45,6 +45,8 @@
 
     Bugs fixed
 
+      - Collector #1844: fixed whitespace handling in the ZMI "Find" tab
+
       - Collector #1815: ZCTextIndex accepts (again) sequences of strings to 
         be indexed.
 

Modified: Zope/trunk/lib/python/OFS/dtml/findResult.dtml
===================================================================
--- Zope/trunk/lib/python/OFS/dtml/findResult.dtml	2005-07-17 19:46:16 UTC (rev 37204)
+++ Zope/trunk/lib/python/OFS/dtml/findResult.dtml	2005-07-18 05:52:35 UTC (rev 37205)
@@ -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