[web2py] Re: web2py 2.17.1

2018-08-12 Thread Massimo Di Pierro
Cannot reproduce this. it works for me. Mind that configuration.take('app.toolbar') == 'false' while configuration.get('app.toolbar') is False On Tuesday, 7 August 2018 07:28:55 UTC-7, 黄祥 wrote: > > configuration.take() no longer worked > *e.g.* > *private/appconfig.ini* > [app] > toolbar =

Re: [web2py] web2py 2.17.1

2018-08-12 Thread Massimo Di Pierro
I think the problem is that plugins UI was not ported to python 3 but should it be? I think we should drop the plugins page as is and make a better one alltogether. On Saturday, 11 August 2018 14:09:54 UTC-7, sandeep patel wrote: > > Hello, > In Version, 2.16.1-stable Plugins work fine when cli

[web2py] Re: web2py 2.17.1

2018-08-12 Thread Massimo Di Pierro
On second look this is correct and intentional and fixed a bug. this form is a from a factory and there is no record. the field is not writable therefore it can only be displayed in read-only mode but there is no value (record) to display. Does it break something? On Sunday, 12 August 2018 12:

Re: [web2py] Re: web2py broken

2018-08-12 Thread 黄祥
still not sure where problem is in web2py part or in database sqlite part just an idea, why not separate the root cause first. in dev or testing environment, 1. use the same web2py app, with new database (test crud work or not). if work, then the problem probably is in database part 2. just follo

Re: [web2py] Re: web2py broken

2018-08-12 Thread BlueShadow
well in windows (home pc) I got full access for myself, system, admin and authenticated users. on my linux server I got the following: -rw-r--r-- 1 www-data www-data but never the less it doesn't work on either system. Any other idea? On Sunday, August 12, 2018 at 12:44:10 PM UTC+2, Junior Phan

[web2py] Re: web2py 2.17.1

2018-08-12 Thread Massimo Di Pierro
No. will fix it. On Sunday, 12 August 2018 12:52:31 UTC-7, Jim Karsten wrote: > > I'm seeing a change in behaviour between versions 2.16.1 and 2.17.1. > > form = SQLFORM.factory(Field('name', writable=False)) > print form.fields > > # In 2.16.1 prints: ['id', 'name'] > # In 2.17.1 prints: ['id']

[web2py] Re: web2py 2.17.1

2018-08-12 Thread Jim Karsten
I'm seeing a change in behaviour between versions 2.16.1 and 2.17.1. form = SQLFORM.factory(Field('name', writable=False)) print form.fields # In 2.16.1 prints: ['id', 'name'] # In 2.17.1 prints: ['id'] Is this intentional? -- Resources: - http://web2py.com - http://web2py.com/book (Documenta

Re: [web2py] Re: web2py broken

2018-08-12 Thread Junior Phanter
check the database permissions... Em 12/08/2018 06:14, "BlueShadow" escreveu: Do you guys have any tips what I can try next in order to fix it? Do you need to see other files? thanks for your help kind regards BlueShadow -- Resources: - http://web2py.com - http://web2py.com/book (Documentation

Re: [web2py] Re: web2py broken

2018-08-12 Thread BlueShadow
Do you guys have any tips what I can try next in order to fix it? Do you need to see other files? thanks for your help kind regards BlueShadow -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web

[web2py] Re: virtual field not exportable to CSV

2018-08-12 Thread Vic Ding
It turns out that in the objects.py, export_to_csv gets the fields from the grid, but when getting the column name to be used as the dict key to fetch the actual field object, the key is invalid. any idea to quick solve this? Thanks! On Thursday, August 9, 2018 at 10:07:19 PM UTC+2, Vic Ding wro