Re: [Pydev-users] Issue with undefined variables

2008-03-07 Thread Lee Connell
probably be able to fix it sooner too ;-) Cheers, Fabio On Fri, Mar 7, 2008 at 12:19 AM, Lee Connell wrote: from polls.models import Poll def index(request): latest_poll_list = Poll.objects.all().order_by('-pub_date') ## My issue here is Poll is resolved

[Pydev-users] Issue with undefined variables

2008-03-06 Thread Lee Connell
from polls.models import Poll def index(request): latest_poll_list = Poll.objects.all().order_by('-pub_date') ## My issue here is Poll is resolved with no issues at the import level. However when I access that class under the index method pydev tells me Poll is undefined.

[Pydev-users] hyperlink mechanism

2008-02-04 Thread Lee Connell
How do you use the hyperlink mechanism in 1.3.13? Thanks, Lee _ Climb to the top of the charts! Play the word scramble challenge with star power.

[Pydev-users] FW: Ignoring specific errors in editor

2007-09-04 Thread Lee Connell
Even a no there is no way to do this would be nice. Anyone? From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Sun, 2 Sep 2007 10:00:38 -0400Subject: [Pydev-users] Ignoring specific errors in editor I am using django and it has some available methods only at runtime which cause issues in the

[Pydev-users] Ignoring specific errors in editor

2007-09-02 Thread Lee Connell
I am using django and it has some available methods only at runtime which cause issues in the editor with name completion, it doesn't exist during development so I have a whole bunch of errors in my editor. Is there a way to silence specific errors in the editor?

[Pydev-users] pylons

2007-08-17 Thread Lee Connell
For anyone who knows pylons, is it possible to get autocompletion for the h, c, and g classes? _ Messenger Café — open for fun 24/7. Hot games, cool activities served daily. Visit now.

[Pydev-users] (no subject)

2007-07-22 Thread Lee Connell
I have licensed pydev extensions and don't see the pydev remote debugger. using pydev/ext 1.3.8 eclipse 3.3. _ Missed the show?  Watch videos of the Live Earth Concert on MSN.

[Pydev-users] class variables

2007-07-19 Thread Lee Connell
PyDev 1.3.8Eclipse 3.3Java 1.6Python 2.5Ubuntu FiestyProblem i am having is that pydev doesn't have autocompletion for users_table or base_path. I've attached the full code as well.class HelloWorld:users_table = None base_path = None@cherrypy.expose def index(self):

Re: [Pydev-users] class variables [found cause]

2007-07-19 Thread Lee Connell
The problem happens when importing sqlalchemy. from sqlalchemy import * breaks the class variable completion.The fix here is to explicitly define what you're importing.from sqlalchemy import MetaData, Table, Column, create_engine, Integer, StringFrom: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Thu,

[Pydev-users] mako highlighter for eclipse

2007-07-19 Thread Lee Connell
Anyone on this mailing list capable and willing to create a highlighter for eclipse for use with http://makotemplates.org ? I don't see any available, however this is one for komodo.If someone knows how to get this started I would be willing to help.

[Pydev-users] unresolved imports

2007-07-15 Thread Lee Connell
This is something I constantly have a problem with and I'm not sure if it's something I'm doing wrong or not. I have installed cherrypy and removed my python interpreter and re-added it. Then I also added a forced builtin cherrypy. It cannot resolve anything under cherrypy for instance

Re: [Pydev-users] unresolved imports

2007-07-15 Thread Lee Connell
Ubuntu FiestyEclipse 3.3Pydev 1.3.7Java 1.6I tried using a builtin errno imported it and completion worked fine. No errors in log.Date: Sun, 15 Jul 2007 20:56:36 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Pydev-users] unresolved importsOn 7/15/07, Lee Connell [EMAIL PROTECTED

Re: [Pydev-users] unresolved imports

2007-07-15 Thread Lee Connell
. No errors in log.Date: Sun, 15 Jul 2007 20:56:36 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Pydev-users] unresolved importsOn 7/15/07, Lee Connell [EMAIL PROTECTED] wrote: This is something I constantly have a problem with and I'm not sure if it's something I'm doing wrong

Re: [Pydev-users] configuring src folders

2007-05-28 Thread Lee Connell
that don't resolve but didn't include them here. Anything else I can do to get this to resolve or maybe something i'm doing wrong?Date: Sun, 27 May 2007 18:51:04 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Pydev-users] configuring src foldersOn 5/27/07, Lee Connell [EMAIL PROTECTED] wrote

Re: [Pydev-users] configuring src folders

2007-05-28 Thread Lee Connell
http://sourceforge.net/tracker/index.php?func=detailaid=1727011group_id=85796atid=577329Date: Mon, 28 May 2007 12:39:26 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Pydev-users] configuring src foldersOn 5/28/07, Lee Connell [EMAIL PROTECTED] wrote: from turbogears import

[Pydev-users] configuring src folders

2007-05-27 Thread Lee Connell
Hello,This is probably a stupid question, but I am confused. In this section http://fabioz.com/pydev/manual_101_project_conf2.html it says how to add a src folder. I've done this and there it is a src folder with nothing in it. Am I suppose to import into that src directory an existing

Re: [Pydev-users] configuring src folders

2007-05-27 Thread Lee Connell
have to add turbogears as an external library as well?Date: Sun, 27 May 2007 15:09:31 -0300From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Pydev-users] configuring src foldersOn 5/27/07, Lee Connell [EMAIL PROTECTED] wrote: Hello,This is probably a stupid question, but I am confused

[Pydev-users] workspace

2007-03-17 Thread Lee Connell
while using pydev my imports are all working fine, however I have an issue when I turn my program from terminal. It complains that it can't find any of my imports, I am missing something and just don't know what. My directory structure is: +/src/server __init.py__ mymain.py

[Pydev-users] Unresolved Imports

2007-03-11 Thread Lee Connell
I am using pydev 1.2.9, python 2.5, eclipse 3.2, linux 2.6. I have all my imports resolved except one. I am using Twisted and every import from twisted is fine except when i call from twisted.internet import reactor. It complains that reactor is unresolved. reactor is definitely there as my