trouble with models, db config string, and documenting api with sphinx

2010-04-11 Thread Rick Harding
I'm trying to load up my controllers/models and such into my sphinx docs for my app. I can include them fine, but it won't actually load the pages due to: (WARNING/2) autodoc can't import/find module 'qmail_app.controllers.root', it reported error: "'pop(): dictionary is empty'", please check your

Re: New Pylons Project packages

2010-04-11 Thread Rick Harding
On Sun, Apr 11, 2010 at 4:53 PM, cd34 wrote: > When you start a Pylons project, what packages do you usually start > with in your software stack? repoze.who/what from the base and then some custom stuff we reuse for our internal apps. > Is anyone using an IDE for development?  I generally use s

FormAlchemy/fa.jquery demo site

2010-04-11 Thread Gael Pasgrimaud
Hi, You can find a demo site here: http://demo.formalchemy.org/ The demo use fa.jquery. A set of jquery widgets for formalchemy and a custom RESTFull controller include in formalchemy.ext.pylons (in fact his subclass in fa.jquery.pylons) The controller support .json/.xhr format to get datas/forms

Re: question about routes

2010-04-11 Thread Wyatt Baldwin
On Apr 11, 7:00 am, karantan wrote: > and why does pylons implements thing that already exists? What thing or things are you referring to? > On Apr 10, 4:02 pm, Marius Gedminas wrote: > > > > > On Wed, Apr 07, 2010 at 11:16:00PM -0700, Didip Kerabat wrote: > > > Hi all, > > > > I've heard that

Re: New Pylons Project packages

2010-04-11 Thread Gael Pasgrimaud
On Sun, Apr 11, 2010 at 10:53 PM, cd34 wrote: > When you start a Pylons project, what packages do you usually start > with in your software stack? > > I think I'm one of the few using ToscaWidgets - if I didn't have so > much developed in TG2 before I switched to Pylons, I think I would > have use

Re: question about routes

2010-04-11 Thread Mike Orr
Because url_for depends on a global singleton which violates encapsulation and makes it harder to nest applications. Plus the same function does a lot of different things, generating routes by name, or by variable matching, or based on the current URL, or based on a literal URL passed in. These sho

New Pylons Project packages

2010-04-11 Thread cd34
When you start a Pylons project, what packages do you usually start with in your software stack? I think I'm one of the few using ToscaWidgets - if I didn't have so much developed in TG2 before I switched to Pylons, I think I would have used FormAlchemy. I have debated moving to FA. I gave Sprox

Re: question about routes

2010-04-11 Thread karantan
and why does pylons implements thing that already exists? On Apr 10, 4:02 pm, Marius Gedminas wrote: > On Wed, Apr 07, 2010 at 11:16:00PM -0700, Didip Kerabat wrote: > > Hi all, > > > I've heard that url_for() is going to be deprecated in favor of url(). Is > > that correct? > > > That said, I sa