~mnordhoff/loggerhead/cheezum

« back to all changes in this revision

Viewing changes to loggerhead/controllers/revision_ui.py

  • Committer: Guillermo Gonzalez
  • Date: 2008-09-10 00:13:18 UTC
  • mfrom: (164.18.29 trunk)
  • mto: (164.35.3 trunk)
  • mto: This revision was merged to the branch mainline in revision 242.
  • Revision ID: guillo.gonzo@gmail.com-20080910001318-78w16x9zl9p7f1k3
 * merge with trunk 

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
        if side_by_side:
73
73
            h.add_side_by_side([ change ])
74
74
 
 
75
        # Directory Breadcrumbs
 
76
        directory_breadcrumbs = (
 
77
            util.directory_breadcrumbs(
 
78
                self._branch.friendly_name,
 
79
                self._branch.is_root,
 
80
                'changes'))
 
81
 
75
82
        return {
76
83
            'branch': self._branch,
77
84
            'revid': revid,
89
96
            'line_count': line_count,
90
97
            'line_count_limit': line_count_limit,
91
98
            'show_plain_diffs': line_count > line_count_limit,
 
99
            'directory_breadcrumbs': directory_breadcrumbs,
92
100
        }