From: Ricardo Markiewicz Date: Thu, 1 Mar 2007 19:04:17 +0000 (+0000) Subject: Agrego correcciones X-Git-Tag: pre-merge~23 X-Git-Url: https://git.llucax.com/software/sercom.git/commitdiff_plain/59414d0e06ace92fddabf0a6c5f0e7e12ec267f2?ds=inline Agrego correcciones --- diff --git a/sercom/controllers.py b/sercom/controllers.py index f7e9d83..09219a1 100644 --- a/sercom/controllers.py +++ b/sercom/controllers.py @@ -93,6 +93,8 @@ class Root(controllers.RootController): docente_inscripto = DocenteInscriptoController() + correcion = CorreccionController() + #{{{ Agrega summarize a namespace tg de KID def summarize(text, size, concat=True, continuation='...'): diff --git a/sercom/subcontrollers/__init__.py b/sercom/subcontrollers/__init__.py index d54492e..1fe1dc1 100644 --- a/sercom/subcontrollers/__init__.py +++ b/sercom/subcontrollers/__init__.py @@ -6,3 +6,4 @@ from caso_de_prueba import CasoDePruebaController from ejercicio import EjercicioController from docente_inscripto import DocenteInscriptoController from grupo import GrupoController +from correccion import CorreccionController diff --git a/sercom/subcontrollers/correccion/__init__.py b/sercom/subcontrollers/correccion/__init__.py new file mode 100644 index 0000000..a263f9e --- /dev/null +++ b/sercom/subcontrollers/correccion/__init__.py @@ -0,0 +1,175 @@ +# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker : + +#{{{ Imports +import cherrypy +from turbogears import controllers, expose, redirect +from turbogears import validate, flash, error_handler +from turbogears import validators as V +from turbogears import widgets as W +from turbogears import identity +from turbogears import paginate +from docutils.core import publish_parts +from sercom.subcontrollers import validate as val +from sercom.model import Correccion +#}}} + +#{{{ Configuración +cls = Correccion +name = 'correccion' +namepl = name + 'es' +#}}} + +#{{{ Validación +def validate_get(id): + return val.validate_get(cls, name, id) + +def validate_set(id, data): + return val.validate_set(cls, name, id, data) + +def validate_new(data): + return val.validate_new(cls, name, data) +#}}} + +#{{{ Formulario +class CorreccionForm(W.TableForm): + class Fields(W.WidgetsList): + padron = W.TextField(label=_(u'Padrón'), + help_text=_(u'Requerido y único.'), + validator=V.UnicodeString(min=3, max=10, strip=True)) + nombre = W.TextField(label=_(u'Nombre'), + help_text=_(u'Requerido.'), + validator=V.UnicodeString(min=10, max=255, strip=True)) + email = W.TextField(label=_(u'E-Mail'), + #help_text=_(u'Dirección de e-mail.'), + validator=V.All( + V.Email(not_empty=False, resolve_domain=True), + V.UnicodeString(not_empty=False, max=255, strip=True))) + telefono = W.TextField(label=_(u'Teléfono'), + #help_text=_(u'Texto libre para teléfono, se puede incluir ' + # 'horarios o varias entradas.'), + validator=V.UnicodeString(not_empty=False, min=7, max=255, + strip=True)) + nota = W.TextField(label=_(u'Nota'), + #help_text=_(u'Texto libre para teléfono, se puede incluir ' + # 'horarios o varias entradas.'), + validator=V.Number(not_empty=False, strip=True)) + observaciones = W.TextArea(label=_(u'Observaciones'), + #help_text=_(u'Observaciones.'), + validator=V.UnicodeString(not_empty=False, strip=True)) + activo = W.CheckBox(label=_(u'Activo'), default=1, + #help_text=_(u'Si no está activo no puede ingresar al sistema.'), + validator=V.Bool(if_empty=1)) + fields = Fields() + javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_padron');")] + +form = CorreccionForm() +#}}} + +#{{{ Controlador +class CorreccionController(controllers.Controller, identity.SecureResource): + """Basic model admin interface""" + require = identity.has_permission('admin') + + @expose() + def default(self, tg_errors=None): + """handle non exist urls""" + raise redirect('list') + + @expose() + def index(self): + raise redirect('list') + + @expose(template='kid:%s.templates.list' % __name__) + @paginate('records') + def list(self): + """List records in model""" + r = cls.select() + return dict(records=r, name=name, namepl=namepl) + + @expose() + def activate(self, id, activo): + """Save or create record to model""" + r = validate_get(id) + try: + r.activo = bool(int(activo)) + except ValueError: + raise cherrypy.NotFound + raise redirect('../../list') + + @expose(template='kid:%s.templates.new' % __name__) + def new(self, **kw): + """Create new records in model""" + return dict(name=name, namepl=namepl, form=form, values=kw) + + @validate(form=form) + @error_handler(new) + @expose() + def create(self, **kw): + """Save or create record to model""" + validate_new(kw) + 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) + + @validate(form=form) + @error_handler(edit) + @expose() + def update(self, id, **kw): + """Save or create record to model""" + r = validate_set(id, kw) + flash(_(u'El %s fue actualizado.') % name) + raise redirect('../list') + + @expose(template='kid:%s.templates.show' % __name__) + def show(self,id, **kw): + """Show record in model""" + r = validate_get(id) + if r.observaciones is None: + r.obs = '' + else: + r.obs = publish_parts(r.observaciones, writer_name='html')['html_body'] + return dict(name=name, namepl=namepl, record=r) + + @expose() + def delete(self, id): + """Destroy record in model""" + r = validate_get(id) + r.destroySelf() + flash(_(u'El %s fue eliminado permanentemente.') % name) + raise redirect('../list') + + @expose(template='kid:%s.templates.from_file' % __name__) + def from_file(self): + return dict() + + @expose(template='kid:%s.templates.import_results' % __name__) + def from_file_add(self, archivo): + """ Se espera : + padron,nombre,email,telefono + """ + import csv + lines = archivo.file.read().split('\n') + ok = [] + fail = [] + for line in lines: + for row in csv.reader([line]): + if row == []: + continue + try: + u = Alumno(row[0], nombre=row[1]) + u.email = row[2] + u.telefono = row[3] + u.contrasenia = row[0] + u.activo = True + ok.append(row) + except Exception, e: + row.append(str(e)) + fail.append(row) + return dict(ok=ok, fail=fail) +#}}} + diff --git a/sercom/subcontrollers/correccion/templates/edit.kid b/sercom/subcontrollers/correccion/templates/edit.kid new file mode 100644 index 0000000..a0e29df --- /dev/null +++ b/sercom/subcontrollers/correccion/templates/edit.kid @@ -0,0 +1,20 @@ + + + + +edit + + + +

