Switch to unified view
a/Allura/allura/lib/diff.py | b/Allura/allura/lib/diff.py | ||
---|---|---|---|
... |
... |
||
4 | class HtmlSideBySideDiff(object): |
4 | class HtmlSideBySideDiff(object): |
5 | 5 | ||
6 | table_tmpl = ''' |
6 | table_tmpl = ''' |
7 | <table class="side-by-side-diff"> |
7 | <table class="side-by-side-diff"> |
8 | <thead> |
8 | <thead> |
9 | <th colspan="2">%s</th> |
9 | <th class="lineno"></th> |
10 | <th colspan="2">%s</th> |
10 | <th>%s</th> |
11 | <th class="lineno"></th> |
||
12 | <th>%s</th> |
||
11 | </thead> |
13 | </thead> |
12 | %s |
14 | %s |
13 | </table> |
15 | </table> |
14 | '''.strip() |
16 | '''.strip() |
15 | 17 |