[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser - testResults.pt:1.2

Albertas Agejevas alga@codeworks.lt
Mon, 2 Dec 2002 15:04:20 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv5490/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser

Modified Files:
	testResults.pt 
Log Message:
Added stats reporting to the RAMCache.
Had to make Zope.App.RDB.ResultSet pickleable on the way.
Renamed ResultSet.names to ResultSet.columns.
Updated SQLScript to pass the location to the cache, not self.


=== Zope3/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser/testResults.pt 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser/testResults.pt:1.1	Wed Jul 10 19:52:18 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/ConnectionService/Views/Browser/testResults.pt	Mon Dec  2 15:03:49 2002
@@ -8,25 +8,25 @@
 
     <pre tal:content="request/form/sql" />
 
-    <table border="1" 
-        tal:define="result view/getTestResults" 
+    <table border="1"
+        tal:define="result view/getTestResults"
         tal:condition="result">
-      <tbody>   
-      
+      <tbody>
+
         <tr>
-          <th tal:repeat="field result/names"
+          <th tal:repeat="field result/columns"
               tal:content="field">Field Name</th>
         </tr>
 
         <tr tal:repeat="row result">
-          <td tal:repeat="field result/names"
+          <td tal:repeat="field result/columns"
               tal:content="python: getattr(row, field)">Value</td>
         </tr>
 
-          	
-      </tbody>     
+
+      </tbody>
     </table>
-  
+
   </div>
 
 </body>