~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/revision.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-15 10:35:32 UTC
  • mfrom: (14517.1.3 new-bzr)
  • Revision ID: launchpad@pqm.canonical.com-20111215103532-q2m4uyk0r8ugiayx
[r=sinzui, poolie][bug=509016] Always load foreign plugins,
 but restrict probers to avoid accidentally opening foreign branches.
 (re-land)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
# pylint: disable-msg=E0611,W0212
60
60
    sqlvalues,
61
61
    )
62
62
from canonical.launchpad.helpers import shortlist
63
 
from lp.services.database.lpstorm import (
64
 
    IMasterStore,
65
 
    IStore,
 
63
from canonical.launchpad.interfaces.emailaddress import (
 
64
    EmailAddressStatus,
 
65
    IEmailAddressSet,
66
66
    )
 
67
from canonical.launchpad.interfaces.lpstorm import IMasterStore, IStore
67
68
from canonical.launchpad.webapp.interfaces import (
68
69
    DEFAULT_FLAVOR,
69
70
    IStoreSelector,
81
82
from lp.registry.interfaces.product import IProduct
82
83
from lp.registry.interfaces.projectgroup import IProjectGroup
83
84
from lp.registry.model.person import ValidPersonCache
84
 
from lp.services.identity.interfaces.emailaddress import (
85
 
    EmailAddressStatus,
86
 
    IEmailAddressSet,
87
 
    )
88
85
 
89
86
 
90
87
class Revision(SQLBase):