source: trunk/Documentation/idldoc/templates/warnings.tt @ 69

Last change on this file since 69 was 69, checked in by smasson, 18 years ago

debug + new xxx

File size: 4.3 KB
Line 
1
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5<!-- warnings-begin.tt needs structure with the following fields:
6       version : IDLdoc version
7       date : string containing date of file creation
8       embed : 0 for link to CSS, 1 for embed CSS
9       css_location : if embed then string filename of CSS file location, o/w href to CSS file
10       navbar_filename : filename of navbar template
11     Plus fields needed by the templates: navbar, tagline
12-->
13
14<!-- warnings-todo-header.tt needs structure with the following fields:
15-->
16
17<!-- warnings-todo-file.tt needs structure with the following fields:
18-->
19
20<!-- warnings-bugs-header.tt needs structure with the following fields:
21-->
22
23<!-- warnings-bugs-file.tt needs structure with the following fields:
24-->
25
26<!-- warnings-undoc-header.tt needs structure with the following fields:
27-->
28
29<!-- warnings-undoc-file.tt needs structure with the following fields:
30-->
31
32<!-- warnings-end.tt needs structure with the following fields:
33       version : IDLdoc version
34       date : string containing date of file creation
35       embed : 0 for link to CSS, 1 for embed CSS
36       css_location : if embed then string filename of CSS file location, o/w href to CSS file
37       navbar_filename : filename of navbar template
38     Plus fields needed by the templates: navbar, tagline
39-->
40
41<!-- Generated by IDLdoc [% version %] on [% date %] -->
42
43<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
44  <head>
45    <title>Warnings ([% title %])</title>
46
47    [% IF embed %]
48    <style type="text/css" media="all">
49         [% INCLUDE css_location %]
50    </style>   
51    <style type="text/css" media="print">
52         [% INCLUDE print_css_location %]
53    </style>
54    [% ELSE %]
55    <link rel="stylesheet" type="text/css" href="[% css_location %]" media="all"/>
56    <link rel="stylesheet" type="text/css" href="[% print_css_location %]" media="print"/>
57    [% END %]
58
59    <script type="text/javascript" src="./tree.js" />
60    <script type="text/javascript">
61      function setTitle() {
62        parent.document.title="Warnings ([% title %])";
63      }
64    </script>
65  </head>
66
67
68  <body onload="setTitle();">
69
70    [% INCLUDE_TEMPLATE navbar_filename %]
71
72    <div id="container">
73
74      <h1>Warnings</h1>
75     
76      <div class="toc">
77        <ol class="toc">
78          <li><a href="#todo">Todo items</a></li>
79          <li><a href="#bugs">Known bugs</a></li>
80          <li><a href="#undoc">Undocumented routines</a></li>
81          <li><a href="#obsolete">Obsolete routines</a></li>
82          <li><a href="#statistics">Routine statistics warnings</a></li>
83        </ol>
84      </div>
85
86      <div id="todo">
87        <h2>Todo items</h2>
88
89        <h3><a href="[% fileurl %]">[% filename %]</a></h3>
90        <dl>
91          [% FOREACH item IN items %]
92          <dt><a href="[% item.url %]">[% item.name %]</a></dt>
93          <dd>[% item.comment %]</dd>
94          [% END %]
95        </dl>
96      </div>     
97
98      <div id="bugs">
99        <h2>Known bugs</h2>
100        <a href="[% fileurl %]">[% filename %]</a>
101        <dl>
102          [% FOREACH bug IN bugs %]
103          <dt><a href="[% bug.url %]">[% bug.name %]</a></dt>
104          <dd>[% bug.comment %]</dd>
105        </dl>   
106      </div>
107
108      <div id="undoc">
109        <h2>Undocumented routines</h2>
110        <a href="[% fileurl %]">[% filename %]</a>
111        <table>
112          [% FOREACH r IN routines %]
113          <tr>
114            <td class="docroutine"><a href="[% r.url %]">[% r.name %]</a></td>
115            <td class="docstat [% IF r.partial %]partialdoc[% ELSE %]notdoc[% END %]">[% IF r.partial %]partially documented[% ELSE %]not documented[% END %]</td>
116          </tr>
117          [% END %]
118        </table>
119      </div>
120
121      <div id="obsolete">
122        <h2>Obsolete routines</h2>
123        <a href="[% fileurl %]">[% filename %]</a>
124        <table>
125          [% FOREACH r IN routines %]
126          <tr>
127            <td class="obsroutine"><a href="[% r.url %]">[% r.name %]</a></td>
128          </tr>
129          [% END %]
130        </table>
131      </div>
132
133      <div id="statistics">
134        <h2>Statistics warnings</h2>
135        <a href="[% fileurl %]">[% filename %]</a>
136        <table>
137          [% FOREACH r IN routines %]
138          <tr>
139            <td class="statroutine"><a href="[% r.url %]">[% r.name %]</a></td>
140            <td class="stat [% IF r.cyclic lt 10 %]caution[% ELSE %]warning[% END %]">[% r.cyclic %]</td>
141          </tr>
142          [% END %]
143        </table>
144      </div>
145
146      [% IF footer NE '' %]<div id="footer">[% INCLUDE footer %]</div>[% END %]
147
148      [% INCLUDE_TEMPLATE tagline_filename %]
149
150    </div>
151
152  </body>
153</html>
Note: See TracBrowser for help on using the repository browser.