[Treepkg-commits] r214 - trunk/web

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Sep 1 15:46:28 CEST 2009


Author: bh
Date: 2009-09-01 15:46:28 +0200 (Tue, 01 Sep 2009)
New Revision: 214

Modified:
   trunk/web/status-by-revision.html
   trunk/web/status-by-startdate.html
Log:
Make the web status templates work with newer versions of genshi, like
the one from debian lenny


Modified: trunk/web/status-by-revision.html
===================================================================
--- trunk/web/status-by-revision.html	2009-09-01 13:35:23 UTC (rev 213)
+++ trunk/web/status-by-revision.html	2009-09-01 13:46:28 UTC (rev 214)
@@ -22,7 +22,7 @@
 	</py:for>
       </tr>
 
-      <py:for each="row in report.revisions.sorted_by_revision">
+      <py:for each="row in report.revisions.sorted_by_revision()">
 	<tr>
 	  <td>${row[0][0]}</td>
 	  <py:for each="col in row[1]">

Modified: trunk/web/status-by-startdate.html
===================================================================
--- trunk/web/status-by-startdate.html	2009-09-01 13:35:23 UTC (rev 213)
+++ trunk/web/status-by-startdate.html	2009-09-01 13:46:28 UTC (rev 214)
@@ -30,7 +30,7 @@
 	<th class="statustablehead">Notes</th>
       </tr>
 
-      <py:for each="row in report.revisions.sorted_by_startdate">
+      <py:for each="row in report.revisions.sorted_by_startdate()">
 	<py:with vars="item=row[1]">
 	  <py:if test="item.new_date">
 	    <tr class="date_row"><td colspan="6">${item.new_date}</td></tr>



More information about the Treepkg-commits mailing list