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

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

debug + new xxx

File size: 2.7 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="[% root %]/main_files.css" media="all"/>
56    <link rel="stylesheet" type="text/css" href="[% root %]/main_files_print.css" 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>
Note: See TracBrowser for help on using the repository browser.