2
# This file is part of Checkbox.
4
# Copyright 2008 Canonical Ltd.
6
# Checkbox is free software: you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation, either version 3 of the License, or
9
# (at your option) any later version.
11
# Checkbox is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
16
# You should have received a copy of the GNU General Public License
17
# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.
19
from checkbox.plugin import Plugin
22
class AttachmentInfo(Plugin):
24
def register(self, manager):
25
super(AttachmentInfo, self).register(manager)
27
self._manager.reactor.call_on("prompt-attachment",
28
self.prompt_attachment)
29
self._manager.reactor.call_on("report-attachment",
30
self.report_attachment, -10)
32
def report_attachment(self, attachment):
33
attachment["type"] = "attachment"
35
def prompt_attachment(self, interface, attachment):
36
self._manager.reactor.fire("prompt-shell", interface, attachment)
39
factory = AttachmentInfo