[web2py] Re: Why not to mention support to Python3 on the official sites main page?

2018-07-20 Thread Antonio Salazar
I try to, as this is the only py2 app I support, but these months I've been swamped with work. I'll resume testing in September. On Friday, July 20, 2018 at 9:06:46 AM UTC-5, Ari Lion BR Sp wrote: > > Hi Antonio Salazar, > > But if we do not test, we would not have how to fix BUGs. Maybe from tim

[web2py] Re: Modules Import Problem.

2018-07-20 Thread Anthony
On Friday, July 20, 2018 at 5:39:56 PM UTC-4, Dave S wrote: > > > > On Friday, July 20, 2018 at 8:49:26 AM UTC-7, Anthony wrote: >> >> local_import was deprecated several years ago (I don't think it's even >> mentioned in the book any more). Just use regular imports. There shouldn't >> be any nee

[web2py] Re: Modules Import Problem.

2018-07-20 Thread Dave S
On Friday, July 20, 2018 at 8:49:26 AM UTC-7, Anthony wrote: > > local_import was deprecated several years ago (I don't think it's even > mentioned in the book any more). Just use regular imports. There shouldn't > be any need to change sys.path. If you still have problems, we may need to > se

[web2py] Re: auto save feature

2018-07-20 Thread Lisandro
I'm not an expert on web2py, but I think this isn't something you will find included in web2py, as there is many things that would need to be adjusted to each specific case. I think you will have to write some custom javascript to detect the moment when the input field has changes, and then send

[web2py] response menu

2018-07-20 Thread Stavros Boletis
Hi, i have a problem with dropdown menu when i use a custom layout with web2py.. my menu.py is response.menu += [ (T('Home'), False , URL('default','index')), (T('Contact Us'), False , URL('default','index')), (T('Experiments'), False, '#', [ (T('Station1(RC-Filters)'), False, URL('def

[web2py] Re: Modules Import Problem.

2018-07-20 Thread Anthony
local_import was deprecated several years ago (I don't think it's even mentioned in the book any more). Just use regular imports. There shouldn't be any need to change sys.path. If you still have problems, we may need to see some real code and names. There could be issues if your module has the

[web2py] Re: Why not to mention support to Python3 on the official sites main page?

2018-07-20 Thread Ari Lion BR Sp
Hi Antonio Salazar, But if we do not test, we would not have how to fix BUGs. Maybe from times to times test your whole app on Python3 and report bugs... Thanks Ari - Brazil Em quinta-feira, 19 de julho de 2018 19:38:15 UTC-3, Antonio Salazar escreveu: > > Last April I downloaded the latest

[web2py] Modules Import Problem.

2018-07-20 Thread Scott ODonnell
I have an API Wrapper library I'm trying to use in my Web2PY project by including it in the modules directory. I'm copying a directory called myWrapper into the modules directory. The result is applications/myApp/modules/myWrapper Within the myWrapper directory are all the files that make up the

[web2py] Dealing with reserved keywords when you change or upgrade your database from SQLite to POSTGRES

2018-07-20 Thread Rahul
Hello All, I am migrating my project from SQLite to POSTGRESQL - I have a few field names and table names that seem to be a part of reserver/non-serverved POSTGRES keywords - For example, field name = *state (Field('state', .. )*, *Field('notify', 'boolean', label='Add Notification?', ), *