14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
19
pygtk.require("2.0")
32
from bzrlib import version_info
34
if version_info < (0, 9):
35
# function deprecated after 0.9
36
from bzrlib.delta import compare_trees
38
28
import bzrlib.errors as errors
39
from bzrlib.workingtree import WorkingTree
30
from dialog import error_dialog
31
from olive import gladefile
42
34
""" Display Commit dialog and perform the needed actions. """
43
def __init__(self, gladefile, comm, dialog):
35
def __init__(self, wt, wtpath):
44
36
""" Initialize the Commit dialog. """
45
self.gladefile = gladefile
46
self.glade = gtk.glade.XML(self.gladefile, 'window_commit', 'olive-gtk')
48
# Communication object
37
self.glade = gtk.glade.XML(gladefile, 'window_commit', 'olive-gtk')
53
42
# Get some important widgets
54
43
self.window = self.glade.get_widget('window_commit')
55
44
self.checkbutton_local = self.glade.get_widget('checkbutton_commit_local')
56
45
self.textview = self.glade.get_widget('textview_commit')
57
46
self.file_view = self.glade.get_widget('treeview_commit_select')
59
# Check if current location is a branch
61
(self.wt, path) = WorkingTree.open_containing(self.comm.get_path())
62
branch = self.wt.branch
63
except errors.NotBranchError:
69
file_id = self.wt.path2id(path)
47
self.pending_label = self.glade.get_widget('label_commit_pending')
48
self.pending_view = self.glade.get_widget('treeview_commit_pending')
50
file_id = self.wt.path2id(wtpath)
71
52
self.notbranch = False
72
53
if file_id is None:
77
58
self.old_tree = self.wt.branch.repository.revision_tree(self.wt.branch.last_revision())
78
if version_info < (0, 9):
79
self.delta = compare_trees(self.old_tree, self.wt)
81
self.delta = self.wt.changes_from(self.old_tree)
59
self.delta = self.wt.changes_from(self.old_tree)
62
self.pending = self._pending_merges(self.wt)
83
64
# Dictionary for signal_autoconnect
84
65
dic = { "on_button_commit_commit_clicked": self.commit,
90
71
# Create the file list
91
72
self._create_file_view()
73
# Create the pending merges
74
self._create_pending_merges()
94
77
""" Display the Push dialog. """
96
self.dialog.error_dialog(_('Directory is not a branch'),
97
_('You can perform this action only in a branch.'))
79
error_dialog(_('Directory is not a branch'),
80
_('You can perform this action only in a branch.'))
100
from olive.backend.info import is_checkout
101
if is_checkout(self.comm.get_path()):
83
if self.wt.branch.get_bound_location() is not None:
102
84
# we have a checkout, so the local commit checkbox must appear
103
85
self.checkbutton_local.show()
88
# There are pending merges, file selection not supported
89
self.file_view.set_sensitive(False)
92
self.pending_view.set_sensitive(False)
105
94
self.textview.modify_font(pango.FontDescription("Monospace"))
106
95
self.window.show()
109
# This code is from Jelmer Vernooij's bzr-gtk branch
110
98
def _create_file_view(self):
111
99
self.file_store = gtk.ListStore(gobject.TYPE_BOOLEAN,
112
100
gobject.TYPE_STRING,
134
122
for path, id, kind, text_modified, meta_modified in self.delta.modified:
135
123
self.file_store.append([ True, path, _('modified') ])
125
def _create_pending_merges(self):
126
liststore = gtk.ListStore(gobject.TYPE_STRING,
129
self.pending_view.set_model(liststore)
131
self.pending_view.append_column(gtk.TreeViewColumn(_('Date'),
132
gtk.CellRendererText(), text=0))
133
self.pending_view.append_column(gtk.TreeViewColumn(_('Committer'),
134
gtk.CellRendererText(), text=1))
135
self.pending_view.append_column(gtk.TreeViewColumn(_('Summary'),
136
gtk.CellRendererText(), text=2))
141
for item in self.pending:
142
liststore.append([ item['date'],
137
146
def _get_specific_files(self):
139
148
it = self.file_store.get_iter_first()
143
152
it = self.file_store.iter_next(it)
146
# end of bzr-gtk code
148
156
def _toggle_commit(self, cell, path, model):
149
157
model[path][0] = not model[path][0]
160
def _pending_merges(self, wt):
161
""" Return a list of pending merges or None if there are none of them. """
162
parents = wt.get_parent_ids()
167
from bzrlib.osutils import format_date
169
pending = parents[1:]
171
last_revision = parents[0]
173
if last_revision is not None:
175
ignore = set(branch.repository.get_ancestry(last_revision))
176
except errors.NoSuchRevision:
177
# the last revision is a ghost : assume everything is new
179
ignore = set([None, last_revision])
184
for merge in pending:
187
m_revision = branch.repository.get_revision(merge)
190
rev['committer'] = re.sub('<.*@.*>', '', m_revision.committer).strip(' ')
191
rev['summary'] = m_revision.get_summary()
192
rev['date'] = format_date(m_revision.timestamp,
193
m_revision.timezone or 0,
194
'original', date_fmt="%Y-%m-%d",
199
inner_merges = branch.repository.get_ancestry(merge)
200
assert inner_merges[0] is None
202
inner_merges.reverse()
203
for mmerge in inner_merges:
206
mm_revision = branch.repository.get_revision(mmerge)
209
rev['committer'] = re.sub('<.*@.*>', '', mm_revision.committer).strip(' ')
210
rev['summary'] = mm_revision.get_summary()
211
rev['date'] = format_date(mm_revision.timestamp,
212
mm_revision.timezone or 0,
213
'original', date_fmt="%Y-%m-%d",
219
except errors.NoSuchRevision:
220
print "DEBUG: NoSuchRevision:", merge
152
224
def commit(self, widget):
153
225
textbuffer = self.textview.get_buffer()
154
226
start, end = textbuffer.get_bounds()
157
229
checkbutton_strict = self.glade.get_widget('checkbutton_commit_strict')
158
230
checkbutton_force = self.glade.get_widget('checkbutton_commit_force')
160
specific_files = self._get_specific_files()
233
specific_files = self._get_specific_files()
235
specific_files = None
162
self.comm.set_busy(self.window)
163
# merged from Jelmer Vernooij's olive integration branch
165
238
self.wt.commit(message,
166
239
allow_pointless=checkbutton_force.get_active(),
168
241
local=self.checkbutton_local.get_active(),
169
242
specific_files=specific_files)
170
243
except errors.NotBranchError:
171
self.dialog.error_dialog(_('Directory is not a branch'),
172
_('You can perform this action only in a branch.'))
173
self.comm.set_busy(self.window, False)
244
error_dialog(_('Directory is not a branch'),
245
_('You can perform this action only in a branch.'))
175
247
except errors.LocalRequiresBoundBranch:
176
self.dialog.error_dialog(_('Directory is not a checkout'),
177
_('You can perform local commit only on checkouts.'))
178
self.comm.set_busy(self.window, False)
248
error_dialog(_('Directory is not a checkout'),
249
_('You can perform local commit only on checkouts.'))
180
251
except errors.PointlessCommit:
181
self.dialog.error_dialog(_('No changes to commit'),
182
_('Try force commit if you want to commit anyway.'))
183
self.comm.set_busy(self.window, False)
252
error_dialog(_('No changes to commit'),
253
_('Try force commit if you want to commit anyway.'))
185
255
except errors.ConflictsInTree:
186
self.dialog.error_dialog(_('Conflicts in tree'),
187
_('You need to resolve the conflicts before committing.'))
188
self.comm.set_busy(self.window, False)
256
error_dialog(_('Conflicts in tree'),
257
_('You need to resolve the conflicts before committing.'))
190
259
except errors.StrictCommitFailed:
191
self.dialog.error_dialog(_('Strict commit failed'),
192
_('There are unknown files in the working tree.\nPlease add or delete them.'))
193
self.comm.set_busy(self.window, False)
260
error_dialog(_('Strict commit failed'),
261
_('There are unknown files in the working tree.\nPlease add or delete them.'))
195
263
except errors.BoundBranchOutOfDate, errmsg:
196
self.dialog.error_dialog(_('Bound branch is out of date'),
198
self.comm.set_busy(self.window, False)
264
error_dialog(_('Bound branch is out of date'),
267
except errors.BzrError, msg:
268
error_dialog(_('Unknown bzr error'), str(msg))
270
except Exception, msg:
271
error_dialog(_('Unknown error'), str(msg))
204
self.comm.refresh_right()
206
276
def close(self, widget=None):
207
277
self.window.destroy()