~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/revlog_ui.py

  • Committer: Martin Albisetti
  • Date: 2008-06-20 00:09:14 UTC
  • mto: (157.1.3 loggerhead)
  • mto: This revision was merged to the branch mainline in revision 187.
  • Revision ID: argentina@gmail.com-20080620000914-qrey5i9q71i4tntc
 * Implemented new Revision View

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import urllib
2
 
 
3
 
from loggerhead import util
4
 
from loggerhead.controllers import TemplatedBranchView
5
 
 
6
 
 
7
 
class RevLogUI(TemplatedBranchView):
8
 
 
9
 
    template_path = 'loggerhead.templates.revlog'
10
 
 
11
 
    def get_values(self, path, kwargs, headers):
12
 
        history = self._history
13
 
 
14
 
        revid = urllib.unquote(self.args[0])
15
 
 
16
 
        change = history.get_changes([revid])[0]
17
 
        file_changes = history.get_file_changes(change)
18
 
        history.add_branch_nicks(change)
19
 
 
20
 
        return {
21
 
            'branch': self._branch,
22
 
            'entry': change,
23
 
            'file_changes': file_changes,
24
 
            'util': util,
25
 
            'revid': revid,
26
 
            'url': self._branch.context_url,
27
 
        }