]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/model.py
agrego tutores al curso.
[z.facultad/75.52/sercom.git] / sercom / model.py
index a3897ac530bdd61537bde3b99d76a5bebc3fbdc8..1b88848f1f8d220b2585cda19002e960c579c217 100644 (file)
@@ -49,7 +49,7 @@ class TupleCol(PickleCol):
 
 class ParamsValidator(UnicodeStringValidator):
     def to_python(self, value, state):
 
 class ParamsValidator(UnicodeStringValidator):
     def to_python(self, value, state):
-        if isinstance(value, basestring):
+        if isinstance(value, basestring) or value is None:
             value = super(ParamsValidator, self).to_python(value, state)
             try:
                 value = params_to_list(value)
             value = super(ParamsValidator, self).to_python(value, state)
             try:
                 value = params_to_list(value)
@@ -64,7 +64,7 @@ class ParamsValidator(UnicodeStringValidator):
     def from_python(self, value, state):
         if isinstance(value, (list, tuple)):
             value = ' '.join([repr(p) for p in value])
     def from_python(self, value, state):
         if isinstance(value, (list, tuple)):
             value = ' '.join([repr(p) for p in value])
-        elif isinstance(value, basestring):
+        elif isinstance(value, basestring) or value is None:
             value = super(ParamsValidator, self).to_python(value, state)
             try:
                 params_to_list(value)
             value = super(ParamsValidator, self).to_python(value, state)
             try:
                 params_to_list(value)
@@ -109,16 +109,7 @@ def srepr(obj): #{{{
     return obj
 #}}}
 
     return obj
 #}}}
 
-class ByObject(object): #{{{
-    @classmethod
-    def by(cls, **kw):
-        try:
-            return cls.selectBy(**kw)[0]
-        except IndexError:
-            raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw)
-#}}}
-
-class Curso(SQLObject, ByObject): #{{{
+class Curso(SQLObject): #{{{
     # Clave
     anio            = IntCol(notNone=True)
     cuatrimestre    = IntCol(notNone=True)
     # Clave
     anio            = IntCol(notNone=True)
     cuatrimestre    = IntCol(notNone=True)
@@ -132,24 +123,56 @@ class Curso(SQLObject, ByObject): #{{{
     grupos          = MultipleJoin('Grupo')
     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
 
     grupos          = MultipleJoin('Grupo')
     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
 
-    def __init__(self, docentes=[], ejercicios=[], **kargs):
-        super(Curso, self).__init__(**kargs)
+    def __init__(self, docentes=[], ejercicios=[], alumnos=[], **kw):
+        super(Curso, self).__init__(**kw)
         for d in docentes:
             self.add_docente(d)
         for (n, e) in enumerate(ejercicios):
             self.add_ejercicio(n, e)
         for d in docentes:
             self.add_docente(d)
         for (n, e) in enumerate(ejercicios):
             self.add_ejercicio(n, e)
-
-    def add_docente(self, docente, **kargs):
-        return DocenteInscripto(curso=self, docente=docente, **kargs)
-
-    def add_alumno(self, alumno, **kargs):
-        return AlumnoInscripto(curso=self, alumno=alumno, **kargs)
-
-    def add_grupo(self, nombre, **kargs):
-        return Grupo(curso=self, nombre=unicode(nombre), **kargs)
-
-    def add_ejercicio(self, numero, enunciado, **kargs):
-        return Ejercicio(curso=self, numero=numero, enunciado=enunciado, **kargs)
+        for a in alumnos:
+            self.add_alumno(a)
+
+    def set(self, docentes=None, ejercicios=None, alumnos=None, **kw):
+        super(Curso, self).set(**kw)
+        if docentes is not None:
+            for d in DocenteInscripto.selectBy(curso=self):
+                d.destroySelf()
+            for d in docentes:
+                self.add_docente(d)
+        if ejercicios is not None:
+            for e in Ejercicio.selectBy(curso=self):
+                e.destroySelf()
+            for (n, e) in enumerate(ejercicios):
+                self.add_ejercicio(n, e)
+        if alumnos is not None:
+            for a in AlumnoInscripto.selectBy(curso=self):
+                a.destroySelf()
+            for a in alumnos:
+                self.add_alumno(a)
+
+    def add_docente(self, docente, **kw):
+        return DocenteInscripto(curso=self, docente=docente, **kw)
+
+    def remove_docente(self, docente):
+        DocenteInscripto.pk.get(curso=self, docente=docente).destroySelf()
+
+    def add_alumno(self, alumno, **kw):
+        return AlumnoInscripto(curso=self, alumno=alumno, **kw)
+
+    def remove_alumno(self, alumno):
+        AlumnoInscripto.pk.get(curso=self, alumno=alumno).destroySelf()
+
+    def add_grupo(self, nombre, **kw):
+        return Grupo(curso=self, nombre=unicode(nombre), **kw)
+
+    def remove_grupo(self, nombre):
+        Grupo.pk.get(curso=self, nombre=nombre).destroySelf()
+
+    def add_ejercicio(self, numero, enunciado, **kw):
+        return Ejercicio(curso=self, numero=numero, enunciado=enunciado, **kw)
+
+    def remove_ejercicio(self, numero):
+        Ejercicio.pk.get(curso=self, numero=numero).destroySelf()
 
     def __repr__(self):
         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
 
     def __repr__(self):
         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
