/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to viz/graph.py

  • Committer: Aaron Bentley
  • Date: 2006-09-18 13:49:47 UTC
  • mfrom: (81 bzr-gtk)
  • mto: (66.6.5 gtk)
  • mto: This revision was merged to the branch mainline in revision 112.
  • Revision ID: abentley@panoramicfeedback.com-20060918134947-0c9ad79a67b1765f
MergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
1
# -*- coding: UTF-8 -*-
3
2
"""Directed graph production.
4
3
 
77
76
        self.graph = {}
78
77
 
79
78
    def fill_caches(self):
80
 
        # FIXME: look at using repository.get_revision_graph_with_ghosts - RBC.
81
79
        graph = self.branch.repository.get_revision_graph_with_ghosts([self.start])
82
80
        for revid in graph.ghosts:
83
81
            self.cache_revision(DummyRevision(revid))