-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.tmpl
60 lines (51 loc) · 1.98 KB
/
index.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset={+IO.encoding+}" />
<title>JsDoc Reference - Index</title>
<meta name="generator" content="JsDoc Toolkit" />
<link rel="stylesheet" href="static/{+JSDOC.opt.D.cssFile+}" type="text/css" media="screen" charset="utf-8" />
</head>
<body>
{+include("header.html")+}
<div id="index">
<div id="docs">
{+publish.docsIndex+}
</div>
{+publish.classesIndex+}
</div>
<div id="content">
<h1 class="classTitle">Class Index</h1>
<for each="thisClass" in="data">
<div class="member">
{!
var classType = "";
if (thisClass.isBuiltin()) {
classType += "Built-In ";
}
if (thisClass.isNamespace) {
if (thisClass.is('FUNCTION')) {
classType += "Function ";
}
classType += "Namespace ";
}
else {
classType += "Class ";
}
!}
<div class="fixedFont modifiers" style="float:right">
{+ classType +}
</div>
<h2>{+(new Link().toSymbol(thisClass.alias))+}</h2>
{+resolveLinks(summarize(thisClass.classDesc))+}
</div>
</for>
<hr />
</div>
<div class="fineprint" style="clear:both;text-align:center">
<if test="JSDOC.opt.D.copyright">©{+JSDOC.opt.D.copyright+}<br /></if>
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> {+JSDOC.VERSION+} on {+new Date()+}
</div>
</body>
</html>