summaryrefslogtreecommitdiffstats
path: root/plugins/nautilus.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/nautilus.py.in')
-rw-r--r--plugins/nautilus.py.in50
1 files changed, 50 insertions, 0 deletions
diff --git a/plugins/nautilus.py.in b/plugins/nautilus.py.in
new file mode 100644
index 0000000..6783bbe
--- /dev/null
+++ b/plugins/nautilus.py.in
@@ -0,0 +1,50 @@
+# -*- coding: UTF-8 -*-
+# -*- python -*-
+# Copyright (C) 2005 by Sebastien Estienne
+#
+# 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 *
+
+import gnome
+
+class plugin_nautilus:
+ def __init__(self):
+ self.service_type = ["_http._tcp", "_ftp._tcp" , "_https._tcp", "_ftps._tcp" , "_webdav._tcp", "_webdavs._tcp", "_sftp-ssh._tcp"]
+ self.author = "Sébastien Estienne"
+ self.description = "Accessing zeroconf services using Nautilus"
+
+ def connect(self, use_host_names, name, stype, hostname, address, port, txts):
+ if use_host_names == True:
+ address = hostname
+ print "connecting using nautilus"
+ 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)
+ if stype == "_ftp._tcp":
+ url = build_url("ftp",address,port, path, username,password)
+ if stype == "_ftps._tcp":
+ url = build_url("ftps",address,port, path, username,password)
+ if stype == "_sftp-ssh._tcp":
+ url = build_url("sftp",address,port, path, username,password)
+ if stype == "_webdav._tcp":
+ url = build_url("dav",address,port, path, username,password)
+ if stype == "_webdavs._tcp":
+ url = build_url("davs",address,port, path, username,password)
+ gnome.url_show(url)
+
+
+def load():
+ return plugin_nautilus()