@@ -162,7 +185,7 @@ class Curso(SQLObject, ByObject): #{{{
             % (self.anio, self.cuatrimestre, self.numero)
 #}}}
 
             % (self.anio, self.cuatrimestre, self.numero)
 #}}}
 
-class Usuario(InheritableSQLObject, ByObject): #{{{
+class Usuario(InheritableSQLObject): #{{{
     # Clave (para docentes puede ser un nombre de usuario arbitrario)
     usuario         = UnicodeCol(length=10, alternateID=True)
     # Campos
     # Clave (para docentes puede ser un nombre de usuario arbitrario)
     usuario         = UnicodeCol(length=10, alternateID=True)
     # Campos
@@ -174,13 +197,24 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
     observaciones   = UnicodeCol(default=None)
     activo          = BoolCol(notNone=True, default=True)
     # Joins
     observaciones   = UnicodeCol(default=None)
     activo          = BoolCol(notNone=True, default=True)
     # Joins
-    roles           = RelatedJoin('Rol')
+    roles           = RelatedJoin('Rol', addRemoveName='_rol')
 
 
-    def __init__(self, password=None, roles=[], **kargs):
-        passwd = password and encryptpw(password)
-        super(Usuario, self).__init__(contrasenia=passwd, **kargs)
+    def __init__(self, password=None, roles=[], **kw):
+        if password is not None:
+            kw['contrasenia'] = encryptpw(password)
+        super(Usuario, self).__init__(**kw)
         for r in roles:
         for r in roles:
-            self.addRol(r)
+            self.add_rol(r)
+
+    def set(self, password=None, roles=None, **kw):
+        if password is not None:
+            kw['contrasenia'] = encryptpw(password)
+        super(Usuario, self).set(**kw)
+        if roles is not None:
+            for r in self.roles:
+                self.remove_rol(r)
+            for r in roles:
+                self.add_rol(r)
 
     def _get_user_name(self): # para identity
         return self.usuario
 
     def _get_user_name(self): # para identity
         return self.usuario
@@ -220,20 +254,21 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
 class Docente(Usuario): #{{{
     _inheritable = False
     # Campos
 class Docente(Usuario): #{{{
     _inheritable = False
     # Campos
-    nombrado        = BoolCol(notNone=True, default=True)
+    nombrado    = BoolCol(notNone=True, default=True)
     # Joins
     # Joins
