17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
from cherrypy import InternalError
20
from paste.httpexceptions import HTTPServerError
25
22
from loggerhead import util
26
from loggerhead.templatefunctions import templatefunctions
29
class ChangeLogUI (object):
31
def __init__(self, branch):
36
@util.strip_whitespace
37
@turbogears.expose(html='zpt:loggerhead.templates.changelog')
38
def default(self, *args, **kw):
40
h = self._branch.get_history()
41
config = self._branch.config
23
from loggerhead.controllers import TemplatedBranchView
26
class ChangeLogUI(TemplatedBranchView):
28
template_path = 'loggerhead.templates.changelog'
30
def get_values(self, h, args, kw, response):
32
revid = h.fix_revid(args[0])
36
filter_file_id = kw.get('filter_file_id', None)
37
query = kw.get('q', None)
38
start_revid = h.fix_revid(kw.get('start_revid', None))
39
orig_start_revid = start_revid
40
pagesize = 20#int(config.get('pagesize', '20'))
46
revid = h.fix_revid(args[0])
44
revid, start_revid, revid_list = h.get_view(
45
revid, start_revid, filter_file_id, query)
48
if (query is not None) and (len(revid_list) == 0):
51
if len(revid_list) == 0:
52
scan_list = revid_list
50
filter_file_id = kw.get('filter_file_id', None)
51
query = kw.get('q', None)
52
start_revid = h.fix_revid(kw.get('start_revid', None))
53
orig_start_revid = start_revid
54
pagesize = int(config.get('pagesize', '20'))
58
revid, start_revid, revid_list = h.get_view(
59
revid, start_revid, filter_file_id, query)
62
if (query is not None) and (len(revid_list) == 0):
65
if len(revid_list) == 0:
66
scan_list = revid_list
54
if revid in revid_list: # XXX is this always true?
55
i = revid_list.index(revid)
68
if revid in revid_list: # XXX is this always true?
69
i = revid_list.index(revid)
72
scan_list = revid_list[i:]
73
change_list = scan_list[:pagesize]
74
changes = list(h.get_changes(change_list))
75
h.add_changes(changes)
77
self.log.exception('Exception fetching changes')
78
raise InternalError('Could not fetch changes')
80
navigation = util.Container(
81
pagesize=pagesize, revid=revid, start_revid=start_revid,
82
revid_list=revid_list, filter_file_id=filter_file_id,
83
scan_url='/changes', branch=self._branch, feed=True)
85
navigation.query = query
86
util.fill_in_navigation(navigation)
88
# add parent & merge-point branch-nick info, in case it's useful
89
h.get_branch_nicks(changes)
91
# does every change on this page have the same committer? if so,
92
# tell the template to show committer info in the "details block"
93
# instead of on each line.
94
all_same_author = True
97
author = changes[0].author
99
if e.author != author:
100
all_same_author = False
103
def url(pathargs, **kw):
104
return self._branch.url(pathargs, **kw)
107
'branch': self._branch,
112
'navigation': navigation,
113
'filter_file_id': filter_file_id,
114
'start_revid': start_revid,
115
'viewing_from': (orig_start_revid is not None) and (orig_start_revid != h.last_revid),
117
'search_failed': search_failed,
118
'all_same_author': all_same_author,
119
'url': self._branch.context_url,
121
vals.update(templatefunctions)
122
self.log.info('/changes %r: %r secs' % (revid, time.time() - z))
58
scan_list = revid_list[i:]
59
change_list = scan_list[:pagesize]
60
changes = list(h.get_changes(change_list))
61
h.add_changes(changes)
63
self.log.exception('Exception fetching changes')
64
raise HTTPServerError('Could not fetch changes')
66
navigation = util.Container(
67
pagesize=pagesize, revid=revid, start_revid=start_revid,
68
revid_list=revid_list, filter_file_id=filter_file_id,
69
scan_url='/changes', branch=self._branch, feed=True)
71
navigation.query = query
72
util.fill_in_navigation(navigation)
74
# add parent & merge-point branch-nick info, in case it's useful
75
h.get_branch_nicks(changes)
77
# does every change on this page have the same committer? if so,
78
# tell the template to show committer info in the "details block"
79
# instead of on each line.
80
all_same_author = True
83
author = changes[0].author
85
if e.author != author:
86
all_same_author = False
90
'branch': self._branch,
95
'navigation': navigation,
96
'filter_file_id': filter_file_id,
97
'start_revid': start_revid,
98
'viewing_from': (orig_start_revid is not None) and (orig_start_revid != h.last_revid),
100
'search_failed': search_failed,
101
'all_same_author': all_same_author,
102
'url': self._branch.context_url,