[web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-02-02 Thread DL
Are you sure? I thought '__all__' was made for cases like this.. On Jan 21, 7:03 am, Thadeus Burgess thade...@thadeusb.com wrote: It is not, it will not pull in the imports of other files. You have to specifically declare all modules that are imported that you want available in the file that

Re: [web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-02-02 Thread Thadeus Burgess
Have you tried it? -Thadeus On Tue, Feb 2, 2010 at 4:31 PM, DL choralr...@naver.com wrote: Are you sure?  I thought '__all__' was made for cases like this.. On Jan 21, 7:03 am, Thadeus Burgess thade...@thadeusb.com wrote: It is not, it will not pull in the imports of other files. You

Re: [web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-01-23 Thread Thadeus Burgess
Not sure what you did wrong with netbeans. I just installed netbeans 6.8 php version, installed python plugin, and then created a new project, added web2py/gluon, and added applications/blogitizer. Waited some time for netbeans to index my python 2.6.4 and my project files. On top of my

[web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-01-20 Thread mdipierro
I know Eclipse works with web2py. I do not use it but I think it has intellisense. On Jan 20, 12:24 am, Tweety tweetych...@gmail.com wrote: Hello, I am a newbie both with web2py, python and computer and web development in general. I am trying to digest Massimo's book which I bought from

Re: [web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-01-20 Thread Thadeus Burgess
To get web2py to work with code completion. This will work with eclipse + pydev, or wing IDE, or netbeans + python. add this to the top of your file (unfortunately it has to be on every file you want code completion). if 0: from gluon.tools import * from gluon.sqlhtml import * from

[web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-01-20 Thread mdipierro
I have not tried by perhaps putting if 0: from gluon.tools import * from gluon.sqlhtml import * from gluon.sql import * #...etc etc for every module you want to import in web2py/w.py and importing from w import * in very file is a more compact solution. On Jan 20, 2:26 pm,

Re: [web2py] Re: Newbie Question: Intellisense for Web2Py?

2010-01-20 Thread Thadeus Burgess
It is not, it will not pull in the imports of other files. You have to specifically declare all modules that are imported that you want available in the file that you want code completion on. -Thadeus On Wed, Jan 20, 2010 at 3:46 PM, mdipierro mdipie...@cs.depaul.edu wrote: I have not