summaryrefslogtreecommitdiffstats
path: root/plugins/website_browser.py.in
blob: 70353e43932e7c95f6af034d261eddb643a9fb00 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- 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: nautilus.py.in 115 2006-08-06 23:52:31Z sebest $
#

from sdapplet.pluginutils import *
import subprocess
import webbrowser


class plugin_website_browser:
    def __init__(self):
        self.service_type = ["_http._tcp",  "_https._tcp"]
        self.author = "Jason Whitlark"
        self.description = "Accessing zeroconf web sites using user's preferred browser"

    def connect(self, use_host_names, name, stype, hostname, address, port, txts):
        if use_host_names == True:
            address = hostname
        print "connecting using firefox"
        path = get_txt_value(txts,"path")
        username = get_txt_value(txts,"u")
        password = get_txt_value(txts,"p")
        if stype == "_http._tcp":
            url = build_url("http",address,port, path, username,password)
        if stype == "_https._tcp":
            url = build_url("https",address,port, path, username,password)

	webbrowser.open(url)

def load():
    return plugin_website_browser()