X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/blobdiff_plain/e9571fa510c7719a5b3e59a795fe8b7625112f3d..cc39dd201027d32cadcca25f954291432c43d1af:/sercom/subcontrollers/enunciado/__init__.py diff --git a/sercom/subcontrollers/enunciado/__init__.py b/sercom/subcontrollers/enunciado/__init__.py index 7f5661f..8f22b94 100644 --- a/sercom/subcontrollers/enunciado/__init__.py +++ b/sercom/subcontrollers/enunciado/__init__.py @@ -9,7 +9,8 @@ from turbogears import identity from turbogears import paginate from docutils.core import publish_parts from sercom.subcontrollers import validate as val -from sercom.model import Enunciado, Docente +from sercom.model import Enunciado, Docente, Curso +from cherrypy import request, response #}}} #{{{ Configuración @@ -55,13 +56,20 @@ def get_options(): class EnunciadoForm(W.TableForm): class Fields(W.WidgetsList): + anio = W.TextField(label=_(u'Año'), + help_text=_(u'Requerido.'), + validator=V.Number(min=4, max=4, strip=True)) + cuatrimestre = W.TextField(label=_(u'Cuatrimestre'), + help_text=_(u'Requerido.'), + validator=V.Number(min=1, max=1, strip=True)) nombre = W.TextField(label=_(u'Nombre'), help_text=_(u'Requerido y único.'), - validator=V.UnicodeString(min=5, max=60, strip=True)), + validator=V.UnicodeString(min=5, max=60, strip=True)) fk = W.SingleSelectField(name=fkname+'ID', label=_(fkname.capitalize()), - options=get_options, validator=V.Int(not_empty=False)), + 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)), + 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 +109,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 +150,19 @@ 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 + + @expose("json") + def de_curso(self, curso_id): + c = Curso.get(curso_id) + e = Enunciado.selectByCurso(c) + return dict(enunciados=e) #}}}