Skip to content

Commit d4a062e

Browse files
committed
init
0 parents  commit d4a062e

File tree

9 files changed

+1826
-0
lines changed

9 files changed

+1826
-0
lines changed

allclasses.tmpl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
<div>
3+
{+new Link().toFile("files.html").withText("File Index")+} <br/>
4+
{+new Link().toFile("index.html").withText("Class Index")+}
5+
</div><br/>
6+
<h2>Classes</h2>
7+
<ul class="classList">
8+
<for each="thisClass" in="data">
9+
<li>{!
10+
if (thisClass.alias == "_global_") {
11+
output += "<i>"+new Link().toClass(thisClass.alias)+"</i>";
12+
}
13+
else {
14+
output += new Link().toClass(thisClass.alias);
15+
}
16+
!}</li>
17+
</for>
18+
</ul>

allfiles.tmpl

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4+
<head>
5+
<meta http-equiv="content-type" content="text/html; charset={+IO.encoding+}" />
6+
{! Link.base = ""; /* all generated links will be relative to this */ !}
7+
<title>JsDoc Reference - File Index</title>
8+
<meta name="generator" content="JsDoc Toolkit" />
9+
10+
<link rel="stylesheet" href="static/default.css" type="text/css" media="screen" charset="utf-8" />
11+
12+
</head>
13+
14+
<body>
15+
{+include("header.html")+}
16+
17+
<div id="index">
18+
{+publish.classesIndex+}
19+
</div>
20+
21+
<div id="content">
22+
<h1 class="classTitle">File Index</h1>
23+
24+
<for each="item" in="data">
25+
<div>
26+
<h2>{+new Link().toSrc(item.alias).withText(item.name)+}</h2>
27+
<if test="item.desc">{+resolveLinks(item.desc)+}</if>
28+
<dl>
29+
<if test="item.author">
30+
<dt class="heading">Author:</dt>
31+
<dd>{+item.author+}</dd>
32+
</if>
33+
<if test="item.version">
34+
<dt class="heading">Version:</dt>
35+
<dd>{+item.version+}</dd>
36+
</if>
37+
{! var locations = item.comment.getTag('location').map(function($){return $.toString().replace(/(^\$ ?| ?\$$)/g, '').replace(/^HeadURL: https:/g, 'http:');}) !}
38+
<if test="locations.length">
39+
<dt class="heading">Location:</dt>
40+
<for each="location" in="locations">
41+
<dd><a href="{+location+}">{+location+}</a></dd>
42+
</for>
43+
</if>
44+
</dl>
45+
</div>
46+
<hr />
47+
</for>
48+
49+
</div>
50+
<div class="fineprint" style="clear:both">
51+
<if test="JSDOC.opt.D.copyright">&copy;{+JSDOC.opt.D.copyright+}<br /></if>
52+
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> {+JSDOC.VERSION+} on {+new Date()+}
53+
</div>
54+
</body>
55+
</html>

0 commit comments

Comments
 (0)