ciform/tools/build/jsdoc-template/allclasses.tmpl
cbonar 24aaab641f - no more add-header : using one yui compressor special feature to preserve copyright notice inside minified artifacts
- removed revision number in the 'publications' directory
+ jsdoc-template for this project (still things to do)
+ tools to generate ant call hierarchy
2012-02-09 19:16:54 +01:00

17 lines
434 B
Cheetah

<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 />