def shortrepr(self):
return '%s.%s.%s' \
- % (self.anio, self.cuatrimestre, self.numero, self.descripcion)
+ % (self.anio, self.cuatrimestre, self.numero)
#}}}
class Usuario(InheritableSQLObject, ByObject): #{{{
def add_entrega(self, instancia, *args, **kargs):
return Entrega(instancia, *args, **kargs)
- def add_enunciado(self, nombre, *args, **kargs):
- return Enunciado(nombre, self, *args, **kargs)
+ def add_enunciado(self, nombre, anio, cuatrimestre, *args, **kargs):
+ return Enunciado(nombre, anio, cuatrimestre, self, *args, **kargs)
def __repr__(self):
return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
class Enunciado(SQLObject, ByObject): #{{{
# Clave
- nombre = UnicodeCol(length=60, alternateID=True)
+ nombre = UnicodeCol(length=60)
+ anio = IntCol(notNone=True)
+ cuatrimestre = IntCol(notNone=True)
+ pk = DatabaseIndex(nombre, anio, cuatrimestre, unique=True)
# Campos
autor = ForeignKey('Docente')
descripcion = UnicodeCol(length=255, default=None)
creado = DateTimeCol(notNone=True, default=DateTimeCol.now)
archivo = BLOBCol(default=None)
- archivo_name = StringCol(default=None)
- archivo_type = StringCol(default=None)
+ archivo_name = UnicodeCol(length=255, default=None)
+ archivo_type = UnicodeCol(length=255, default=None)
# Joins
ejercicios = MultipleJoin('Ejercicio')
casos_de_prueba = MultipleJoin('CasoDePrueba')
- def __init__(self, nombre=None, autor=None, descripcion=None, tareas=(),
- **kargs):
- SQLObject.__init__(self, nombre=nombre, autorID=autor and autor.id,
- descripcion=descripcion, **kargs)
+ def __init__(self, nombre=None, anio=None, cuatrimestre=None, autor=None,
+ descripcion=None, tareas=(), **kargs):
+ SQLObject.__init__(self, nombre=nombre, descripcion=descripcion,
+ anio=anio, autorID=autor and autor.id, cuatrimestre=cuatrimestre,
+ **kargs)
if tareas:
self.tareas = tareas
+ @classmethod
+ def selectByCurso(self, curso):
+ return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
+
def add_caso_de_prueba(self, nombre, *args, **kargs):
return CasoDePrueba(self, nombre, *args, **kargs)
pk = DatabaseIndex(enunciado, nombre, unique=True)
# Campos
# privado = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba
- parametros = ParamsCol(length=255)
+ parametros = ParamsCol(length=255, default=None)
retorno = IntCol(default=None)
tiempo_cpu = FloatCol(default=None)
descripcion = UnicodeCol(length=255, default=None)
def __init__(self, curso=None, nombre=None, responsable=None, **kargs):
resp_id = responsable and responsable.id
- InheritableSQLObject.__init__(self, cursoID=curso.id, nombre=nombre,
+ curso_id = curso and curso.id
+ InheritableSQLObject.__init__(self, cursoID=curso_id, nombre=nombre,
responsableID=resp_id, **kargs)
def add_alumno(self, alumno, *args, **kargs):