formencode.api.Validator:
The base class of most validators.
formencode.api.FancyValidator:
FancyValidator is the (abstract) superclass for various validators
and converters.
bodhi.validators.CVEValidator:
**Messages**
``badType``:
The input must be a string (not a ``%(type)s``: ``%(value)r``)
``empty``:
Please enter a value
``invalid_cve``:
Invalid CVE(s).
bodhi.validators.BugValidator:
**Messages**
``badType``:
The input must be a string (not a ``%(type)s``: ``%(value)r``)
``empty``:
Please enter a value
``invalid_bug``:
Invalid bug(s).
formencode.schema.Schema:
A schema validates a dictionary of values, applying different
validators (be key) to the different values.
turbogears.validators.Schema:
A Schema validator
**Messages**
``badType``:
The input must be a string (not a ``%(type)s``: ``%(value)r``)
``empty``:
Please enter a value
``missingValue``:
Missing value
``noneType``:
The input must be a string (not None)
``notExpected``:
The input field ``%(name)s`` was not expected.
bodhi.validators.AutoCompleteValidator:
**Messages**
``badType``:
The input must be a string (not a ``%(type)s``: ``%(value)r``)
``empty``:
Please enter a value
``missingValue``:
Missing value
``noneType``:
The input must be a string (not None)
``notExpected``:
The input field ``%(name)s`` was not expected.
turbogears.controllers.Controller:
Base class for a web application's controller.