X-Git-Url: https://git.llucax.com/z.facultad/75.52/sercom.git/blobdiff_plain/2344dcf6736372c1dd359a95819fb3c2e131afc2..3f0245a67d252c130c60aa7026469cd50300bc4f:/sercom/controllers.py diff --git a/sercom/controllers.py b/sercom/controllers.py index 4d999ce..48b0086 100644 --- a/sercom/controllers.py +++ b/sercom/controllers.py @@ -1,23 +1,50 @@ # vim: set et sw=4 sts=4 encoding=utf-8 : -from turbogears import controllers, expose -from turbogears import widgets as w, validators +from turbogears import controllers, expose, view, url +from turbogears import widgets as W, validators as V from turbogears import identity, redirect from cherrypy import request, response -from model import * +from model import InstanciaDeEntrega, Correccion # from sercom import json +from subcontrollers import * + import logging log = logging.getLogger("sercom.controllers") +class LoginForm(W.TableForm): + class Fields(W.WidgetsList): + login_user = W.TextField(label=_(u'Usuario'), + validator=V.NotEmpty()) + login_password = W.PasswordField(label=_(u'Contraseña'), + validator=V.NotEmpty()) + fields = Fields() + javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_login_user');")] + submit = W.SubmitButton(name='login_submit') + submit_text = _(u'Ingresar') + class Root(controllers.RootController): + @expose() + def index(self): + raise redirect('/dashboard') + @expose(template='.templates.welcome') @identity.require(identity.has_permission('entregar')) - def index(self): + def dashboard(self): import time + record = {} + if 'admin' in identity.current.permissions: + from sqlobject import DateTimeCol + # TODO : Fijar el curso !! + record['entregas_para_corregir'] = Correccion.selectBy(corrector=identity.current.user, nota=None).count() + try: + record['proxima_entrega'] = InstanciaDeEntrega.select(InstanciaDeEntrega.q.inicio >= DateTimeCol.now() and InstanciaDeEntrega.q.fin > DateTimeCol.now()).getOne() + record['proxima_entrega'] = record['proxima_entrega'][0] + except: + record['proxima_entrega'] = None log.debug('Happy TurboGears Controller Responding For Duty') - return dict(now=time.ctime()) + return dict(now=time.ctime(), record=record) @expose(template='.templates.login') def login(self, forward_url=None, previous_url=None, tg_errors=None, *args, @@ -44,22 +71,13 @@ class Root(controllers.RootController): msg = _(u'Por favor ingrese.') forward_url = request.headers.get('Referer', '/') - fields = [ - w.TextField(name='login_user', label=_(u'Usuario'), - validator=validators.NotEmpty()), - w.PasswordField(name='login_password', label=_(u'Contraseña'), - validator=validators.NotEmpty()) - ] + fields = list(LoginForm.fields) if forward_url: - fields.append(w.HiddenField(name='forward_url')) - fields.extend([w.HiddenField(name=name) for name in request.params + fields.append(W.HiddenField(name='forward_url')) + fields.extend([W.HiddenField(name=name) for name in request.params if name not in ('login_user', 'login_password', 'login_submit', 'forward_url')]) - - submit = w.SubmitButton(name='login_submit') - - login_form = w.TableForm(fields=fields, action=previous_url, - submit_text=_(u'Ingresar'), submit=submit) + login_form = LoginForm(fields=fields, action=previous_url) values = dict(forward_url=forward_url) values.update(request.params) @@ -73,3 +91,57 @@ class Root(controllers.RootController): identity.current.logout() raise redirect('/') + docente = DocenteController() + + grupo = GrupoController() + + alumno = AlumnoController() + + enunciado = EnunciadoController() + + ejercicio = EjercicioController() + + caso_de_prueba = CasoDePruebaController() + + curso = CursoController() + + docente_inscripto = DocenteInscriptoController() + + correccion = CorreccionController() + + +#{{{ Agrega summarize a namespace tg de KID +def summarize(text, size, concat=True, continuation='...'): + """Summarize a string if it's length is greater than a specified size. This + is useful for table listings where you don't want the table to grow because + of a large field. + + >>> from sercome.controllers + >>> text = '''Why is it that nobody remembers the name of Johann + ... Gambolputty de von Ausfern-schplenden-schlitter-crasscrenbon-fried- + ... digger-dingle-dangle-dongle-dungle-burstein-von-knacker-thrasher-apple- + ... banger-horowitz-ticolensic-grander-knotty-spelltinkle-grandlich- + ... grumblemeyer-spelterwasser-kurstlich-himbleeisen-bahnwagen-gutenabend- + ... bitte-ein-nurnburger-bratwustle-gernspurten-mitz-weimache-luber- + ... hundsfut-gumberaber-shonedanker-kalbsfleisch-mittler-aucher von + ... Hautkopft of Ulm?''' + >>> summarize(text, 30) + 'Why is it that nobody remem...' + >>> summarize(text, 68, False, ' [...]') + 'Why is it that nobody remembers the name of Johann\nGambolputty [...]' + >>> summarize(text, 68, continuation=' >>') + 'Why is it that nobody remembers the name of Johann Gambolputty de >>' + """ + if text is not None: + if concat: + text = text.replace('\n', ' ') + if len(text) > size: + text = text[:size-len(continuation)] + continuation + return text + +def add_custom_stdvars(vars): + return vars.update(dict(summarize=summarize)) + +view.variable_providers.append(add_custom_stdvars) +#}}} +