Ticket #2012 (closed defect: fixed)
PatchRenderer does not render chunk separator
| Reported by: | Shunichi Goto <gotoh@…> | Owned by: | cmlenz |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.9 |
| Component: | wiki system | Version: | devel |
| Severity: | minor | Keywords: | |
| Cc: |
Description
Trac does not render chunk separator row on ticket or wiki page because of typo in template string in patch.py.
-
patch.py
40 40 <colgroup><col class="lineno" /><col class="lineno" /><col class="content" /></colgroup> 41 41 <thead><tr> 42 42 <th title="<?cs var:file.oldrev ?>"><?cs var:file.oldrev ?></th> 43 <th title="<?cs var:file.newrev ?>"><?cs var: item.newrev ?></th>43 <th title="<?cs var:file.newrev ?>"><?cs var:file.newrev ?></th> 44 44 <th> </th> 45 45 </tr></thead><?cs 46 46 each:change = file.diff ?><?cs 47 47 call:diff_display(change, diff.style) ?><?cs 48 if:name(change) < len( item.diff) - 1 ?>48 if:name(change) < len(file.diff) - 1 ?> 49 49 <tbody class="skipped"> 50 50 <tr><th>…</th><th>…</th><td> </td></tr> 51 51 </tbody><?cs
Attachments
Change History
Note: See
TracTickets for help on using
tickets.


