blob: 6a0f64c3596ccaf4be43ef68fceb38fe1890c186 [file] [log] [blame]
The Android Open Source Projectdcc08f02008-12-17 18:03:49 -08001<?cs # This default template file is meant to be replaced. ?>
2<?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?>
3
4<?cs def:custom_masthead() ?>
5<div id="header">
6 <div id="headerLeft">
7 <a href="<?cs var:toroot ?>index.html" tabindex="-1"><img
8 src="<?cs var:toroot ?>assets/images/bg_logo.jpg" /></a>
9 </div>
10 <div id="headerRight">
11 <div id="headerLinks" align="right">
12 <img src="<?cs var:toroot ?>assets/images/icon_world.jpg"><span class="text">&nbsp;<a href="#">English</a> | <a href="http://www.android.com">Android.com</a></span>
13 </div>
14
15 <?cs call:default_search_box() ?>
16 <ul class="<?cs
17 if:reference ?>reference<?cs
18 elif:guide ?>guide<?cs
19 elif:sdk ?>sdk<?cs
20 elif:home ?>home<?cs
21 elif:community ?>community<?cs
22 elif:publish ?>publish<?cs
23 elif:about ?>about<?cs /if ?>">
24 <?cs if:android.whichdoc == "online" ?>
25 <li id="home-link"><a href="<?cs var:toroot ?>index.html"><span>Home</span></a></li>
26 <?cs /if ?>
27 <li id="sdk-link"><a href="<?cs var:toroot ?>sdk/index.html"><span>SDK</span></a></li>
28 <li id="guide-link"><a href="<?cs var:toroot ?>guide/index.html"
29 onClick="return loadLast('guide')"><span>Dev Guide</span></a></li>
30 <li id="reference-link"><a href="<?cs var:toroot ?>reference/packages.html"
31 onClick="return loadLast('reference')"><span>Reference</span></a></li>
32 <li><a href="http://android-developers.blogspot.com"><span>Blog</span></a></li>
33 <li id="community-link"><a href="<?cs var:toroot ?>community/index.html"><span>Community</span></a></li>
34 </ul>
35
36 </div><!-- headerRight -->
37</div><!-- header -->
38
39<?cs /def ?><?cs # custom_masthead ?>
40
41<?cs def:sdk_nav() ?>
42<div class="g-section g-tpl-180" id="body-content">
43 <div class="g-unit g-first" id="side-nav">
44 <div id="devdoc-nav">
45 <?cs include:"../../../java/android/html/sdk/sdk_toc.cs" ?>
46 </div>
47 </div> <!-- end side-nav -->
48<?cs /def ?>
49
50<?cs def:guide_nav() ?>
51<div class="g-section g-tpl-240" id="body-content">
52 <div class="g-unit g-first side-nav-resizable" id="side-nav">
53 <div id="devdoc-nav">
54 <?cs include:"../../../java/android/html/guide/guide_toc.cs" ?>
55 </div>
56 </div> <!-- end side-nav -->
57 <script>
58 addLoadEvent(function() {
59 scrollIntoView("devdoc-nav");
60 });
61 </script>
62<?cs /def ?>
63
64<?cs def:publish_nav() ?>
65<div class="g-section g-tpl-180" id="body-content">
66 <div class="g-unit g-first" id="side-nav">
67 <div id="devdoc-nav">
68 <?cs include:"../../../java/android/html/publish/publish_toc.cs" ?>
69 </div>
70 </div> <!-- end side-nav -->
71<?cs /def ?>
72
73<?cs def:custom_left_nav() ?>
74 <?cs if:guide ?>
75 <?cs call:guide_nav() ?>
76 <?cs elif:publish ?>
77 <?cs call:publish_nav() ?>
78 <?cs elif:sdk ?>
79 <?cs call:sdk_nav() ?>
80 <?cs else ?>
81 <?cs call:default_left_nav() ?>
82 <?cs /if ?>
83<?cs /def ?>
84
85
86<?cs # appears on the left side of the blue bar at the bottom of every page ?>
87<?cs def:custom_copyright() ?>Copyright 2008 <a href="http://source.android.com/">The Android Open Source Project</a><?cs /def ?>
88
89<?cs # appears on the right side of the blue bar at the bottom of every page ?>
90<?cs def:custom_buildinfo() ?>Build <?cs var:page.build ?> - <?cs var:page.now ?><?cs /def ?>