My favorites | Sign in
Project Home Downloads Wiki Source
Project Information
Members
Links

Introduction

Samples using the python web framework Pylons like QuickWiki, Form Handling, etc...

This project offers some basic web apps ready to use. Other samples are welcome.

QuickStart

http://wiki.pylonshq.com/display/pylonsdocs/Getting+Started

QuickSQL

http://wiki.pylonshq.com/display/pylonsdocs/Using+SQLAlchemy+with+Pylons

QuickWiki

http://wiki.pylonshq.com/display/pylonsdocs/QuickWiki+Tutorial

Forms

Form Handling

http://wiki.pylonshq.com/display/pylonsdocs/Form+Handling

Form Alchemy Handling

http://code.google.com/p/formalchemy/

Form Paginate

http://paginate.workaround.org/

Use this import instead of webhelpers only

#import webhelpers
from webhelpers import *
from webhelpers.rails import *

re format the tag span for better rendering in the paginate library

...
text_in = '..'
..
text_out = tag('span', open=True, **dotdot_attr)
text_out += text_in + tag('/span', open=True)
...

Ajax

Getting Started with AJAX

http://wiki.pylonshq.com/display/pylonscookbook/Getting+started+with+AJAX

Authentication

Homegrown Authentication

http://wiki.pylonshq.com/display/pylonscookbook/Authentication+and+Authorization

AuthKit

http://wiki.pylonshq.com/display/authkitcookbook/Home

  1. http://localhost:5000/auth/public
  2. http://localhost:5000/auth/private
  3. http://localhost:5000/auth/signout

n.b.: need the svn version of AuthKit for SQLAlchemy authentication

Other Pylons Samples

Flickr Search

http://wiki.pylonshq.com/display/pylonsdocs/Flickr+Search+Tutorial

Google App Engine

My Passwords

http://code.google.com/appengine/docs/gettingstarted/

More Google Samples

http://code.google.com/p/google-app-engine-samples/

Powered by Google Project Hosting