AI 144207: am: CL 144166 am: CL 144164 Adding droiddocs/javadocs usage to Pdk-docs to get correct style.
Original author: mritter Merged from: //branches/cupcake/... Original author: android-build Merged from: //branches/donutburger/... Automated import of CL 144207
This commit is contained in:
parent
32a27c8577
commit
c47ae940ee
5 changed files with 149 additions and 0 deletions
BIN
tools/droiddoc/templates-pdk/assets-pdk/favicon.ico
Normal file
BIN
tools/droiddoc/templates-pdk/assets-pdk/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
0
tools/droiddoc/templates-pdk/assets-pdk/placeholder
Normal file
0
tools/droiddoc/templates-pdk/assets-pdk/placeholder
Normal file
98
tools/droiddoc/templates-pdk/customization.cs
Normal file
98
tools/droiddoc/templates-pdk/customization.cs
Normal file
|
@ -0,0 +1,98 @@
|
|||
<?cs # This file defines custom definitions for the masthead (logo, searchbox, tabs, etc) and
|
||||
left nav (toc) that gets placed on all pages. ?>
|
||||
|
||||
<?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 Porting Development Kit" /></a>
|
||||
<ul class="<?cs
|
||||
if:reference ?> <?cs
|
||||
elif:guide ?> <?cs
|
||||
elif:sdk ?> <?cs
|
||||
elif:home ?> <?cs
|
||||
elif:community ?> <?cs
|
||||
elif:publish ?> <?cs
|
||||
elif:about ?> <?cs /if ?>">
|
||||
<li id="home-link"><a href="<?cs var:toroot ?><?cs
|
||||
if:android.whichdoc != "online-pdk" ?>offline.html<?cs
|
||||
else ?>index.html<?cs /if ?>">
|
||||
<span>Home</span></a></li>
|
||||
<!--<li id="sdk-link"><a href="<?cs var:toroot ?>index.html"><span>SDK</span></a></li>-->
|
||||
<li id="guide-link"><a href="<?cs var:toroot ?>guide/index.html"
|
||||
onClick="return loadLast('guide')"><span>Porting 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: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:"../../../../development/pdk/docs/html/guide/guide_toc.cs" ?>
|
||||
</div>
|
||||
</div> <!-- end side-nav -->
|
||||
<script>
|
||||
addLoadEvent(function() {
|
||||
scrollIntoView("devdoc-nav");
|
||||
});
|
||||
</script>
|
||||
<?cs /def ?>
|
||||
|
||||
<?cs
|
||||
def:custom_left_nav() ?><?cs
|
||||
if:guide ?><?cs
|
||||
call:guide_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 off every page ?><?cs
|
||||
def:custom_buildinfo() ?>
|
||||
Android <?cs var:sdk.platform.version ?> r<?cs var:sdk.rel.id ?> - <?cs var:page.now ?>
|
||||
<?cs /def ?>
|
4
tools/droiddoc/templates-pdk/data.hdf
Normal file
4
tools/droiddoc/templates-pdk/data.hdf
Normal file
|
@ -0,0 +1,4 @@
|
|||
template {
|
||||
which = normal
|
||||
}
|
||||
|
47
tools/droiddoc/templates-pdk/head_tag.cs
Normal file
47
tools/droiddoc/templates-pdk/head_tag.cs
Normal file
|
@ -0,0 +1,47 @@
|
|||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link rel="shortcut icon" type="image/x-icon" href="<?cs var:toroot ?>assets-pdk/favicon.ico" />
|
||||
<title><?cs
|
||||
if:page.title ?><?cs
|
||||
var:page.title ?><?cs
|
||||
if:sdk.version ?> (<?cs
|
||||
var:sdk.version ?>)<?cs
|
||||
/if ?> | <?cs
|
||||
/if ?>Android Developers</title>
|
||||
<link href="<?cs var:toroot ?>assets/android-developer-docs-devguide.css" rel="stylesheet" type="text/css" />
|
||||
<link href="<?cs var:toroot ?>assets-pdk/pdk-local.css" rel="stylesheet" type="text/css" />
|
||||
<script src="<?cs var:toroot ?>assets/search_autocomplete.js" type="text/javascript"></script>
|
||||
<script src="<?cs var:toroot ?>reference/lists.js" type="text/javascript"></script>
|
||||
<script src="<?cs var:toroot ?>assets/jquery-resizable.min.js" type="text/javascript"></script>
|
||||
<script src="<?cs var:toroot ?>assets/android-developer-docs.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
setToRoot("<?cs var:toroot ?>");
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
function resizeDoxFrameHeight() {
|
||||
if(document.getElementById && !(document.all)) {
|
||||
height= document.getElementById('doxygen').contentDocument.body.scrollHeight + 20;
|
||||
document.getElementById('doxygen').style.height = height+"pt";
|
||||
}
|
||||
else if(document.all) {
|
||||
height= document.frames('doxygen').document.body.scrollHeight + 20;
|
||||
document.all.doxygen.style.height = height;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript>
|
||||
jQuery(document).ready(function() {
|
||||
jQuery("pre").addClass("prettyprint");
|
||||
});
|
||||
</script>
|
||||
<noscript>
|
||||
<style type="text/css">
|
||||
body{overflow:auto;}
|
||||
#body-content{position:relative; top:0;}
|
||||
#doc-content{overflow:visible;border-left:3px solid #666;}
|
||||
#side-nav{padding:0;}
|
||||
#side-nav .toggle-list ul {display:block;}
|
||||
#resize-packages-nav{border-bottom:3px solid #666;}
|
||||
</style>
|
||||
</noscript>
|
||||
</head>
|
Loading…
Reference in a new issue