~ubuntu-branches/ubuntu/trusty/zope.app.form/trusty

« back to all changes in this revision

Viewing changes to src/zope/app/form/browser/source.py

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2010-12-02 01:37:03 UTC
  • Revision ID: james.westby@ubuntu.com-20101202013703-fvbpiae1ok9v73we
Tags: upstream-4.0.2
ImportĀ upstreamĀ versionĀ 4.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2004 Zope Corporation and Contributors.
 
4
# All Rights Reserved.
 
5
#
 
6
# This software is subject to the provisions of the Zope Public License,
 
7
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 
8
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 
9
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
10
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 
11
# FOR A PARTICULAR PURPOSE.
 
12
#
 
13
##############################################################################
 
14
"""Source widgets support
 
15
 
 
16
$Id: source.py 107398 2009-12-30 22:26:34Z faassen $
 
17
"""
 
18
# BBB
 
19
from zope.formlib.source import (
 
20
    SourceDisplayWidget,
 
21
    SourceSequenceDisplayWidget,
 
22
    SourceInputWidget,
 
23
    SourceListInputWidget,
 
24
    IterableSourceVocabulary,
 
25
    SourceSelectWidget,
 
26
    SourceDropdownWidget,
 
27
    SourceRadioWidget,
 
28
    SourceMultiSelectWidget,
 
29
    SourceOrderedMultiSelectWidget,
 
30
    SourceMultiSelectSetWidget,
 
31
    SourceMultiSelectFrozenSetWidget,
 
32
    SourceMultiCheckBoxWidget)