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
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))
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');")]
@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')
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)
#}}}