]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/model.py
Fix para que ande el select de enunciados
[software/sercom.git] / sercom / model.py
index 78772f310b0a1f17ac46c7cd58301fcac9b16e7c..739bbd7183feb86a3dd7a7b90396366aa07e38f1 100644 (file)
@@ -5,8 +5,11 @@ from turbogears.database import PackageHub
 from sqlobject import *
 from sqlobject.sqlbuilder import *
 from sqlobject.inheritance import InheritableSQLObject
-from sqlobject.col import PickleValidator
+from sqlobject.col import PickleValidator, UnicodeStringValidator
 from turbogears import identity
+from turbogears.identity import encrypt_password as encryptpw
+from sercom.validators import params_to_list, ParseError
+from formencode import Invalid
 
 hub = PackageHub("sercom")
 __connection__ = hub
@@ -20,47 +23,80 @@ class TupleValidator(PickleValidator):
     Validator for tuple types.  A tuple type is simply a pickle type
     that validates that the represented type is a tuple.
     """
-
     def to_python(self, value, state):
         value = super(TupleValidator, self).to_python(value, state)
         if value is None:
             return None
         if isinstance(value, tuple):
             return value
-        raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
+        raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
             (self.name, type(value), value), value, state)
-
     def from_python(self, value, state):
         if value is None:
             return None
         if not isinstance(value, tuple):
-            raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
+            raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
                 (self.name, type(value), value), value, state)
         return super(TupleValidator, self).from_python(value, state)
 
 class SOTupleCol(SOPickleCol):
-
-    def __init__(self, **kw):
-        super(SOTupleCol, self).__init__(**kw)
-
     def createValidators(self):
-        return [TupleValidator(name=self.name)] \
-            super(SOPickleCol, self).createValidators()
+        return [TupleValidator(name=self.name)] \
+            super(SOPickleCol, self).createValidators()
 
 class TupleCol(PickleCol):
     baseClass = SOTupleCol
 
+class ParamsValidator(UnicodeStringValidator):
+    def to_python(self, value, state):
+        if isinstance(value, basestring):
+            value = super(ParamsValidator, self).to_python(value, state)
+            try:
+                value = params_to_list(value)
+            except ParseError, e:
+                raise Invalid("invalid parameters in the ParamsCol '%s', parse "
+                    "error: %s" % (self.name, e), value, state)
+        elif not isinstance(value, (list, tuple)):
+            raise Invalid("expected a tuple, list or valid string in the "
+                "ParamsCol '%s', got %s %r instead"
+                    % (self.name, type(value), value), value, state)
+        return value
+    def from_python(self, value, state):
+        if isinstance(value, (list, tuple)):
+            value = ' '.join([repr(p) for p in value])
+        elif isinstance(value, basestring):
+            value = super(ParamsValidator, self).to_python(value, state)
+            try:
+                params_to_list(value)
+            except ParseError, e:
+                raise Invalid("invalid parameters in the ParamsCol '%s', parse "
+                    "error: %s" % (self.name, e), value, state)
+        else:
+            raise Invalid("expected a tuple, list or valid string in the "
+                "ParamsCol '%s', got %s %r instead"
+                    % (self.name, type(value), value), value, state)
+        return value
+
+class SOParamsCol(SOUnicodeCol):
+    def createValidators(self):
+        return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)] \
+            + super(SOParamsCol, self).createValidators()
+
+class ParamsCol(UnicodeCol):
+    baseClass = SOParamsCol
+
 #}}}
 
 #{{{ Tablas intermedias
 
-
 # BUG en SQLObject, SQLExpression no tiene cálculo de hash pero se usa como
 # key de un dict. Workarround hasta que lo arreglen.
 SQLExpression.__hash__ = lambda self: hash(str(self))
 
 instancia_tarea_t = table.instancia_tarea
 
+enunciado_tarea_t = table.enunciado_tarea
+
 dependencia_t = table.dependencia
 
 #}}}
@@ -96,22 +132,26 @@ class Curso(SQLObject, ByObject): #{{{
     grupos          = MultipleJoin('Grupo')
     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
 
-    def add_docente(self, docente, **opts):
-        return DocenteInscripto(cursoID=self.id, docenteID=docente.id, **opts)
+    def __init__(self, anio=None, cuatrimestre=None, numero=None,
+            descripcion=None, docentes=[], ejercicios=[], **kargs):
+        SQLObject.__init__(self, anio=anio, cuatrimestre=cuatrimestre,
+            numero=numero, descripcion=descripcion, **kargs)
+        for d in docentes:
+            self.add_docente(d)
+        for (n, e) in enumerate(ejercicios):
+            self.add_ejercicio(n, e)
 
-    def add_alumno(self, alumno, tutor=None, **opts):
-        tutor_id = tutor and tutor.id
-        return AlumnoInscripto(cursoID=self.id, alumnoID=alumno.id,
-            tutorID=tutor_id, **opts)
+    def add_docente(self, docente, *args, **kargs):
+        return DocenteInscripto(self, docente, *args, **kargs)
 
-    def add_grupo(self, nombre, responsable=None, **opts):
-        resp_id = responsable and responsable.id
-        return Grupo(cursoID=self.id, nombre=unicode(nombre),
-            responsableID=resp_id, **opts)
+    def add_alumno(self, alumno, *args, **kargs):
+        return AlumnoInscripto(self, alumno, *args, **kargs)
+
+    def add_grupo(self, nombre, *args, **kargs):
+        return Grupo(self, unicode(nombre), *args, **kargs)
 
-    def add_ejercicio(self, numero, enunciado, **opts):
-        return Ejercicio(cursoID=self.id, numero=numero,
-            enunciadoID=enunciado.id, **opts)
+    def add_ejercicio(self, numero, enunciado, *args, **kargs):
+        return Ejercicio(self, numero, enunciado, *args, **kargs)
 
     def __repr__(self):
         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
@@ -136,7 +176,6 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
     observaciones   = UnicodeCol(default=None)
     activo          = BoolCol(notNone=True, default=True)
     # Joins
-    grupos          = RelatedJoin('Grupo')
     roles           = RelatedJoin('Rol')
 
     def _get_user_name(self): # para identity
@@ -155,12 +194,14 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
 
     def _get_permissions(self): # para identity
         perms = set()
-        for g in self.groups:
-            perms.update(g.permisos)
+        for r in self.roles:
+            perms.update(r.permisos)
         return perms
 
+    _get_permisos = _get_permissions
+
     def _set_password(self, cleartext_password): # para identity
-        self.contrasenia = identity.encrypt_password(cleartext_password)
+        self.contrasenia = encryptpw(cleartext_password)
 
     def _get_password(self): # para identity
         return self.contrasenia
@@ -177,14 +218,25 @@ class Docente(Usuario): #{{{
     # Campos
     nombrado        = BoolCol(notNone=True, default=True)
     # Joins
-    enunciados      = MultipleJoin('Enunciado')
+    enunciados      = MultipleJoin('Enunciado', joinColumn='autor_id')
     inscripciones   = MultipleJoin('DocenteInscripto')
 
-    def add_entrega(self, instancia, **opts):
-        return Entrega(instanciaID=instancia.id, **opts)
+    def __init__(self, usuario=None, nombre=None, password=None, email=None,
+            telefono=None, nombrado=True, activo=False, observaciones=None,
+            roles=[], **kargs):
+        passwd = password and encryptpw(password)
+        InheritableSQLObject.__init__(self, usuario=usuario, nombre=nombre,
+            contrasenia=passwd, email=email, telefono=telefono,
+            nombrado=nombrado, activo=activo, observaciones=observaciones,
+            **kargs)
+        for r in roles:
+            self.addRol(r)
+
+    def add_entrega(self, instancia, *args, **kargs):
+        return Entrega(instancia, *args, **kargs)
 
-    def add_enunciado(self, nombre, **opts):
-        return Enunciado(autorID=self.id, nombre=nombre, **opts)
+    def add_enunciado(self, nombre, *args, **kargs):
+        return Enunciado(nombre, self, *args, **kargs)
 
     def __repr__(self):
         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
@@ -201,6 +253,15 @@ class Alumno(Usuario): #{{{
     # Joins
     inscripciones   = MultipleJoin('AlumnoInscripto')
 
+    def __init__(self, padron=None, nombre=None, password=None, email=None,
+            telefono=None, activo=False, observaciones=None, roles=[], **kargs):
+        passwd = password and encryptpw(password)
+        InheritableSQLObject.__init__(self, usuario=padron, nombre=nombre,
+            email=email, contrasenia=passwd, telefono=telefono, activo=activo,
+            observaciones=observaciones, **kargs)
+        for r in roles:
+            self.addRol(r)
+
     def _get_padron(self): # alias para poder referirse al alumno por padron
         return self.usuario
 
@@ -221,6 +282,12 @@ class Tarea(InheritableSQLObject, ByObject): #{{{
     descripcion     = UnicodeCol(length=255, default=None)
     # Joins
 
+    def __init__(self, nombre=None, descripcion=None, dependencias=(), **kargs):
+        InheritableSQLObject.__init__(self, nombre=nombre,
+            descripcion=descripcion, **kargs)
+        if dependencias:
+            self.dependencias = dependencias
+
     def _get_dependencias(self):
         OtherTarea = Alias(Tarea, 'other_tarea')
         self.__dependencias = tuple(Tarea.select(
@@ -268,15 +335,59 @@ class Enunciado(SQLObject, ByObject): #{{{
     # Clave
     nombre          = UnicodeCol(length=60, alternateID=True)
     # Campos
+    autor           = ForeignKey('Docente')
     descripcion     = UnicodeCol(length=255, default=None)
-    autor           = ForeignKey('Docente', default=None, dbName='docente_id')
     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
+    archivo         = BLOBCol(default=None)
+    archivo_name    = StringCol(default=None)
+    archivo_type    = StringCol(default=None)
     # Joins
     ejercicios      = MultipleJoin('Ejercicio')
     casos_de_prueba = MultipleJoin('CasoDePrueba')
 
-    def add_caso_de_prueba(self, nombre, **opts):
-        return CasoDePrueba(enunciadoID=self.id, nombre=nombre, **opts)
+    def __init__(self, nombre=None, autor=None, descripcion=None, tareas=(),
+            **kargs):
+        SQLObject.__init__(self, nombre=nombre, autorID=autor and autor.id,
+            descripcion=descripcion, **kargs)
+        if tareas:
+            self.tareas = tareas
+
+    def add_caso_de_prueba(self, nombre, *args, **kargs):
+        return CasoDePrueba(self, nombre, *args, **kargs)
+
+    def _get_tareas(self):
+        self.__tareas = tuple(Tarea.select(
+            AND(
+                Tarea.q.id == enunciado_tarea_t.tarea_id,
+                Enunciado.q.id == enunciado_tarea_t.enunciado_id,
+                Enunciado.q.id == self.id
+            ),
+            clauseTables=(enunciado_tarea_t, Enunciado.sqlmeta.table),
+            orderBy=enunciado_tarea_t.orden,
+        ))
+        return self.__tareas
+
+    def _set_tareas(self, tareas):
+        orden = {}
+        for i, t in enumerate(tareas):
+            orden[t.id] = i
+        new = frozenset([t.id for t in tareas])
+        old = frozenset([t.id for t in self.tareas])
+        tareas = dict([(t.id, t) for t in tareas])
+        for tid in old - new: # eliminadas
+            self._connection.query(str(Delete(enunciado_tarea_t, where=AND(
+                enunciado_tarea_t.enunciado_id == self.id,
+                enunciado_tarea_t.tarea_id == tid))))
+        for tid in new - old: # creadas
+            self._connection.query(str(Insert(enunciado_tarea_t, values=dict(
+                enunciado_id=self.id, tarea_id=tid, orden=orden[tid]
+            ))))
+        for tid in new & old: # actualizados
+            self._connection.query(str(Update(enunciado_tarea_t,
+                values=dict(orden=orden[tid]), where=AND(
+                    enunciado_tarea_t.enunciado_id == self.id,
+                    enunciado_tarea_t.tarea_id == tid,
+                ))))
 
     def __repr__(self):
         return 'Enunciado(id=%s, autor=%s, nombre=%s, descripcion=%s, ' \
@@ -295,17 +406,23 @@ class CasoDePrueba(SQLObject): #{{{
     pk              = DatabaseIndex(enunciado, nombre, unique=True)
     # Campos
 #    privado         = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba
-    parametros      = TupleCol(notNone=True, default=())
+    parametros      = ParamsCol(length=255)
     retorno         = IntCol(default=None)
     tiempo_cpu      = FloatCol(default=None)
     descripcion     = UnicodeCol(length=255, default=None)
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
+    def __init__(self, enunciado=None, nombre=None, parametros=None,
+            retorno=None, tiempo_cpu=None, descripcion=None, **kargs):
+        SQLObject.__init__(self, enunciadoID=enunciado and enunciado.id,
+            nombre=nombre, parametros=parametros, retorno=retorno,
+            tiempo_cpu=tiempo_cpu, descripcion=descripcion, **kargs)
+
     def __repr__(self):
         return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \
             'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \
-                % (self.enunciado.shortrepr(), self.nombre, self.parametros,
+                % (srepr(self.enunciado), self.nombre, self.parametros,
                     self.retorno, self.tiempo_cpu, self.descripcion)
 
     def shortrepr(self):
@@ -323,9 +440,14 @@ class Ejercicio(SQLObject, ByObject): #{{{
     # Joins
     instancias      = MultipleJoin('InstanciaDeEntrega')
 
-    def add_instancia(self, numero, inicio, fin, **opts):
-        return InstanciaDeEntrega(ejercicioID=self.id, numero=numero,
-            inicio=inicio, fin=fin, **opts)
+    def __init__(self, curso=None, numero=None, enunciado=None, grupal=False,
+            **kargs):
+        if curso and enunciado:
+            SQLObject.__init__(self, cursoID=curso.id, numero=numero,
+                enunciadoID=enunciado.id, grupal=grupal, **kargs)
+
+    def add_instancia(self, numero, inicio, fin, *args, **kargs):
+        return InstanciaDeEntrega(self, numero, inicio, fin, *args, **kargs)
 
     def __repr__(self):
         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
@@ -335,7 +457,7 @@ class Ejercicio(SQLObject, ByObject): #{{{
 
     def shortrepr(self):
         return '(%s, %s, %s)' \
-            % (self.curso.shortrepr(), self.nombre, \
+            % (self.curso.shortrepr(), str(self.numero), \
                 self.enunciado.shortrepr())
 #}}}
 
@@ -354,11 +476,20 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{
     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
     casos_de_prueba = RelatedJoin('CasoDePrueba') # TODO CasoInstancia -> private
 
+    def __init__(self, ejercicio=None, numero=None, inicio=None, fin=None,
+            observaciones=None, activo=True, tareas=(), **kargs):
+        SQLObject.__init__(self, ejercicioID=ejercicio.id, numero=numero,
+            fin=fin, inicio=inicio, observaciones=observaciones, activo=activo,
+            **kargs)
+        if tareas:
+            self.tareas = tareas
+
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
             AND(
                 Tarea.q.id == instancia_tarea_t.tarea_id,
-                InstanciaDeEntrega.q.id == instancia_tarea_t.instancia_id
+                InstanciaDeEntrega.q.id == instancia_tarea_t.instancia_id,
+                InstanciaDeEntrega.q.id == self.id,
             ),
             clauseTables=(instancia_tarea_t, InstanciaDeEntrega.sqlmeta.table),
             orderBy=instancia_tarea_t.orden,
@@ -411,9 +542,14 @@ class DocenteInscripto(SQLObject, ByObject): #{{{
     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
 
-    def add_correccion(self, entrega, **opts):
-        return Correccion(correctorID=self.id, instanciaID=entrega.instancia.id,
-            entregadorID=entrega.entregador.id, entregaID=entrega.id, **opts)
+    def __init__(self, curso=None, docente=None, corrige=True,
+            observaciones=None, **kargs):
+        SQLObject.__init__(self, cursoID=curso.id, docenteID=docente.id,
+            corrige=corrige, observaciones=observaciones, **kargs)
+
+    def add_correccion(self, entrega, *args, **kargs):
+        return Correccion(entrega.instancia, entrega.entregador, entrega,
+            self, *args, **kargs)
 
     def __repr__(self):
         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
@@ -435,8 +571,8 @@ class Entregador(InheritableSQLObject, ByObject): #{{{
     entregas        = MultipleJoin('Entrega')
     correcciones    = MultipleJoin('Correccion')
 
-    def add_entrega(self, instancia, **opts):
-        return Entrega(entregadorID=self.id, instanciaID=instancia.id, **opts)
+    def add_entrega(self, instancia, *args, **kargs):
+        return Entrega(instancia, self, *args, **kargs)
 
     def __repr__(self):
         raise NotImplementedError, 'Clase abstracta!'
@@ -453,11 +589,16 @@ class Grupo(Entregador): #{{{
     miembros        = MultipleJoin('Miembro')
     tutores         = MultipleJoin('Tutor')
 
-    def add_alumno(self, alumno, **opts):
-        return Miembro(grupoID=self.id, alumnoID=alumno.id, **opts)
+    def __init__(self, curso=None, nombre=None, responsable=None, **kargs):
+        resp_id = responsable and responsable.id
+        InheritableSQLObject.__init__(self, cursoID=curso.id, nombre=nombre,
+            responsableID=resp_id, **kargs)
+
+    def add_alumno(self, alumno, *args, **kargs):
+        return Miembro(self, alumno, *args, **kargs)
 
-    def add_docente(self, docente, **opts):
-        return Tutor(grupoID=self.id, docenteID=docente.id, **opts)
+    def add_docente(self, docente, *args, **kargs):
+        return Tutor(self, docente, *args, **kargs)
 
     def __repr__(self):
         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
@@ -484,6 +625,12 @@ class AlumnoInscripto(Entregador): #{{{
     entregas            = MultipleJoin('Entrega', joinColumn='alumno_id')
     correcciones        = MultipleJoin('Correccion', joinColumn='alumno_id')
 
+    def __init__(self, curso=None, alumno=None, condicional=False, tutor=None,
+            **kargs):
+        tutor_id = tutor and tutor.id
+        InheritableSQLObject.__init__(self, cursoID=curso.id, tutorID=tutor_id,
+            alumnoID=alumno.id, condicional=condicional, **kargs)
+
     def __repr__(self):
         return 'AlumnoInscripto(id=%s, alumno=%s, condicional=%s, nota=%s, ' \
             'nota_cursada=%s, tutor=%s, observaciones=%s, activo=%s)' \
@@ -504,6 +651,10 @@ class Tutor(SQLObject, ByObject): #{{{
     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
     baja            = DateTimeCol(default=None)
 
+    def __init__(self, grupo=None, docente=None, **kargs):
+        SQLObject.__init__(self, grupoID=grupo.id, docenteID=docente.id,
+            **kargs)
+
     def __repr__(self):
         return 'Tutor(docente=%s, grupo=%s, alta=%s, baja=%s)' \
                 % (self.docente.shortrepr(), self.grupo.shortrepr(),
@@ -523,6 +674,9 @@ class Miembro(SQLObject, ByObject): #{{{
     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
     baja            = DateTimeCol(default=None)
 
+    def __init__(self, grupo=None, alumno=None, **kargs):
+        SQLObject.__init__(self, grupoID=grupo.id, alumnoID=alumno.id, **kargs)
+
     def __repr__(self):
         return 'Miembro(alumno=%s, grupo=%s, nota=%s, alta=%s, baja=%s)' \
                 % (self.alumno.shortrepr(), self.grupo.shortrepr(),
@@ -547,8 +701,14 @@ class Entrega(SQLObject, ByObject): #{{{
     codigo_dict     = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+'
     codigo_format   = r'%m%d%H%M%S'
 
-    def add_tarea_ejecutada(self, tarea, **opts):
-        return TareaEjecutada(entregaID=self.id, tareaID=tarea.id, **opts)
+    def __init__(self, instancia=None, entregador=None, observaciones=None,
+            **kargs):
+        entregador_id = entregador and entregador.id
+        SQLObject.__init__(self, instanciaID=instancia.id,
+            entregadorID=entregador_id, observaciones=observaciones, **kargs)
+
+    def add_tarea_ejecutada(self, tarea, *args, **kargs):
+        return TareaEjecutada(tarea, self, *args, **kargs)
 
     def _get_codigo(self):
         if not hasattr(self, '_codigo'): # cache
@@ -590,6 +750,12 @@ class Correccion(SQLObject, ByObject): #{{{
     nota            = DecimalCol(size=3, precision=1, default=None)
     observaciones   = UnicodeCol(default=None)
 
+    def __init__(self, instancia=None, entregador=None, entrega=None,
+            corrector=None, observaciones=None, **kargs):
+        SQLObject.__init__(self, instanciaID=instancia.id, entregaID=entrega.id,
+            entregadorID=entregador.id, correctorID=corrector.id,
+            observaciones=observaciones, **kargs)
+
     def __repr__(self):
         return 'Correccion(instancia=%s, entregador=%s, entrega=%s, ' \
             'corrector=%s, asignado=%s, corregido=%s, nota=%s, ' \
@@ -615,9 +781,12 @@ class TareaEjecutada(InheritableSQLObject, ByObject): #{{{
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
-    def add_prueba(self, caso_de_prueba, **opts):
-        return Prueba(tarea_ejecutadaID=self.id,
-            caso_de_pruebaID=caso_de_prueba.id, **opts)
+    def __init__(self, tarea=None, entrega=None, observaciones=None, **kargs):
+        InheritableSQLObject.__init__(self, tareaID=tarea.id,
+            entregaID=entrega.id, observaciones=observaciones, **kargs)
+
+    def add_prueba(self, caso_de_prueba, *args, **kargs):
+        return Prueba(self, caso_de_prueba, *args, **kargs)
 
     def __repr__(self):
         return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \
@@ -640,6 +809,12 @@ class Prueba(SQLObject): #{{{
     pasada          = IntCol(default=None)
     observaciones   = UnicodeCol(default=None)
 
+    def __init__(self, tarea_ejecutada=None, caso_de_prueba=None,
+            observaciones=None, **kargs):
+        SQLObject.__init__(self, tarea_ejecutadaID=tarea_ejecutada.id,
+            caso_de_pruebaID=caso_de_prueba.id, observaciones=observaciones,
+            **kargs)
+
     def __repr__(self):
         return 'Prueba(tarea_ejecutada=%s, caso_de_prueba=%s, inicio=%s, ' \
             'fin=%s, pasada=%s, observaciones=%s)' \
@@ -676,7 +851,6 @@ class VisitaUsuario(SQLObject): #{{{
     user_id     = IntCol() # Negrada de identity
 #}}}
 
-
 class Rol(SQLObject): #{{{
     # Clave
     nombre      = UnicodeCol(length=255, alternateID=True,
@@ -687,6 +861,10 @@ class Rol(SQLObject): #{{{
     permisos    = TupleCol(notNone=True)
     # Joins
     usuarios    = RelatedJoin('Usuario')
+
+    def __init__(self, nombre=None, permisos=(), descripcion=None, **kargs):
+        SQLObject.__init__(self, nombre=nombre, permisos=permisos,
+            descripcion=descripcion, **kargs)
 #}}}
 
 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están