File: __init__.py

package info (click to toggle)
quixote 1.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,000 kB
  • ctags: 1,081
  • sloc: python: 5,245; ansic: 1,297; sh: 77; makefile: 62
file content (18 lines) | stat: -rw-r--r-- 896 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""$URL: svn+ssh://svn/repos/trunk/quixote/form2/__init__.py $
$Id: __init__.py 23720 2004-03-17 16:45:59Z nascheme $

The web interface framework, consisting of Form and Widget base classes
(and a bunch of standard widget classes recognized by Form).
Application developers will typically create a Form instance each
form in their application; each form object will contain a number
of widget objects.  Custom widgets can be created by inheriting
and/or composing the standard widget classes.
"""

from quixote.form2.form import Form, FormTokenWidget
from quixote.form2.widget import Widget, StringWidget, FileWidget, \
    PasswordWidget, TextWidget, CheckboxWidget, RadiobuttonsWidget, \
    SingleSelectWidget, SelectWidget, OptionSelectWidget, \
    MultipleSelectWidget, SubmitWidget, HiddenWidget, \
    FloatWidget, IntWidget, subname, WidgetValueError, CompositeWidget, \
    WidgetList