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

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

0.7.5: Conform to PEP8

File size: 1.6 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:xi="http://www.w3.org/2001/XInclude"
6      xmlns:i18n="http://genshi.edgewall.org/i18n"
7      i18n:domain="inieditorpanel"
8      xmlns:py="http://genshi.edgewall.org/">
9  <xi:include href="admin.html" />
10  <head>
11    <title>Doxyfile Generator</title>
12  </head>
13  <body>
14    <div class="toparea">
15      <div py:if="msg">
16  <span class="arrow" onclick="toggle_display_next(this)">► ${msg}
17  </span><pre style='display: none'>
18    ${trace}
19  </pre>
20      </div>
21      <h2 class="doxygenplugin">Doxyfile Generator</h2>
22      <div id="select_section_form" py:if="fieldsets">
23        <form action=""
24        method="post"
25        onsubmit="return !(!check_dir(this, 'OUTPUT_DIRECTORY') || !check_dir(this, 'INPUT'))"
26        enctype="multipart/form-data;charset=UTF-8" >
27    <fieldset py:for="k,d in fieldsets.iteritems()">
28      <legend class="doxygenplugin arrow" onclick="toggle_display_next(this)">► ${k}</legend>
29      <div style='display:${d.display}'>
30        <div py:for="id,s in d.opt.iteritems()" class="labelinput ${s.atclass}">
31    <label for="${id}" class="arrow" onclick="toggle_display_next(this)">► ${id}
32    </label><pre style='display:none'>${s.label}</pre>
33    <span py:if="s.default"
34          >${s.default}</span><input id="${id}" name="${id}" value="${s.value}" size="${s.size}" />
35        </div>
36      </div>
37    </fieldset>
38          <div><input type="submit" /></div>
39        </form>
40      </div>
41    </div>
42  </body>
43</html>
Note: See TracBrowser for help on using the repository browser.