packages.cs revision e4a8ab1a445a38a7b316513b1eac300d41eb49f7
1<?cs # THIS CREATES A LIST OF ALL PACKAGES AND NAMES IT packages.html ?>
2<?cs include:"macros.cs" ?>
3<?cs include:"doctype.cs" ?>
4<html<?cs if:devsite ?> devsite<?cs /if ?>>
5<?cs include:"head_tag.cs" ?>
6<?cs include:"body_tag.cs" ?>
7<?cs include:"header.cs" ?>
8
9<h1><?cs var:page.title ?></h1>
10<p>These are the API packages.
11See all <a href="classes.html">API classes</a>.</p>
12
13<?cs set:count = #1 ?>
14<table>
15<?cs each:pkg = docs.packages ?>
16    <tr class="api apilevel-<?cs var:pkg.since ?>" >
17        <td class="jd-linkcol"><?cs call:package_link(pkg) ?></td>
18        <td class="jd-descrcol" width="100%"><?cs call:tag_list(pkg.shortDescr) ?></td>
19    </tr>
20<?cs set:count = count + #1 ?>
21<?cs /each ?>
22</table>
23
24<?cs if:!devsite ?>
25<?cs include:"footer.cs" ?>
26<?cs include:"trailer.cs" ?>
27<?cs /if ?>
28</body>
29</html>
30