From e39436576c68e70ac70d4ee108860d411b52d0bb Mon Sep 17 00:00:00 2001 From: Frederic Back Date: Wed, 27 Sep 2006 17:19:35 +0000 Subject: * added gnomevfs support * added menu entry to choose walking method * merged back from trunk * UI now uses gnomevfs everywhere git-svn-id: file:///home/lennart/svn/public/fring/branches/c_walker@33 d0d2c35f-0a1e-0410-abeb-dabff30a67ee --- src/fringlib/launch.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/fringlib/launch.py') diff --git a/src/fringlib/launch.py b/src/fringlib/launch.py index 8e3b107..f420768 100755 --- a/src/fringlib/launch.py +++ b/src/fringlib/launch.py @@ -17,11 +17,12 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA. -# Copyright Lennart Poettering, 2006 +# Copyright Lennart Poettering, Frederic Back 2006 import sys, os import gtk import fringui +import gnomevfs if __name__ == "__main__": @@ -30,6 +31,10 @@ if __name__ == "__main__": else: tree_path = os.path.expanduser("~") + # first parameter can be a gnomevfs uri or a local path + #try: uri = URI(tree_path) + #except: uri = get_uri_from_local_path(tree_path) + ui = fringui.UI(tree_path) gtk.gdk.threads_init() -- cgit