~mnordhoff/loggerhead/cheezum

« back to all changes in this revision

Viewing changes to loggerhead/controllers/changelog_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:
86
86
                    all_same_author = False
87
87
                    break
88
88
 
 
89
        # Directory Breadcrumbs
 
90
        directory_breadcrumbs = (
 
91
            util.directory_breadcrumbs(
 
92
                self._branch.friendly_name,
 
93
                self._branch.is_root,
 
94
                'changes'))
 
95
 
89
96
        return {
90
97
            'branch': self._branch,
91
98
            'changes': changes,
100
107
            'search_failed': search_failed,
101
108
            'all_same_author': all_same_author,
102
109
            'url': self._branch.context_url,
 
110
            'directory_breadcrumbs': directory_breadcrumbs,
103
111
        }