source: doxygenplugin/0.11/doxygentrac/templates/doxygen.html

Last change on this file was 15902, checked in by Ryan J Ollos, 7 years ago

0.7.4: Fix duplicate id attribute values

Patch by ntmlod.

Fixes #12872.

  • Property svn:executable set to *
File size: 1.1 KB
Line 
1<!DOCTYPE html
2    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml"
5      xmlns:py="http://genshi.edgewall.org/"
6      xmlns:xi="http://www.w3.org/2001/XInclude">
7  <xi:include href="layout.html" />
8  <head>
9    <title>Doxygen Trac</title>
10  </head>
11
12  <body>
13    <div id="content" class="doxygen">
14      <div py:if="doxygen_text" id="doxygen_text" class="wiki">
15         <div class="wikipage">
16           <div id="searchable" py:content="doxygen_text" />
17        </div>
18      </div>
19
20      <div py:if="doxygen_content">
21        <!--!
22         !    Ideally it would be nice to be able to use Genshi xi:include
23         !    but there's currently no way to specify /no/ parsing on the
24         !    included file, as in:
25         !
26         !      <xi:include href="$doxygen_path" parse="" />
27         !
28         !    (using parse="text" won't work either, as the output will be
29         !     HTML escaped)
30         !-->
31        ${doxygen_content}
32      </div>
33
34    </div>
35  </body>
36</html>
Note: See TracBrowser for help on using the repository browser.