]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/__init__.py
Mejorar puesta de foco en campo del formulario.
[software/sercom.git] / sercom / subcontrollers / caso_de_prueba / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 :
2
3 from turbogears import controllers, expose, redirect
4 from turbogears import validate, validators, flash, error_handler
5 from turbogears.widgets import *
6 from turbogears import identity
7 from turbogears import paginate
8 from docutils.core import publish_parts
9 from sercom.subcontrollers import validate as val
10 from sercom.model import CasoDePrueba, Enunciado
11
12 cls = CasoDePrueba
13 name = 'caso de prueba'
14 namepl = 'casos de prueba'
15
16 fkcls = Enunciado
17 fkname = 'enunciado'
18 fknamepl = fkname + 's'
19
20 def validate_fk(data):
21     fk = data.get(fkname + 'ID', None)
22     if fk == 0: fk = None
23     if fk is not None:
24         try:
25             fk = fkcls.get(fk)
26         except LookupError:
27             flash(_(u'No se pudo crear el nuevo %s porque el %s con '
28                 'identificador %d no existe.' % (name, fkname, fk)))
29             raise redirect('new', **data)
30     data.pop(fkname + 'ID', None)
31     data[fkname] = fk
32     return fk
33
34 def validate_get(id):
35     return val.validate_get(cls, name, id)
36
37 def validate_set(id, data):
38     validate_fk(data)
39     return val.validate_set(cls, name, id, data)
40
41 def validate_new(data):
42     validate_fk(data)
43     return val.validate_new(cls, name, data)
44
45 def get_options():
46     return [(0, _(u'<<General>>'))] + [(fk.id, fk.shortrepr())
47         for fk in fkcls.select()]
48
49 form = TableForm(fields=[
50     TextField(name='nombre', label=_(u'Nombre'),
51         help_text=_(u'Requerido y único.'),
52         validator=validators.UnicodeString(min=5, max=60, strip=True)),
53     SingleSelectField(name=fkname+'ID', label=_(fkname.capitalize()),
54         options=get_options, validator=validators.Int(not_empty=False)),
55     TextField(name='descripcion', label=_(u'Descripción'),
56         validator=validators.UnicodeString(not_empty=False, max=255, strip=True)),
57     TextField(name='retorno', label=_(u'Código de retorno'),
58         validator=validators.Int(not_empty=False, strip=True)),
59     TextField(name='tiempo_cpu', label=_(u'Tiempo de CPU'),
60         validator=validators.Number(not_empty=False, strip=True)),
61 ])
62
63 class CasoDePruebaController(controllers.Controller, identity.SecureResource):
64     """Basic model admin interface"""
65     require = identity.has_permission('admin')
66
67     @expose()
68     def default(self, tg_errors=None):
69         """handle non exist urls"""
70         raise redirect('list')
71
72     @expose()
73     def index(self):
74         raise redirect('list')
75
76     @expose(template='kid:%s.templates.list' % __name__)
77     @validate(validators=dict(enunciado=validators.Int))
78     @paginate('records')
79     def list(self, enunciado=None):
80         """List records in model"""
81         if enunciado is None:
82             r = cls.select()
83         else:
84             r = cls.selectBy(enunciadoID=enunciado)
85         return dict(records=r, name=name, namepl=namepl, parcial=enunciado)
86
87     @expose(template='kid:%s.templates.new' % __name__)
88     def new(self, **kw):
89         """Create new records in model"""
90         return dict(name=name, namepl=namepl, form=form, values=kw)
91
92     @validate(form=form)
93     @error_handler(new)
94     @expose()
95     def create(self, **kw):
96         """Save or create record to model"""
97         validate_new(kw)
98         flash(_(u'Se creó un nuevo %s.') % name)
99         raise redirect('list')
100
101     @expose(template='kid:%s.templates.edit' % __name__)
102     def edit(self, id, **kw):
103         """Edit record in model"""
104         r = validate_get(id)
105         return dict(name=name, namepl=namepl, record=r, form=form)
106
107     @validate(form=form)
108     @error_handler(edit)
109     @expose()
110     def update(self, id, **kw):
111         """Save or create record to model"""
112         r = validate_set(id, kw)
113         flash(_(u'El %s fue actualizado.') % name)
114         raise redirect('../list')
115
116     @expose(template='kid:%s.templates.show' % __name__)
117     def show(self, id, **kw):
118         """Show record in model"""
119         r = validate_get(id)
120         if r.descripcion is None:
121             r.desc = ''
122         else:
123             r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
124         return dict(name=name, namepl=namepl, record=r)
125
126     @expose()
127     def delete(self, id):
128         """Destroy record in model"""
129         r = validate_get(id)
130         r.destroySelf()
131         flash(_(u'El %s fue eliminado permanentemente.') % name)
132         raise redirect('../list')
133