tarea_fuente = TareaFuenteController()
+ tarea_prueba = TareaPruebaController()
+
caso_de_prueba = CasoDePruebaController()
curso = CursoController()
from grupo_admin import GrupoAdminController
from miscorrecciones import MisCorreccionesController
from tarea_fuente import TareaFuenteController
+from tarea_prueba import TareaPruebaController
</head>
<body>
-<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
+<h1>Administración de <span py:replace="namepl">Objetos</span></h1>
<table class="list">
<tr>
<td><span py:replace="record.orden">telefono</span></td>
<td><span py:replace="record.comando">telefono</span></td>
<td><a href="${tg.url('/tarea_fuente/comandos/edit/%d' % record.id)}">Editar</a>
- <a href="${tg.url('/tarea_fuente/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { var f = document.createElement('form'); this.parentNode.appendChild(f); f.method = 'POST'; f.action = this.href; f.submit(); };return false;">Eliminar</a></td>
+ <a href="${tg.url('/tarea_fuente/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'EstÃ\83¡s seguro? Tal vez sÃ\83³lo quieras desactivarlo mejor...')}')) { 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>
--- /dev/null
+# 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 TareaPrueba
+from sqlobject import *
+from comandos import ComandoPruebaController
+#}}}
+
+#{{{ Configuración
+cls = TareaPrueba
+name = 'tarea prueba'
+namepl = 'tareas prueba'
+#}}}
+
+#{{{ 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 TareaPruebaForm(W.TableForm):
+ class Fields(W.WidgetsList):
+ nombre = W.TextField(label=_(u'Nombre'),validator=V.UnicodeString(min=3, max=30, strip=True))
+ descripcion = W.TextField(label=_(u'Descripcion'),
+ validator=V.UnicodeString(not_empty=False, max=255, strip=True))
+ fields = Fields()
+ javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
+
+form = TareaPruebaForm()
+#}}}
+
+#{{{ Controlador
+class TareaPruebaController(controllers.Controller, identity.SecureResource):
+ """Basic model admin interface"""
+ require = identity.has_permission('admin')
+
+ comandos = ComandoPruebaController()
+
+ @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(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)
+ 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')
+#}}}
+
--- /dev/null
+# 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 TareaPrueba, ComandoPrueba, Comando
+from sqlobject import *
+#}}}
+
+#{{{ Configuración
+cls = ComandoPrueba
+name = 'comando prueba'
+namepl = 'comandos prueba'
+#}}}
+
+#{{{ 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 ComandoPruebaForm(W.TableForm):
+ class Fields(W.WidgetsList):
+ tareaID = W.HiddenField()
+ orden = W.TextField(label=_(u'Orden'), validator=V.Int(not_empty=True))
+ comando = W.TextField(label=_(u'Comando'), validator=V.UnicodeString(min=3, max=255, strip=True))
+ descripcion = W.TextField(label=_(u'Descripcion'), validator=V.UnicodeString(min=3, max=255, strip=True))
+ retorno = W.TextField(label=_(u'Retorno'), help_text=u"Codigo de retorno esperado",validator=V.Int(if_empty=0))
+ max_tiempo_cpu = W.TextField(label=_(u'CPU'), help_text=u"Maximo tiempo de CPU que puede utilizar [seg]",validator=V.Int())
+ max_memoria = W.TextField(label=_(u'Memoria'), help_text=u"Maximo cantidad de memoria que puede utilizar [MB]",validator=V.Int())
+ max_tam_archivo = W.TextField(label=_(u'Tam. Archivo'), help_text=u"Maximo tamanio de archivo a crear [MB]",validator=V.Int())
+ max_cant_archivos = W.TextField(label=_(u'Archivos'),validator=V.Int())
+ max_cant_procesos = W.TextField(label=_(u'Procesos'),validator=V.Int())
+ max_locks_memoria = W.TextField(label=_(u'Mem. Locks'),validator=V.Int())
+ terminar_si_falla = W.CheckBox(label=_(u'Terminar si falla'), default=1, validator=V.Bool(if_empty=1))
+ rechazar_si_falla = W.CheckBox(label=_(u'Terminar si falla'), default=1, validator=V.Bool(if_empty=1))
+ archivos_entrada = W.FileField(label=_(u'Archivos Entrada'))
+ archivos_a_comparar = W.FileField(label=_(u'Archivos a Comparar'))
+ archivos_guardar = W.TextField(label=_(u'Archivos a Guardar'))
+ activo = W.CheckBox(label=_(u'Activo'), default=1, validator=V.Bool(if_empty=1))
+ fields = Fields()
+ javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_orden');")]
+
+form = ComandoPruebaForm()
+#}}}
+
+#{{{ Controlador
+class ComandoPruebaController(controllers.Controller, identity.SecureResource):
+ """Basic model admin interface"""
+ require = identity.has_permission('admin')
+
+ @expose(template='kid:%s.templates.list' % __name__)
+ @paginate('records')
+ def list(self, tareaID):
+ """List records in model"""
+ r = cls.select(cls.q.tareaID == tareaID)
+ return dict(records=r, name=name, tareaID=int(tareaID),namepl=namepl)
+
+ @expose(template='kid:%s.templates.new' % __name__)
+ def new(self, tareaID,**kw):
+ """Create new records in model"""
+ form.fields[0].attrs['value'] = tareaID
+ 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"""
+ t = TareaPrueba.get(kw['tareaID'])
+ orden = kw['orden']
+ del(kw['orden'])
+ del(kw['tareaID'])
+ if kw['archivos_entrada'].filename:
+ kw['archivos_entrada'] = kw['archivos_entrada'].file.read()
+ else:
+ kw['archivos_entrada'] = None
+ if kw['archivos_a_comparar'].filename:
+ kw['archivos_a_comparar'] = kw['archivos_a_comparar'].file.read()
+ else:
+ kw['archivos_a_comparar'] = None
+ # TODO : Hacer ventanita mas amigable para cargar esto.
+ try:
+ kw['archivos_a_guardar'] = tuple(kw['archivos_guardar'].split(','))
+ except:
+ del(kw['archivos_guardar'])
+ t.add_comando(orden, **kw)
+ flash(_(u'Se creó un nuevo %s.') % name)
+ raise redirect('list/%d' % t.id)
+
+ @expose(template='kid:%s.templates.edit' % __name__)
+ def edit(self, id, **kw):
+ """Edit record in model"""
+ r = validate_get(id)
+ r.archivos_guardar = ",".join(r.archivos_a_guardar)
+ 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/%d' % r.tarea.id)
+
+ @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)
+ tareaID = r.tarea.id
+ r.destroySelf()
+ flash(_(u'El %s fue eliminado permanentemente.') % name)
+ raise redirect('../list/%d' % tareaID)
+
+#}}}
+
--- /dev/null
+<!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=tg.url('/alumno/update/%d' % record.id),
+ submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/comandos/list/%d' % record.tarea.id)}">Volver (cancela)</a>
+
+</body>
+</html>
--- /dev/null
+<!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 class="list">
+ <tr>
+ <th>Orden</th>
+ <th>Comando</th>
+ <th>Operaciones</th>
+ </tr>
+ <tr py:for="record in records">
+ <td><span py:replace="record.orden">telefono</span></td>
+ <td><span py:replace="record.comando">telefono</span></td>
+ <td><a href="${tg.url('/tarea_prueba/comandos/edit/%d' % record.id)}">Editar</a>
+ <a href="${tg.url('/tarea_prueba/comandos/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { 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="${tg.url('/tarea_prueba/comandos/new/%d' % tareaID)}">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 : -->
--- /dev/null
+<!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=tg.url('/tarea_prueba/comandos/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/comandos/list')}">Cancelar</a>
+
+</body>
+</html>
--- /dev/null
+<!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=tg.url('/tarea_prueba/update/%d' % record.id),
+ submit_text=_(u'Guardar'))">Formulario</div>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/show/%d' % record.id)}">Ver (cancela)</a> |
+<a href="${tg.url('/tarea_prueba/list')}">Volver (cancela)</a>
+
+</body>
+</html>
--- /dev/null
+<!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 class="list">
+ <tr>
+ <th>Nombre</th>
+ <th>Descripcion</th>
+ <th>Operaciones</th>
+ </tr>
+ <tr py:for="record in records">
+ <td><span py:replace="record.nombre">nombre</span></td>
+ <td><span py:replace="record.descripcion">nota</span></td>
+ <td>
+ <a href="${tg.url('/tarea_prueba/comandos/list/%d' % record.id)}">Comandos</a>
+ <a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a>
+ <a href="${tg.url('/tarea_prueba/delete/%d' % record.id)}" onclick="if (confirm('${_(u'Estás seguro? Tal vez sólo quieras desactivarlo mejor...')}')) { 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="${tg.url('/tarea_prueba/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 : -->
--- /dev/null
+<!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=tg.url('/tarea_prueba/create'), value=values, submit_text=_('Crear'))">Formulario</p>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/list')}">Cancelar</a>
+
+</body>
+</html>
--- /dev/null
+<!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 class="show">
+ <tr>
+ <th>Nombre:</th>
+ <td><span py:replace="record.nombre">nombre</span></td>
+ </tr>
+ <tr>
+ <th>Descripcion:</th>
+ <td><span py:replace="record.descripcion">nombre</span></td>
+ </tr>
+</table>
+
+<br/>
+<a href="${tg.url('/tarea_prueba/edit/%d' % record.id)}">Editar</a> |
+<a href="${tg.url('/tarea_prueba/list')}">Volver</a>
+
+</body>
+</html>