270 """<b>Show log browser</b>""" |
270 """<b>Show log browser</b>""" |
271 """<p>This shows a dialog to browse the log of the local""" |
271 """<p>This shows a dialog to browse the log of the local""" |
272 """ project. A limited number of entries is shown first.""" |
272 """ project. A limited number of entries is shown first.""" |
273 """ More can be retrieved later on.</p>""" |
273 """ More can be retrieved later on.</p>""" |
274 )) |
274 )) |
275 self.hgLogBrowserAct.triggered.connect(self.__hgLogBrowser) |
275 self.hgLogBrowserAct.triggered.connect(self._vcsLogBrowser) |
276 self.actions.append(self.hgLogBrowserAct) |
276 self.actions.append(self.hgLogBrowserAct) |
277 |
277 |
278 self.vcsDiffAct = E5Action( |
278 self.vcsDiffAct = E5Action( |
279 self.tr('Show difference'), |
279 self.tr('Show difference'), |
280 UI.PixmapCache.getIcon("vcsDiff.png"), |
280 UI.PixmapCache.getIcon("vcsDiff.png"), |
1210 """ |
1210 """ |
1211 Private slot used to perform a hg diff with the selection of revisions. |
1211 Private slot used to perform a hg diff with the selection of revisions. |
1212 """ |
1212 """ |
1213 self.vcs.hgExtendedDiff(self.project.ppath) |
1213 self.vcs.hgExtendedDiff(self.project.ppath) |
1214 |
1214 |
1215 def __hgLogBrowser(self): |
|
1216 """ |
|
1217 Private slot used to browse the log of the current project. |
|
1218 """ |
|
1219 self.vcs.hgLogBrowser(self.project.ppath) |
|
1220 |
|
1221 def __hgIncoming(self): |
1215 def __hgIncoming(self): |
1222 """ |
1216 """ |
1223 Private slot used to show the log of changes coming into the |
1217 Private slot used to show the log of changes coming into the |
1224 repository. |
1218 repository. |
1225 """ |
1219 """ |