Mercurial > genshi > genshi-test
view examples/tutorial/geddit/form.py @ 924:3c09c8d8a578
Pull up r1146 to trunk.
Addresses #399
author | jruigrok |
---|---|
date | Mon, 13 Dec 2010 19:07:59 +0000 |
parents | 71d3edd302ae |
children |
line wrap: on
line source
from formencode import Schema, validators class LinkForm(Schema): username = validators.UnicodeString(not_empty=True) url = validators.URL(not_empty=True, add_http=True, check_exists=False) title = validators.UnicodeString(not_empty=True) class CommentForm(Schema): username = validators.UnicodeString(not_empty=True) content = validators.UnicodeString(not_empty=True)