[Zope3-checkins] CVS: Zope3/src/zope/app/browser/content - i18n_edit.pt:1.6 i18nimageedit.pt:1.7 imageedit.pt:1.5 sqltest.pt:1.4

Steve Alexander steve@cat-box.net
Mon, 30 Jun 2003 13:05:13 -0400


Update of /cvs-repository/Zope3/src/zope/app/browser/content
In directory cvs.zope.org:/tmp/cvs-serv24902/src/zope/app/browser/content

Modified Files:
	i18n_edit.pt i18nimageedit.pt imageedit.pt sqltest.pt 
Log Message:
Removed TAB characters.


=== Zope3/src/zope/app/browser/content/i18n_edit.pt 1.5 => 1.6 ===
--- Zope3/src/zope/app/browser/content/i18n_edit.pt:1.5	Wed Jun 25 18:14:24 2003
+++ Zope3/src/zope/app/browser/content/i18n_edit.pt	Mon Jun 30 13:04:42 2003
@@ -3,11 +3,11 @@
     <style metal:fill-slot="headers" type="text/css">
       <!--
       .ContentIcon {
-	  width: 20px;
+          width: 20px;
       }
 
       .ContentTitle {
-	  text-align: left;
+          text-align: left;
       }
       -->
     </style>
@@ -28,7 +28,7 @@
       <form action="edit.html" method="post">
 
         <table class="EditTable">
-	  <tbody>
+          <tbody>
 
             <tr>
               <th class="EditAttributeName">Content Type</th>
@@ -86,7 +86,7 @@
               </td>
             </tr>
 
-	  </tbody>
+          </tbody>
       </table>
 
       <input type="submit" name="edit" value="Save Changes" />


=== Zope3/src/zope/app/browser/content/i18nimageedit.pt 1.6 => 1.7 ===
--- Zope3/src/zope/app/browser/content/i18nimageedit.pt:1.6	Wed Jun 25 18:14:24 2003
+++ Zope3/src/zope/app/browser/content/i18nimageedit.pt	Mon Jun 30 13:04:42 2003
@@ -3,11 +3,11 @@
     <style metal:fill-slot="headers" type="text/css">
       <!--
       .ContentIcon {
-	  width: 20px;
+          width: 20px;
       }
 
       .ContentTitle {
-	  text-align: left;
+          text-align: left;
       }
       -->
     </style>
@@ -30,7 +30,7 @@
             enctype="multipart/form-data">
 
         <table class="EditTable">
-	  <tbody>
+          <tbody>
 
             <tr>
               <th class="EditAttributeName">Content Type</th>
@@ -92,22 +92,22 @@
               </td>
             </tr>
 
-	    <tr>
-	      <th class="EditAttributeName">Dimensions</th>
-	      <td class="EditAttributeValue"
+            <tr>
+              <th class="EditAttributeName">Dimensions</th>
+              <td class="EditAttributeValue"
                   tal:content="python:view.getImageSize(
                                         request.get('language'))">
               </td>
-	    </tr>
-	    <tr>
-	      <th class="EditAttributeName">Size</th>
-	      <td class="EditAttributeValue"
+            </tr>
+            <tr>
+              <th class="EditAttributeName">Size</th>
+              <td class="EditAttributeValue"
                   tal:content="python:context.getSize(
                                         request.get('language'))">
               </td>
-	    </tr>
+            </tr>
 
-	  </tbody>
+          </tbody>
       </table>
 
       <input type="submit" name="edit" value="Save Changes" />


=== Zope3/src/zope/app/browser/content/imageedit.pt 1.4 => 1.5 ===
--- Zope3/src/zope/app/browser/content/imageedit.pt:1.4	Sat Mar  1 16:15:10 2003
+++ Zope3/src/zope/app/browser/content/imageedit.pt	Mon Jun 30 13:04:42 2003
@@ -9,7 +9,7 @@
       <table metal:fill-slot="extra_top">
         <tr>
           <td>Size</td>
-	  <td tal:content="view/size"
+          <td tal:content="view/size"
              >103 x 45 pixels, 43KB</td>            
         </tr>
       </table>


=== Zope3/src/zope/app/browser/content/sqltest.pt 1.3 => 1.4 ===
--- Zope3/src/zope/app/browser/content/sqltest.pt:1.3	Wed Jun 11 09:47:57 2003
+++ Zope3/src/zope/app/browser/content/sqltest.pt	Mon Jun 30 13:04:42 2003
@@ -14,13 +14,13 @@
         tal:condition="args">
       <tbody>
         <tr>
-	  <th>Argument Name</th>
-	  <th>Type</th>
-	  <th>Value</th>
+          <th>Argument Name</th>
+          <th>Type</th>
+          <th>Value</th>
         </tr>
 
         <tr tal:repeat="arg python: args.keys()">
-	  <td tal:content="arg"></td>
+          <td tal:content="arg"></td>
           <td tal:content="python: args[arg].get('type')"> </td>
           <td><input type="text" name="" size="10" value=""
                   tal:attributes="value python: args[arg].get('default');