]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Agregar controlador para ABM de enunciados.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 10 Feb 2007 00:42:00 +0000 (00:42 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 10 Feb 2007 00:42:00 +0000 (00:42 +0000)
Controlador para ABM de enunciados. Tal vez se pueda hacer una superclase para
no repetir tanto código, pero como las personalizaciones van a ser cada vez más
frecuentes, no sé si será de mucha utilidad.

sercom/controllers.py
sercom/subcontrollers/__init__.py
sercom/subcontrollers/enunciado/__init__.py [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/__init__.py [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/edit.kid [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/list.kid [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/new.kid [new file with mode: 0644]
sercom/subcontrollers/enunciado/templates/show.kid [new file with mode: 0644]

index 5e785eaf8d9fac42453fd8699255c708fd67024d..abc3767bed9123a09942fb81bb1c1a9d9b742fdf 100644 (file)
@@ -7,7 +7,7 @@ from cherrypy import request, response
 from model import *
 # from sercom import json
 
-from subcontrollers import DocenteController
+from subcontrollers import *
 
 import logging
 log = logging.getLogger("sercom.controllers")
@@ -76,6 +76,7 @@ class Root(controllers.RootController):
         raise redirect('/')
 
     docente = DocenteController()
+    enunciado = EnunciadoController()
 
 #{{{ Agrega summarize a namespace tg de KID
 def summarize(text, size, concat=True, continuation='...'):
index 41c6761f747cf3c2006b484b354eeb49b6eb9ea5..3ac9677ae14c6817d5094e3189c7bf125c18184e 100644 (file)
@@ -1 +1,2 @@
 from docente import DocenteController
+from enunciado import EnunciadoController
diff --git a/sercom/subcontrollers/enunciado/__init__.py b/sercom/subcontrollers/enunciado/__init__.py
new file mode 100644 (file)
index 0000000..569b2ac
--- /dev/null
@@ -0,0 +1,118 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 :
+
+from turbogears import controllers, expose, redirect
+from turbogears import validate, validators, flash, error_handler
+from sercom.model import Enunciado, Docente
+from turbogears.widgets import *
+from turbogears import identity
+from turbogears import paginate
+from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+
+cls = Enunciado
+name = 'enunciado'
+namepl = name + 's'
+
+def validate_autor(data):
+    autor = data.get('autorID', None)
+    if autor == 0: autor = None
+    if autor is not None:
+        try:
+            autor = Docente.get(autor)
+        except LookupError:
+            raise redirect('new', tg_flash=_(u'No se pudo crear el nuevo ' \
+                '%s porque el autor con identificador %d no existe.'
+                    % (name, autor)), **data)
+    data.pop('autorID', None)
+    data['autor'] = autor
+
+def validate_get(id):
+    return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+    validate_autor(data)
+    return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+    validate_autor(data)
+    return val.validate_new(cls, name, data)
+
+def get_options():
+    return [(0, _(u'--'))] + [(a.id, a.shortrepr()) for a in Docente.select()]
+
+form = TableForm(fields=[
+    TextField(name='nombre', label=_(u'Nombre'),
+        help_text=_(u'Requerido y único.'),
+        validator=validators.UnicodeString(min=5, max=60, strip=True)),
+    SingleSelectField(name='autorID', label=_(u'Autor'),
+        options=get_options, validator=validators.Int(not_empty=False)),
+    TextField(name='descripcion', label=_(u'Descripción'),
+        validator=validators.UnicodeString(not_empty=False, max=255, strip=True)),
+])
+
+class EnunciadoController(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:sercom.subcontrollers.%s.templates.list' % name)
+    @paginate('records')
+    def list(self, **kw):
+        """List records in model"""
+        f = kw.get('tg_flash', None)
+        r = cls.select()
+        return dict(records=r, name=name, namepl=namepl, tg_flash=f)
+
+    @expose(template='kid:sercom.subcontrollers.%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)
+
+    @validate(form=form)
+    @error_handler(new)
+    @expose()
+    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)
+
+    @expose(template='kid:sercom.subcontrollers.%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))
+
+    @validate(form=form)
+    @error_handler(edit)
+    @expose()
+    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)
+
+    @expose(template='kid:sercom.subcontrollers.%s.templates.show' % name)
+    def show(self,id, **kw):
+        """Show record in model"""
+        r = validate_get(id)
+        r.desc = publish_parts(r.descripcion, 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()
+        raise redirect('../list',
+            tg_flash=_(u'El %s fue eliminado permanentemente.') % name)
+
diff --git a/sercom/subcontrollers/enunciado/templates/__init__.py b/sercom/subcontrollers/enunciado/templates/__init__.py
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/sercom/subcontrollers/enunciado/templates/edit.kid b/sercom/subcontrollers/enunciado/templates/edit.kid
new file mode 100644 (file)
index 0000000..afe699e
--- /dev/null
@@ -0,0 +1,19 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>edit</title>
+</head>
+<body>
+
+<h1>Modificación de <span py:replace="name">Objeto</span></h1>
+
+<div py:replace="form(value=record, action='../update/' + str(record.id),
+       submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="../show/${record.id}">Ver (cancela)</a> | <a href="../list">Volver (cancela)</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/enunciado/templates/list.kid b/sercom/subcontrollers/enunciado/templates/list.kid
new file mode 100644 (file)
index 0000000..f33a854
--- /dev/null
@@ -0,0 +1,42 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>list</title>
+</head>
+<body>
+
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+
+<table>
+    <tr>
+        <th>Nombre</th>
+        <th>Descripción</th>
+        <th>Autor</th>
+        <th>Operaciones</th>
+    </tr>
+    <tr py:for="record in records">
+        <td><a href="show/${record.id}"><span py:replace="record.nombre">nombre</span></a></td>
+        <td><span py:replace="tg.summarize(record.descripcion, 30)">descripción</span></td>
+        <td><a py:if="record.autorID is not None"
+                href="../docente/show/${record.autor.id}"><span
+                    py:replace="tg.summarize(record.autor.shortrepr(), 30)">autor</span></a></td>
+        <td><a href="edit/${record.id}">Editar</a>
+            <a href="delete/${record.id}" onclick="if (confirm('${_(u'Estás seguro? Yo creo que no...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+    </tr>
+</table>
+
+<br/>
+<a href="new">Agregar</a>
+
+<div py:for="page in tg.paginate.pages">
+    <a py:if="page != tg.paginate.current_page"
+        href="${tg.paginate.get_href(page)}">${page}</a>
+    <b py:if="page == tg.paginate.current_page">${page}</b>
+</div>
+
+</body>
+</html>
+
+<!-- vim: set et sw=4 sts=4 : -->
diff --git a/sercom/subcontrollers/enunciado/templates/new.kid b/sercom/subcontrollers/enunciado/templates/new.kid
new file mode 100644 (file)
index 0000000..c7e0d4b
--- /dev/null
@@ -0,0 +1,18 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>new</title>
+</head>
+<body>
+
+<h1>Crear Nuevo <span py:replace="name">Objeto</span></h1>
+
+<p py:replace="form(action='create', value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="list">Cancelar</a>
+
+</body>
+</html>
diff --git a/sercom/subcontrollers/enunciado/templates/show.kid b/sercom/subcontrollers/enunciado/templates/show.kid
new file mode 100644 (file)
index 0000000..e788e67
--- /dev/null
@@ -0,0 +1,29 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"
+    py:extends="'../../../templates/master.kid'">
+<head>
+<meta content="text/html; charset=utf-8" http-equiv="Content-Type" py:replace="''"/>
+<title>show</title>
+</head>
+<body>
+
+<table>
+    <tr>
+        <th>Nombre:</th>
+        <td><span py:replace="record.nombre">nombre</span></td>
+    </tr>
+    <tr>
+        <th>Descripción:</th>
+       <td><span py:replace="XML(record.desc)">descripcion</span></td>
+    </tr>
+    <tr>
+        <th>Autor:</th>
+       <td><a py:if="record.autorID is not None" href="../../docente/show/${record.autor.id}"><span py:replace="record.autor.shortrepr()">autor</span></a></td>
+    </tr>
+</table>
+
+<br/>
+<a href="../edit/${record.id}">Editar</a> | <a href="../list">Volver</a>
+
+</body>
+</html>