~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2005-08-31 18:52:32 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050831185232-f2adf7cc6ba8c4fa
Put dotted outlines on missing revisions

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    """Produce ancestry graphs using dot.
37
37
    
38
38
    Output format is detected according to file extension.  Some of the more
39
 
    common outputs are png, gif, svg, ps.  An extension of '.dot' will cause
40
 
    a dot input file to be produced.
 
39
    common output formats are png, gif, svg, ps.  An extension of '.dot' will
 
40
    cause a dot graph file to be produced.
41
41
 
42
42
    Ancestry is usually collapsed by removing nodes with a single parent
43
43
    and descendant, but this can be disabled with --no-collapse.
 
44
 
 
45
    The current branch's revisions are yellow and labeled R?, where ? is
 
46
    the revno.  Other revisions are labeled with essentially random numbers.
 
47
 
 
48
    Revisions that are not in branch storage have dotted outlines.
44
49
    """
45
50
    takes_args = ['branch', 'file']
46
51
    takes_options = ['no-collapse']