[cpif] r94 - trunk/frontend-web

svn at argo.es svn at argo.es
Thu May 24 14:17:20 CEST 2007


Author: jcea
Date: Thu May 24 14:17:19 2007
New Revision: 94

Log:
Si un dia no tiene actividad, no lo imprimimos en el listado de hilos.



Modified:
   trunk/frontend-web/url_.py

Modified: trunk/frontend-web/url_.py
==============================================================================
--- trunk/frontend-web/url_.py	(original)
+++ trunk/frontend-web/url_.py	Thu May 24 14:17:19 2007
@@ -58,12 +58,12 @@
 
   while (num_hilos<50) and (fecha>=fecha_min) :
     ts2=timegm(fecha)
-    pagina.group_date("%d de %s de %d" %(fecha.day,meses[fecha.month],fecha.year))
     h=database.listado_hilos_personal(conn,usuario,ts,ts2)
-    num_hilos+=len(h)
-    
-    pagina.threads(h,punto_no_leido,hilos)
-    
+    l=len(h)
+    if l :
+      pagina.group_date("%d de %s de %d" %(fecha.day,meses[fecha.month],fecha.year))
+      num_hilos+=l
+      pagina.threads(h,punto_no_leido,hilos)
     ts=ts2
     fecha-=delta_dia
 



More information about the cpif mailing list