[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.

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

2007-07-19 Thread Fabio Zadrozny
Please report that as a bug. Cheers, Fabio On 7/19/07, Lee Connell <[EMAIL PROTECTED]> wrote: 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 Met

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] 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 = [email protected] def index(self):