101
102
reversed_result.reverse()
102
103
return reversed_result
105
def get_summary(self):
106
"""Get the first line of the log message for this revision.
108
return self.message.split('\n', 1)[0]
105
111
def is_ancestor(revision_id, candidate_id, branch):
106
112
"""Return true if candidate_id is an ancestor of revision_id.
399
405
def unlock(self):
400
406
for source in self._revision_sources:
410
@deprecated_function(zero_eight)
411
def get_intervening_revisions(ancestor_id, rev_id, rev_source,
412
revision_history=None):
413
"""Find the longest line of descent from maybe_ancestor to revision.
414
Revision history is followed where possible.
416
If ancestor_id == rev_id, list will be empty.
417
Otherwise, rev_id will be the last entry. ancestor_id will never appear.
418
If ancestor_id is not an ancestor, NotAncestor will be thrown
420
root, ancestors, descendants = revision_graph(rev_id, rev_source)
421
if len(descendants) == 0:
422
raise NoSuchRevision(rev_source, rev_id)
423
if ancestor_id not in descendants:
424
rev_source.get_revision(ancestor_id)
425
raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
426
root_descendants = all_descendants(descendants, ancestor_id)
427
root_descendants.add(ancestor_id)
428
if rev_id not in root_descendants:
429
raise bzrlib.errors.NotAncestor(rev_id, ancestor_id)
430
distances = node_distances(descendants, ancestors, ancestor_id,
431
root_descendants=root_descendants)
433
def best_ancestor(rev_id):
435
for anc_id in ancestors[rev_id]:
437
distance = distances[anc_id]
440
if revision_history is not None and anc_id in revision_history:
442
elif best is None or distance > best[1]:
443
best = (anc_id, distance)
448
while next != ancestor_id:
450
next = best_ancestor(next)