##// END OF EJS Templates
Implemented server side forks...
Implemented server side forks added ability to pass session to user/repo models

File last commit:

r529:3a567e32 default
r530:a08f610e default
Show More
changeset.html
121 lines | 5.1 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()">
updated whoosh deps,...
r529 ${_('Changeset')} - r${c.changeset.revision}:${c.changeset.short_id} - ${c.repo_name}
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>
version bump to 0.8...
r362
<%def name="breadcrumbs_links()">
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
r193 ${h.link_to(u'Home',h.url('/'))}
version bump to 0.8...
r362 &raquo;
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
&raquo;
refactoring for new vcs implementation...
r512 ${_('Changeset')} - r${c.changeset.revision}:${c.changeset.short_id}
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>
version bump to 0.8...
r362
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="page_nav()">
${self.menu('changelog')}
</%def>
version bump to 0.8...
r362
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 to 0.8...
r362 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
added menu for changeset raw diff and download diff...
r468 <div id="body" class="diffblock">
<div class="code-header">
<div>
refactoring for new vcs implementation...
r512 ${_('Changeset')} - r${c.changeset.revision}:${c.changeset.short_id}
added menu for changeset raw diff and download diff...
r468 &raquo; <span>${h.link_to(_('raw diff'),
refactoring for new vcs implementation...
r512 h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id,diff='show'))}</span>
added menu for changeset raw diff and download diff...
r468 &raquo; <span>${h.link_to(_('download diff'),
refactoring for new vcs implementation...
r512 h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id,diff='download'))}</span>
added menu for changeset raw diff and download diff...
r468 </div>
</div>
</div>
updated whoosh deps,...
r529 <div id="changeset_content">
<div class="container">
<div class="left">
<div class="date">${_('commit')} ${c.changeset.revision}: ${c.changeset.short_id}@${c.changeset.date}</div>
<div class="author">
<div class="gravatar">
<img alt="gravatar" src="${h.gravatar_url(h.email(c.changeset.author),20)}"/>
</div>
<span>${h.person(c.changeset.author)}</span><br/>
<span><a href="mailto:${h.email_or_none(c.changeset.author)}">${h.email_or_none(c.changeset.author)}</a></span><br/>
</div>
<div class="message">
${h.link_to(h.wrap_paragraphs(c.changeset.message),
h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
</div>
</div>
<div class="right">
<div class="changes">
<span class="removed" title="${_('removed')}">${len(c.changeset.removed)}</span>
<span class="changed" title="${_('changed')}">${len(c.changeset.changed)}</span>
<span class="added" title="${_('added')}">${len(c.changeset.added)}</span>
</div>
%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):
<div class="parent">${_('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)}
</div>
%endfor
<span class="logtags">
<span class="branchtag" title="${'%s %s' % (_('branch'),c.changeset.branch)}">
${h.link_to(c.changeset.branch,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}</span>
%for tag in c.changeset.tags:
<span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
${h.link_to(tag,h.url('files_home',repo_name=c.repo_name,revision=c.changeset.short_id))}</span>
%endfor
</span>
</div>
</div>
<span style="font-size:1.1em;font-weight: bold">${_('Files affected')}</span>
<div class="cs_files">
%for change,filenode,diff,cs1,cs2 in c.changes:
<div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor='CHANGE-%s'%filenode.path))}</div>
%endfor
</div>
</div>
version bump. Made changesets work as should, but vcs had to be fixed for that.
r218 </div>
litle html updates for changeset
r332
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,
refactoring for new vcs implementation...
r512 revision=filenode.changeset.short_id,f_path=filenode.path))}
templating update, improved look & feel, version bump
r225 </span>
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 %if 1:
templating updates (font sizes)
r387 &raquo; <span>${h.link_to(_('diff'),
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='diff'))}</span>
templating updates (font sizes)
r387 &raquo; <span>${h.link_to(_('raw diff'),
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='raw'))}</span>
templating updates (font sizes)
r387 &raquo; <span>${h.link_to(_('download diff'),
added proposal from mercurial mailing list, to display options for raw diffs, and diffs directly from within changesets view
r274 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
version bump to 0.8...
r362 %endfor
</div>
</div>
</%def>