]> git.llucax.com Git - software/sercom.git/blob - sercom/controllers.py
Permito editar/corregir y limpio lo que no necesito
[software/sercom.git] / sercom / controllers.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 :
2
3 from turbogears import controllers, expose, view, url
4 from turbogears import widgets as W, validators as V
5 from turbogears import identity, redirect
6 from cherrypy import request, response
7 from model import *
8 # from sercom import json
9
10 from subcontrollers import *
11
12 import logging
13 log = logging.getLogger("sercom.controllers")
14
15 class LoginForm(W.TableForm):
16     class Fields(W.WidgetsList):
17         login_user = W.TextField(label=_(u'Usuario'),
18             validator=V.NotEmpty())
19         login_password = W.PasswordField(label=_(u'Contraseña'),
20             validator=V.NotEmpty())
21     fields = Fields()
22     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_login_user');")]
23     submit = W.SubmitButton(name='login_submit')
24     submit_text = _(u'Ingresar')
25
26 class Root(controllers.RootController):
27
28     @expose(template='.templates.welcome')
29     @identity.require(identity.has_permission('entregar'))
30     def index(self):
31         import time
32         log.debug('Happy TurboGears Controller Responding For Duty')
33         return dict(now=time.ctime())
34
35     @expose(template='.templates.login')
36     def login(self, forward_url=None, previous_url=None, tg_errors=None, *args,
37             **kw):
38
39         if tg_errors:
40             flash(_(u'Hubo un error en el formulario!'))
41
42         if not identity.current.anonymous \
43                 and identity.was_login_attempted() \
44                 and not identity.get_identity_errors():
45             raise redirect(forward_url)
46
47         forward_url = None
48         previous_url = request.path
49
50         if identity.was_login_attempted():
51             msg = _(u'Las credenciales proporcionadas no son correctas o no '
52                     'le dan acceso al recurso solicitado.')
53         elif identity.get_identity_errors():
54             msg = _(u'Debe proveer sus credenciales antes de acceder a este '
55                     'recurso.')
56         else:
57             msg = _(u'Por favor ingrese.')
58             forward_url = request.headers.get('Referer', '/')
59
60         fields = list(LoginForm.fields)
61         if forward_url:
62             fields.append(W.HiddenField(name='forward_url'))
63         fields.extend([W.HiddenField(name=name) for name in request.params
64                 if name not in ('login_user', 'login_password', 'login_submit',
65                                 'forward_url')])
66         login_form = LoginForm(fields=fields, action=previous_url)
67
68         values = dict(forward_url=forward_url)
69         values.update(request.params)
70
71         response.status=403
72         return dict(login_form=login_form, form_data=values, message=msg,
73                 logging_in=True)
74
75     @expose()
76     def logout(self):
77         identity.current.logout()
78         raise redirect('/')
79
80     docente = DocenteController()
81
82     grupo = GrupoController()
83
84     alumno = AlumnoController()
85
86     enunciado = EnunciadoController()
87
88     ejercicio = EjercicioController()
89
90     caso_de_prueba = CasoDePruebaController()
91
92     curso = CursoController()
93     
94     docente_inscripto = DocenteInscriptoController()
95
96     correccion = CorreccionController()
97
98
99 #{{{ Agrega summarize a namespace tg de KID
100 def summarize(text, size, concat=True, continuation='...'):
101     """Summarize a string if it's length is greater than a specified size. This
102     is useful for table listings where you don't want the table to grow because
103     of a large field.
104
105     >>> from sercome.controllers
106     >>> text = '''Why is it that nobody remembers the name of Johann
107     ... Gambolputty de von Ausfern-schplenden-schlitter-crasscrenbon-fried-
108     ... digger-dingle-dangle-dongle-dungle-burstein-von-knacker-thrasher-apple-
109     ... banger-horowitz-ticolensic-grander-knotty-spelltinkle-grandlich-
110     ... grumblemeyer-spelterwasser-kurstlich-himbleeisen-bahnwagen-gutenabend-
111     ... bitte-ein-nurnburger-bratwustle-gernspurten-mitz-weimache-luber-
112     ... hundsfut-gumberaber-shonedanker-kalbsfleisch-mittler-aucher von
113     ... Hautkopft of Ulm?'''
114     >>> summarize(text, 30)
115     'Why is it that nobody remem...'
116     >>> summarize(text, 68, False, ' [...]')
117     'Why is it that nobody remembers the name of Johann\nGambolputty [...]'
118     >>> summarize(text, 68, continuation=' >>')
119     'Why is it that nobody remembers the name of Johann Gambolputty de >>'
120     """
121     if text is not None:
122         if concat:
123             text = text.replace('\n', ' ')
124         if len(text) > size:
125             text = text[:size-len(continuation)] + continuation
126     return text
127
128 def add_custom_stdvars(vars):
129     return vars.update(dict(summarize=summarize))
130
131 view.variable_providers.append(add_custom_stdvars)
132 #}}}
133