2
2
# Copyright (C) 2006 Robey Pointer <robey@lag.net>
3
# Copyright (C) 2006 Goffredo Baroncelli <kreijack@inwind.it>
5
4
# This program is free software; you can redistribute it and/or modify
6
5
# it under the terms of the GNU General Public License as published by
17
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
from loggerhead.controllers import TemplatedBranchView
23
class AtomUI (TemplatedBranchView):
25
template_path = 'loggerhead.templates.atom'
27
def get_values(self, path, kwargs, headers):
28
history = self._history
29
revid = self.get_revid()
30
pagesize = int(20)#self._branch.config.get('pagesize', '20'))
32
revid_list = history.get_file_view(history.last_revid, None)
33
entries = list(history.get_changes(list(revid_list)[:pagesize]))
35
headers['Content-Type'] = 'application/atom+xml'
21
from loggerhead.history import History
22
from loggerhead import util
25
FOLDER = '/Users/robey/code/paramiko/paramiko'
26
BRANCH_NAME = 'paramiko-dev'
27
EXTERNAL_URL = 'http://localhost:8080'
29
class AtomUI (object):
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)
38
revlist = h.get_short_revision_history_from(revid)
39
entries = list(h.get_changelist(list(revlist)[:20]))
42
'external_url': EXTERNAL_URL,
43
'branch_name': BRANCH_NAME,
37
44
'changes': entries,
38
'updated': entries[0].utc_date.isoformat(),
39
'history': self._history,
47
'scan_url': '/changes',
48
'updated': entries[0].date.isoformat() + 'Z',