Show More
@@ -94,6 +94,11 b' def computeimpactable(repo):' | |||||
94 | return frozenset(xrange(firstmutable, len(cl))) |
|
94 | return frozenset(xrange(firstmutable, len(cl))) | |
95 |
|
95 | |||
96 | # function to compute filtered set |
|
96 | # function to compute filtered set | |
|
97 | # | |||
|
98 | # When addding a new filter you MUST update the table at: | |||
|
99 | # mercurial.branchmap.subsettable | |||
|
100 | # Otherwise your filter will have to recompute all its branches cache | |||
|
101 | # from scratch (very slow). | |||
97 | filtertable = {'visible': computehidden, |
|
102 | filtertable = {'visible': computehidden, | |
98 | 'served': computeunserved, |
|
103 | 'served': computeunserved, | |
99 | 'immutable': computemutable, |
|
104 | 'immutable': computemutable, |
General Comments 0
You need to be logged in to leave comments.
Login now