Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

repowidget: show InfoBar to push changesets on "outgoing"

It still pushes to the URL selected by sync widget. This should be fixed
later.

Changeset 3e517fc3b196

Parent 649ef4a8a0b2

by Yuya Nishihara

Changes to one file · Browse files at 3e517fc3b196 Showing diff from parent 649ef4a8a0b2 Diff from another changeset...

 
442
443
444
445
446
447
448
 
 
 
 
 
 
 
449
450
451
 
442
443
444
 
 
445
446
447
448
449
450
451
452
453
454
455
456
@@ -442,10 +442,15 @@
    def setOutgoingNodes(self, nodes):   self.filterbar.revsetle.setText('outgoing()') - self.filterbar.show() - self.toolbarVisibilityChanged.emit()   self.setRevisionSet([self.repo[n].rev() for n in nodes])   + w = self.setInfoBar(qtlib.ConfirmInfoBar, + _('%d outgoing changesets') % len(nodes)) + assert w + w.acceptButton.setText(_('Push')) + w.accepted.connect(self.push) # TODO: to the same URL + w.rejected.connect(self.clearRevisionSet) +   def createGrepWidget(self):   upats = {}   gw = SearchWidget(upats, self.repo, self)