X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/427b557ad9c676acb171a478e0af2bb5cadaf1c8..0fbdf8f839cb6b3025ef819bc8afe9dd04844584:/sercom/subcontrollers/tarea_fuente/comandos/__init__.py diff --git a/sercom/subcontrollers/tarea_fuente/comandos/__init__.py b/sercom/subcontrollers/tarea_fuente/comandos/__init__.py index 568623a..12bdee2 100644 --- a/sercom/subcontrollers/tarea_fuente/comandos/__init__.py +++ b/sercom/subcontrollers/tarea_fuente/comandos/__init__.py @@ -138,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 #}}}