##// END OF EJS Templates
template fix for changeset ranges
marcink -
r982:134e169f beta
parent child Browse files
Show More
@@ -1466,6 +1466,11 b' color:#556CB5;'
1466 white-space:pre-wrap;
1466 white-space:pre-wrap;
1467 }
1467 }
1468
1468
1469 .cs_files .cur_cs{
1470 margin:10px 2px;
1471 font-weight: bold;
1472 }
1473
1469 .cs_files .cs_added {
1474 .cs_files .cs_added {
1470 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1475 background:url("../images/icons/page_white_add.png") no-repeat scroll 3px;
1471 height:16px;
1476 height:16px;
@@ -41,7 +41,7 b''
41 <span style="font-size:1.1em;font-weight: bold">${_('Files affected')}</span>
41 <span style="font-size:1.1em;font-weight: bold">${_('Files affected')}</span>
42 <div class="cs_files">
42 <div class="cs_files">
43 %for cs in c.cs_ranges:
43 %for cs in c.cs_ranges:
44 ${cs}
44 <div class="cur_cs">r${cs}</div>
45 %for change,filenode,diff,cs1,cs2 in c.changes[cs.raw_id]:
45 %for change,filenode,diff,cs1,cs2 in c.changes[cs.raw_id]:
46 <div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor=h.repo_name_slug('C%s-%s' % (cs.short_id,filenode.path))))}</div>
46 <div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor=h.repo_name_slug('C%s-%s' % (cs.short_id,filenode.path))))}</div>
47 %endfor
47 %endfor
General Comments 0
You need to be logged in to leave comments. Login now