776 for itm in self.browser.getSelectedItems(): |
776 for itm in self.browser.getSelectedItems(): |
777 try: |
777 try: |
778 names.append(itm.fileName()) |
778 names.append(itm.fileName()) |
779 except AttributeError: |
779 except AttributeError: |
780 names.append(itm.dirName()) |
780 names.append(itm.dirName()) |
781 self.vcs.svnResolve(names) |
781 self.vcs.vcsResolved(names) |
782 |
782 |
783 def __SVNListProps(self): |
783 def __SVNListProps(self): |
784 """ |
784 """ |
785 Private slot called by the context menu to list the subversion |
785 Private slot called by the context menu to list the subversion |
786 properties of a file. |
786 properties of a file. |
854 Private slot called by the context menu to show the difference of a |
854 Private slot called by the context menu to show the difference of a |
855 file to the repository side-by-side. |
855 file to the repository side-by-side. |
856 """ |
856 """ |
857 itm = self.browser.currentItem() |
857 itm = self.browser.currentItem() |
858 fn = itm.fileName() |
858 fn = itm.fileName() |
859 self.vcs.svnSbsDiff(fn) |
859 self.vcs.vcsSbsDiff(fn) |
860 |
860 |
861 def __SVNSbsExtendedDiff(self): |
861 def __SVNSbsExtendedDiff(self): |
862 """ |
862 """ |
863 Private slot called by the context menu to show the difference of a |
863 Private slot called by the context menu to show the difference of a |
864 file to the repository side-by-side. |
864 file to the repository side-by-side. |
865 |
865 |
866 It allows the selection of revisions to compare. |
866 It allows the selection of revisions to compare. |
867 """ |
867 """ |
868 itm = self.browser.currentItem() |
868 itm = self.browser.currentItem() |
869 fn = itm.fileName() |
869 fn = itm.fileName() |
870 self.vcs.svnSbsDiff(fn, extended=True) |
870 self.vcs.vcsSbsDiff(fn, extended=True) |
871 |
871 |
872 def __SVNBlame(self): |
872 def __SVNBlame(self): |
873 """ |
873 """ |
874 Private slot called by the context menu to show the blame of a file. |
874 Private slot called by the context menu to show the blame of a file. |
875 """ |
875 """ |