/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 branchwin.py

  • Committer: Robert Collins
  • Date: 2006-04-03 02:31:25 UTC
  • mto: (36.1.4 bzrk.jaq)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: robertc@robertcollins.net-20060403023125-1bc8678463e9cd36
Some more tweaking on the graph stuff - reducing duplicate effort and leveraging bzrlib more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
260
260
        (self.revisions, colours, self.children, self.parent_ids, merge_sorted) \
261
261
                 = distances(branch, start, robust, maxnum)
262
262
        for revision, node, lines in graph(
263
 
                self.revisions, colours, self.parent_ids, merge_sorted):
 
263
                self.revisions, colours, merge_sorted):
 
264
            # FIXME: at this point we should be able to show the graph order and
 
265
            # lines with no message or commit data - and then incrementally fill
 
266
            # the timestamp, committer etc data as desired.
264
267
            message = revision.message.split("\n")[0]
265
268
            if revision.committer is not None:
266
269
                timestamp = format_date(revision.timestamp, revision.timezone)