~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/vocabularies.py

  • Committer: Steve Kowalik
  • Date: 2011-09-13 05:23:16 UTC
  • mto: This revision was merged to the branch mainline in revision 13939.
  • Revision ID: stevenk@ubuntu.com-20110913052316-hl7fzgsklq9jakwq
Chip away at canonical.lazr a little more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
from operator import attrgetter
64
64
 
 
65
from lazr.restful.interfaces import IReference
 
66
from lazr.restful.utils import safe_hasattr
65
67
from sqlobject import (
66
68
    AND,
67
69
    CONTAINSSTRING,
95
97
    removeSecurityProxy,
96
98
    )
97
99
 
98
 
from lazr.restful.interfaces import IReference
99
 
 
100
100
from canonical.database.sqlbase import (
101
101
    quote,
102
102
    quote_like,
131
131
    SQLObjectVocabularyBase,
132
132
    VocabularyFilter,
133
133
    )
134
 
from canonical.lazr.utils import safe_hasattr
135
134
from lp.app.browser.tales import DateTimeFormatterAPI
136
135
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
137
136
from lp.blueprints.interfaces.specification import ISpecification