11 messages in com.googlegroups.pylons-discussRe: Pylons 0.9 and Announcements
FromSent OnAttachments
Ben Bangert21 Jul 2006 21:25 
myha...@gmail.com21 Jul 2006 22:16 
Ben Bangert22 Jul 2006 20:38 
Nicholas Piël23 Jul 2006 04:19 
iGL23 Jul 2006 06:50 
Alexandre CONRAD24 Jul 2006 01:19 
Matt Feifarek24 Jul 2006 11:20 
Ben Bangert25 Jul 2006 10:25 
rikl...@gmail.com27 Jul 2006 13:27 
Ben Bangert27 Jul 2006 14:41 
Ben Bangert27 Jul 2006 14:43 
Subject:Re: Pylons 0.9 and Announcements
From:Matt Feifarek (matt@gmail.com)
Date:07/24/2006 11:20:41 AM
List:com.googlegroups.pylons-discuss

On 7/22/06, Ben Bangert <be@groovie.org> wrote:

I've updated and uploaded a revised set of docs for 0.9, available here: http://pylonshq.com/docs/0.9/index.html

Thanks for that, Ben.

Just a nit on this doc: **http://dev.pylonshq.com/docs/0.9/getting_started.html

Near the end, there is a formatting error that confuses the syntax:

def app_globals_test(self): if g.message == 'Hello':m.write(g.message) g.message = 'Hello World!'else:m.write(g.message)

Of course, it should read:

def app_globals_test(self): if g.message == 'Hello':m.write(g.message) g.message = 'Hello World!'else:m.write(g.message)

That gave me a hiccup for a moment; otherwise the doc is excellent!