diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 19:28:42 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 19:28:42 -0800 |
commit | 88b607994a148f4af5bffee163e39ce8296750c6 (patch) | |
tree | fa249ff843e976cf034f2029437d3362a8396321 /tools/droiddoc/templates-sdk | |
parent | 05806d7af62e07c6225b2e7103a1b115ecf6c9ad (diff) | |
download | build-88b607994a148f4af5bffee163e39ce8296750c6.zip build-88b607994a148f4af5bffee163e39ce8296750c6.tar.gz build-88b607994a148f4af5bffee163e39ce8296750c6.tar.bz2 |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'tools/droiddoc/templates-sdk')
-rw-r--r-- | tools/droiddoc/templates-sdk/assets-sdk/placeholder | 0 | ||||
-rw-r--r-- | tools/droiddoc/templates-sdk/customization.cs | 121 | ||||
-rw-r--r-- | tools/droiddoc/templates-sdk/data.hdf | 4 | ||||
-rw-r--r-- | tools/droiddoc/templates-sdk/devdoc-nav.cs | 66 | ||||
-rw-r--r-- | tools/droiddoc/templates-sdk/sdkpage.cs | 108 |
5 files changed, 299 insertions, 0 deletions
diff --git a/tools/droiddoc/templates-sdk/assets-sdk/placeholder b/tools/droiddoc/templates-sdk/assets-sdk/placeholder new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tools/droiddoc/templates-sdk/assets-sdk/placeholder diff --git a/tools/droiddoc/templates-sdk/customization.cs b/tools/droiddoc/templates-sdk/customization.cs new file mode 100644 index 0000000..4a1dde6 --- /dev/null +++ b/tools/droiddoc/templates-sdk/customization.cs @@ -0,0 +1,121 @@ +<?cs # This default template file is meant to be replaced. ?> +<?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?> + +<?cs +def:custom_masthead() ?> + <div id="header"> + <div id="headerLeft"> + <a href="<?cs var:toroot ?>index.html" tabindex="-1"><img + src="<?cs var:toroot ?>assets/images/bg_logo.png" alt="Android Developers" /></a> + <ul class="<?cs + if:reference ?>reference<?cs + elif:guide ?>guide<?cs + elif:sdk ?>sdk<?cs + elif:home ?>home<?cs + elif:community ?>community<?cs + elif:publish ?>publish<?cs + elif:about ?>about<?cs /if ?>"> + <li id="home-link"><a href="<?cs var:toroot ?><?cs + if:android.whichdoc != "online" ?>offline.html<?cs + else ?>index.html<?cs /if ?>"> + <span>Home</span></a></li> + <li id="sdk-link"><a href="<?cs var:toroot ?>sdk/1.1_r1/index.html"><span>SDK</span></a></li> + <li id="guide-link"><a href="<?cs var:toroot ?>guide/index.html" + onClick="return loadLast('guide')"><span>Dev Guide</span></a></li> + <li id="reference-link"><a href="<?cs var:toroot ?>reference/packages.html" + onClick="return loadLast('reference')"><span>Reference</span></a></li> + <li><a href="http://android-developers.blogspot.com"><span>Blog</span></a></li> + <li id="community-link"><a href="<?cs var:toroot ?>community/index.html"><span>Community</span></a></li> + </ul> + </div> + <div id="headerRight"> + <div id="headerLinks"> + <!-- <img src="<?cs var:toroot ?>assets/images/icon_world.jpg" alt="" /> --> + <span class="text"> + <!-- <a href="#">English</a> | --> + <a href="http://www.android.com">Android.com</a> + </span> + </div><?cs + call:default_search_box() ?> + </div><!-- headerRight --> + </div><!-- header --><?cs +/def ?><?cs # custom_masthead ?> + +<?cs +def:sdk_nav() ?> + <div class="g-section g-tpl-240" id="body-content"> + <div class="g-unit g-first not-resizable" id="side-nav"> + <div id="devdoc-nav"><?cs + include:"../../../../frameworks/base/docs/html/sdk/sdk_toc.cs" ?> + </div> + </div> <!-- end side-nav --> +<?cs /def ?> + +<?cs +def:guide_nav() ?> + <div class="g-section g-tpl-240" id="body-content"> + <div class="g-unit g-first side-nav-resizable" id="side-nav"> + <div id="devdoc-nav"><?cs + include:"../../../../frameworks/base/docs/html/guide/guide_toc.cs" ?> + </div> + </div> <!-- end side-nav --> + <script> + addLoadEvent(function() { + scrollIntoView("devdoc-nav"); + }); + </script> +<?cs /def ?> + +<?cs +def:publish_nav() ?> + <div class="g-section g-tpl-180" id="body-content"> + <div class="g-unit g-first" id="side-nav"> + <div id="devdoc-nav"><?cs + include:"../../../../frameworks/base/docs/html/publish/publish_toc.cs" ?> + </div> + </div> <!-- end side-nav --> +<?cs /def ?> + +<?cs +def:custom_left_nav() ?><?cs + if:guide ?><?cs + call:guide_nav() ?><?cs + elif:publish ?><?cs + call:publish_nav() ?><?cs + elif:sdk ?><?cs + call:sdk_nav() ?><?cs + else ?><?cs + call:default_left_nav() ?><?cs + /if ?><?cs +/def ?> + +<?cs # appears at the bottom of every page ?><?cs +def:custom_cc_copyright() ?> + Except as noted, this content is + licensed under <a href="http://creativecommons.org/licenses/by/2.5/"> + Creative Commons Attribution 2.5</a>. For details and + restrictions, see the <a href="<?cs var:toroot ?>license.html">Content + License</a>.<?cs +/def ?> + +<?cs +def:custom_copyright() ?> + Except as noted, this content is licensed under <a + href="http://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a>. + For details and restrictions, see the <a href="<?cs var:toroot ?>license.html"> + Content License</a>.<?cs +/def ?> + +<?cs +def:custom_footerlinks() ?> + <p> + <a href="http://www.android.com/terms.html">Site Terms of Service</a> - + <a href="http://www.android.com/privacy.html">Privacy Policy</a> - + <a href="http://www.android.com/branding.html">Brand Guidelines</a> + </p><?cs +/def ?> + +<?cs # appears on the right side of the blue bar at the bottom of every page ?><?cs +def:custom_buildinfo() ?> + Android 1.1 r1 - <?cs var:page.now ?><?cs +/def ?> diff --git a/tools/droiddoc/templates-sdk/data.hdf b/tools/droiddoc/templates-sdk/data.hdf new file mode 100644 index 0000000..9411b78 --- /dev/null +++ b/tools/droiddoc/templates-sdk/data.hdf @@ -0,0 +1,4 @@ +template { + which = normal +} + diff --git a/tools/droiddoc/templates-sdk/devdoc-nav.cs b/tools/droiddoc/templates-sdk/devdoc-nav.cs new file mode 100644 index 0000000..a69c175 --- /dev/null +++ b/tools/droiddoc/templates-sdk/devdoc-nav.cs @@ -0,0 +1,66 @@ +<ul> + <li><div><a href="<?cs var:toroot ?>index.html">Home</a></div></li> + <li><div><a href="<?cs var:toroot ?>what-is-android.html">What is Android?</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/index.html">Getting Started</a></div> + <ul> + <li><div><a href="<?cs var:toroot ?>intro/installing.html">Installing the SDK</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/upgrading.html">Upgrading the SDK</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/develop-and-debug.html">Developing/Debugging</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/hello-android.html">Hello Android</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/anatomy.html">Anatomy of an App</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/tutorial.html">Notepad Tutorial</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/tools.html">Development Tools</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/appmodel.html">Application Model</a></div></li> + <li><div><a href="<?cs var:toroot ?>intro/lifecycle.html">Application Life Cycle</a></div></li> + </ul> + </li> + <li><div><div><a href="<?cs var:toroot ?>devel/index.html">Developing Applications</a></div> + <ul> + <li><div><a href="<?cs var:toroot ?>devel/implementing-ui.html">Implementing a UI</a></div></li> + <li><div><a href="<?cs var:toroot ?>devel/building-blocks.html">Building Blocks</a></div></li> + <li><div><a href="<?cs var:toroot ?>devel/data.html">Data Storage and Retrieval</a></div></li> + <li><div><a href="<?cs var:toroot ?>devel/security.html">Security Model</a></div></li> + <li><div><a href="<?cs var:toroot ?>devel/resources-i18n.html">Resources and i18n</a></div></li> + </ul> + </li> + <li><div><a href="<?cs var:toroot ?>toolbox/index.html">Developer Toolbox</a></div> + <ul> + <li><div><a href="<?cs var:toroot ?>toolbox/philosophy.html">Design Philosophy</a></div></li> + <li><div><a href="<?cs var:toroot ?>toolbox/custom-components.html">Building Custom Components</a></div></li> + <li><div><a href="<?cs var:toroot ?>toolbox/optional-apis.html">Optional APIs</a></div></li> + </ul> + </li> + <li><div><a href="<?cs var:toroot ?>samples/index.html">Sample Code</a></div> + <ul> + <li><div><a href="<?cs var:toroot ?>samples/ApiDemos/index.html">API Demos</a></div></li> + <li><div><a href="<?cs var:toroot ?>samples/LunarLander/index.html">Lunar Lander</a></div></li> + <li><div><a href="<?cs var:toroot ?>samples/NotePad/index.html">Note Pad</a></div></li> + </ul> + </li> + <li> <a href="<?cs var:toroot ?>reference/index.html"><strong>Reference Information</strong></a> + <ul> + <li><a href="<?cs var:toroot ?>reference/packages.html">Package Index</a></li> + <li><a href="<?cs var:toroot ?>reference/classes.html">Class Index</a></li> + <li><a href="<?cs var:toroot ?>reference/hierarchy.html">Class Hierarchy</a></li> + <li><a href="<?cs var:toroot ?>reference/view-gallery.html">List of Views</a></li> + <li><a href="<?cs var:toroot ?>reference/available-intents.html">List of Intents</a></li> + <li><a href="<?cs var:toroot ?>reference/android/Manifest.permission.html">List of Permissions</a></li> + <li><a href="<?cs var:toroot ?>reference/available-resources.html">List of Resource Types</a></li> + <li><a href="<?cs var:toroot ?>reference/aidl.html">Android IDL</a></li> + <li><a href="<?cs var:toroot ?>reference/glossary.html">Glossary</a></li> + <li><a href="<?cs var:toroot ?>reference/keywords.html">Index</a></li> + </ul> + </li> + <li><div><a href="<?cs var:toroot ?>kb/index.html">FAQs</a></div> + <ul> + <li><div><a href="<?cs var:toroot ?>kb/general.html">General</a></div></li> + <li><div><a href="<?cs var:toroot ?>kb/commontasks.html">Common Tasks</a></div></li> + <li><div><a href="<?cs var:toroot ?>kb/troubleshooting.html">Troubleshooting</a></div></li> + <li><div><a href="<?cs var:toroot ?>kb/licensingandoss.html">Open Source Licensing</a></div></li> + <li><div><a href="<?cs var:toroot ?>kb/framework.html">Application Framework</a></div></li> + <li><div><a href="<?cs var:toroot ?>kb/security.html">Security</a></div></li> + </ul> + </li> + <li><div><a href="<?cs var:toroot ?>roadmap.html">Roadmap</a></div></li> + <li><div><a href="<?cs var:toroot ?>goodies/index.html">Goodies</a></div></li> +</ul>
\ No newline at end of file diff --git a/tools/droiddoc/templates-sdk/sdkpage.cs b/tools/droiddoc/templates-sdk/sdkpage.cs new file mode 100644 index 0000000..b425da0 --- /dev/null +++ b/tools/droiddoc/templates-sdk/sdkpage.cs @@ -0,0 +1,108 @@ +<?cs include:"doctype.cs" ?> +<?cs include:"macros.cs" ?> +<html> +<?cs if:sdk.redirect ?> + <head> + <title>Redirecting...</title> + <meta http-equiv="refresh" content="0;url=<?cs var:toroot ?>sdk/<?cs var:sdk.redirect ?>/index.html"> + <link href="<?cs var:toroot ?>assets/android-developer-docs.css" rel="stylesheet" type="text/css" /> + </head> +<?cs else ?> + <?cs include:"head_tag.cs" ?> +<?cs /if ?> +<body class="gc-documentation"> +<a name="top"></a> +<?cs call:custom_masthead() ?> + +<?cs call:sdk_nav() ?> + + +<div class="g-unit" id="doc-content" > + +<?cs if:sdk.redirect ?> + Redirecting to + <a href="<?cs var:toroot ?>sdk/<?cs var:sdk.redirect ?>/index.html"> + <?cs var:toroot ?>sdk/<?cs var:sdk.redirect ?>/index.html + </a>... +<?cs else ?> + + <div id="jd-header" class="guide-header" > + <span class="crumb"> </span> + <h1><?cs if:android.whichdoc == "online" ?>Download <?cs /if ?><?cs var:page.title ?></h1> + </div> + + +<div id="jd-content"> + + <p><em> + <?cs var:sdk.date ?> + </em></p> + +<?cs if:sdk.not_latest_version ?> + <div class="special"> + <p><strong>This is NOT the current Android SDK release.</strong></p> + <p>Use the links under <strong>Current SDK Release</strong>, on the left, to be directed to the current SDK.</p> + </div> +<?cs /if ?> + + +<?cs if:android.whichdoc != "online" ?> + +<p>The sections below provide an overview of the SDK package. </p> + +<?cs else ?> + +<p>Before downloading, please read the <a href="<?cs var:toroot ?>sdk/<?cs var:sdk.version ?>/requirements.html"> +System Requirements</a> document. As you start the download, you will also need to review and agree to +the Terms and Conditions that govern the use of the Android SDK. </p> + + <table class="download"> + <tr> + <th>Platform</th> + <th>Package</th> + <th>Size</th> + <th>MD5 Checksum</th> + </tr> + <tr> + <td>Windows</td> + <td> + <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.win_download ?>"><?cs var:sdk.win_download ?></a> + </td> + <td><?cs var:sdk.win_bytes ?> bytes</td> + <td><?cs var:sdk.win_checksum ?></td> + </tr> + <tr class="alt-color"> + <td>Mac OS X (intel)</td> + <td> + <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.mac_download ?>"><?cs var:sdk.mac_download ?></a> + </td> + <td><?cs var:sdk.mac_bytes ?> bytes</td> + <td><?cs var:sdk.mac_checksum ?></td> + </tr> + <tr> + <td>Linux (i386)</td> + <td> + <a href="<?cs var:toroot ?>sdk/download.html?v=<?cs var:sdk.linux_download ?>"><?cs var:sdk.linux_download ?></a> + </td> + <td><?cs var:sdk.linux_bytes ?> bytes</td> + <td><?cs var:sdk.linux_checksum ?></td> + </tr> + </table> + +<?cs /if ?> + + <?cs call:tag_list(root.descr) ?> + +<?cs /if ?> +</div><!-- end jd-content --> + +<?cs include:"footer.cs" ?> +</div><!-- end doc-content --> + +<?cs include:"trailer.cs" ?> + +</body> +</html> + + + |