~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to graph.py

  • Committer: Aaron Bentley
  • Date: 2005-09-22 18:52:28 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050922185228-429fdd4677766413
Code cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from dotgraph import Node, dot_output, invoke_dot, invoke_dot_aa, NoDot, NoRsvg
2
 
from dotgraph import mail_map, RSVG_OUTPUT_TYPES, DOT_OUTPUT_TYPES, Edge
 
2
from dotgraph import RSVG_OUTPUT_TYPES, DOT_OUTPUT_TYPES, Edge
3
3
from bzrlib.branch import Branch
4
4
from bzrlib.errors import BzrCommandError, NoCommonRoot, NoSuchRevision
5
5
from bzrlib.fetch import greedy_fetch
10
10
import re
11
11
import os.path
12
12
 
13
 
mail_map.update({'aaron.bentley@utoronto.ca'     : 'Aaron Bentley',
14
 
                 'abentley@panoramicfeedback.com': 'Aaron Bentley',
15
 
                 'abentley@lappy'                : 'Aaron Bentley',
16
 
                 'john@arbash-meinel.com'        : 'John Arbash Meinel',
17
 
                 'mbp@sourcefrog.net'            : 'Martin Pool',
18
 
                 'robertc@robertcollins.net'     : 'Robert Collins',
19
 
                })
 
13
mail_map = {'aaron.bentley@utoronto.ca'     : 'Aaron Bentley',
 
14
            'abentley@panoramicfeedback.com': 'Aaron Bentley',
 
15
            'abentley@lappy'                : 'Aaron Bentley',
 
16
            'john@arbash-meinel.com'        : 'John Arbash Meinel',
 
17
            'mbp@sourcefrog.net'            : 'Martin Pool',
 
18
            'robertc@robertcollins.net'     : 'Robert Collins',
 
19
            }
20
20
 
21
21
committer_alias = {'abentley': 'Aaron Bentley'}
22
22
def short_committer(committer):