-    enunciados      = MultipleJoin('Enunciado', joinColumn='autor_id')
-    inscripciones   = MultipleJoin('DocenteInscripto')
-
-    def __init__(self, **kargs):
-        super(Docente, self).__init__(**kargs)
+    enunciados  = MultipleJoin('Enunciado', joinColumn='autor_id')
+    cursos      = MultipleJoin('DocenteInscripto')
 
 
-    def add_entrega(self, instancia, **kargs):
-        return Entrega(instancia=instancia, **kargs)
+    def add_entrega(self, instancia, **kw):
+        return Entrega(instancia=instancia, **kw)
 
 
-    def add_enunciado(self, nombre, anio, cuatrimestre, **kargs):
+    def add_enunciado(self, nombre, anio, cuatrimestre, **kw):
         return Enunciado(nombre=nombre, anio=anio, cuatrimestre=cuatrimestre,
         return Enunciado(nombre=nombre, anio=anio, cuatrimestre=cuatrimestre,
-            autor=self, **kargs)
+            autor=self, **kw)
+
+    def remove_enunciado(self, nombre, anio, cuatrimestre):
+        Enunciado.pk.get(nombre=nombre, anio=anio,
+            cuatrimestre=cuatrimestre).destroySelf()
 
     def __repr__(self):
         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
 
     def __repr__(self):
         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
@@ -250,9 +285,13 @@ class Alumno(Usuario): #{{{
     # Joins
     inscripciones   = MultipleJoin('AlumnoInscripto')
 
     # Joins
     inscripciones   = MultipleJoin('AlumnoInscripto')
 
-    def __init__(self, padron=None, **kargs):
-        if padron: kargs['usuario'] = padron
-        super(Alumno, self).__init__(**kargs)
+    def __init__(self, padron=None, **kw):
+        if padron: kw['usuario'] = padron
+        super(Alumno, self).__init__(**kw)
+
+    def set(self, padron=None, **kw):
+        if padron: kw['usuario'] = padron
+        super(Alumno, self).set(**kw)
 
     def _get_padron(self): # alias para poder referirse al alumno por padron
         return self.usuario
 
     def _get_padron(self): # alias para poder referirse al alumno por padron
         return self.usuario
@@ -267,18 +306,33 @@ class Alumno(Usuario): #{{{
                     self.telefono, self.activo, self.creado, self.observaciones)
 #}}}
 
                     self.telefono, self.activo, self.creado, self.observaciones)
 #}}}
 
