Patch 3: add "Since:" to the api level info Patch 4: fix packages page and styles to reveal class summary Squashed commit of the following: commit 8fcdcb8dcbe9b93688f5eb1020654848d3242675 Author: Scott Main <smain@google.com> Date: Mon Jul 27 09:33:45 2009 -0700 remove the toggle selector from the header. this will be added in a later change with the rest of the toggle script commit 2423b30ee46c12f92051c4f2a096532e55752c46 Author: Scott Main <smain@google.com> Date: Fri Jul 24 16:29:21 2009 -0700 Implement API Level styles. This changes the way we show the API Level for a given package/class/member. It also provides hooks in the document to allow us to restyle items based on a user-selected API Level (show/hide available items). More changes to provide the toggling feature will come soon. commit efd94b33071070f0dfc2045131b81cbdfe078468 Author: Scott Main <smain@google.com> Date: Mon Jul 27 09:33:45 2009 -0700 remove the toggle selector from the header. this will be added in a later change with the rest of the toggle script commit 3fb79313232c993f700ee90a94f59dcca275fb0b Author: Scott Main <smain@google.com> Date: Fri Jul 24 16:29:21 2009 -0700 Implement API Level styles. This changes the way we show the API Level for a given package/class/member. It also provides hooks in the document to allow us to restyle items based on a user-selected API Level (show/hide available items). More changes to provide the toggling feature will come soon.
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
<?cs include:"doctype.cs" ?>
|
|
<?cs include:"macros.cs" ?>
|
|
<html>
|
|
<?cs include:"head_tag.cs" ?>
|
|
<?cs include:"header.cs" ?>
|
|
|
|
<div class="g-unit" id="doc-content">
|
|
|
|
<div id="jd-header">
|
|
package
|
|
<h1><?cs var:package.name ?></h1>
|
|
<div class="jd-nav">
|
|
<?cs if:subcount(package.shortDescr) ?>
|
|
Classes |
|
|
<a class="jd-navlink" href="package-descr.html">Description</a>
|
|
<?cs /if ?>
|
|
</div>
|
|
<span class="api-level">
|
|
<?cs call:since_tags(package) ?>
|
|
</span>
|
|
</div>
|
|
|
|
<div id="jd-content">
|
|
|
|
<?cs if:subcount(package.shortDescr) ?>
|
|
<div class="jd-descr">
|
|
<p><?cs call:tag_list(package.shortDescr) ?></p>
|
|
<p><span class="jd-more"><a href="package-descr.html">more...</a></span></p>
|
|
</div>
|
|
<?cs /if ?>
|
|
|
|
<?cs def:class_table(label, classes) ?>
|
|
<?cs if:subcount(classes) ?>
|
|
<h3><?cs var:label ?></h3>
|
|
<div class="jd-sumtable">
|
|
<?cs call:class_link_table(classes) ?>
|
|
</div>
|
|
<?cs /if ?>
|
|
<?cs /def ?>
|
|
|
|
<?cs call:class_table("Interfaces", package.interfaces) ?>
|
|
<?cs call:class_table("Classes", package.classes) ?>
|
|
<?cs call:class_table("Enums", package.enums) ?>
|
|
<?cs call:class_table("Exceptions", package.exceptions) ?>
|
|
<?cs call:class_table("Errors", package.errors) ?>
|
|
|
|
<?cs include:"footer.cs" ?>
|
|
</div><!-- end jd-content -->
|
|
</div><!-- doc-content -->
|
|
|
|
<?cs include:"trailer.cs" ?>
|
|
|
|
</body>
|
|
</html>
|