Show More
@@ -805,6 +805,15 b' class workingctx(changectx):' | |||
|
805 | 805 | b.extend(p.bookmarks()) |
|
806 | 806 | return b |
|
807 | 807 | |
|
808 | def phase(self): | |
|
809 | phase = 1 # default phase to draft | |
|
810 | for p in self.parents(): | |
|
811 | phase = max(phase, p.phase()) | |
|
812 | return phase | |
|
813 | ||
|
814 | def hidden(self): | |
|
815 | return False | |
|
816 | ||
|
808 | 817 | def children(self): |
|
809 | 818 | return [] |
|
810 | 819 |
General Comments 0
You need to be logged in to leave comments.
Login now