Files
@ b12ea84fb906
Branch filter:
Location: kallithea/pylons_app/templates/changeset/changeset.html - annotation
b12ea84fb906
3.4 KiB
text/html
Some fixes to summary, and total rewrite of summary graphs implemented more interactive graph.
Some small fixes for tasks (sorting,limit)
Some small fixes for tasks (sorting,limit)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 50a39f923f31 50a39f923f31 50a39f923f31 50a39f923f31 50a39f923f31 558eb7c5028f 558eb7c5028f 50a39f923f31 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 50a39f923f31 558eb7c5028f 50a39f923f31 50a39f923f31 50a39f923f31 558eb7c5028f 50a39f923f31 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 9dd372c7166c 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 40b409af53a5 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 0d809e72b357 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 40b409af53a5 40b409af53a5 40b409af53a5 40b409af53a5 40b409af53a5 40b409af53a5 40b409af53a5 58b46f9194c3 40b409af53a5 5db466f19b8d 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 58b46f9194c3 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 5db466f19b8d 2a18192fbd1e 5db466f19b8d 2a18192fbd1e 5db466f19b8d 2a18192fbd1e 5db466f19b8d 5db466f19b8d 58b46f9194c3 58b46f9194c3 58b46f9194c3 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 710e7a75bb6b 58b46f9194c3 58b46f9194c3 58b46f9194c3 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f 558eb7c5028f | <%inherit file="/base/base.html"/>
<%def name="title()">
${_('Changeset')}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
»
${h.link_to(c.repo_name,h.url('summary_home',repo_name=c.repo_name))}
»
${_('Changeset')} - r${c.changeset.revision}:${c.changeset.raw_id}
</%def>
<%def name="page_nav()">
${self.menu('changelog')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<div class="table">
<div id="body" class="diffblock">
<div class="code-header">
<div>
${_('Changeset')} - r${c.changeset.revision}:${c.changeset.raw_id}
» <span>${h.link_to(_('raw diff'),
h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show'))}</span>
» <span>${h.link_to(_('download diff'),
h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download'))}</span>
</div>
</div>
</div>
<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">${h.wrap_paragraphs(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):
<div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id,
h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
</div>
%endfor
</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>
%for change,filenode,diff,cs1,cs2 in c.changes:
%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>
<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>
%if 1:
» <span>${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>
» <span>${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>
» <span>${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
</div>
</div>
<div class="code-body">
%if diff:
${diff|n}
%else:
${_('No changes in this file')}
%endif
</div>
</div>
%endif
%endfor
</div>
</div>
</%def>
|