Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py

changeset 3349
2a034a7f1f54
parent 3345
071afe8be2a1
child 3471
31a6d4300906
child 3484
645c12de6b0c
equal deleted inserted replaced
3346:39f9273ebd61 3349:2a034a7f1f54
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"),
590 Private slot used to perform a svn diff with the selection of 590 Private slot used to perform a svn diff with the selection of
591 repository URLs. 591 repository URLs.
592 """ 592 """
593 self.vcs.svnUrlDiff(self.project.ppath) 593 self.vcs.svnUrlDiff(self.project.ppath)
594 594
595 def __svnLogBrowser(self):
596 """
597 Private slot used to browse the log of the current project.
598 """
599 self.vcs.svnLogBrowser(self.project.ppath)
600
601 def __svnRelocate(self): 595 def __svnRelocate(self):
602 """ 596 """
603 Private slot used to relocate the working copy to a new repository URL. 597 Private slot used to relocate the working copy to a new repository URL.
604 """ 598 """
605 self.vcs.svnRelocate(self.project.ppath) 599 self.vcs.svnRelocate(self.project.ppath)

eric ide

mercurial