corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html>
4 <% --[[--
5 index.lp from the Kepler Project's LuaDoc HTML doclet.
6 http://keplerproject.github.com/luadoc/
7 --]] %>
8 <head>
9 <title>Reference</title>
10 <link rel="stylesheet" href="<%=luadoc.doclet.html.link("luadoc.css")%>" type="text/css" />
11 <!--meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/-->
12 </head>
13  
14 <body>
15 <div id="container">
16  
17 <div id="product">
18 <div id="product_logo"></div>
19 <div id="product_name"><big><b></b></big></div>
20 <div id="product_description"></div>
21 </div> <!-- id="product" -->
22  
23 <div id="main">
24  
25 <div id="navigation">
26 <%=luadoc.doclet.html.include("menu.lp", { doc=doc })%>
27  
28 </div> <!-- id="navigation" -->
29  
30 <div id="content">
31  
32  
33 <%if not options.nomodules and #doc.modules > 0 then%>
34 <h2>Modules</h2>
35 <table class="module_list">
36 <!--<tr><td colspan="2">Modules</td></tr>-->
37 <%for _, modulename in ipairs(doc.modules) do%>
38 <tr>
39 <td class="name"><a href="<%=luadoc.doclet.html.module_link(modulename, doc)%>"><%=modulename%></a></td>
40 <td class="summary"><%=doc.modules[modulename].summary%></td>
41 </tr>
42 <%end%>
43 </table>
44 <%end%>
45  
46  
47  
48 <%if not options.nofiles and #doc.files > 0 then%>
49 <h2>Files</h2>
50 <table class="file_list">
51 <!--<tr><td colspan="2">Files</td></tr>-->
52 <%for _, filepath in ipairs(doc.files) do%>
53 <tr>
54 <td class="name"><a href="<%=luadoc.doclet.html.file_link(filepath)%>"><%=filepath%></a></td>
55 <td class="summary"></td>
56 </tr>
57 <%end%>
58 </table>
59 <%end%>
60  
61 </div> <!-- id="content" -->
62  
63 </div> <!-- id="main" -->
64  
65 <div id="about">
66 <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
67 </div> <!-- id="about" -->
68  
69 </div> <!-- id="container" -->
70 </body>
71 </html>