[CMF-checkins] CVS: CMF/CMFDefault/skins/generic - undo_form.dtml:1.2

Yvo Schubbe schubbe@web.de
Tue, 4 Feb 2003 17:45:42 -0500


Update of /cvs-repository/CMF/CMFDefault/skins/generic
In directory cvs.zope.org:/tmp/cvs-serv5474/CMFDefault/skins/generic

Modified Files:
	undo_form.dtml 
Log Message:
Merged yuppie-buglets1-branch:
- Fixed buglets. (Collector #94 and #95)
- Removed string functions and useless imports.

=== CMF/CMFDefault/skins/generic/undo_form.dtml 1.1 => 1.2 ===
--- CMF/CMFDefault/skins/generic/undo_form.dtml:1.1	Fri Feb 23 09:24:10 2001
+++ CMF/CMFDefault/skins/generic/undo_form.dtml	Tue Feb  4 17:45:40 2003
@@ -8,22 +8,22 @@
 
 <dtml-if transactions>
 
-  <FORM ACTION="undo" METHOD="POST">
+  <form action="undo" method="POST">
   <p>This application's transactional feature allows you to easily undo changes
   made to the application's settings or data. You can revert the application
   to a &quot;snapshot&quot; of it's state at a previous point in time. </p>
-  <P>
+  <p>
   Select one or more transactions below and then click on the &quot;Undo&quot;
   button to undo the transactions.  Note that even though a transaction
   is shown below, you will not be able to undo it if later transactions
   modified objects that were modified by the transaction. </p>
 
   <table class="FormLayout">
-    <tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo ">
+    <tr><td colspan="2" align="center"><input type="SUBMIT" value=" Undo " />
         </td></tr>
     <tr><td></td></tr>
     <dtml-if first_transaction>
-       <tr><td colspan=2 align=center>
+       <tr><td colspan="2" align="center">
        <a href="undo_form?first_transaction:int=<dtml-var
 	 expr="first_transaction*2-last_transaction"
 	 >&last_transaction:int=<dtml-var first_transaction
@@ -34,9 +34,9 @@
     </dtml-if>
     <dtml-in transactions mapping>
       <tr>
-      <td valign=top><input type=checkbox name="transaction_info:list"
-	  value="<dtml-var id html_quote>"></td>
-      <td valign=top>
+      <td valign="top"><input type="checkbox" name="transaction_info:list"
+	  value="<dtml-var id html_quote>" /></td>
+      <td valign="top">
 	  <strong><dtml-var description html_quote></strong> by <strong>
           <dtml-if user_name>
 	    <dtml-var user_name html_quote>
@@ -48,7 +48,7 @@
       </td>
     </tr>
     </dtml-in>
-    <tr><td colspan=2 align=center>
+    <tr><td colspan="2" align="center">
     <dtml-if expr="_.len(transactions) == PrincipiaUndoBatchSize">
        <a href="undo_form?first_transaction:int=<dtml-var
 	 last_transaction>&last_transaction:int=<dtml-var
@@ -59,10 +59,10 @@
     </dtml-if>
     </td></tr>
     <tr><td></td></tr>
-    <tr><td colspan=2 align=center><INPUT TYPE="SUBMIT" VALUE=" Undo ">
+    <tr><td colspan="2" align="center"><input type="SUBMIT" value=" Undo " />
     </td></tr>
   </table>
-  </FORM>
+  </form>
 
 <dtml-else>