1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# Copyright 2010-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""All the interfaces that are exposed through the webservice.
There is a declaration in ZCML somewhere that looks like:
<webservice:register module="lp.soyuz.interfaces.webservice" />
which tells `lazr.restful` that it should look for webservice exports here.
"""
__all__ = [
'AlreadySubscribed',
'ArchiveDisabled',
'ArchiveNotPrivate',
'CannotBeRescored',
'CannotCopy',
'CannotSwitchPrivacy',
'CannotUploadToArchive',
'CannotUploadToPPA',
'CannotUploadToPocket',
'ComponentNotFound',
'DuplicatePackagesetName',
'IArchive',
'IArchiveDependency',
'IArchivePermission',
'IArchiveSubscriber',
'IBinaryPackageBuild',
'IBinaryPackagePublishingHistory',
'IBinaryPackageReleaseDownloadCount',
'IDistroArchSeries',
'IPackageUpload',
'IPackageset',
'IPackagesetSet',
'IProcessor',
'IProcessorFamily',
'IProcessorFamilySet',
'IProcessorSet',
'ISourcePackagePublishingHistory',
'IncompatibleArguments',
'InsufficientUploadRights',
'InvalidComponent',
'InvalidPocketForPPA',
'InvalidPocketForPartnerArchive',
'NoRightsForArchive',
'NoRightsForComponent',
'NoSuchPPA',
'NoSuchPackageSet',
'NoTokensForTeams',
'PocketNotFound',
'VersionRequiresName',
]
# XXX: JonathanLange 2010-11-09 bug=673083: Legacy work-around for circular
# import bugs. Break this up into a per-package thing.
from lp import _schema_circular_imports
from lp.services.webservice.apihelpers import (
patch_collection_property,
patch_plain_parameter_type,
patch_reference_property,
)
from lp.soyuz.interfaces.archive import (
AlreadySubscribed,
ArchiveDisabled,
ArchiveNotPrivate,
CannotCopy,
CannotSwitchPrivacy,
CannotUploadToArchive,
CannotUploadToPocket,
CannotUploadToPPA,
ComponentNotFound,
IArchive,
InsufficientUploadRights,
InvalidComponent,
InvalidPocketForPartnerArchive,
InvalidPocketForPPA,
NoRightsForArchive,
NoRightsForComponent,
NoSuchPPA,
NoTokensForTeams,
PocketNotFound,
VersionRequiresName,
)
from lp.soyuz.interfaces.archivedependency import IArchiveDependency
from lp.soyuz.interfaces.archivepermission import IArchivePermission
from lp.soyuz.interfaces.archivesubscriber import IArchiveSubscriber
from lp.soyuz.interfaces.binarypackagebuild import (
CannotBeRescored,
IBinaryPackageBuild,
)
from lp.soyuz.interfaces.binarypackagerelease import (
IBinaryPackageReleaseDownloadCount,
)
from lp.soyuz.interfaces.buildrecords import IncompatibleArguments
from lp.soyuz.interfaces.distroarchseries import IDistroArchSeries
from lp.soyuz.interfaces.packageset import (
DuplicatePackagesetName,
IPackageset,
IPackagesetSet,
NoSuchPackageSet,
)
from lp.soyuz.interfaces.processor import (
IProcessor,
IProcessorFamily,
IProcessorFamilySet,
IProcessorSet,
)
from lp.soyuz.interfaces.publishing import (
IBinaryPackagePublishingHistory,
ISourcePackagePublishingHistory,
)
from lp.soyuz.interfaces.queue import IPackageUpload
_schema_circular_imports
# IProcessor
patch_reference_property(
IProcessor, 'family', IProcessorFamily)
patch_collection_property(
IArchive, 'enabled_restricted_families', IProcessorFamily)
patch_plain_parameter_type(
IArchive, 'enableRestrictedFamily', 'family', IProcessorFamily)
|