summaryrefslogtreecommitdiffstats
path: root/plugins/printer.py.in
blob: 02fdffedb2c2bc6c76a4e1417e92b256ea6cd723 (plain)
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
# -*- coding: utf-8 -*-
# -*- python -*-
# Copyright (C) 2007 by Jason Whitlark
#
# This file may be distributed and/or modified under the terms of
# the GNU General Public License version 2 as published by
# the Free Software Foundation.
# This file is distributed without any warranty; without even the implied
# warranty of merchantability or fitness for a particular purpose.
# See "COPYING" in the source distribution for more information.
#
# $Id$
#

from sdapplet.pluginutils import *

class plugin_printer:
    def __init__(self):
        self.service_type = ["_ipp._tcp", "_pdl-datastream._tcp", "_printer._tcp"]
        self.author = "Jason Whitlark"
        self.description = "Direct user to printer configuration applet"

    def connect(self, use_host_names, name, stype, hostname, address, port, txts):
	msg = """Detected printers can be configured via the System->Administration->Printing menu"""
	message(msg)

def load():
    return plugin_printer()