[web2py] Re: certbot vs web2py -- geoip import break

2018-05-08 Thread Dave S
On Friday, May 4, 2018 at 3:45:25 PM UTC-7, Dave S wrote: > > Here's a wierd one: > > AWS Linux, nginx, uwsgi, web2py 2.15.4, very stable. > > I use certbot --nginx to update my certs (yes, Let's Encrypt), which works > 90% (seems to have missed getting an ln step right at the end, fixed > ma

[web2py] Re: Scheduler: Is it possible to assign a task to all workers that are part of a group?

2018-05-08 Thread Francisco Ribeiro
Thank you, that has crossed my mind but I would then have to create another abstraction on top of the Scheduler groups to represent, well... groups. I even thought of conventions like common prefixes to identify which "user-group" belongs to which "group-group". Anyway, I gave up on the idea an

[web2py] Re: At least one of a group of form fields is required

2018-05-08 Thread Anthony
Nothing built in for that -- you'll have to handle it via Javascript. On Tuesday, May 8, 2018 at 2:20:22 PM UTC-4, 11-10...@usb.ve wrote: > > I'm making a form inside a module that is meant to show up in a bootstrap > modal in one of my views. > > new_form = SQLFORM.factory( > Fi

[web2py] Re: Scheduler: Is it possible to assign a task to all workers that are part of a group?

2018-05-08 Thread Niphlod
hint: if the api doesn't allow it, it's not an envisioned scenario. That being said, there's no limit on the worker-group configuration. As auth relies on RBAC, workers rely on groups. A particular group is able to process a given task ? Queue the task assigning the correct group. Only one work

[web2py] At least one of a group of form fields is required

2018-05-08 Thread 11-10371
I'm making a form inside a module that is meant to show up in a bootstrap modal in one of my views. new_form = SQLFORM.factory( Field('title', type="string", required=True), Field('author', type="string"), Field('co-author', type="string"), Fie