[web2py] Re: web2py 2.15.0b1

2017-08-06 Thread wish7code
Opened a ticket at https://github.com/web2py/web2py/issues/1721 On Thursday, 13 July 2017 09:45:11 UTC+2, Jacinto Parga wrote: > > Great job. Thanks. > > First issue with @mobilize import > > >

[web2py] Re: web2py 2.15.0b1

2017-08-04 Thread wish7code
>First issue with @mobilize import Hey everybody, I'm getting the same error with @mobilize after upgrade. Any ideas how to resolve? Thanks &

[web2py] Re: web2py 2.15.0b1

2017-07-31 Thread Oliver Holmes
Yes, that did the trick! Thank you! Cheers! Oliver Holmes -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are

[web2py] Re: web2py 2.15.0b1

2017-07-31 Thread Manuel Vio
Hi, I think I had the same problem, in my case it was a DAL constructor parameter changing its value in new web2py versions. Try to revert entity_quoting parameter to False as per this issue ticket I filed: https://github.com/web2py/web2py/issues/1697 See also here:

[web2py] Re: web2py 2.15.0b1

2017-07-31 Thread Oliver Holmes
Hi, just extracted 2.15.2-stable over my 2.14.6-stable, prior to that had stopped all services related to web2py, and now whenever I try to access one of my own tables, not web2pys system tables like auth_user or scheduler_task, I get the following error (same for every attempt to access

[web2py] Re: web2py 2.15.0b1

2017-07-20 Thread villas
Just to leave a note for anyone researching my Firebird issue... I see that Firebird has breaking backward-compatibility in web2py from change introduced here: https://github.com/web2py/pydal/pull/365 Entities are quoted by default which can cause issues. The work around is to do the

[web2py] Re: web2py 2.15.0b1

2017-07-18 Thread villas
Hi Leonel Thanks for your suggestion and I created an issue on pyDal. The quoting tends to work ok with DBs which default to lowercase, unfortunately Firebird is uppercase. As you say, it would probably be better not to use quotes at all because

[web2py] Re: web2py 2.15.0b1

2017-07-18 Thread Leonel Câmara
Villas can you submit an issue to pydal. Seems like a bug if we were not using quotes before we probably should not be using them at all. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: web2py 2.15.0b1

2017-07-18 Thread villas
*Re: Firebird* I just tested this version of web2py and I noticed a problem. See the new authapi.py, line 452: rows = self.db(self.table_group().role == role).select() The* new code* produces this SQL: SELECT "auth_group"."id", "auth_group"."role", "auth_group"."description" FROM

[web2py] Re: web2py 2.15.0b1

2017-07-13 Thread Jacinto Parga
Great job. Thanks. First issue with @mobilize import from gluon.contrib.user_agent_parser import mobilize El miércoles, 5 de julio de 2017,

[web2py] Re: web2py 2.15.0b1

2017-07-10 Thread kato
Hi. I found a problem with python3. File ".../web2py/gluon/validators.py", line 455, in options items = [(k, self.labels[i]) for (i, k) in enumerate(self.theset)] File ".../web2py/gluon/validators.py", line 455, in items = [(k, self.labels[i]) for (i, k) in enumerate(self.theset)]

Re: [web2py] Re: web2py 2.15.0b1

2017-07-10 Thread Richard Vézina
Sorry I was wrong... I miss read result I can't get slow result again... On Mon, Jul 10, 2017 at 12:45 PM, Richard Vézina < ml.richard.vez...@gmail.com> wrote: > Hello, > > Welcome is pretty slow 500+ ms compare to 32 ms for 2.14.6?? > > Richard > > On Mon, Jul 10, 2017 at 12:30 PM, Paolo

Re: [web2py] Re: web2py 2.15.0b1

2017-07-10 Thread Richard Vézina
Hello, Welcome is pretty slow 500+ ms compare to 32 ms for 2.14.6?? Richard On Mon, Jul 10, 2017 at 12:30 PM, Paolo Valleri wrote: > Massimo, regarding minification see https://github.com/web2py/ > web2py/pull/1658, hopefully it fixed the reported issue. > > > On

[web2py] Re: web2py 2.15.0b1

2017-07-10 Thread Paolo Valleri
Massimo, regarding minification see https://github.com/web2py/web2py/pull/1658, hopefully it fixed the reported issue. On Monday, July 10, 2017 at 10:28:44 AM UTC+2, Massimo Di Pierro wrote: > > Thanks for reporting these issues. > > I think except for minification they have all been resolved.

[web2py] Re: web2py 2.15.0b1

2017-07-10 Thread Massimo Di Pierro
Thanks for reporting these issues. I think except for minification they have all been resolved. and a new beta version is released. On Thursday, 6 July 2017 22:37:02 UTC-5, 黄祥 wrote: > > the error traceback about routes in application is fixed with > *applications/test/routes.py* > from

[web2py] Re: web2py 2.15.0b1

2017-07-07 Thread Dave S
On Friday, July 7, 2017 at 1:55:33 AM UTC-7, Dave S wrote: > > > > On Thursday, July 6, 2017 at 3:29:11 AM UTC-7, Dave S wrote: > [...] > >> For the other, my controller does the usual "form = SQFORM(db.tab2)", where >> tab2 has a field "partof" ref tab1, and a string field I want to get >>

[web2py] Re: web2py 2.15.0b1

2017-07-07 Thread Dave S
On Thursday, July 6, 2017 at 3:29:11 AM UTC-7, Dave S wrote: [...] > For the other, my controller does the usual "form = SQFORM(db.tab2)", where > tab2 has a field "partof" ref tab1, and a string field I want to get > autofocus, so I set the widget, and I set the default value for a boolean

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread 黄祥
the error traceback about routes in application is fixed with *applications/test/routes.py* from *gluon.*fileutils import abspath from *gluon.*languages import read_possible_languages but the same problem is still exist, (no error occured but the result is not expected), what i expect is

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread 黄祥
tried routes in applications 1. cp ~/site/web2py/examples/routes.parametric.example.py ~/site/web2py/routes.py 2. cp ~/site/web2py/applications/welcome/routes.example.py ~/site/web2py/applications/welcome/routes.py 3. Start Web2py source ~/site/bin/activate python ~/site/web2py/web2py.py --nogui

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread 黄祥
Done in pydal issue _before_insert not work when required=True in latest version Done in web2py issue appadmin errors page didn't show detail information admin page, manage button (dropdown) not work (no errors occured) graph model didn't show the erd like in previous version can't use

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Donald McClymont
Excellent work with this and lots of new features. No major issues with doing some testing so far - but just sharing an observation that a field definition along the lines of: below will cause an error if you insert a record and it attempts to use the default value. Field('plan_editor',

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Paolo Valleri
Hi Stifan, regarding _before_insert open an issue on https://github.com/web2py/pydal with the example you posted for the other issues, open an issue on https://github.com/web2py/web2py Paolo On Thursday, July 6, 2017 at 2:20:25 AM UTC+2, 黄祥 wrote: > > tried to build from scratch with minimal

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Thursday, July 6, 2017 at 2:31:03 AM UTC-7, Dave S wrote: > > > > On Thursday, July 6, 2017 at 2:27:05 AM UTC-7, Dave S wrote: >> >> >> On Tuesday, July 4, 2017 at 11:55:21 PM UTC-7, Massimo Di Pierro wrote: >>> >>> Please help us test the new web2py: >>> >>> >>>

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Tuesday, July 4, 2017 at 11:55:21 PM UTC-7, Massimo Di Pierro wrote: > > Please help us test the new web2py: > > https://mdipierro.pythonanywhere.com/examples/static/nightly/web2py_src.zip > > https://mdipierro.pythonanywhere.com/examples/static/nightly/web2py_osx.zip >

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread 黄祥
just curious how do you shipping the package, for example, i just found there is fabfile.py in the root of web2py folder on github, but not in the web2py_src.zip i want to test fabfile.py too, and must grab it from github, not from the source one thanks and best regards, stifan -- Resources:

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Thursday, July 6, 2017 at 2:27:05 AM UTC-7, Dave S wrote: > > > On Tuesday, July 4, 2017 at 11:55:21 PM UTC-7, Massimo Di Pierro wrote: >> >> Please help us test the new web2py: >> >> >> https://mdipierro.pythonanywhere.com/examples/static/nightly/web2py_src.zip >> >> >>

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Tuesday, July 4, 2017 at 11:55:21 PM UTC-7, Massimo Di Pierro wrote: > > Please help us test the new web2py: > > https://mdipierro.pythonanywhere.com/examples/static/nightly/web2py_src.zip > > https://mdipierro.pythonanywhere.com/examples/static/nightly/web2py_osx.zip >

Re: [web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Wednesday, July 5, 2017 at 2:01:06 AM UTC-7, Ramos wrote: > > on windows, in admin, the "Manage" Button does not pull dow.. > Also seen on older Fedora newer Firefox. /dps -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Dave S
On Wednesday, July 5, 2017 at 7:22:21 PM UTC-7, 黄祥 wrote: > 2. http://127.0.0.1:8000/welcome/appadmin/d3_graph_model > graph model didn't show the erd like in previous version : > - relation between table not shown > - table fields shown is stacked with another table name > > Also seen on

Re: [web2py] Re: web2py 2.15.0b1

2017-07-06 Thread Martin Weissenboeck
Hi, nice to have a new version. The problems with markmin2html remain, see issue 1671 https://github.com/web2py/web2py/issues/1671 A short summary - an ordered list inside a blockquote does not work: A controller: def mmtest(): t=""" --- This is an ordered list: + Item 1 +

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread 黄祥
another test 1. can't use response.optimize_js in models/db.py, previous version can work response.optimize_js = 'concat,minify,inline' Traceback (most recent call last): File "/Users/MacBookPro/site/web2py/gluon/restricted.py", line 219, in restricted exec(ccode, environment) File "",

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread 黄祥
tried to build from scratch with minimal code for test before insert callback problem : *1. create new web2py app* *2. models/db_test.py* def before_insert_test(f): f['field1'] = 'field1' db.define_table('table0', Field('field0', notnull = True, required = True), Field('field1',

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread Leonel Câmara
My bad I'm still using the old jquery version. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread 黄祥
@leonel : - for before_insert callback problem yes, you are right, i intentionally didn't put fund_manager value because i want to test the before_insert callback during insert data on install controller the same code running well in previous version 2.14.6-stable - for admin page manage button

Re: [web2py] Re: web2py 2.15.0b1

2017-07-05 Thread António Ramos
tried chrome with a hard refresh and i got this after pressing the "Manage " button [image: Imagem inline 1] 2017-07-05 12:52 GMT+01:00 Leonel Câmara : > Ramos have you done a hard refresh, It's very odd because I don't see that > error at all. > > -- > Resources: > -

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread Leonel Câmara
Ramos have you done a hard refresh, It's very odd because I don't see that error at all. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received

Re: [web2py] Re: web2py 2.15.0b1

2017-07-05 Thread António Ramos
@leonel @windows 7 /Chrome/Firefox/Internet Explorer 2017-07-05 11:37 GMT+01:00 Leonel Câmara : > @stifan but you actually did not put any fund_manager > > @ramos what browser? it's working fine for me in chrome, firefox and edge. > > -- > Resources: > - http://web2py.com

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread Leonel Câmara
@stifan but you actually did not put any fund_manager @ramos what browser? it's working fine for me in chrome, firefox and edge. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

Re: [web2py] Re: web2py 2.15.0b1

2017-07-05 Thread António Ramos
on windows, in admin, the "Manage" Button does not pull dow.. 2017-07-05 9:51 GMT+01:00 黄祥 : > great jobs massimo and everyone, just found some on the latest version > 1. admin page, manage button (dropdown menu) not work (no errors occured) > 2. before insert

[web2py] Re: web2py 2.15.0b1

2017-07-05 Thread 黄祥
great jobs massimo and everyone, just found some on the latest version 1. admin page, manage button (dropdown menu) not work (no errors occured) 2. before insert callback (put it on module) is not work in latest version, while the same code and same step is work in 2.14.6-stable Traceback (most