[web2py] Re: Scheduler Replacement

2018-11-22 Thread Niphlod
https://gph.is/1eNXnLk On Wednesday, November 21, 2018 at 10:19:40 PM UTC+1, Dave S wrote: > > > > On Wednesday, November 21, 2018 at 10:31:13 AM UTC-8, Boris Aramis Aguilar > Rodríguez wrote: >> >> TL;DR : Do you guys know or has experience with an alternative scheduler >> to web2py's one

[web2py] Re: AWS Lambda Serverless and Zappa

2018-11-22 Thread appjarbiz
Hey arafay, Sorry for the delay. I plan to post a deployment recipe soon. There are a lot of little gotchas I've had to work through. I was able to do it successfully with Zappa (https://github.com/Miserlou/Zappa) I'm working on doing it for another app and should be able to post my steps

[web2py] Re: How to work with files in multipart/form-data?

2018-11-22 Thread Константин Комков
Val K, yes, you are right. I do like you told and now all work. Moreover I made conclusion of error and now it work right too, previosly I have had error only one of type. Thank you! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: Delete space from users email in auth form

2018-11-22 Thread Константин Комков
I do like that: def email_to_lower(form): form.vars.email = form.vars.email.lower() form.vars.email = form.vars.email.strip() auth.settings.login_onvalidation = email_to_lower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: [web2py-users] pygraphviz

2018-11-22 Thread Donald McClymont
I will try and have a look at this over the next few weeks - I think improving D3 solution is probably easier for me than installing pygraphviz on windows! Donald On Thursday, November 22, 2018 at 4:15:24 PM UTC, Richard wrote: > > Hi, > > I understand that we move to 3djs... Although right

[web2py] Re: Vuepy = Vue.js - (NOde.js + webpack) + RapydScript_in_browser + CodeMirror

2018-11-22 Thread Константин Комков
I don't understand what is that, but looks cool) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to

[web2py] Re: Delete space from users email in auth form

2018-11-22 Thread Leonel Câmara
You can use auth.settings.login_onvalidation to strip the email string. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because

[web2py] [web2py-users] pygraphviz

2018-11-22 Thread Richard
Hi, I understand that we move to 3djs... Although right now the models rendering that been created with 3djs is unusable as an ERM graph... It in 3D which you have to move nodes to try to see something properly and it impossible to print the ERM properly for analysing the database schema you

Re: [web2py] Re: Changing color of a cell function of another cell value

2018-11-22 Thread Javier Pepe
You can try this way db.articles.conteneur.represent = lambda cntnumok, row: SPAN*(*row[ 'conteneur'], _class='cnt-false'*)* if cntnumok==False and cntnumok else None Check parenthesis El mié., 21 de nov. de 2018 a la(s) 07:42, Yann Dulondel ( yann.dulon...@gmail.com) escribió: > > > Le

[web2py] Delete space from users email in auth form

2018-11-22 Thread Константин Комков
Hello. I face a problem autosubstitution of email with space when users login on site using mobile devices. Can I delete all spaces before check email in auth form? Maybe It's work already in new version of web2py? I use now 2.16.1. -- Resources: - http://web2py.com - http://web2py.com/book