VCS/VersionControl.py

changeset 3349
2a034a7f1f54
parent 3302
e92f0dd51979
child 3484
645c12de6b0c
equal deleted inserted replaced
3346:39f9273ebd61 3349:2a034a7f1f54
246 def vcsLog(self, name): 246 def vcsLog(self, name):
247 """ 247 """
248 Public method used to view the log of a file/directory in the vcs. 248 Public method used to view the log of a file/directory in the vcs.
249 249
250 @param name file/directory name to show the log for (string) 250 @param name file/directory name to show the log for (string)
251 @exception RuntimeError to indicate that this method must be
252 implemented by a subclass
253 """
254 raise RuntimeError('Not implemented')
255
256 def vcsLogBrowser(self, name, isFile=False):
257 """
258 Public method used to view the log of a file/directory in the vcs
259 with a log browser dialog.
260
261 @param name file/directory name to show the log for (string)
262 @keyparam isFile flag indicating log for a file is to be shown
263 (boolean)
251 @exception RuntimeError to indicate that this method must be 264 @exception RuntimeError to indicate that this method must be
252 implemented by a subclass 265 implemented by a subclass
253 """ 266 """
254 raise RuntimeError('Not implemented') 267 raise RuntimeError('Not implemented')
255 268

eric ide

mercurial