From: Ricardo Markiewicz Date: Sun, 25 Feb 2007 18:36:32 +0000 (+0000) Subject: Permito adjuntar un archivo a los enunciados X-Git-Url: https://git.llucax.com/software/sercom.git/commitdiff_plain/bc62b50639ebddeed681cf0c0ec9a876d30090da?hp=77a41b7c116c54153bc596fa5cf43567d6824460 Permito adjuntar un archivo a los enunciados Deben actualiza la db. --- diff --git a/TODO.txt b/TODO.txt index 075c90b..efe00fb 100644 --- a/TODO.txt +++ b/TODO.txt @@ -1,6 +1,5 @@ - Empezar con el backend (luca) - Pensar/resolver password en ABM de Docente/Alumno -- Agregar archivo de enunciado al Enunciado (ricky) - Terminar ABM simples: * Curso (nico) * DocenteInscripto (Docente) (nico) diff --git a/sercom/model.py b/sercom/model.py index d06a570..01b908e 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -338,6 +338,9 @@ class Enunciado(SQLObject, ByObject): #{{{ autor = ForeignKey('Docente') descripcion = UnicodeCol(length=255, default=None) creado = DateTimeCol(notNone=True, default=DateTimeCol.now) + archivo = BLOBCol(default=None) + archivo_name = StringCol(default=None) + archivo_type = StringCol(default=None) # Joins ejercicios = MultipleJoin('Ejercicio') casos_de_prueba = MultipleJoin('CasoDePrueba') diff --git a/sercom/subcontrollers/enunciado/__init__.py b/sercom/subcontrollers/enunciado/__init__.py index 2f6b29d..6ed6df1 100644 --- a/sercom/subcontrollers/enunciado/__init__.py +++ b/sercom/subcontrollers/enunciado/__init__.py @@ -10,6 +10,7 @@ from turbogears import paginate from docutils.core import publish_parts from sercom.subcontrollers import validate as val from sercom.model import Enunciado, Docente +from cherrypy import request, response #}}} #{{{ Configuración @@ -62,6 +63,7 @@ class EnunciadoForm(W.TableForm): options=get_options, validator=V.Int(not_empty=False)) descripcion = W.TextField(label=_(u'Descripción'), validator=V.UnicodeString(not_empty=False, max=255, strip=True)) + archivo = W.FileField(label=_(u'Archivo')) fields = Fields() javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")] @@ -101,8 +103,11 @@ class EnunciadoController(controllers.Controller, identity.SecureResource): @validate(form=form) @error_handler(new) @expose() - def create(self, **kw): + def create(self, archivo, **kw): """Save or create record to model""" + kw['archivo'] = archivo.file.read() + kw['archivo_name'] = archivo.filename + kw['archivo_type'] = archivo.type validate_new(kw) flash(_(u'Se creó un nuevo %s.') % name) raise redirect('list') @@ -139,5 +144,13 @@ class EnunciadoController(controllers.Controller, identity.SecureResource): r.destroySelf() flash(_(u'El %s fue eliminado permanentemente.') % name) raise redirect('../list') + + @expose() + def files(self, id): + r = validate_get(id) + response.headers["Content-Type"] = r.archivo_type + response.headers["Content-disposition"] = "attachment;filename=%s" % (r.archivo_name) + flash(_(u'El %s fue eliminado permanentemente.') % name) + return r.archivo #}}} diff --git a/sercom/subcontrollers/enunciado/templates/list.kid b/sercom/subcontrollers/enunciado/templates/list.kid index 9e01961..b5dcdeb 100644 --- a/sercom/subcontrollers/enunciado/templates/list.kid +++ b/sercom/subcontrollers/enunciado/templates/list.kid @@ -26,8 +26,11 @@ cant - Editar - Eliminar + + Editar + Eliminar + Bajar Enunciado +