49
def file_change_summary(url, entry, file_changes, style='normal', currently_showing=None):
50
if style == 'fragment':
51
def file_link(filename):
52
if currently_showing and filename == currently_showing:
54
'<b><a href="#%s">%s</a></b>',
55
urllib.quote(filename.encode('utf-8')), filename)
58
url, entry.revno, filename,
59
'#' + urllib.quote(filename.encode('utf-8')))
61
def file_link(filename):
63
'<a href="%s%s" title="View changes to %s in revision %s">'
65
url(['/revision', entry.revno]),
66
'#' + urllib.quote(filename.encode('utf-8')),
67
filename, entry.revno, filename)
40
def file_change_summary(url, entry, modified_file_link):
68
41
return _pt('revisionfilechanges').expand(
69
entry=entry, file_changes=file_changes, file_link=file_link, **templatefunctions)
42
url=url, entry=entry, modified_file_link=modified_file_link,
73
def revisioninfo(url, branch, entry, file_changes=None, currently_showing=None, merged_in=None):
47
def revisioninfo(url, branch, entry, modified_file_link=None):
74
48
from loggerhead import util
75
49
return _pt('revisioninfo').expand(
76
50
url=url, change=entry, branch=branch, util=util,
77
file_changes=file_changes, currently_showing=currently_showing,
78
merged_in=merged_in, **templatefunctions)
51
modified_file_link=modified_file_link,
82
56
def branchinfo(branch):
83
if branch.served_url is not None:
84
return _pt('branchinfo').expand(branch=branch, **templatefunctions)
57
return _pt('branchinfo').expand(branch=branch, **templatefunctions)
106
77
extra = ' ' + entry.branch_nick
109
return '(%s%s)' % (entry.revno, extra)
80
return '(%s%s)'%(entry.revno, extra)
84
def modified_file_link_rev(url, entry, item):
85
return _pt('modified-file-link-rev').expand(
86
url=url, entry=entry, item=item,
91
def modified_file_link_log(url, entry, item):
92
return _pt('modified-file-link-log').expand(
93
url=url, entry=entry, item=item,
124
109
def menu(branch, url, fileview_active=False):
125
110
return _pt('menu').expand(branch=branch, url=url,
126
111
fileview_active=fileview_active, **templatefunctions)
130
def view_link(url, revno, path):
132
'<a href="%s" title="Annotate %s">%s</a>',
133
url(['/view', revno, path]), path, path)
137
def revision_link(url, revno, path, frag=''):
139
'<a href="%s%s" title="View changes to %s in revision %s">%s</a>',
140
url(['/revision', revno, path]), frag, path, revno, path)
144
def loggerhead_version():
145
return loggerhead.__version__
147
_cached_generator_string = None
150
def generator_string():
151
global _cached_generator_string
152
if _cached_generator_string is None:
155
# TODO: Errors -- e.g. from a missing/invalid __version__ attribute, or
156
# ValueError accessing Distribution.version -- should be non-fatal.
158
versions.append(('Loggerhead', loggerhead.__version__))
161
python_version = bzrlib._format_version_tuple(sys.version_info)
162
versions.append(('Python', python_version))
164
versions.append(('Bazaar', bzrlib.__version__))
166
Paste = pkg_resources.get_distribution('Paste')
167
versions.append(('Paste', Paste.version))
170
PasteDeploy = pkg_resources.get_distribution('PasteDeploy')
171
except pkg_resources.DistributionNotFound:
174
versions.append(('PasteDeploy', PasteDeploy.version))
177
versions.append(('SimpleTAL', simpletal.__version__))
184
versions.append(('Pygments', pygments.__version__))
187
from bzrlib.plugins import search
191
bzr_search_version = bzrlib._format_version_tuple(
193
versions.append(('bzr-search', bzr_search_version))
195
# TODO: On old Python versions, elementtree may be used.
198
versions.append(('simplejson', simplejson.__version__))
201
Dozer = pkg_resources.get_distribution('Dozer')
202
except pkg_resources.DistributionNotFound:
205
versions.append(('Dozer', Dozer.version))
207
version_strings = ("%s/%s" % t for t in versions)
208
_cached_generator_string = ' '.join(version_strings)
209
return _cached_generator_string