[web2py] Re: Search for list:string values in grid search?

2018-08-23 Thread Anthony
On Tuesday, August 14, 2018 at 9:59:53 AM UTC-4, Marcelo Huerta wrote: > > Is it possible at all to search for values contained in fields defined as > list:string in the grid search dialog? > Technically the search functionality can handle such searches, but for some reason, the search widget ex

[web2py] Re: Need to add form "warnings" in addition to "errors"

2018-08-23 Thread Joe Barnhart
Well, this idea works... basically. But I need to change the DIV enclosing my "warning" message from class "error" to "warning" to get my preferred yellow color. Now here's where it gets interesting... I can change the div using jQuery on the view. BUT that still shows me a "flash" of red be

[web2py] Re: Problem with CAS and basic authentication

2018-08-23 Thread kakella
controller code: @auth.requires_login() def call(): session.forget() return service() @service.json def test(): return ('Hello ',auth.user) last few lines of curl output: > GET /myapp/helper/call/json/test HTTP/1.1 > Host: localhost:8000 > Authorization: Basic

[web2py] Re: session data type changed after upgrade to 2.17.1

2018-08-23 Thread Anthony
On Thursday, August 23, 2018 at 1:59:27 AM UTC-4, icodk wrote: > > Yes Antony, You got it right > The issue is that both > form.vars.start_date and form.vars.end_date > returns a str type. > I'm not sure what changed. Feel free to submit a Github issue. Anthony -- Resources: - http://web2py

[web2py] Re: scheduler DAL object has no attribute

2018-08-23 Thread Yebach
mail_logger is defined in db.py What is interesting is that I am using the same code on two environments and on one it works ok the other causes problems The one that works is run from PyCharm (versuib 2.8.2) whereas scheduler is run from cmd as is also the function that starts the procedure