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
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""Adapters used in the Answer Tracker."""
__metaclass__ = type
__all__ = []
from lp.answers.interfaces.faqtarget import IFAQTarget
def question_to_questiontarget(question):
"""Adapts an IQuestion to its IQuestionTarget."""
return question.target
def series_to_questiontarget(series):
"""Adapts an IDistroSeries or IProductSeries into an IQuestionTarget."""
return series.parent
def sourcepackagerelease_to_questiontarget(sourcepackagerelease):
"""Adapts an ISourcePackageRelease into an IQuestionTarget."""
return sourcepackagerelease.distrosourcepackage
def sourcepackage_to_questiontarget(sourcepackage):
"""Adapts an ISourcePackage into an IQuestionTarget."""
return sourcepackage.distribution_sourcepackage
def question_to_faqtarget(question):
"""Adapt an IQuestion into an IFAQTarget.
It adapts the question's target to IFAQTarget.
"""
return IFAQTarget(question.target)
def distrosourcepackage_to_faqtarget(distrosourcepackage):
"""Adapts an `IDistributionSourcePackage` into an `IFAQTarget`."""
return distrosourcepackage.distribution
def sourcepackage_to_faqtarget(sourcepackage):
"""Adapts an `ISourcePackage` into an `IFAQTarget`."""
return sourcepackage.distribution
def faq_to_faqtarget(faq):
"""Adapts an `IFAQ` into an `IFAQTarget`."""
return faq.target
|