X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/7bee4072574324ca7b3e6d8dc6deec589b13126f..c753e0176f98ae0097009f6513d9e4b15d354c86:/sercom/controllers.py?ds=sidebyside diff --git a/sercom/controllers.py b/sercom/controllers.py index 13f6172..5e785ea 100644 --- a/sercom/controllers.py +++ b/sercom/controllers.py @@ -1,6 +1,6 @@ # vim: set et sw=4 sts=4 encoding=utf-8 : -from turbogears import controllers, expose +from turbogears import controllers, expose, view from turbogears import widgets as w, validators from turbogears import identity, redirect from cherrypy import request, response @@ -77,3 +77,38 @@ class Root(controllers.RootController): docente = DocenteController() +#{{{ 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) +#}}} +