]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/tarea_prueba/__init__.py
Permitir pasar el el archivo de configuración por línea de comandos al tester.
[software/sercom.git] / sercom / subcontrollers / tarea_prueba / __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 TareaPrueba
14 from sqlobject import *
15 from comandos import ComandoPruebaController
16 #}}}
17
18 #{{{ Configuración
19 cls = TareaPrueba
20 name = 'tarea prueba'
21 namepl = 'tareas prueba'
22 #}}}
23
24 #{{{ Validación
25 def validate_get(id):
26     return val.validate_get(cls, name, id)
27
28 def validate_set(id, data):
29     return val.validate_set(cls, name, id, data)
30
31 def validate_new(data):
32     return val.validate_new(cls, name, data)
33 #}}}
34
35 #{{{ Formulario
36 class TareaPruebaForm(W.TableForm):
37     class Fields(W.WidgetsList):
38         nombre = W.TextField(label=_(u'Nombre'),validator=V.UnicodeString(min=3, max=30, strip=True))
39         descripcion = W.TextField(label=_(u'Descripcion'),
40             validator=V.UnicodeString(not_empty=False, max=255, strip=True))
41     fields = Fields()
42     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
43
44 form = TareaPruebaForm()
45 #}}}
46
47 #{{{ Controlador
48 class TareaPruebaController(controllers.Controller, identity.SecureResource):
49     """Basic model admin interface"""
50     require = identity.has_permission('entregar')
51
52     comandos = ComandoPruebaController()
53
54     hide_to_entregar = 1
55
56     @expose()
57     def default(self, tg_errors=None):
58         """handle non exist urls"""
59         raise redirect('list')
60
61     @expose()
62     def index(self):
63         raise redirect('list')
64
65     @expose(template='kid:%s.templates.list' % __name__)
66     @paginate('records')
67     @identity.require(identity.has_permission('admin'))
68     def list(self):
69         """List records in model"""
70         r = cls.select()
71         return dict(records=r, name=name, namepl=namepl)
72
73     @expose(template='kid:%s.templates.new' % __name__)
74     @identity.require(identity.has_permission('admin'))
75     def new(self, **kw):
76         """Create new records in model"""
77         return dict(name=name, namepl=namepl, form=form, values=kw)
78
79     @validate(form=form)
80     @error_handler(new)
81     @expose()
82     @identity.require(identity.has_permission('admin'))
83     def create(self, **kw):
84         """Save or create record to model"""
85         validate_new(kw)
86         flash(_(u'Se creó un nuevo %s.') % name)
87         raise redirect('list')
88
89     @expose(template='kid:%s.templates.edit' % __name__)
90     @identity.require(identity.has_permission('admin'))
91     def edit(self, id, **kw):
92         """Edit record in model"""
93         r = validate_get(id)
94         return dict(name=name, namepl=namepl, record=r, form=form)
95
96     @validate(form=form)
97     @error_handler(edit)
98     @expose()
99     @identity.require(identity.has_permission('admin'))
100     def update(self, id, **kw):
101         """Save or create record to model"""
102         r = validate_set(id, kw)
103         flash(_(u'El %s fue actualizado.') % name)
104         raise redirect('../list')
105
106     @expose(template='kid:%s.templates.show' % __name__)
107     def show(self,id, **kw):
108         """Show record in model"""
109         r = validate_get(id)
110         return dict(name=name, namepl=namepl, record=r)
111
112     @expose()
113     @identity.require(identity.has_permission('admin'))
114     def delete(self, id):
115         """Destroy record in model"""
116         r = validate_get(id)
117         r.destroySelf()
118         flash(_(u'El %s fue eliminado permanentemente.') % name)
119         raise redirect('../list')
120 #}}}
121