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

Last change on this file was 15291, checked in by Committo-Ergo-Sum, 8 years ago

Hide Doxygen's search form: Trac's one is enough.

  • Property svn:executable set to *
File size: 1.2 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    <style type='text/css'>
11      #MSearchBox {display:none !important}
12      div.title {clear: both}
13    </style>
14  </head>
15
16  <body>
17    <div id="content" class="doxygen">
18      <div py:if="doxygen_text" id="content" class="wiki">
19         <div class="wikipage">
20           <div id="searchable" py:content="doxygen_text" />
21        </div>
22      </div>
23
24      <div py:if="doxygen_content">
25        <!--!
26         !    Ideally it would be nice to be able to use Genshi xi:include
27         !    but there's currently no way to specify /no/ parsing on the
28         !    included file, as in:
29         !
30         !      <xi:include href="$doxygen_path" parse="" />
31         !
32         !    (using parse="text" won't work either, as the output will be
33         !     HTML escaped)
34         !-->
35        ${doxygen_content}
36      </div>
37
38    </div>
39  </body>
40</html>
Note: See TracBrowser for help on using the repository browser.