[web2py] what can I do with this error: Getaadrinfo Failed.

2015-09-19 Thread Maurice Waka
When trying to custom pack and download my app as .exe, I get this error: [Errno socket error] [Errno 11004] getaddrinfo failed How can I resolve it? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: Autocomplete widget don't respect other values in request.vars

2015-09-19 Thread Anthony
It won't always be desirable to preserve the original query string because the Ajax callback is not really requesting the original parent page but instead merely using the original action to access the autocomplete functionality. However, it would probably be a good idea to add an option to

Re: [web2py] Re: mail send

2015-09-19 Thread 'Diogene Laerce' via web2py-users
Hi, Le 18/09/2015 23:20, 黄祥 a écrit : > hm, not sure, i get it, but i guess that you can use the query for > that and pass it into mai.send(to=query result, ...). Yes it's what I thought. > another thing is, it seems i can't find mail.settings.to in web2py > book. pls read the book about setup

Re: [web2py] Re: SQLform grid custom function for delete

2015-09-19 Thread Vid Ogris
Hello So I managed to put link and create it but now I have a probelm getting the id of the record I want to deal with links = [lambda row: A('',_class='glyphicon glyphicon glyphicon-remove-sign', callback=URL('settings','deactivate',vars=dict(table='skills',field = 'sk_status', value =

Re: [web2py] Re: SQLform grid custom function for delete

2015-09-19 Thread Anthony
On Saturday, September 19, 2015 at 4:18:49 AM UTC-4, Yebach wrote: > > Hello > > So I managed to put link and create it but now I have a probelm getting > the id of the record I want to deal with > > links = [lambda row: A('',_class='glyphicon glyphicon > glyphicon-remove-sign', >

[web2py] Autocomplete widget don't respect other values in request.vars

2015-09-19 Thread Yoel Benitez Fonseca
hi! i have been struggling with a annoying bug, i got a this in a controller: --- def some_function(): if not request.vars.step: redirect(URL('some_function', vars=dict(step=1))) # # a lot of stuff in the middle # if request.vars.step = '3':