[cpif] r47 - trunk/frontend-web
svn at argo.es
svn at argo.es
Sat May 12 17:06:28 CEST 2007
Author: jcea
Date: Sat May 12 17:06:27 2007
New Revision: 47
Log:
Solucionado un bug cuando pulsamos sobre el ultimo dia de un mes.
Modified:
trunk/frontend-web/calendario.py
trunk/frontend-web/url_.py
Modified: trunk/frontend-web/calendario.py
==============================================================================
--- trunk/frontend-web/calendario.py (original)
+++ trunk/frontend-web/calendario.py Sat May 12 17:06:27 2007
@@ -21,6 +21,7 @@
texto.append("<td align=center><a href='/indice/%d%.2d%.2d/%s'>%s</a></td>"
%(dia.year,dia.month,dia.day,"%(usuario)s",dia.day))
texto.append("</tr>")
+ texto.append("</table>")
mes="".join(texto)
cache_meses[fecha]=mes
return mes %{"usuario":usuario}
Modified: trunk/frontend-web/url_.py
==============================================================================
--- trunk/frontend-web/url_.py (original)
+++ trunk/frontend-web/url_.py Sat May 12 17:06:27 2007
@@ -23,12 +23,12 @@
fecha=path[1]
assert len(fecha)==8
fecha=datetime.date(int(fecha[:4]),int(fecha[4:6]),int(fecha[6:8]))
- print fecha_min,fecha,fecha_max
if fecha>fecha_max : return None
if fecha<fecha_min : return None
except :
return None
+ fecha_elegida=fecha
fecha_max=fecha+delta_dia # Empezamos a listar los hilos escritos desde las 0:00 de "man~ana"
def timegm(fecha) :
return calendar.timegm((fecha.year,fecha.month,fecha.day,0,0,0,0,0,-1))
@@ -82,7 +82,7 @@
</table>
</form>
<p><a href="/stop/cualquier_usuario">Parar la demo</a>
-</body></html>""" %("\r\n".join(texto),calendario.vista_mensual(conn,fecha_max,usuario),usuario))
+</body></html>""" %("\r\n".join(texto),calendario.vista_mensual(conn,fecha_elegida,usuario),usuario))
@monitor
def init(conn) :
More information about the cpif
mailing list