Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-12 Thread Andrew W
Perfect ! Thanks for the quick response. I saw your solution above, but assumed that you had added it to github. All's Good. One more question please (which I asked on web2py slices): How to use auth.wiki with movuca. There was a web2pyslices post in relation to plugin_wiki, and I was

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-12 Thread BlueShadow
So if I understand you correctly you lighten the server load and get quicker sites when you add change db=DAL(...) to db=DAL(...,lazy_tables=True) I like the everything gets better option :) On Monday, September 10, 2012 3:15:32 AM UTC+2, rochacbruno wrote: On Sun, Sep 9, 2012 at 9:27 PM,

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-11 Thread Andrew W
on the main app I am building Wanting to take the modelless approach ( slice submitted by BrunoRocha ) in order to avoid possible future bottleneck and/or latency I wanted to advise that the modelless app no longer works under web2py 2.0.x When I downloaded and installed the running test

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-11 Thread Bruno Rocha
I did some changes on Movuca, but I still have to solve little issues in order to commit. But I just commited a workarounf for the problem: https://github.com/rochacbruno/Movuca/commit/aa25103e9c37921a34a225b8e82ca0f8634ca831 --

[web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Don_X
Considering that I have many tables in my model files on the main app I am building Wanting to take the modelless approach ( slice submitted by BrunoRocha ) in order to avoid possible future bottleneck and/or latency I wanted to advise that the modelless app no longer works under web2py 2.0

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Bruno Rocha
have many tables in my model files on the main app I am building Wanting to take the modelless approach ( slice submitted by BrunoRocha ) in order to avoid possible future bottleneck and/or latency I wanted to advise that the modelless app no longer works under web2py 2.0.x When I

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Le Don X
thank you Bruno for the update ! .. I will look it up shortly. --

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Andrew W
approach ( slice submitted by BrunoRocha ) in order to avoid possible future bottleneck and/or latency I wanted to advise that the modelless app no longer works under web2py 2.0.x When I downloaded and installed the running test app to check it out with any 2.0.x I get the following error

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Bruno Rocha
On Sun, Sep 9, 2012 at 9:27 PM, Andrew W awillima...@gmail.com wrote: (although I still don't quite really understand what a lazy table is). imagine you have models/db.py db = DAL(...) db.define_table(table1.) db.define_table(table2.) ... ... db.define_table(table30.) So, for

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Andrew W
Excellent. Great explanation. On Monday, September 10, 2012 1:15:32 PM UTC+12, rochacbruno wrote: On Sun, Sep 9, 2012 at 9:27 PM, Andrew W awill...@gmail.com javascript: wrote: (although I still don't quite really understand what a lazy table is). imagine you have models/db.py db

Re: [web2py] Modelless app no longer works with web2py 2.0.x ???

2012-09-09 Thread Andrew W
that the modelless app no longer works under web2py 2.0.x When I downloaded and installed the running test app to check it out with any 2.0.x I get the following error ticket msg : type 'exceptions.AttributeError' 'DataBase' object has no attribute '_lazy_tables' Can anyone help me