-class Tarea(InheritableSQLObject, ByObject): #{{{
+class Tarea(InheritableSQLObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE dependencia (
+    padre_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    hijo_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (padre_id, hijo_id)
+)'''
     # Clave
     nombre          = UnicodeCol(length=30, alternateID=True)
     # Campos
     descripcion     = UnicodeCol(length=255, default=None)
     # Joins
 
     # Clave
     nombre          = UnicodeCol(length=30, alternateID=True)
     # Campos
     descripcion     = UnicodeCol(length=255, default=None)
     # Joins
 
-    def __init__(self, dependencias=(), **kargs):
-        super(Tarea, self).__init__(**kargs)
+    def __init__(self, dependencias=(), **kw):
+        super(Tarea, self).__init__(**kw)
         if dependencias:
             self.dependencias = dependencias
 
         if dependencias:
             self.dependencias = dependencias
 
+    def set(self, dependencias=None, **kw):
+        super(Tarea, self).set(**kw)
+        if dependencias is not None:
+            self.dependencias = dependencias
+
     def _get_dependencias(self):
         OtherTarea = Alias(Tarea, 'other_tarea')
         self.__dependencias = tuple(Tarea.select(
     def _get_dependencias(self):
         OtherTarea = Alias(Tarea, 'other_tarea')
         self.__dependencias = tuple(Tarea.select(
@@ -322,7 +376,17 @@ class Tarea(InheritableSQLObject, ByObject): #{{{
         return self.nombre
 #}}}
 
         return self.nombre
 #}}}
 
-class Enunciado(SQLObject, ByObject): #{{{
+class Enunciado(SQLObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE enunciado_tarea (
+    enunciado_id INTEGER NOT NULL CONSTRAINT enunciado_id_exists
+        REFERENCES enunciado(id),
+    tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (enunciado_id, tarea_id)
+)'''
     # Clave
     nombre          = UnicodeCol(length=60)
     anio            = IntCol(notNone=True)
     # Clave
     nombre          = UnicodeCol(length=60)
     anio            = IntCol(notNone=True)
@@ -339,17 +403,22 @@ class Enunciado(SQLObject, ByObject): #{{{
     ejercicios      = MultipleJoin('Ejercicio')
     casos_de_prueba = MultipleJoin('CasoDePrueba')
 
     ejercicios      = MultipleJoin('Ejercicio')
     casos_de_prueba = MultipleJoin('CasoDePrueba')
 
-    def __init__(self, tareas=(), **kargs):
-        super(Enunciado, self).__init__(**kargs)
+    def __init__(self, tareas=(), **kw):
+        super(Enunciado, self).__init__(**kw)
         if tareas:
             self.tareas = tareas
 
         if tareas:
             self.tareas = tareas
 
+    def set(self, tareas=None, **kw):
+        super(Enunciado, self).set(**kw)
+        if tareas is not None:
+            self.tareas = tareas
+
     @classmethod
     def selectByCurso(self, curso):
         return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
 
     @classmethod
     def selectByCurso(self, curso):
         return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
 
-    def add_caso_de_prueba(self, nombre, **kargs):
-        return CasoDePrueba(enunciado=self, nombre=nombre, **kargs)
+    def add_caso_de_prueba(self, nombre, **kw):
+        return CasoDePrueba(enunciado=self, nombre=nombre, **kw)
 
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
 
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
@@ -401,11 +470,12 @@ class CasoDePrueba(SQLObject): #{{{
     nombre          = UnicodeCol(length=40, notNone=True)
     pk              = DatabaseIndex(enunciado, nombre, unique=True)
     # Campos
     nombre          = UnicodeCol(length=40, notNone=True)
     pk              = DatabaseIndex(enunciado, nombre, unique=True)
     # Campos
-#    privado         = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba
+    privado         = IntCol(default=None) # TODO iria en instancia_de_entrega_caso_de_prueba
     parametros      = ParamsCol(length=255, default=None)
     retorno         = IntCol(default=None)
     tiempo_cpu      = FloatCol(default=None)
     descripcion     = UnicodeCol(length=255, default=None)
     parametros      = ParamsCol(length=255, default=None)
     retorno         = IntCol(default=None)
     tiempo_cpu      = FloatCol(default=None)
     descripcion     = UnicodeCol(length=255, default=None)
+    activo          = BoolCol(notNone=True, default=True)
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
@@ -419,7 +489,7 @@ class CasoDePrueba(SQLObject): #{{{
         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
 #}}}
 
         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
 #}}}
 
-class Ejercicio(SQLObject, ByObject): #{{{
+class Ejercicio(SQLObject): #{{{
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     numero          = IntCol(notNone=True)
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     numero          = IntCol(notNone=True)
@@ -430,9 +500,12 @@ class Ejercicio(SQLObject, ByObject): #{{{
     # Joins
     instancias      = MultipleJoin('InstanciaDeEntrega')
 
     # Joins
     instancias      = MultipleJoin('InstanciaDeEntrega')
 
-    def add_instancia(self, numero, inicio, fin, **kargs):
+    def add_instancia(self, numero, inicio, fin, **kw):
         return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio,
         return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio,
-            fin=fin, **kargs)
+            fin=fin, **kw)
+
+    def remove_instancia(self, numero):
+        InstanciaDeEntrega.pk.get(ejercicio=self, numero=numero).destroySelf()
 
     def __repr__(self):
         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
 
     def __repr__(self):
         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
@@ -446,10 +519,21 @@ class Ejercicio(SQLObject, ByObject): #{{{
                 self.enunciado.shortrepr())
 #}}}
 
                 self.enunciado.shortrepr())
 #}}}
 
