File: longtable.zpts

package info (click to toggle)
plastex 3.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,132 kB
  • sloc: python: 23,341; xml: 18,076; javascript: 7,755; ansic: 46; makefile: 40; sh: 26
file content (25 lines) | stat: -rw-r--r-- 885 bytes parent folder | download | duplicates (8)
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
name: longtable
type: xml
<div tal:attributes="id self/title/id">
<div tal:condition="self/title" class="caption"><b 
     tal:content="string:${self/title/title} ${self/title/ref}">Figure 1.1</b>: 
     <span tal:content="self/title">Caption text</span></div>
<table class="tabular" cellspacing="0">
<tr tal:repeat="row self">
<metal:block tal:repeat="cell row">
    <th tal:condition="cell/isHeader"
        tal:attributes="style cell/style/inline; 
                        rowspan cell/attributes/rowspan;
                        colspan cell/attributes/colspan"
        tal:content="cell">
    </th>
    <td tal:condition="not:cell/isHeader"
        tal:attributes="style cell/style/inline; 
                        rowspan cell/attributes/rowspan;
                        colspan cell/attributes/colspan"
        tal:content="cell">
    </td>
</metal:block>
</tr>
</table>
</div>