summaryrefslogtreecommitdiffstats
path: root/src/fringlib/launch.py
diff options
context:
space:
mode:
authorFrederic Back <fredericback@gmail.com>2006-09-28 08:57:12 +0000
committerFrederic Back <fredericback@gmail.com>2006-09-28 08:57:12 +0000
commite2ef77bbf4b992f454c840a0e8682e70bde0aa31 (patch)
treedbebed3e97e53630d95c01cf91bd47baee9fe6ba /src/fringlib/launch.py
parentd848e98ecb23b934c84706722d67d275978efb73 (diff)
* "merged" c_walker "branch" to trunk.
git-svn-id: file:///home/lennart/svn/public/fring/trunk@41 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()