2207 Subversion repository. |
2207 Subversion repository. |
2208 |
2208 |
2209 @param path file/directory name to show the log of (string) |
2209 @param path file/directory name to show the log of (string) |
2210 @param isFile flag indicating log for a file is to be shown (boolean) |
2210 @param isFile flag indicating log for a file is to be shown (boolean) |
2211 """ |
2211 """ |
2212 from .SvnLogBrowserDialog import SvnLogBrowserDialog |
2212 if self.logBrowser is None: |
2213 self.logBrowser = SvnLogBrowserDialog(self, isFile=isFile) |
2213 from .SvnLogBrowserDialog import SvnLogBrowserDialog |
|
2214 self.logBrowser = SvnLogBrowserDialog(self) |
2214 self.logBrowser.show() |
2215 self.logBrowser.show() |
2215 QApplication.processEvents() |
2216 QApplication.processEvents() |
2216 self.logBrowser.start(path) |
2217 self.logBrowser.start(path, isFile=isFile) |
2217 |
2218 |
2218 def svnLock(self, name, stealIt=False, parent=None): |
2219 def svnLock(self, name, stealIt=False, parent=None): |
2219 """ |
2220 """ |
2220 Public method used to lock a file in the Subversion repository. |
2221 Public method used to lock a file in the Subversion repository. |
2221 |
2222 |