[cpif] r110 - trunk/frontend-web

svn at argo.es svn at argo.es
Sun May 27 11:57:54 CEST 2007


Author: jcea
Date: Sun May 27 11:57:53 2007
New Revision: 110

Log:
Los meses van en minusculas

Modified:
   trunk/frontend-web/calendario.py
   trunk/frontend-web/skins.py

Modified: trunk/frontend-web/calendario.py
==============================================================================
--- trunk/frontend-web/calendario.py	(original)
+++ trunk/frontend-web/calendario.py	Sun May 27 11:57:53 2007
@@ -1,8 +1,8 @@
 # $Id$
 
 cache_meses={}
-nombres_meses=["","Enero","Febrero","Marzo","Abril","Mayo","Junio",
-               "Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre"]
+nombres_meses=["","enero","febrero","marzo","abril","mayo","junio",
+               "julio","agosto","septiembre","octubre","noviembre","diciembre"]
 cabecera_mes="<table><tr><th colspan=7>%s %d</th></tr>\r\n" \
   "<tr><th>L</th><th>M</th><th>X</th><th>J</th><th>V</th><th>S</th><th>D</th></tr>"
 
@@ -12,7 +12,7 @@
   mes=cache_meses.get(fecha)
   if not mes :
     mes=calendar.Calendar().monthdatescalendar(*fecha)
-    texto=[cabecera_mes %(nombres_meses[fecha[1]],fecha[0])]
+    texto=[cabecera_mes %(nombres_meses[fecha[1]].capitalize(),fecha[0])]
     while len(mes) :
       texto.append("<tr>")
       semana=mes.pop(0)

Modified: trunk/frontend-web/skins.py
==============================================================================
--- trunk/frontend-web/skins.py	(original)
+++ trunk/frontend-web/skins.py	Sun May 27 11:57:53 2007
@@ -4,10 +4,6 @@
 
 from calendario import daydate,hourdate
 
-meses=["","enero","febrero","marzo","abril",
-          "mayo","junio","julio","agosto",
-          "septiembre","octubre","noviembre","diciembre"]
-
 available_skins = {}
 
 skin_files = {



More information about the cpif mailing list