summaryrefslogtreecommitdiffstats
path: root/src/fringlib/launch.py
diff options
context:
space:
mode:
authorFrederic Back <fredericback@gmail.com>2006-09-27 17:19:35 +0000
committerFrederic Back <fredericback@gmail.com>2006-09-27 17:19:35 +0000
commite39436576c68e70ac70d4ee108860d411b52d0bb (patch)
treee9b63c2e8374b99639694d67afd3349041cb893a /src/fringlib/launch.py
parent5bcf37b8944759e09fe45c341a555757b53a6e20 (diff)
* 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
Diffstat (limited to 'src/fringlib/launch.py')
-rwxr-xr-xsrc/fringlib/launch.py7
1 files changed, 6 insertions, 1 deletions
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()