~jelmer/loggerhead/breezy

« back to all changes in this revision

Viewing changes to loggerhead/controllers/atom_ui.py

  • Committer: Robey Pointer
  • Date: 2006-12-11 06:44:19 UTC
  • Revision ID: robey@lag.net-20061211064419-8ssa7mlsiflpmy0c
initial checkin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (C) 2006  Robey Pointer <robey@lag.net>
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
#
 
18
 
 
19
import turbogears
 
20
 
 
21
from loggerhead.history import History
 
22
from loggerhead import util
 
23
 
 
24
 
 
25
FOLDER = '/Users/robey/code/paramiko/paramiko'
 
26
BRANCH_NAME = 'paramiko-dev'
 
27
EXTERNAL_URL = 'http://localhost:8080'
 
28
 
 
29
class AtomUI (object):
 
30
 
 
31
    @turbogears.expose(template='loggerhead.templates.atom', format="xml", content_type="application/atom+xml")
 
32
    def default(self, *args):
 
33
        h = History.from_folder(FOLDER)
 
34
        if len(args) > 0:
 
35
            revid = args[0]
 
36
        else:
 
37
            revid = h.last_revid
 
38
        revlist = h.get_short_revision_history_from(revid)
 
39
        entries = list(h.get_changelist(list(revlist)[:20]))
 
40
 
 
41
        vals = {
 
42
            'external_url': EXTERNAL_URL,
 
43
            'branch_name': BRANCH_NAME,
 
44
            'changes': entries,
 
45
            'util': util,
 
46
            'history': h,
 
47
            'scan_url': '/changes',
 
48
            'updated': entries[0].date.isoformat() + 'Z',
 
49
        }
 
50
        return vals