Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/extensions/template/changelog.html

Issue 8397153: Somewhat nicer changelog listings (Closed)
Patch Set: Created Sept. 28, 2012, 10:39 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- This Source Code is subject to the terms of the Mozilla Public License 1 <!-- This Source Code is subject to the terms of the Mozilla Public License
2 - version 2.0 (the "License"). You can obtain a copy of the License at 2 - version 2.0 (the "License"). You can obtain a copy of the License at
3 - http://mozilla.org/MPL/2.0/. --> 3 - http://mozilla.org/MPL/2.0/. -->
4 4
5 <html xmlns="http://www.w3.org/1999/xhtml"> 5 <html xmlns="http://www.w3.org/1999/xhtml">
6 <body> 6 <body>
7 <h2>Recent changes:</h2> 7 <h2>Recent changes:</h2>
8 <dl>
8 {%- for change in changes %} 9 {%- for change in changes %}
9 <h3>#{{change.revision}}: {{change.date}} {{change.author}}</h3> 10 <dt><strong>#{{change.revision}}: {{change.date}} {{change.author}}</strong></dt >
10 <p>{{change.description|buglinks}}</p> 11 <dd style="margin-bottom: 10px;">{{change.description|buglinks}}</dd>
11 {%- endfor %} 12 {%- endfor %}
13 </dl>
12 </body> 14 </body>
13 </html> 15 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld