aboutsummaryrefslogtreecommitdiff
path: root/ventoo
diff options
context:
space:
mode:
Diffstat (limited to 'ventoo')
-rwxr-xr-xventoo34
1 files changed, 34 insertions, 0 deletions
diff --git a/ventoo b/ventoo
new file mode 100755
index 0000000..d7d9779
--- /dev/null
+++ b/ventoo
@@ -0,0 +1,34 @@
+#!/usr/bin/env python
+
+import sys
+import os.path as osp
+import ventoo.main
+import augeas
+import shutils
+import os
+
+sandboxDir = '/'
+
+if len(sys.argv) > 1:
+ sandboxDir = sys.argv[1]
+if not osp.isdir(sandboxDir):
+ print sandboxDir + " is not a directory."
+ sys.exit(0)
+
+print 'Starting augeas...'
+ #None could be a 'loadpath'
+a = augeas.Augeas(sandboxDir, None, augeas.Augeas.SAVE_NEWFILE)
+print 'Creating window...'
+
+if sandboxDir == '/':
+ pass
+#Note, it IS possible to create mutiple windows and augeas
+#instances to edit multiple "roots" at the same time.
+window = ventoo.main.MainWindow(a)
+window.show_all()
+window.hideApplyDiffButton() #TODO: overload show_all to preserve apply button state.
+
+#clear the diff storage place...
+shutil.rmtree(ventoo.augeas_utils.getDiffRoot(), True)
+os.makedirs(ventoo.augeas_utils.getDiffRoot())
+gtk.main()