[t/spec] Add two new tests that don't work (fudged out).
[pugs.git] / util / catalog_tmpl / directory.tmpl
blob65e8ce53093c3c4fcc7ae173161f8f5f4c980c74
1 <hmtl>
2 <head>
3 <title>Test Catalog and Documentation cross reference.</title>
4  <link rel="stylesheet" type="text/css" 
5         href="http://dev.perl.org/css/perl.css" 
6         title="Default">
7  <style type="text/css">
8   <!--
9    th.test_pass { background-color: rgb(100, 250, 100); }
10    th.test_fail { background-color: rgb(250, 100, 100); }
11    th.test_todo { background-color: rgb(250, 250, 100); }
12    
13    td.test_pass { color: rgb(0, 250, 0); }
14    td.test_fail { color: rgb(250, 0, 0); }
15    td.test_todo { color: rgb(200, 200, 0); }
16   -->
17 </style>
18        
19 </head>
20 <body>
21 <a href="<TMPL_VAR name='parent'>index.html" >&#x2191;</a>
22 <h1>  <TMPL_VAR name="directory"> </h1>
23 <TMPL_IF name='directories'><h2>Sub-Directories</h2>
24 <table>
25 <tr valign="top">
26 <td>
27 <TMPL_LOOP name="directories">
28     <a href='<TMPL_VAR name="title">/index.html'><TMPL_VAR name="title"></a><br />
29     <TMPL_IF name="wrap"></td><td></TMPL_IF>
30 </TMPL_LOOP>
31 </td></tr>
32 </table>
33 </TMPL_IF>
35 <TMPL_IF name='Files'>
36 <h2>Files</h2>
37 <table>
38 <tr>
39   <th>Links</th>
40   <th class="test_pass">Pass</th>
41   <th class="test_todo">Todo</th>
42   <th class="test_fail">Fail</th>
43   <th class="test_skip">Skip</th>
44   <th>File</th>
45 </tr>
47 <TMPL_LOOP name="files">
48     <tr> 
49        <td><TMPL_VAR name="links"></td>
50        <td class="test_pass" title="ok"><TMPL_VAR name="ok"></td>
51        <td class="test_todo" title="todo"><TMPL_VAR name="todo"></td>
52        <td class="test_fail" title="failed"><TMPL_VAR name="failed"></td>
53        <td class="test_skip" title="skipped"><TMPL_VAR name="skipped"></td>
54        <td><a href='<TMPL_VAR name='file'>'><TMPL_VAR name="file"></a></td>
55     </tr>
56 </TMPL_LOOP>
57 </table>
58 </TMPL_IF>
59 </body>
60 </html>