]> git.llucax.com Git - software/sercom-old.git/blobdiff - src/sercom/dbo.py
Hack para esquivar un bug de SQLObject.
[software/sercom-old.git] / src / sercom / dbo.py
index 32aa4929bf4a4fd28cd59a757e9d9ff67d18aeb6..7a09f81b3f560333c03966bbe4231ef26a281308 100644 (file)
@@ -6,13 +6,12 @@ __all__ = ('Curso', 'Inscripto', 'Docente', 'Ejercicio', 'Entrega',
 
 class BaseSQLObject(SQLObject):
 
 
 class BaseSQLObject(SQLObject):
 
-    #@classmethod
+    @classmethod
     def by(cls, connection = None, **kw):
         try:
             return cls.selectBy(connection = connection, **kw)[0]
         except IndexError:
             raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw)
     def by(cls, connection = None, **kw):
         try:
             return cls.selectBy(connection = connection, **kw)[0]
         except IndexError:
             raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw)
-    by = classmethod(by)
 
 class Curso(BaseSQLObject):
     # Clave
 
 class Curso(BaseSQLObject):
     # Clave
@@ -56,7 +55,7 @@ class Ejercicio(BaseSQLObject):
     numero          = Col()
     docente         = ForeignKey('Docente')
     # Joins
     numero          = Col()
     docente         = ForeignKey('Docente')
     # Joins
-    casosDePrueba   = MultipleJoin('CasoDePrueba')
+    casosDePrueba   = MultipleJoin('CasoDePrueba', joinMethodName='casosDePrueba') # XXX hack
     entregas        = MultipleJoin('Entrega')
     cursos          = RelatedJoin('Curso', intermediateTable = 'entrega')
 
     entregas        = MultipleJoin('Entrega')
     cursos          = RelatedJoin('Curso', intermediateTable = 'entrega')
 
@@ -105,24 +104,21 @@ class Intento(BaseSQLObject):
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
-    _dir_base       = 'intentos'
-
-    #@classmethod
-    def getProximoAProbar(cls, connection = None):
+    @classmethod
+    def getProximoAProbar(cls, connection=None):
         try:
         try:
-            return cls.select(cls.q.inicioPruebas == None, limit=1,
+            return cls.select(None == cls.q.compila, limit=1,
                 orderBy=cls.q.llegada, connection=connection)[0]
         except IndexError:
             return None
                 orderBy=cls.q.llegada, connection=connection)[0]
         except IndexError:
             return None
-    getProximoAProbar = classmethod(getProximoAProbar)
 
     def path(self, dir_base):
 
     def path(self, dir_base):
-        import os.path
+        from os.path import join
         curso = self.inscripto.curso
         entrega = self.entrega
         curso = self.inscripto.curso
         entrega = self.entrega
-        return os.path.join(dir_base, curso.anio, curso.cuatrimestre,
-            curso.curso, '%s.%s' % (entrega.nroEjercicio, entrega.entrega),
-            self.inscripto.padron, self.numero)
+        return join(dir_base, '%s.%s' % (curso.anio, curso.cuatrimestre),
+            '%s.%s.%s' % (curso.curso, entrega.nroEjercicio, entrega.entrega),
+            '%s.%s' % (self.inscripto.padron, self.numero))
 
 class Correccion(BaseSQLObject):
     # Clave
 
 class Correccion(BaseSQLObject):
     # Clave