Mercurial > genshi > mirror
view examples/tutorial/geddit/form.py @ 633:f779e566884d trunk
GenshiTutorial: add body class to show that the ''@*'' XPath in the match template works.
author | cmlenz |
---|---|
date | Wed, 05 Sep 2007 12:39:56 +0000 |
parents | 756e7418e10c |
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)