]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/subcontrollers/tarea_fuente/comandos/__init__.py
Muevo Mezclar/Juntar/Separar Grupos a /curso/grupo.
[software/sercom.git] / sercom / subcontrollers / tarea_fuente / comandos / __init__.py
index 5af7d3a8d73fc8414223706d268d763b454713e4..12bdee2f6677f397535fcdea041e246f19eae9c9 100644 (file)
@@ -96,8 +96,9 @@ class ComandoFuenteController(controllers.Controller, identity.SecureResource):
         # TODO : Hacer ventanita mas amigable para cargar esto.
         try:
             kw['archivos_a_guardar'] = tuple(kw['archivos_guardar'].split(','))
-        except:
-            del(kw['archivos_guardar'])
+        except AttributeError:
+            pass
+        del(kw['archivos_guardar'])
         t.add_comando(orden, **kw)
         flash(_(u'Se creó un nuevo %s.') % name)
         raise redirect('list/%d' % t.id)
@@ -137,5 +138,20 @@ class ComandoFuenteController(controllers.Controller, identity.SecureResource):
         flash(_(u'El %s fue eliminado permanentemente.') % name)
         raise redirect('../list/%d' % tareaID)
 
+    @expose()
+    def get_archivos_entrada(self, id):
+        from cherrypy import request, response
+        r = validate_get(id)
+        response.headers["Content-Type"] = "application/zip"
+        response.headers["Content-disposition"] = "attachment;filename=archivos_entrada.zip"
+        return r.archivos_entrada
+
+    @expose()
+    def get_archivos_a_comparar(self, id):
+        from cherrypy import request, response
+        r = validate_get(id)
+        response.headers["Content-Type"] = "application/zip"
+        response.headers["Content-disposition"] = "attachment;filename=archivos_a_comparar.zip"
+        return r.archivos_a_comparar
 #}}}