[web2py] Re: Password Recovery Not Sending (lazyT object being passed to GAE?)

2017-04-13 Thread webmaster
Can we not get a real solution to this? I was gonna try the posted hack, but it can be too easily abused (it changes the user's password instead of using a password_reset token, so anyone could change your password just by knowing your email address). On Friday, April 7, 2017 at 7:28:48 PM

[web2py] Re: Any more elegant way to redirect to user login when updating a div by ajax callback if not auth.user

2017-04-13 Thread Paco Bernal
Good point, for sure I think is always better to give clear information to the users, they don't use to read manuals or to do logical things by the way.. redirecting without telling "why" may be confusing :) El miércoles, 12 de abril de 2017, 13:17:06 (UTC+2), Massimo Di Pierro escribió: >

[web2py] CKEditor CDN

2017-04-13 Thread Alex Glaros
CKEditor is now available from CDN: http://cdn.ckeditor.com/ can someone please provide example of how to integrate into w2p? is it safe, if not, way to sanitize? thanks, Alex Glaros -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

Re: [web2py] Re: web2py and python3

2017-04-13 Thread Richard Vézina
10x speed improve, I buy that anytime! :) Richard On Thu, Apr 13, 2017 at 12:38 PM, Marlysson Silva wrote: > Awesome!! Which features massimo? :D > > -- > Resources: > - http://web2py.com > - http://web2py.com/book (Documentation) > - http://github.com/web2py/web2py

Re: [web2py] Re: Cockroach DB

2017-04-13 Thread Richard Vézina
:) Yeah pretty bad name, I guess you can't forget it... Richard On Wed, Apr 12, 2017 at 7:43 AM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > Interesting... bad name > > > On Tuesday, 11 April 2017 07:40:38 UTC-5, mcm wrote: >> >> This seems a real bargain (postgresql dialect and

Re: [web2py] Re: web2py and python3

2017-04-13 Thread Marlysson Silva
Awesome!! Which features massimo? :D -- 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 the Google

[web2py] Re: auth_user email rename name to data attribute

2017-04-13 Thread lucas
hey Anthony, yes I tried that and it worked in safari, chrome, and IE, but not in Firefox. further research and testing many many suggestions later. I came up with in the view, which essentially puts the value back to the original after autocomplete does its little mess: {{block head}}

Re: [web2py] Making application looks better.

2017-04-13 Thread António Ramos
I like and am using this https://almsaeedstudio.com/themes/AdminLTE/index2.html here is the web2py template https://github.com/tomcam/AdminLTE-web2py the code is very well organized... Regards António 2017-04-13 11:38 GMT+01:00 : > Hello web2py team, > I just

[web2py] Making application looks better.

2017-04-13 Thread akshay055kumar
Hello web2py team, I just started using web2py for my application. When i am going deeper with my application, i am facing issues. The problem is that i have a basic idea about HTML tags only. I have never worked with CSS, Bootstrap, ajax, javascript etc. As of now i am able to add basic

Re: [web2py] Re: IntegrityError('NOT NULL constraint failed:post.message)

2017-04-13 Thread Maurice Waka
Noted. Thanks On Apr 12, 2017 14:20, "Massimo Di Pierro" wrote: > I think the problem is that > > db.post.insert(answers=report) > > should be under > > if form.process().accepted: > > > On Sunday, 2 April 2017 07:30:15 UTC-5, Maurice Waka wrote: >> >> I thought I

[web2py] Re: Displaying images

2017-04-13 Thread Dave S
On Thursday, April 13, 2017 at 1:35:14 AM UTC-7, Dave S wrote: > > > > On Wednesday, April 12, 2017 at 4:31:42 AM UTC-7, Massimo Di Pierro wrote: >> >> I would do: >> >> def custom_download(): >> filename = request.args(0) >> # maybe validate filename >> full_path =

[web2py] Re: Displaying images

2017-04-13 Thread Dave S
On Wednesday, April 12, 2017 at 4:31:42 AM UTC-7, Massimo Di Pierro wrote: > > I would do: > > def custom_download(): > filename = request.args(0) > # maybe validate filename > full_path = os.path.join('/whereever/it/is', filename) > return response.stream(full_path) > > and