]> git.llucax.com Git - software/sercom-old.git/commitdiff
Se ordenan correcciones por padron.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 2 Apr 2005 23:31:39 +0000 (23:31 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 2 Apr 2005 23:31:39 +0000 (23:31 +0000)
src/sc_suwi

index f35090db73db83c1f6c1d5c1246178df8eef18e2..a6b23bcd97c9fbbc0eead69a9235f43dabdd8b82 100755 (executable)
@@ -21,6 +21,10 @@ import cgitb; cgitb.enable()
 #XXX HORRIBLE
 PASSWD = conf.get('general', 'cgipw')
 
+def cmp_correccion_padron(e1, e2):
+    'Compara 2 entregas, según el padrón del alumno.'
+    return cmp(e1.inscripto.padron, e2.inscripto.padron)
+
 def http_header_html(req):
     return 'Content-type: text/html\r\n\r\n'
 
@@ -303,7 +307,9 @@ def correcciones(req, entrega_id):
     r = '<h1>Entrega %d.%d del curso %d-%d-%d</h1>\n' \
         % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso)
     r += header()
-    for c in e.correcciones:
+    correcciones = list(e.correcciones)
+    correcciones.sort(cmp_correccion_padron)
+    for c in correcciones:
         r += row(c)
     r += footer()
     return r