120 """<b>Show log browser</b>""" |
120 """<b>Show log browser</b>""" |
121 """<p>This shows a dialog to browse the log of the local""" |
121 """<p>This shows a dialog to browse the log of the local""" |
122 """ project. A limited number of entries is shown first. More""" |
122 """ project. A limited number of entries is shown first. More""" |
123 """ can be retrieved later on.</p>""" |
123 """ can be retrieved later on.</p>""" |
124 )) |
124 )) |
125 self.svnLogBrowserAct.triggered.connect(self.__svnLogBrowser) |
125 self.svnLogBrowserAct.triggered.connect(self._vcsLogBrowser) |
126 self.actions.append(self.svnLogBrowserAct) |
126 self.actions.append(self.svnLogBrowserAct) |
127 |
127 |
128 self.vcsDiffAct = E5Action( |
128 self.vcsDiffAct = E5Action( |
129 self.tr('Show difference'), |
129 self.tr('Show difference'), |
130 UI.PixmapCache.getIcon("vcsDiff.png"), |
130 UI.PixmapCache.getIcon("vcsDiff.png"), |
606 Private slot used to perform a svn diff with the selection of |
606 Private slot used to perform a svn diff with the selection of |
607 repository URLs. |
607 repository URLs. |
608 """ |
608 """ |
609 self.vcs.svnUrlDiff(self.project.ppath) |
609 self.vcs.svnUrlDiff(self.project.ppath) |
610 |
610 |
611 def __svnLogBrowser(self): |
|
612 """ |
|
613 Private slot used to browse the log of the current project. |
|
614 """ |
|
615 self.vcs.svnLogBrowser(self.project.ppath) |
|
616 |
|
617 def __svnInfo(self): |
611 def __svnInfo(self): |
618 """ |
612 """ |
619 Private slot used to show repository information for the local project. |
613 Private slot used to show repository information for the local project. |
620 """ |
614 """ |
621 self.vcs.svnInfo(self.project.ppath, ".") |
615 self.vcs.svnInfo(self.project.ppath, ".") |