25fda19689
and rename navtree.js to android-developer-reference.js for all reference related scripts TODO: shading for hidden classes in the treeview navigation... these aren't dynamic yet.
38 lines
892 B
C#
38 lines
892 B
C#
<?cs include:"doctype.cs" ?>
|
|
<?cs include:"macros.cs" ?>
|
|
<html>
|
|
<?cs include:"head_tag.cs" ?>
|
|
<body class="gc-documentation">
|
|
<?cs include:"header.cs" ?>
|
|
|
|
<div class="g-unit" id="doc-content">
|
|
|
|
<div id="jd-header">
|
|
<h1><?cs var:page.title ?></h1>
|
|
</div>
|
|
|
|
<div id="jd-content">
|
|
|
|
<div class="jd-descr">
|
|
<p><?cs call:tag_list(root.descr) ?></p>
|
|
</div>
|
|
|
|
<?cs set:count = #1 ?>
|
|
<table class="jd-sumtable">
|
|
<?cs each:pkg = docs.packages ?>
|
|
<tr class="<?cs if:count % #2 ?>alt-color<?cs /if ?> api apilevel-<?cs var:pkg.since ?>" >
|
|
<td class="jd-linkcol"><?cs call:package_link(pkg) ?></td>
|
|
<td class="jd-descrcol" width="100%"><?cs call:tag_list(pkg.shortDescr) ?> </td>
|
|
</tr>
|
|
<?cs set:count = count + #1 ?>
|
|
<?cs /each ?>
|
|
</table>
|
|
|
|
<?cs include:"footer.cs" ?>
|
|
</div><!-- end jd-content -->
|
|
</div> <!-- end doc-content -->
|
|
|
|
<?cs include:"trailer.cs" ?>
|
|
|
|
</body>
|
|
</html>
|