Mercurial > genshi > mirror
view examples/tutorial/geddit/form.py @ 893:b8bf0a7c0655 trunk
i18n: Another unit test related to #380.
author | cmlenz |
---|---|
date | Wed, 21 Apr 2010 10:58:49 +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)