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
|
# Copyright 2009, 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=W0611
"""All the interfaces that are exposed through the webservice.
There is a declaration in ZCML somewhere that looks like:
<webservice:register module="lp.translations.interfaces.webservice" />
which tells `lazr.restful` that it should look for webservice exports here.
"""
__all__ = [
'IHasTranslationImports',
'IPOFile',
'IPOTemplate',
'ITranslationGroup',
'ITranslationImportQueue',
'ITranslationImportQueueEntry',
]
from lp.translations.interfaces.hastranslationimports import (
IHasTranslationImports,
)
from lp.translations.interfaces.pofile import IPOFile
from lp.translations.interfaces.potemplate import IPOTemplate
from lp.translations.interfaces.translationgroup import (
ITranslationGroup,
ITranslationGroupSet,
)
from lp.translations.interfaces.translationimportqueue import (
ITranslationImportQueue,
ITranslationImportQueueEntry,
)
# XXX: JonathanLange 2010-11-09 bug=673083: Legacy work-around for circular
# import bugs. Break this up into a per-package thing.
from canonical.launchpad.interfaces import _schema_circular_imports
_schema_circular_imports
|