1478 else: |
1478 else: |
1479 self.branchesList = [] |
1479 self.branchesList = [] |
1480 allTagsBranchesList = None |
1480 allTagsBranchesList = None |
1481 self.tagbranchList.start(tags, self.branchesList, self.allTagsBranchesList) |
1481 self.tagbranchList.start(tags, self.branchesList, self.allTagsBranchesList) |
1482 |
1482 |
1483 def hgAnnotate(self, name): |
1483 def hgAnnotate(self, name, skiplist=""): |
1484 """ |
1484 """ |
1485 Public method to show the output of the hg annotate command. |
1485 Public method to show the output of the hg annotate command. |
1486 |
1486 |
1487 @param name file name to show the annotations for (string) |
1487 @param name file name to show the annotations for |
|
1488 @type str |
|
1489 @param skiplist name of a skip list file |
|
1490 @type str |
1488 """ |
1491 """ |
1489 if self.annotate is None: |
1492 if self.annotate is None: |
1490 from .HgAnnotateDialog import HgAnnotateDialog |
1493 from .HgAnnotateDialog import HgAnnotateDialog |
1491 |
1494 |
1492 self.annotate = HgAnnotateDialog(self) |
1495 self.annotate = HgAnnotateDialog(self) |
1493 self.annotate.show() |
1496 self.annotate.show() |
1494 self.annotate.raise_() |
1497 self.annotate.raise_() |
1495 self.annotate.start(name) |
1498 self.annotate.start(name, skiplist=skiplist) |
1496 |
1499 |
1497 def hgExtendedDiff(self, name): |
1500 def hgExtendedDiff(self, name): |
1498 """ |
1501 """ |
1499 Public method used to view the difference of a file/directory to the |
1502 Public method used to view the difference of a file/directory to the |
1500 Mercurial repository. |
1503 Mercurial repository. |