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!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/pylons-discuss
-~----------~----~----~----~------~----~------~--~---
