Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

reporegistry: show pulling notice in status bar

also mention url in pull dialog title

Changeset 957758632c82

Parent be01307155e3

by Adrian Buehlmann

Changes to one file · Browse files at 957758632c82 Showing diff from parent be01307155e3 Diff from another changeset...

 
654
655
656
657
 
658
659
660
661
662
 
663
664
 
 
 
665
666
667
 
654
655
656
 
657
658
659
660
661
 
662
663
 
664
665
666
667
668
669
@@ -654,14 +654,16 @@
  if not self.selitem:   return   pathitem = self.selitem.internalPointer() - url = pathitem.url() + url_ = pathitem.url()   reporoot = pathitem.parent().parent().rootpath()     def finished():   self.workbench.reloadRepository(reporoot) - args = ['pull', '-R', reporoot, url] + args = ['pull', '-R', reporoot, url_]   cmd = cmdui.Dialog(args, parent=self, finishfunc=finished) - cmd.setWindowTitle(_('Pulling')) + what = _('Pulling from %s') % url.hidepassword(url_) + self.workbench.showMessage(what) + cmd.setWindowTitle(what)   cmd.show_output(False)   cmd.exec_()