Re: Django in Eclipse+PyDev, lot's of functions and imports are undefined/unresolved

2012-10-26 Thread Chris Pagnutti
Yeah, I'm quite sure the interpreter can see django. I can verify it from the console, and the app runs fine, despite all the complaints, so I'm not too worried about it. What does Project > Clean do? On Friday, October 26, 2012 8:16:18 PM UTC-4, Andrew McHarg wrote: > > Have you verified

Re: Django in Eclipse+PyDev, lot's of functions and imports are undefined/unresolved

2012-10-26 Thread Andrew McHarg
Have you verified that the python interpreter pydev is looking at has django installed in it? That might account for it. Also try doing a Project > Clean. That being said I have found that pydev's code analysis can be pretty janky under a variety circumstances such as switching branches outside

Re: Django in Eclipse+PyDev, lot's of functions and imports are undefined/unresolved

2012-10-26 Thread Chris Pagnutti
It turns out that, although eclipse is complaining a lot, the site runs just fine. I guess I'll just have to get used to ignoring eclipse complaints when working with django. Thanks. On Friday, October 26, 2012 12:48:35 PM UTC-4, Chris Pagnutti wrote: > > Hi. I created a django project using

Re: Django in Eclipse+PyDev, lot's of functions and imports are undefined/unresolved

2012-10-26 Thread Nick Santos
I don't have a solution, but I can indicate that the same thing has happened to me on a standard install of Python 2.7.2 (no virtualenv) on Windows 7, so I don't know that it's anything about your setup in particular, if that helps. -Nick On Fri, Oct 26, 2012 at 9:48 AM, Chris Pagnutti

Django in Eclipse+PyDev, lot's of functions and imports are undefined/unresolved

2012-10-26 Thread Chris Pagnutti
Hi. I created a django project using the eric4 IDE. I'm just trying to transfer everything over to Eclipse+PyDev. I basically just rebuilt the whole project from scratch by copying and pasting all the source code. I'm pretty sure I set up my python interpreter fine. I'm using django-trunk

Re: django and eclipse

2010-12-30 Thread CrabbyPete
ays...@gmail.com> wrote: > I installed the pydev plugin in eclipse. > I configured it. > Imported my django project and it almost works. > > Is any one of you using django/eclipse? > > Well, all goes well until I start the django development server. > 1/ how can I change t

Re: django and eclipse

2010-12-30 Thread Rajendra Waghmare
v plugin in eclipse. > > > I configured it. > > > Imported my django project and it almost works. > > > > Is any one of you using django/eclipse? > > > > Well, all goes well until I start the django development server. > > > 1/ how can I change t

Re: django and eclipse

2010-12-29 Thread girish shabadimath
> I configured it. > > Imported my django project and it almost works. > > > > Is any one of you using django/eclipse? > > > > Well, all goes well until I start the django development server. > > 1/ how can I change the default port, it is running on ? >

Re: django and eclipse

2010-12-29 Thread Emmanuel Mayssat
Mayssat <emays...@gmail.com> wrote: > I installed the pydev plugin in eclipse. > I configured it. > Imported my django project and it almost works. > > Is any one of you using django/eclipse? > > Well, all goes well until I start the django development server. > 1/ how

django and eclipse

2010-12-29 Thread Emmanuel Mayssat
I installed the pydev plugin in eclipse. I configured it. Imported my django project and it almost works. Is any one of you using django/eclipse? Well, all goes well until I start the django development server. 1/ how can I change the default port, it is running on ? 2/ My sqlite db files

Re: django debugging eclipse watch variable problem

2007-10-13 Thread johnny
> Preferences... Pydev > Interpreter - Python System PYTHONPATH > New Folder Folder : c:\django\mysite using eclipse with watch variable would make life easier ;) On Oct 12, 11:04 am, johnny <[EMAIL PROTECTED]> wrote: > I am trying to watch a variable in my app. Setup i

django debugging eclipse watch variable problem

2007-10-12 Thread johnny
I am trying to watch a variable in my app. Setup is fine. I can run manage.py runserver inside eclipse and view debug window and place break points. But can't seem to watch the variable values. I am getting following error: could not resolve variable Here is the pic:

Re: Django and Eclipse Autocomplete NOT WORKING

2007-04-04 Thread Jon Ballard
On Apr 4, 9:13 pm, "Jon Ballard" <[EMAIL PROTECTED]> wrote: > Looks like maybe PyDev can't follow symbolic links in PYTHONPATH. For > example I'm using SVN version and couldn't get django module code > completion working until I added this to my PyDev PYTHONPATH: > /usr/lib/django_src/ Oh, yep,

Re: Django and Eclipse Autocomplete NOT WORKING

2007-04-04 Thread Jon Ballard
Sorry, following up an old post, but maybe it will help somebody. Looks like maybe PyDev can't follow symbolic links in PYTHONPATH. For example I'm using SVN version and couldn't get django module code completion working until I added this to my PyDev PYTHONPATH: /usr/lib/django_src/ I have a

Re: Django and Eclipse Autocomplete NOT WORKING

2007-02-19 Thread Nicolas Steinmetz
Igor Guerrero wrote: > Apparently is a random error, I use the svn version, and with one project > it works and with another don't, maybe is a PyDEV bug, but I don't know. Hmm strange and what a pity ! :( I hope it will be solved with next stable version :-)

Re: Django and Eclipse Autocomplete NOT WORKING

2007-02-17 Thread Igor Guerrero
Apparently is a random error, I use the svn version, and with one project it works and with another don't, maybe is a PyDEV bug, but I don't know. On 2/15/07, Nicolas Steinmetz <[EMAIL PROTECTED]> wrote: > > > Igor Guerrero wrote: > > > You must add the app dir and django dir to the PYTHON_PATH

Re: Django and Eclipse Autocomplete NOT WORKING

2007-02-15 Thread Nicolas Steinmetz
Igor Guerrero wrote: > You must add the app dir and django dir to the PYTHON_PATH env variable in > the preferrence menu and rescan the PATH. It worked well with 0.95 version (just need to add django dir to the PYTHON PATH of Eclipse) but with svn version it looks it does not work any longer

Re: Django and Eclipse Autocomplete NOT WORKING

2007-02-12 Thread johnny
Thank you so much. On Feb 12, 10:38 am, "Igor Guerrero" <[EMAIL PROTECTED]> wrote: > You must add the app dir and django dir to the PYTHON_PATH env variable in > the preferrence menu and rescan the PATH. > > On 2/12/07, johnny <[EMAIL PROTECTED]> wrote: > > > > > I am using PyDev and Eclipse.

Re: Django and Eclipse Autocomplete NOT WORKING

2007-02-12 Thread Igor Guerrero
You must add the app dir and django dir to the PYTHON_PATH env variable in the preferrence menu and rescan the PATH. On 2/12/07, johnny <[EMAIL PROTECTED]> wrote: > > > I am using PyDev and Eclipse. For some reason I can't get Eclipse to > do the autocomplete to work for python. > Eclipse

Django and Eclipse Autocomplete NOT WORKING

2007-02-12 Thread johnny
I am using PyDev and Eclipse. For some reason I can't get Eclipse to do the autocomplete to work for python. Eclipse autocomplete work for other language and library packages. It does autocomplete for python, but not for Django. My django in python/ lib/site-packages/django. Is there