[web2py] Re: appconfig.ini versus models/0.py

2018-01-26 Thread Yi Liu
email settings now in AppConfig.ini not 0.py Took me an hour to figure out. Hope this post can save other people 's time. On Wednesday, March 29, 2017 at 10:33:22 PM UTC-7, Nico de Groot wrote: > > The 0.db solution is the old approach. Nothing very wrong with it, but > the new approach is

[web2py] Re: Does web2py support reCAPTCHA v2?

2018-01-26 Thread Yi Liu
For anyone comes to this thread from Google, to be explicit: use Recaptcha2() instead of Recaptcha() use_ssl option is gone. The book needs to be updated, if I or somebody has time. v1 is no longer supported. On Wednesday, July 29, 2015 at 2:04:59 AM UTC-7, Niphlod wrote: > > there's

Re: [web2py] Re: web2py IDE

2018-01-26 Thread Jim Steil
PyCharm Community is free. -Jim On Fri, Jan 26, 2018 at 12:57 PM, Andrea Fae' wrote: > Thanks a lot, but I'd like free IDE, without cost. > > > Il giorno venerdì 26 gennaio 2018 13:32:14 UTC+1, Jim S ha scritto: >> >> Great post Mirek! >> >> I can confirm that paid PyCharm

Re: [web2py] Re: web2py IDE

2018-01-26 Thread Andrea Fae'
Is there available a debugger too? Il giorno venerdì 26 gennaio 2018 20:04:42 UTC+1, Ramos ha scritto: > > for free > Sublime Text 3 + w2p plugin > > Work and gives you a web2py console and some other stuff > > Regards > > 2018-01-26 18:57 GMT+00:00 Andrea Fae' : > >> Thanks a

Re: [web2py] Re: web2py IDE

2018-01-26 Thread António Ramos
for free Sublime Text 3 + w2p plugin Work and gives you a web2py console and some other stuff Regards 2018-01-26 18:57 GMT+00:00 Andrea Fae' : > Thanks a lot, but I'd like free IDE, without cost. > > > Il giorno venerdì 26 gennaio 2018 13:32:14 UTC+1, Jim S ha scritto: >> >>

Re: [web2py] .represent

2018-01-26 Thread Andrea Fae'
for me it's worst than before! what is other_table? Why you don't use row? I don't understand...I'm sorry Il giorno venerdì 26 gennaio 2018 10:50:49 UTC+1, Massimiliano ha scritto: > > The first argument of the represent function is the field value. > So in the the second example the `id` arg is

[web2py] Re: mobile menu not working?

2018-01-26 Thread Yi Liu
Thank you. I will make sure I check github in the future. On Friday, January 26, 2018 at 10:08:50 AM UTC-8, Paolo Caruccio wrote: > > Please try the solution in https://github.com/web2py/web2py/issues/1828 > > Regards. > > > -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: web2py IDE

2018-01-26 Thread Andrea Fae'
Thanks a lot, but I'd like free IDE, without cost. Il giorno venerdì 26 gennaio 2018 13:32:14 UTC+1, Jim S ha scritto: > > Great post Mirek! > > I can confirm that paid PyCharm does work better with web2py than the > Community version. What I like about PyCharm is that in addition to a >

[web2py] Re: mobile menu not working?

2018-01-26 Thread Paolo Caruccio
Please try the solution in https://github.com/web2py/web2py/issues/1828 Regards. Il giorno venerdì 26 gennaio 2018 18:18:18 UTC+1, Yi Liu ha scritto: > > Dear all, > > I have latest web2py running at trialert.com > > Both my barebone app and welcome app at trialert.com/welcome have problem >

[web2py] mobile menu not working?

2018-01-26 Thread Yi Liu
Dear all, I have latest web2py running at trialert.com Both my barebone app and welcome app at trialert.com/welcome have problem with mobile theme. The mobile menu at top right corner does not work, not clickable. Best, Yi -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: web2py IDE

2018-01-26 Thread Jim S
Great post Mirek! I can confirm that paid PyCharm does work better with web2py than the Community version. What I like about PyCharm is that in addition to a Python IDE, you also get a good editor for HTML, javascript, CSS and a nice database editor if you're using the paid version. If not

Re: [web2py] .represent

2018-01-26 Thread Massimiliano
The first argument of the represent function is the field value. So in the the second example the `id` arg is the other_id value. Maybe the example could be more clear in this way: db.mytable.other_id.represent = lambda id, row: db.other_table[id].other_field On Fri, Jan 26, 2018 at 10:24 AM,

[web2py] .represent

2018-01-26 Thread Andrea Fae'
"Represent" from web2py book But what exactly are the relationship between "other_id" and "is" in the second example? And in the third from what is get the variable "value"? Thank you .represent can be None or can point to a function that takes a field value and returns an alternate