Re: LoudAppeal - First large pylons based company

2008-06-14 Thread Krishgy
Why don't you share your development experience and pylons & third party components used in the web application? It will help to brainstorm myself & may be for others here too. On Jun 13, 12:36 pm, SamDonaldson <[EMAIL PROTECTED]> wrote: > Hello folks. I just wanted to present my company after

Re: Difference between controllers and views?

2008-06-14 Thread Krishgy
For me, there are not much differences between view based approach and the controller based approach. Of course, functions are first class objects in Python. MVC is an abstract concept, a pattern for classifying the data, actions and presentation/view. Languages and frameworks(framework developer

Forum plug-in for pylons?

2008-06-14 Thread Krishgy
Hi, We are developing a website for online deal sharing community. I needed a simple forum for users to post questions get clarifications from the other users & site owners. This is mainly intended to how to use the site and feature suggestions. Similarly we needed a blog for our development blo

Change to AuthKit setup.enable behaviour

2008-06-14 Thread James Gardner
Hi all, I've just checked in some code to the trunk which changes the behaviour of the setup.enable option to AuthKit. If you specify: setup.enable = False in a config file it used to disable the AuthKit middleware. It now also disables all the authorization adaptors too. This is useful if you

WebHelpers with Genshi do not work

2008-06-14 Thread webwurst
Hi! I just tried this example similar to that from http://genshi.edgewall.org/wiki/GenshiRecipes/PylonsWithGenshi#TheHardWay http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml"; xmlns:py="http://genshi.edgewall.org/"; xmlns:xi="http://www.w3.org/2001/XI

Re: WebHelpers with Genshi do not work

2008-06-14 Thread Shannon -jj Behrens
I wonder if the has to be escaped, like . -jj On Sat, Jun 14, 2008 at 12:11 PM, webwurst <[EMAIL PROTECTED]> wrote: > > Hi! > > I just tried this example similar to that from > http://genshi.edgewall.org/wiki/GenshiRecipes/PylonsWithGenshi#TheHardWay > > PUBLIC "-//W3C//DTD XHTML 1.0 Str

Re: Forum plug-in for pylons?

On Sat, Jun 14, 2008 at 4:00 AM, Krishgy <[EMAIL PROTECTED]> wrote: > > Hi, > > We are developing a website for online deal sharing community. > > I needed a simple forum for users to post questions get clarifications > from the other users & site owners. This is mainly intended to how to > use th

trouble passing query params into https decorator

sample code: --- @https(action='action', p1=request.params.get('param1', ''), p2=request.params.get('p2', '')) def action(self) { return request.params.get('p1', '') + request.params.get('p2', '') } - my environment: ---

Re: Difference between controllers and views?

On Fri, Jun 13, 2008 at 6:53 AM, askel <[EMAIL PROTECTED]> wrote: > > -jj, > > Isn't that enforced by Routes that controllers must be classes? I > remember some discussion about possibility of using any other > dispatching library/method in Pylons. It was something about new WSGI > environment key

Re: Difference between controllers and views?

On Thu, Jun 12, 2008 at 8:44 AM, Alberto Valverde <[EMAIL PROTECTED]> wrote: >> What's the practical difference between controller based approach and >> views based one? Eg. Django views, and controllers in Pylons? It >> doesn't seem that much different, so why not make all controller >> actions