~jamalta/launchpad/bug-127489

« back to all changes in this revision

Viewing changes to lib/canonical/launchpad/vocabularies/dbobjects.py

[r=sinzui][ui=none] All names defined in lp.registry.model are no
        longer available under canonical.launchpad.database

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
from zope.schema.vocabulary import SimpleTerm, SimpleVocabulary
55
55
 
56
56
from lp.code.model.branch import Branch
57
 
from canonical.launchpad.database import (
58
 
    Archive, Bounty, Bug, BugTracker, BugWatch, Component, Country,
59
 
    Distribution, DistroArchSeries, DistroSeries, Language, Person,
60
 
    Processor, ProcessorFamily, ProductSeries, SourcePackageRelease,
61
 
    Specification, Sprint)
 
57
from lp.bugs.model.bug import Bug
 
58
from lp.bugs.model.bugtracker import BugTracker
 
59
from canonical.launchpad.database.bounty import Bounty
 
60
from canonical.launchpad.database import Archive, BugWatch
 
61
from lp.soyuz.model.component import Component
 
62
from lp.soyuz.model.distroarchseries import DistroArchSeries
 
63
from lp.soyuz.model.processor import Processor, ProcessorFamily
 
64
from lp.soyuz.model.sourcepackagerelease import SourcePackageRelease
 
65
from lp.services.worlddata.model.country import Country
 
66
from lp.services.worlddata.model.language import Language
 
67
from lp.registry.model.distribution import Distribution
 
68
from lp.registry.model.distroseries import DistroSeries
 
69
from lp.registry.model.person import Person
 
70
from lp.registry.model.productseries import ProductSeries
 
71
from lp.blueprints.model.specification import Specification
 
72
from lp.blueprints.model.sprint import Sprint
62
73
from lp.translations.model.languagepack import LanguagePack
63
74
from lp.translations.model.potemplate import POTemplate
64
75
from lp.translations.model.translationgroup import TranslationGroup