VCS/VersionControl.py

changeset 5452
9f89364d9ffd
parent 5389
9b1c800daff3
child 5603
4f2dd0850803
equal deleted inserted replaced
5451:8ee36e8a315f 5452:9f89364d9ffd
242 @exception RuntimeError to indicate that this method must be 242 @exception RuntimeError to indicate that this method must be
243 implemented by a subclass 243 implemented by a subclass
244 """ 244 """
245 raise RuntimeError('Not implemented') 245 raise RuntimeError('Not implemented')
246 246
247 def vcsLog(self, name):
248 """
249 Public method used to view the log of a file/directory in the vcs.
250
251 @param name file/directory name to show the log for (string)
252 @exception RuntimeError to indicate that this method must be
253 implemented by a subclass
254 """
255 raise RuntimeError('Not implemented')
256
257 def vcsLogBrowser(self, name, isFile=False): 247 def vcsLogBrowser(self, name, isFile=False):
258 """ 248 """
259 Public method used to view the log of a file/directory in the vcs 249 Public method used to view the log of a file/directory in the vcs
260 with a log browser dialog. 250 with a log browser dialog.
261 251

eric ide

mercurial