summaryrefslogtreecommitdiffstats
path: root/g-ed-it/gitAction.py
blob: fa51551d7a26741b942f554a4ffa8f31a73734d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
#-*- coding:utf-8 -*-

#    Copyright 2009 Matthieu Gautier

#    This file is part of g-ed-it.
#
#    g-ed-it is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    any later version.
#
#    g-ed-it is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with g-ed-it.  If not, see <http://www.gnu.org/licenses/>.

import os.path
import gtk
import subprocess

import commitDialog

GLADE_FILE = os.path.join(os.path.dirname(__file__), "git_windows.glade")

class GitAction (object):
	def __init__(self,plugin):
		self.glade_xml = gtk.glade.XML(GLADE_FILE)
		self.commitDialog = commitDialog.CommitDialog(self.glade_xml,plugin)
		self.plugin = plugin
		pass
	
	def commit(self, button, window):
		fileUri = window.get_active_tab().get_document().get_uri_for_display()
		self.commitDialog.run(window,fileUri,True)
	
	def commit_current_file(self, button, window):
		fileUri = window.get_active_tab().get_document().get_uri_for_display()
		text = self.plugin.windowHelpers[window].docBar.commit_text.get_text()
		self.plugin.windowHelpers[window].docBar.commit_text.set_text("")
		if text != "":
			subprocess.call('git-commit -m "'+text+'" '+os.path.basename(fileUri),stdout=subprocess.PIPE,cwd=os.path.dirname(fileUri), shell=True)
			window.emit("active-tab-state-changed")
		else:
			self.commitDialog.run(window,fileUri,False)
	
	def add(self, button, window):
		fileUri = window.get_active_tab().get_document().get_uri_for_display()
		subprocess.call("git-add "+os.path.basename(fileUri),stdout=subprocess.PIPE,cwd=os.path.dirname(fileUri), shell=True)
		window.emit("active-tab-state-changed")
		pass
	
	def diff_head_index(self, button, window):
		fileUri = window.get_active_tab().get_document().get_uri_for_display()
		subprocess.call("git-diff --cached "+os.path.basename(fileUri),stdout=subprocess.PIPE,cwd=os.path.dirname(fileUri), shell=True)
		pass
	
	def diff_index_wt(self, button, window):
		fileUri = window.get_active_tab().get_document().get_uri_for_display()
		subprocess.call("git-diff "+os.path.basename(fileUri),stdout=subprocess.PIPE,cwd=os.path.dirname(fileUri), shell=True)
		pass