[Zope-CVS] CVS: Products/Zelenium - CHANGES.txt:1.7 generator.py:1.4

Tres Seaver tseaver at zope.com
Thu Apr 21 10:58:37 EDT 2005


Update of /cvs-repository/Products/Zelenium
In directory cvs.zope.org:/tmp/cvs-serv29434

Modified Files:
	CHANGES.txt generator.py 
Log Message:
 - Close <tr> for input / select fields.


=== Products/Zelenium/CHANGES.txt 1.6 => 1.7 ===
--- Products/Zelenium/CHANGES.txt:1.6	Wed Apr 20 16:32:06 2005
+++ Products/Zelenium/CHANGES.txt	Thu Apr 21 10:58:36 2005
@@ -1,8 +1,10 @@
 Zelenium Product Changelog
 
-  Zelenium-0.2.1 (2005/04/20)
+  Zelenium-0.2.1 (2005/04/21)
 
     - CVS tag:  'Zelenium-0_2_1'
+
+    - Correct the emitted HTML for input widgets (close the <tr> tag).
 
     - Fix unpack bug in code which punts on requests to "foreign" hosts.
 


=== Products/Zelenium/generator.py 1.3 => 1.4 ===
--- Products/Zelenium/generator.py:1.3	Wed Apr 20 16:32:06 2005
+++ Products/Zelenium/generator.py	Thu Apr 21 10:58:36 2005
@@ -66,7 +66,7 @@
    <td>type</td>
    <td>%(FIELD_NAME)s</td>
    <td>%(FIELD_VALUE)s</td>
-  <tr>
+  </tr>
 """
 
 _SELECT_FIELD_SKELETON = """
@@ -74,7 +74,7 @@
    <td>select</td>
    <td>%(FIELD_NAME)s</td>
    <td>%(FIELD_VALUE)s</td>
-  <tr>
+  </tr>
 """
 
 class ScenarioGenerator:



More information about the Zope-CVS mailing list