]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/curso/__init__.py
29e4bcaeb00146099e2044e5899fbee43a8c33c8
[software/sercom.git] / sercom / subcontrollers / curso / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 #{{{ Imports
4 import cherrypy
5 from turbogears import controllers, expose, redirect
6 from turbogears import validate, flash, error_handler
7 from turbogears import validators as V
8 from turbogears import widgets as W
9 from turbogears import identity
10 from turbogears import paginate
11 from docutils.core import publish_parts
12 from sercom.subcontrollers import validate as val
13 from sercom.model import Curso
14 #}}}
15
16 #{{{ Configuración
17 cls = Curso
18 name = 'curso'
19 namepl = name + 's'
20 #}}}
21
22 #{{{ Validación
23 def validate_get(id):
24     return val.validate_get(cls, name, id)
25
26 def validate_set(id, data):
27     return val.validate_set(cls, name, id, data)
28
29 def validate_new(data):
30     return val.validate_new(cls, name, data)
31 #}}}
32
33 #{{{ Formulario
34 class CursoForm(W.TableForm):
35     class Fields(W.WidgetsList):
36         anio = W.TextField(label=_(u'Anio'),
37             help_text=_(u'Requerido y único.'),
38             validator=V.Number(min=4, max=4, strip=True))
39         cuatrimestre = W.TextField(label=_(u'Cuatrimestre'),
40             help_text=_(u'Requerido.'),
41             validator=V.Number(min=1, max=1, strip=True))
42         numero = W.TextField(label=_(u'Numero'),
43             help_text=_(u'Requerido'),
44             validator=V.Number(min=1, max=2, strip=True))
45     fields = Fields()
46     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('anio');")]
47         # ver que otros campos agregar.
48 """
49         W.TextField(name='telefono', label=_(u'Teléfono'),
50             #help_text=_(u'Texto libre para teléfono, se puede incluir '
51             #    'horarios o varias entradas.'),
52             validator=V.UnicodeString(not_empty=False, min=7, max=255,
53                 strip=True)),
54         W.TextField(name='nota', label=_(u'Nota'),
55             #help_text=_(u'Texto libre para teléfono, se puede incluir '
56             #    'horarios o varias entradas.'),
57             validator=V.Number(not_empty=False, strip=True)),
58         W.TextArea(name='observaciones', label=_(u'Observaciones'),
59             #help_text=_(u'Observaciones.'),
60             validator=V.UnicodeString(not_empty=False, strip=True)),
61         W.CheckBox(name='activo', label=_(u'Activo'), default=1,
62             #help_text=_(u'Si no está activo no puede ingresar al sistema.'),
63             validator=V.Bool(if_empty=1)),
64 """
65
66 form = CursoForm()
67 #}}}
68
69 #{{{ Controlador
70 class CursoController(controllers.Controller, identity.SecureResource):
71     """Basic model admin interface"""
72     require = identity.has_permission('admin')
73
74     @expose()
75     def default(self, tg_errors=None):
76         """handle non exist urls"""
77         raise redirect('list')
78
79     @expose()
80     def index(self):
81         raise redirect('list')
82
83     @expose(template='kid:%s.templates.list' % __name__)
84     @paginate('records')
85     def list(self):
86         """List records in model"""
87         r = cls.select()
88         return dict(records=r, name=name, namepl=namepl)
89
90     @expose()
91     def activate(self, id, activo):
92         """Save or create record to model"""
93         r = validate_get(id)
94         try:
95             r.activo = bool(int(activo))
96         except ValueError:
97             raise cherrypy.NotFound
98         raise redirect('../../list')
99
100     @expose(template='kid:%s.templates.new' % __name__)
101     def new(self, **kw):
102         """Create new records in model"""
103         return dict(name=name, namepl=namepl, form=form, values=kw)
104
105     @validate(form=form)
106     @error_handler(new)
107     @expose()
108     def create(self, **kw):
109         """Save or create record to model"""
110         validate_new(kw)
111         flash(_(u'Se creó un nuevo %s.') % name)
112         raise redirect('list')
113
114     @expose(template='kid:%s.templates.edit' % __name__)
115     def edit(self, id, **kw):
116         """Edit record in model"""
117         r = validate_get(id)
118         return dict(name=name, namepl=namepl, record=r, form=form)
119
120     @validate(form=form)
121     @error_handler(edit)
122     @expose()
123     def update(self, id, **kw):
124         """Save or create record to model"""
125         r = validate_set(id, kw)
126         flash(_(u'El %s fue actualizado.') % name)
127         raise redirect('../list')
128
129     @expose(template='kid:%s.templates.show' % __name__)
130     def show(self,id, **kw):
131         """Show record in model"""
132         r = validate_get(id)
133         if r.observaciones is None:
134             r.obs = ''
135         else:
136             r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
137         return dict(name=name, namepl=namepl, record=r)
138
139     @expose()
140     def delete(self, id):
141         """Destroy record in model"""
142         r = validate_get(id)
143         r.destroySelf()
144         flash(_(u'El %s fue eliminado permanentemente.') % name)
145         raise redirect('../list')
146 #}}}
147