Re: How decoupled are the Python frameworks?

2009-12-09 Thread mdipierro
Interesting post. I would like to make some comments about design decisions that went into web2py: - For each app Model/View/Controllers/Language Files/Static Files/ Modules/Cron Tasks are stored in separated folders - You can code only the models (no controllers and no view) and you get a fully

Re: How decoupled are the Python frameworks?

2009-12-08 Thread Martin Sand Christensen
J Kenneth King ja...@agentultra.com writes: [...] (though it sounds like cherrypy would be very good at separating dispatching from application code). True. In CherryPy, each page is represented by one method (the 'default' method is an exception, but that's not for this discussion). This

Re: How decoupled are the Python frameworks?

2009-12-08 Thread Lie Ryan
On 12/8/2009 9:11 PM, Martin Sand Christensen wrote: If the user isn't currently signed in to our CAS, he'll be redirected to the sign-in page and, after signing in, is returned to the page he originally requested. The role decorator checks his privileges (based on his CAS credentials) and

Re: How decoupled are the Python frameworks?

2009-12-08 Thread Diez B. Roggisch
shocks wrote: Hi I'm getting back into Python after a long break. I've been developing large enterprise apps solely with Adobe Flex (ActionScript) for the past couple years. During that time I've used a number of 'MVC' frameworks to glue the bits together - among them Cairngorm, a

Re: How decoupled are the Python frameworks?

2009-12-08 Thread Martin Sand Christensen
Lie Ryan lie.1...@gmail.com writes: In the end, it is the developer's responsibility not to write something too tightly coupled with their framework, isn't it? (or at least to minimize the framework-specific code to a certain area) That's a good summary of my point. However, I have very

How decoupled are the Python frameworks?

2009-12-07 Thread shocks
Hi I'm getting back into Python after a long break. I've been developing large enterprise apps solely with Adobe Flex (ActionScript) for the past couple years. During that time I've used a number of 'MVC' frameworks to glue the bits together - among them Cairngorm, a modified implementation of

Re: How decoupled are the Python frameworks?

2009-12-07 Thread J Kenneth King
shocks benmari...@googlemail.com writes: Hi I'm getting back into Python after a long break. I've been developing large enterprise apps solely with Adobe Flex (ActionScript) for the past couple years. During that time I've used a number of 'MVC' frameworks to glue the bits together -