Re: [web2py] Re: web2py 2.18.3 is OUT

2019-03-05 Thread Nico Zanferrari
Hi all, I've just build the experimental Web2py 2.18.3 64 bit windows binaries with Python 3.7.2 . If you want to help, please grab it from https://github.com/nicozanf/web2py-pyinstaller , test it and write the result directly on the related wiki page

[web2py] Re: web2py 2.18.3 is OUT

2019-03-05 Thread Massimo Di Pierro
A new version will be out within the week -- 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 Goog

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Yi Liu
Is this fix going to be included in next release? or we are on our own? Thanks! On Monday, March 4, 2019 at 9:45:27 AM UTC-8, Leonel Câmara wrote: > > Kevin I didn't test that, but this fix should indeed fix auth messages as > well since they're also LazyT objects that go into session.flash > -

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread João Matos
Hello, I tried your fix after upgrading to 2.18.3, but it didn't work for me. I had to continue to use my kludge of copying 3 files from 2.18.1 (compileapp.py, languages.py and utils.py). In my case even the Logged in and Logged out messages from web2py would appear with the b prefix. Best reg

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Kevin Keller
Just tested it.. works fine now. Your fix works. Thanks heaps! On Monday, 4 March 2019 18:45:27 UTC+1, Leonel Câmara wrote: > > Kevin I didn't test that, but this fix should indeed fix auth messages as > well since they're also LazyT objects that go into session.flash > -- Resources: - htt

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Kevin Keller
ahh it does fix it.. I applied your fix wrong.. Thanks!!! On Monday, 4 March 2019 18:40:08 UTC+1, Kevin Keller wrote: > > Create a sample app i.e. with the wizard or create a page that needs login > with the inbuild login form and tr

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Leonel Câmara
Kevin I didn't test that, but this fix should indeed fix auth messages as well since they're also LazyT objects that go into session.flash -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Kevin Keller
Create a sample app i.e. with the wizard or create a page that needs login with the inbuild login form and try to login. The flash message will have the "b" in front off it.. Your fix may address the problem with the other flash messages, but not with the messages from the authapi.py On Monda

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Leonel Câmara
The only way I could reproduce the b' issue was by putting something in the session that was being translated like this: session.flash = T("Hello World") I've fixed that particular case: https://github.com/web2py/web2py/pull/2127 I can't reproduce the b' problem you guys are having in any othe

Re: [web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Lovedie JC
Nice. Thanks for the bug fixes. Any info on the xml()? Regards On Mon, 4 Mar 2019, 14:58 Kevin Keller wrote: > Thanks! > > Its so cool seeing this moving along so quickly. > > There is one thing about this release that is still bothering me, which I > tried to fix myself, but to no avail. > The

[web2py] Re: web2py 2.18.3 is OUT

2019-03-04 Thread Kevin Keller
Thanks! Its so cool seeing this moving along so quickly. There is one thing about this release that is still bothering me, which I tried to fix myself, but to no avail. The "b" that is showing in the flash messages. See screenshot. and here: https://github.com/web2py/web2py/issues/2119 and