@@ -69,8 +82,8 @@ ${c.repo_name} ${_('Changelog')} - ${c.r
%endif
%if cs.parents:
%for p_cs in reversed(cs.parents):
-
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.short_id,
- h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.short_id),title=p_cs.message)}
+
${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
+ h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor
%else:
@@ -78,11 +91,13 @@ ${c.repo_name} ${_('Changelog')} - ${c.r
%endif
+ %if cs.branch:
- ${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.short_id))}
+ ${h.link_to(cs.branch,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
+ %endif
%for tag in cs.tags:
- ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.short_id))}
+ ${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
%endfor