##// END OF EJS Templates
switched filters into webhelpers for easy of usage....
switched filters into webhelpers for easy of usage. Rewrite of html to use predefined templates from branches shortlog tags, for DRY usage. Added info messages about empty branches/tags etc.

File last commit:

r282:237470e6 default
r282:237470e6 default
Show More
changeset.html
91 lines | 3.0 KiB | text/html | HtmlLexer
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 <%inherit file="/base/base.html"/>
<%def name="title()">
${_('Changeset')}
</%def>
<%def name="breadcrumbs()">
${h.link_to(u'Home',h.url('/'))}
/
${h.link_to(c.repo_name,h.url('changeset_home',repo_name=c.repo_name))}
/
${_('changeset')}
</%def>
<%def name="page_nav()">
${self.menu('changelog')}
</%def>
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 <%def name="css()">
<link rel="stylesheet" href="/css/monoblue_custom.css" type="text/css" />
<link rel="stylesheet" href="/css/diff.css" type="text/css" />
</%def>
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 <%def name="main()">
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 <h2 class="no-link no-border">${_('Changeset')} - r${c.changeset.revision}:${c.changeset.raw_id}</h2>
<div id="changeset_content">
<div class="container">
<div class="left">
<div class="date">${_('Date')}: ${c.changeset.date}</div>
<div class="author">${_('Author')}: ${c.changeset.author}</div>
<div class="message">
${c.changeset.message}
</div>
</div>
<div class="right">
<span class="logtags">
<span class="branchtag">${c.changeset.branch}</span>
%for tag in c.changeset.tags:
<span class="tagtag">${tag}</span>
%endfor
</span>
%if len(c.changeset.parents)>1:
<div class="merge">
${_('merge')}
<img alt="merge" src="/images/icons/arrow_join.png">
</div>
%endif
%for p_cs in reversed(c.changeset.parents):
spelling fixes
r271 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id,
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
</div>
%endfor
</div>
</div>
</div>
templating update, improved look & feel, version bump
r225 <div style="clear:both;height:10px"></div>
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 <div class="cs_files">
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 %for change,filenode,diff,cs1,cs2 in c.changes:
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 <div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor='CHANGE-%s'%filenode.path))}</div>
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 %endfor
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 </div>
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 %for change,filenode,diff,cs1,cs2 in c.changes:
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 %if change !='removed':
<div style="clear:both;height:10px"></div>
<div id="body" class="diffblock">
<div id="${'CHANGE-%s'%filenode.path}" class="code-header">
<div>
templating update, improved look & feel, version bump
r225 <span>
${h.link_to_if(change!='removed',filenode.path,h.url('files_home',repo_name=c.repo_name,
revision=filenode.changeset.raw_id,f_path=filenode.path))}
</span>
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 %if 1:
&raquo; <span style="font-size:77%">${h.link_to(_('diff'),
h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='diff'))}</span>
&raquo; <span style="font-size:77%">${h.link_to(_('raw diff'),
h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='raw'))}</span>
&raquo; <span style="font-size:77%">${h.link_to(_('download diff'),
h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='download'))}</span>
%endif
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 </div>
</div>
<div class="code-body">
templating update, improved look & feel, version bump
r225 %if diff:
${diff|n}
%else:
${_('No changes in this file')}
%endif
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 </div>
</div>
%endif
%endfor
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 </%def>