X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/2c735b7a3859c99955e227e750d6fd2b169afce1..898fc8292d2ba43b2564d1f22bc6181d569adfe2:/sercom/subcontrollers/caso_de_prueba/__init__.py diff --git a/sercom/subcontrollers/caso_de_prueba/__init__.py b/sercom/subcontrollers/caso_de_prueba/__init__.py index f91397d..21451e7 100644 --- a/sercom/subcontrollers/caso_de_prueba/__init__.py +++ b/sercom/subcontrollers/caso_de_prueba/__init__.py @@ -1,5 +1,6 @@ -# vim: set et sw=4 sts=4 encoding=utf-8 : +# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker : +#{{{ Imports from turbogears import controllers, expose, redirect from turbogears import validate, validators, flash, error_handler from turbogears.widgets import * @@ -8,7 +9,9 @@ from turbogears import paginate from docutils.core import publish_parts from sercom.subcontrollers import validate as val from sercom.model import CasoDePrueba, Enunciado +#}}} +#{{{ Configuración cls = CasoDePrueba name = 'caso de prueba' namepl = 'casos de prueba' @@ -16,7 +19,9 @@ namepl = 'casos de prueba' fkcls = Enunciado fkname = 'enunciado' fknamepl = fkname + 's' +#}}} +#{{{ Validación def validate_fk(data): fk = data.get(fkname + 'ID', None) if fk == 0: fk = None @@ -24,9 +29,9 @@ def validate_fk(data): try: fk = fkcls.get(fk) except LookupError: - raise redirect('new', tg_flash=_(u'No se pudo crear el nuevo ' \ - '%s porque el %s con identificador %d no existe.' - % (name, fkname, fk)), **data) + flash(_(u'No se pudo crear el nuevo %s porque el %s con ' + 'identificador %d no existe.' % (name, fkname, fk))) + raise redirect('new', **data) data.pop(fkname + 'ID', None) data[fkname] = fk return fk @@ -41,7 +46,9 @@ def validate_set(id, data): def validate_new(data): validate_fk(data) return val.validate_new(cls, name, data) +#}}} +#{{{ Formulario def get_options(): return [(0, _(u'<>'))] + [(fk.id, fk.shortrepr()) for fk in fkcls.select()] @@ -59,7 +66,10 @@ form = TableForm(fields=[ TextField(name='tiempo_cpu', label=_(u'Tiempo de CPU'), validator=validators.Number(not_empty=False, strip=True)), ]) +form.javascript.append(JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")) +#}}} +#{{{ Controlador class CasoDePruebaController(controllers.Controller, identity.SecureResource): """Basic model admin interface""" require = identity.has_permission('admin') @@ -74,21 +84,20 @@ class CasoDePruebaController(controllers.Controller, identity.SecureResource): raise redirect('list') @expose(template='kid:%s.templates.list' % __name__) - @validate(validators=dict(enunciadoID=validators.Int)) + @validate(validators=dict(enunciado=validators.Int)) @paginate('records') - def list(self, enunciadoID=None, tg_flash=None): + def list(self, enunciado=None): """List records in model""" - if enunciadoID is None: + if enunciado is None: r = cls.select() else: - r = cls.selectBy(enunciadoID=enunciadoID) - return dict(records=r, name=name, namepl=namepl, tg_flash=tg_flash) + r = cls.selectBy(enunciadoID=enunciado) + return dict(records=r, name=name, namepl=namepl, parcial=enunciado) @expose(template='kid:%s.templates.new' % __name__) def new(self, **kw): """Create new records in model""" - f = kw.get('tg_flash', None) - return dict(name=name, namepl=namepl, form=form, tg_flash=f, values=kw) + return dict(name=name, namepl=namepl, form=form, values=kw) @validate(form=form) @error_handler(new) @@ -96,14 +105,14 @@ class CasoDePruebaController(controllers.Controller, identity.SecureResource): def create(self, **kw): """Save or create record to model""" validate_new(kw) - raise redirect('list', tg_flash=_(u'Se creó un nuevo %s.') % name) + flash(_(u'Se creó un nuevo %s.') % name) + raise redirect('list') @expose(template='kid:%s.templates.edit' % __name__) def edit(self, id, **kw): """Edit record in model""" r = validate_get(id) - return dict(name=name, namepl=namepl, record=r, form=form, - tg_flash=kw.get('tg_flash', None)) + return dict(name=name, namepl=namepl, record=r, form=form) @validate(form=form) @error_handler(edit) @@ -111,8 +120,8 @@ class CasoDePruebaController(controllers.Controller, identity.SecureResource): def update(self, id, **kw): """Save or create record to model""" r = validate_set(id, kw) - raise redirect('../list', - tg_flash=_(u'El %s fue actualizado.') % name) + flash(_(u'El %s fue actualizado.') % name) + raise redirect('../list') @expose(template='kid:%s.templates.show' % __name__) def show(self, id, **kw): @@ -129,6 +138,7 @@ class CasoDePruebaController(controllers.Controller, identity.SecureResource): """Destroy record in model""" r = validate_get(id) r.destroySelf() - raise redirect('../list', - tg_flash=_(u'El %s fue eliminado permanentemente.') % name) + flash(_(u'El %s fue eliminado permanentemente.') % name) + raise redirect('../list') +#}}}