summaryrefslogtreecommitdiffstats
path: root/g-ed-it
diff options
context:
space:
mode:
Diffstat (limited to 'g-ed-it')
-rw-r--r--g-ed-it/commitDialog.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/g-ed-it/commitDialog.py b/g-ed-it/commitDialog.py
index 61d4304..fa2a8e8 100644
--- a/g-ed-it/commitDialog.py
+++ b/g-ed-it/commitDialog.py
@@ -3,6 +3,8 @@
import os
+import subprocess
+
class CommitDialog (object):
def __init__(self,window,glade_xml):
@@ -39,7 +41,14 @@ class CommitDialog (object):
def on_commit_text_changed(self, commit_text_entry):
pass
- def show(self):
+ def show(self,fileName=None):
+ self.fileName = fileName
+ if self.fileName:
+ templateMsg = subprocess.Popen(["git-status","-s",os.path.basename(fileName)],stdout=subprocess.PIPE,cwd=os.path.dirname(fileName)).communicate()[0]
+ else:
+ cwd = os.path.dirname(self.window.get_active_document().get_uri_for_display())
+ templateMsg = subprocess.Popen(["git-status","-s"],stdout=subprocess.PIPE,cwd=cwd).communicate()[0]
+ self.commit_text_box.get_buffer().set_text(templateMsg)
self.commit_dialog.show()