[web2py] Re: using an IDE with web2py

2012-02-06 Thread apple
That is odd. Yes I am on trunk and I have checked the gluon __init__.py file and it is exactly as you show above. On Feb 6, 6:34 pm, Anthony wrote: > On Monday, February 6, 2012 1:18:55 PM UTC-5, apple wrote: > > > If I do "from gluon import *" then it does not find request, response, > > session

[web2py] Re: using an IDE with web2py

2012-02-06 Thread Anthony
On Monday, February 6, 2012 1:18:55 PM UTC-5, apple wrote: > > If I do "from gluon import *" then it does not find request, response, > session. > Are you using trunk? I've got Aptana, and using trunk, if I do "from gluon import *", I get autocompletion for request, response, session, cache. An

[web2py] Re: using an IDE with web2py

2012-02-06 Thread apple
If I do "from gluon import *" then it does not find request, response, session. If I do "from gluon import request,response,session" then it works! I guess this is an aptana bug. On Feb 6, 5:44 pm, Anthony wrote: > I'm not sure about that problem, but note that trunk now includes the > followin

[web2py] Re: using an IDE with web2py

2012-02-06 Thread Anthony
I'm not sure about that problem, but note that trunk now includes the following in __init__.py: if 0: from globals import Request, Response, Session from cache import Cache from languages import translator request = Request() response = Response() session = Session() c