~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/widgets/__init__.py

Deglobbed widget imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
 
 
4
 
# pylint: disable-msg=W0401
5
 
 
6
 
"""Canonical widgets.
7
 
 
8
 
These may be fed back into Zope3 at some point.
9
 
"""
10
 
 
11
 
from lp.app.widgets.announcementdate import (
12
 
    IAnnouncementDateWidget, AnnouncementDateWidget)
13
 
from lp.app.widgets.context import IContextWidget, ContextWidget
14
 
from lp.app.widgets.date import (
15
 
    DateWidget, DateTimeWidget, DatetimeDisplayWidget)
16
 
from lp.app.widgets.image import (
17
 
    GotchiTiedWithHeadingWidget, ImageChangeWidget)
18
 
from lp.app.widgets.itemswidgets import *
19
 
from lp.app.widgets.location import LocationWidget
20
 
from lp.app.widgets.owner import IUserWidget, HiddenUserWidget
21
 
from lp.app.widgets.password import PasswordChangeWidget
22
 
from lp.app.widgets.textwidgets import (
23
 
    DelimitedListWidget, LocalDateTimeWidget, LowerCaseTextWidget,
24
 
    StrippedTextWidget, TokensTextWidget, URIWidget)