Modificación de Objeto

+ +
Formulario
+ +
+Ver (cancela) | +Volver (cancela) + + + diff --git a/sercom/subcontrollers/correccion/templates/list.kid b/sercom/subcontrollers/correccion/templates/list.kid new file mode 100644 index 0000000..e361789 --- /dev/null +++ b/sercom/subcontrollers/correccion/templates/list.kid @@ -0,0 +1,47 @@ + + + + +list + + + +

Administración de Objetos

+ + + + + + + + + + + + + + + + + + + + + + +
Instancia de EntregaEntregadorEntregasCorrectorAsignadoCorregidoCorregidoNota
usuarionombreemailtelefononotaobservacionesobservaciones + Corregir + Editar +
+ +
+ ${page} + ${page} +
+ + + + + diff --git a/sercom/subcontrollers/correccion/templates/show.kid b/sercom/subcontrollers/correccion/templates/show.kid new file mode 100644 index 0000000..0458e7f --- /dev/null +++ b/sercom/subcontrollers/correccion/templates/show.kid @@ -0,0 +1,46 @@ + + + + +show + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Padrón:padrón
Nombre:nombre
E-Mail:email
Teléfono:telefono
Nota:nota
Activo:activo
Observaciones:observaciones
+ +
+Editar | +Volver + + +