-class InstanciaDeEntrega(SQLObject, ByObject): #{{{
+class InstanciaDeEntrega(SQLObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE instancia_tarea (
+    instancia_id INTEGER NOT NULL CONSTRAINT instancia_id_exists
+        REFERENCES instancia_de_entrega(id),
+    tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (instancia_id, tarea_id)
+)'''
     # Clave
     ejercicio       = ForeignKey('Ejercicio', notNone=True)
     numero          = IntCol(notNone=True)
     # Clave
     ejercicio       = ForeignKey('Ejercicio', notNone=True)
     numero          = IntCol(notNone=True)
+    pk              = DatabaseIndex(ejercicio, numero, unique=True)
     # Campos
     inicio          = DateTimeCol(notNone=True)
     fin             = DateTimeCol(notNone=True)
     # Campos
     inicio          = DateTimeCol(notNone=True)
     fin             = DateTimeCol(notNone=True)
@@ -459,13 +543,19 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{
     # Joins
     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
     # Joins
     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
-    casos_de_prueba = RelatedJoin('CasoDePrueba') # TODO CasoInstancia -> private
+    casos_de_prueba = RelatedJoin('CasoDePrueba', # TODO CasoInstancia -> private
+                        addRemoveName='_caso_de_prueba')
 
 
-    def __init__(self, tareas=(), **kargs):
-        super(InstanciaDeEntrega, self).__init__(**kargs)
+    def __init__(self, tareas=(), **kw):
+        super(InstanciaDeEntrega, self).__init__(**kw)
         if tareas:
             self.tareas = tareas
 
         if tareas:
             self.tareas = tareas
 
+    def set(self, tareas=None, **kw):
+        super(InstanciaDeEntrega, self).set(**kw)
+        if tareas is not None:
+            self.tareas = tareas
+
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
             AND(
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
             AND(
@@ -510,7 +600,7 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{
         return self.numero
 #}}}
 
         return self.numero
 #}}}
 
-class DocenteInscripto(SQLObject, ByObject): #{{{
+class DocenteInscripto(SQLObject): #{{{
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     docente         = ForeignKey('Docente', notNone=True)
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     docente         = ForeignKey('Docente', notNone=True)
@@ -521,12 +611,15 @@ class DocenteInscripto(SQLObject, ByObject): #{{{
     # Joins
     alumnos         = MultipleJoin('AlumnoInscripto', joinColumn='tutor_id')
     tutorias        = MultipleJoin('Tutor', joinColumn='docente_id')
     # Joins
     alumnos         = MultipleJoin('AlumnoInscripto', joinColumn='tutor_id')
     tutorias        = MultipleJoin('Tutor', joinColumn='docente_id')
-    entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
 
     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
 
-    def add_correccion(self, entrega, **kargs):
+    def add_correccion(self, entrega, **kw):
         return Correccion(instancia=entrega.instancia, entrega=entrega,
         return Correccion(instancia=entrega.instancia, entrega=entrega,
-            entregador=entrega.entregador, corrector=self, **kargs)
+            entregador=entrega.entregador, corrector=self, **kw)
+
+    def remove_correccion(self, instancia, entregador):
+        Correccion.pk.get(instancia=instancia,
+            entregador=entregador).destroySelf()
 
     def __repr__(self):
         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
 
     def __repr__(self):
         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
@@ -538,7 +631,7 @@ class DocenteInscripto(SQLObject, ByObject): #{{{
         return self.docente.shortrepr()
 #}}}
 
         return self.docente.shortrepr()
 #}}}
 
-class Entregador(InheritableSQLObject, ByObject): #{{{
+class Entregador(InheritableSQLObject): #{{{
     # Campos
     nota            = DecimalCol(size=3, precision=1, default=None)
     nota_cursada    = DecimalCol(size=3, precision=1, default=None)
     # Campos
     nota            = DecimalCol(size=3, precision=1, default=None)
     nota_cursada    = DecimalCol(size=3, precision=1, default=None)
@@ -548,8 +641,8 @@ class Entregador(InheritableSQLObject, ByObject): #{{{
     entregas        = MultipleJoin('Entrega')
     correcciones    = MultipleJoin('Correccion')
 
     entregas        = MultipleJoin('Entrega')
     correcciones    = MultipleJoin('Correccion')
 
-    def add_entrega(self, instancia, **kargs):
-        return Entrega(instancia=instancia, entregador=self, **kargs)
+    def add_entrega(self, instancia, **kw):
+        return Entrega(instancia=instancia, entregador=self, **kw)
 
     def __repr__(self):
         raise NotImplementedError, 'Clase abstracta!'
 
     def __repr__(self):
         raise NotImplementedError, 'Clase abstracta!'
@@ -560,24 +653,44 @@ class Grupo(Entregador): #{{{
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     nombre          = UnicodeCol(length=20, notNone=True)
     # Clave
     curso           = ForeignKey('Curso', notNone=True)
     nombre          = UnicodeCol(length=20, notNone=True)
+    pk              = DatabaseIndex(curso, nombre, unique=True)
     # Campos
     responsable     = ForeignKey('AlumnoInscripto', default=None)
     # Joins
     miembros        = MultipleJoin('Miembro')
     tutores         = MultipleJoin('Tutor')
 
     # Campos
     responsable     = ForeignKey('AlumnoInscripto', default=None)
     # Joins
     miembros        = MultipleJoin('Miembro')
     tutores         = MultipleJoin('Tutor')
 
-    def __init__(self, miembros=[], tutores=[], **kargs):
-        super(Grupo, self).__init__(**kargs)
+    def __init__(self, miembros=[], tutores=[], **kw):
+        super(Grupo, self).__init__(**kw)
         for a in miembros:
             self.add_miembro(a)
         for d in tutores:
             self.add_tutor(d)
 
         for a in miembros:
             self.add_miembro(a)
         for d in tutores:
             self.add_tutor(d)
 
-    def add_miembro(self, alumno, **kargs):
-        return Miembro(grupo=self, alumno=alumno, **kargs)
+    def set(self, miembros=None, tutores=None, **kw):
+        super(Grupo, self).set(**kw)
+        if miembros is not None:
+            for m in Miembro.selectBy(grupo=self):
+                m.destroySelf()
+            for m in miembros:
+                self.add_miembro(m)
+        if tutores is not None:
+            for t in Tutor.selectBy(grupo=self):
+                t.destroySelf()
+            for t in tutores:
+                self.add_tutor(t)
 
 
-    def add_tutor(self, docente, **kargs):
-        return Tutor(grupo=self, docente=docente, **kargs)
+    def add_miembro(self, alumno, **kw):
+        return Miembro(grupo=self, alumno=alumno, **kw)
+
+    def remove_miembro(self, alumno):
+        Miembro.pk.get(grupo=self, alumno=alumno).destroySelf()
+
+    def add_tutor(self, docente, **kw):
+        return Tutor(grupo=self, docente=docente, **kw)
+
+    def remove_tutor(self, docente):
+        Tutor.pk.get(grupo=self, docente=docente).destroySelf()
 
     def __repr__(self):
         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
 
     def __repr__(self):
         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
@@ -615,7 +728,7 @@ class AlumnoInscripto(Entregador): #{{{
         return self.alumno.shortrepr()
 #}}}
 
         return self.alumno.shortrepr()
 #}}}
 
-class Tutor(SQLObject, ByObject): #{{{
+class Tutor(SQLObject): #{{{
     # Clave
     grupo           = ForeignKey('Grupo', notNone=True)
     docente         = ForeignKey('DocenteInscripto', notNone=True)
     # Clave
     grupo           = ForeignKey('Grupo', notNone=True)
     docente         = ForeignKey('DocenteInscripto', notNone=True)
@@ -633,7 +746,7 @@ class Tutor(SQLObject, ByObject): #{{{
         return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr())
 #}}}
 
         return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr())
 #}}}
 
-class Miembro(SQLObject, ByObject): #{{{
+class Miembro(SQLObject): #{{{
     # Clave
     grupo           = ForeignKey('Grupo', notNone=True)
     alumno          = ForeignKey('AlumnoInscripto', notNone=True)
     # Clave
     grupo           = ForeignKey('Grupo', notNone=True)
     alumno          = ForeignKey('AlumnoInscripto', notNone=True)
@@ -652,7 +765,7 @@ class Miembro(SQLObject, ByObject): #{{{
         return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr())
 #}}}
 
         return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr())
 #}}}
 
-class Entrega(SQLObject, ByObject): #{{{
+class Entrega(SQLObject): #{{{
     # Clave
     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
     entregador      = ForeignKey('Entregador', default=None) # Si es None era un Docente
     # Clave
     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
     entregador      = ForeignKey('Entregador', default=None) # Si es None era un Docente
@@ -667,8 +780,8 @@ class Entrega(SQLObject, ByObject): #{{{
     codigo_dict     = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+'
     codigo_format   = r'%m%d%H%M%S'
 
     codigo_dict     = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+'
     codigo_format   = r'%m%d%H%M%S'
 
-    def add_tarea_ejecutada(self, tarea, **kargs):
-        return TareaEjecutada(tarea=tarea, entrega=self, **kargs)
+    def add_tarea_ejecutada(self, tarea, **kw):
+        return TareaEjecutada(tarea=tarea, entrega=self, **kw)
 
     def _get_codigo(self):
         if not hasattr(self, '_codigo'): # cache
 
     def _get_codigo(self):
         if not hasattr(self, '_codigo'): # cache
@@ -697,7 +810,7 @@ class Entrega(SQLObject, ByObject): #{{{
             self.codigo)
 #}}}
 
             self.codigo)
 #}}}
 
-class Correccion(SQLObject, ByObject): #{{{
+class Correccion(SQLObject): #{{{
     # Clave
     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
     entregador      = ForeignKey('Entregador', notNone=True) # Docente no tiene
     # Clave
     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
     entregador      = ForeignKey('Entregador', notNone=True) # Docente no tiene
@@ -722,7 +835,7 @@ class Correccion(SQLObject, ByObject): #{{{
         return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr())
 #}}}
 
         return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr())
 #}}}
 
-class TareaEjecutada(InheritableSQLObject, ByObject): #{{{
+class TareaEjecutada(InheritableSQLObject): #{{{
     # Clave
     tarea           = ForeignKey('Tarea', notNone=True)
     entrega         = ForeignKey('Entrega', notNone=True)
     # Clave
     tarea           = ForeignKey('Tarea', notNone=True)
     entrega         = ForeignKey('Entrega', notNone=True)
@@ -735,9 +848,9 @@ class TareaEjecutada(InheritableSQLObject, ByObject): #{{{
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
-    def add_prueba(self, caso_de_prueba, **kargs):
+    def add_prueba(self, caso_de_prueba, **kw):
         return Prueba(tarea_ejecutada=self, caso_de_prueba=caso_de_prueba,
         return Prueba(tarea_ejecutada=self, caso_de_prueba=caso_de_prueba,
-            **kargs)
+            **kw)
 
     def __repr__(self):
         return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \
 
     def __repr__(self):
         return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \
@@ -799,19 +912,25 @@ class VisitaUsuario(SQLObject): #{{{
 class Rol(SQLObject): #{{{
     # Clave
     nombre      = UnicodeCol(length=255, alternateID=True,
 class Rol(SQLObject): #{{{
     # Clave
     nombre      = UnicodeCol(length=255, alternateID=True,
-                    alternateMethodName="by_group_name")
+                    alternateMethodName='by_nombre')
     # Campos
     descripcion = UnicodeCol(length=255, default=None)
     creado      = DateTimeCol(notNone=True, default=datetime.now)
     permisos    = TupleCol(notNone=True)
     # Joins
     # Campos
     descripcion = UnicodeCol(length=255, default=None)
     creado      = DateTimeCol(notNone=True, default=datetime.now)
     permisos    = TupleCol(notNone=True)
     # Joins
-    usuarios    = RelatedJoin('Usuario')
+    usuarios    = RelatedJoin('Usuario', addRemoveName='_usuario')
+
+    def by_group_name(self, name): # para identity
+        return self.by_nombre(name)
 #}}}
 
 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
 # hardcodeados en el código
 class Permiso(object): #{{{
 #}}}
 
 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
 # hardcodeados en el código
 class Permiso(object): #{{{
+    max_valor = 1
     def __init__(self, nombre, descripcion):
     def __init__(self, nombre, descripcion):
+        self.valor = Permiso.max_valor
+        Permiso.max_valor <<= 1
         self.nombre = nombre
         self.descripcion = descripcion
 
         self.nombre = nombre
         self.descripcion = descripcion
 
@@ -823,6 +942,12 @@ class Permiso(object): #{{{
     def permission_name(self): # para identity
         return self.nombre
 
     def permission_name(self): # para identity
         return self.nombre
 
+    def __and__(self, other):
+        return self.valor & other.valor
+
+    def __or__(self, other):
+        return self.valor | other.valor
+
     def __repr__(self):
         return self.nombre
 #}}}
     def __repr__(self):
         return self.nombre
 #}}}