app/django/newforms/__init__.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 23 Sep 2008 19:20:57 +0000
changeset 188 27ed1a09c98d
parent 54 03e267d67478
permissions -rw-r--r--
Changes in TinyMCE widget in custom_widgets.py based on review comments. Patch by: Pawel Solyga Review url: http://code.google.com/p/soc/source/detail?r=550

"""
Django validation and HTML form handling.

TODO:
    Default value for field
    Field labels
    Nestable Forms
    FatalValidationError -- short-circuits all other validators on a form
    ValidationWarning
    "This form field requires foo.js" and form.js_includes()
"""

from util import ValidationError
from widgets import *
from fields import *
from forms import *
from models import *