thirdparty/jsdoctoolkit/templates/jsdoc/allclasses.tmpl
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 26 Oct 2009 10:25:01 -0700
changeset 3062 4b5a7e5746a0
parent 3041 c8f47f0b6697
permissions -rw-r--r--
Now showing the message contained in Requests on the correct pages. Note that facilities to edit your message, and to perhaps change the message when accepting a request still need to be provided. Fixes Issue 385.

<div align="center">{+new Link().toFile("index.html").withText("Class Index")+}
| {+new Link().toFile("files.html").withText("File Index")+}</div>
<hr />
<h2>Classes</h2>
<ul class="classList">
	<for each="thisClass" in="data">
	<li>{!
		if (thisClass.alias == "_global_") {
			output += "<i>"+new Link().toClass(thisClass.alias)+"</i>";
		}
		else {
			output += new Link().toClass(thisClass.alias);
		}
	!}</li>
	</for>
</ul>
<hr />