The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1 | var resizePackagesNav; |
| 2 | var classesNav; |
| 3 | var devdocNav; |
| 4 | var sidenav; |
| 5 | var content; |
| 6 | var HEADER_HEIGHT = 117; |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 7 | var cookie_namespace = 'android_developer'; |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 8 | var NAV_PREF_TREE = "tree"; |
| 9 | var NAV_PREF_PANELS = "panels"; |
| 10 | var nav_pref; |
| 11 | var toRoot; |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 12 | var isMobile = false; // true if mobile, so we can adjust some layout |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 13 | |
| 14 | function addLoadEvent(newfun) { |
| 15 | var current = window.onload; |
| 16 | if (typeof window.onload != 'function') { |
| 17 | window.onload = newfun; |
| 18 | } else { |
| 19 | window.onload = function() { |
| 20 | current(); |
| 21 | newfun(); |
| 22 | } |
| 23 | } |
| 24 | } |
| 25 | |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 26 | var agent = navigator['userAgent']; |
| 27 | if ((agent.indexOf("Mobile") != -1) || |
| 28 | (agent.indexOf("BlackBerry") != -1) || |
| 29 | (agent.indexOf("Mini") != -1)) { |
| 30 | isMobile = true; |
| 31 | addLoadEvent(mobileSetup); |
| 32 | } |
| 33 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 34 | window.onresize = resizeAll; |
| 35 | |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 36 | function mobileSetup() { |
| 37 | $("body").css({'overflow':'auto'}); |
| 38 | $("html").css({'overflow':'auto'}); |
| 39 | $("#body-content").css({'position':'relative', 'top':'0'}); |
| 40 | $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'}); |
| 41 | $("#side-nav").css({'padding':'0'}); |
| 42 | $("#nav-tree").css({'overflow-y': 'auto'}); |
| 43 | } |
| 44 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 45 | function setToRoot(root) { |
| 46 | toRoot = root; |
| 47 | // note: toRoot also used by carousel.js |
| 48 | } |
| 49 | |
| 50 | function restoreWidth(navWidth) { |
| 51 | var windowWidth = $(window).width() + "px"; |
| 52 | content.css({marginLeft:parseInt(navWidth) + 6 + "px", //account for 6px-wide handle-bar |
| 53 | width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"}); |
| 54 | sidenav.css({width:navWidth}); |
| 55 | resizePackagesNav.css({width:navWidth}); |
| 56 | classesNav.css({width:navWidth}); |
| 57 | $("#packages-nav").css({width:navWidth}); |
| 58 | } |
| 59 | |
| 60 | function restoreHeight(packageHeight) { |
| 61 | var windowHeight = ($(window).height() - HEADER_HEIGHT); |
| 62 | var swapperHeight = windowHeight - 13; |
| 63 | $("#swapper").css({height:swapperHeight + "px"}); |
| 64 | sidenav.css({height:windowHeight + "px"}); |
| 65 | content.css({height:windowHeight + "px"}); |
| 66 | resizePackagesNav.css({maxHeight:swapperHeight + "px", height:packageHeight}); |
| 67 | classesNav.css({height:swapperHeight - parseInt(packageHeight) + "px"}); |
| 68 | $("#packages-nav").css({height:parseInt(packageHeight) - 6 + "px"}); //move 6px to give space for the resize handle |
| 69 | devdocNav.css({height:sidenav.css("height")}); |
| 70 | $("#nav-tree").css({height:swapperHeight + "px"}); |
| 71 | } |
| 72 | |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 73 | function readCookie(cookie) { |
| 74 | var myCookie = cookie_namespace+"_"+cookie+"="; |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | if (document.cookie) { |
| 76 | var index = document.cookie.indexOf(myCookie); |
| 77 | if (index != -1) { |
| 78 | var valStart = index + myCookie.length; |
| 79 | var valEnd = document.cookie.indexOf(";", valStart); |
| 80 | if (valEnd == -1) { |
| 81 | valEnd = document.cookie.length; |
| 82 | } |
| 83 | var val = document.cookie.substring(valStart, valEnd); |
| 84 | return val; |
| 85 | } |
| 86 | } |
| 87 | return 0; |
| 88 | } |
| 89 | |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 90 | function writeCookie(cookie, val, section, expiration) { |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 91 | if (!val) return; |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 92 | section = section == null ? "_" : "_"+section+"_"; |
| 93 | if (expiration == null) { |
| 94 | var date = new Date(); |
| 95 | date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week |
| 96 | expiration = date.toGMTString(); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 97 | } |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 98 | document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/"; |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | function init() { |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 102 | $("#side-nav").css({position:"absolute",left:0}); |
| 103 | content = $("#doc-content"); |
| 104 | resizePackagesNav = $("#resize-packages-nav"); |
| 105 | classesNav = $("#classes-nav"); |
| 106 | sidenav = $("#side-nav"); |
| 107 | devdocNav = $("#devdoc-nav"); |
| 108 | |
| 109 | if (location.href.indexOf("/reference/") != -1) { |
| 110 | var cookiePath = "reference_"; |
| 111 | } else if (location.href.indexOf("/guide/") != -1) { |
| 112 | var cookiePath = "guide_"; |
| 113 | } |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 114 | |
| 115 | if (!isMobile) { |
| 116 | $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizeHeight(); } }); |
| 117 | $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } }); |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 118 | var cookieWidth = readCookie(cookiePath+'width'); |
| 119 | var cookieHeight = readCookie(cookiePath+'height'); |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 120 | if (cookieWidth) { |
| 121 | restoreWidth(cookieWidth); |
| 122 | } else if ($(".side-nav-resizable").length) { |
| 123 | resizeWidth(); |
| 124 | } |
| 125 | if (cookieHeight) { |
| 126 | restoreHeight(cookieHeight); |
| 127 | } else { |
| 128 | resizeHeight(); |
| 129 | } |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | if (devdocNav.length) { // only dev guide and sdk |
| 133 | highlightNav(location.href); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | function highlightNav(fullPageName) { |
| 138 | var lastSlashPos = fullPageName.lastIndexOf("/"); |
| 139 | var firstSlashPos = (fullPageName.indexOf("/guide/") != -1) ? |
| 140 | fullPageName.indexOf("/guide/") : |
| 141 | fullPageName.indexOf("/sdk/"); // first slash after /guide or /sdk |
| 142 | if (lastSlashPos == (fullPageName.length - 1)) { // if the url ends in slash (add 'index.html') |
| 143 | fullPageName = fullPageName + "index.html"; |
| 144 | } |
| 145 | var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length); |
| 146 | var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5); |
| 147 | var link = $("#devdoc-nav a[href$='"+ pathPageName+"']"); |
| 148 | if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/sdk/") != -1))) { |
| 149 | // if there's no match, then let's backstep through the directory until we find an index.html page that matches our ancestor directories (only for dev guide and sdk) |
| 150 | lastBackstep = pathPageName.lastIndexOf("/"); |
| 151 | while (link.length == 0) { |
| 152 | backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep); |
| 153 | link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']"); |
| 154 | lastBackstep = pathPageName.lastIndexOf("/", lastBackstep - 1); |
| 155 | if (lastBackstep == 0) break; |
| 156 | } |
| 157 | } |
| 158 | link.parent().addClass('selected'); |
| 159 | if (link.parent().parent().is(':hidden')) { |
| 160 | toggle(link.parent().parent().parent(), false); |
| 161 | } else if (link.parent().parent().hasClass('toggle-list')) { |
| 162 | toggle(link.parent().parent(), false); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | function resizeHeight() { |
| 167 | var windowHeight = ($(window).height() - HEADER_HEIGHT); |
| 168 | var swapperHeight = windowHeight - 13; |
| 169 | $("#swapper").css({height:swapperHeight + "px"}); |
| 170 | sidenav.css({height:windowHeight + "px"}); |
| 171 | content.css({height:windowHeight + "px"}); |
| 172 | resizePackagesNav.css({maxHeight:swapperHeight + "px"}); |
| 173 | classesNav.css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"}); |
| 174 | $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle |
| 175 | devdocNav.css({height:sidenav.css("height")}); |
| 176 | $("#nav-tree").css({height:swapperHeight + "px"}); |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 177 | |
| 178 | var section = location.pathname.substring(1,location.pathname.indexOf("/",1)); |
| 179 | writeCookie("height", resizePackagesNav.css("height"), section, null); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | function resizeWidth() { |
| 183 | var windowWidth = $(window).width() + "px"; |
| 184 | if (sidenav.length) { |
| 185 | var sidenavWidth = sidenav.css("width"); |
| 186 | } else { |
| 187 | var sidenavWidth = 0; |
| 188 | } |
| 189 | content.css({marginLeft:parseInt(sidenavWidth) + 6 + "px", //account for 6px-wide handle-bar |
| 190 | width:parseInt(windowWidth) - parseInt(sidenavWidth) - 6 + "px"}); |
| 191 | resizePackagesNav.css({width:sidenavWidth}); |
| 192 | classesNav.css({width:sidenavWidth}); |
| 193 | $("#packages-nav").css({width:sidenavWidth}); |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 194 | |
| 195 | var section = location.pathname.substring(1,location.pathname.indexOf("/",1)); |
| 196 | writeCookie("width", sidenavWidth, section, null); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | function resizeAll() { |
The Android Open Source Project | fdd3a10 | 2009-03-11 12:11:54 -0700 | [diff] [blame] | 200 | if (!isMobile) { |
| 201 | resizeHeight(); |
| 202 | if ($(".side-nav-resizable").length) { |
| 203 | resizeWidth(); |
| 204 | } |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 205 | } |
| 206 | } |
| 207 | |
| 208 | function loadLast(cookiePath) { |
| 209 | var location = window.location.href; |
| 210 | if (location.indexOf("/"+cookiePath+"/") != -1) { |
| 211 | return true; |
| 212 | } |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 213 | var lastPage = readCookie(cookiePath + "_lastpage"); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 214 | if (lastPage) { |
| 215 | window.location = lastPage; |
| 216 | return false; |
| 217 | } |
| 218 | return true; |
| 219 | } |
| 220 | |
| 221 | $(window).unload(function(){ |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 222 | var path = location.pathname; |
| 223 | if (path.indexOf("/reference/") != -1) { |
| 224 | writeCookie("lastpage", path, "reference", null); |
| 225 | } else if (path.indexOf("/guide/") != -1) { |
| 226 | writeCookie("lastpage", path, "guide", null); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 227 | } |
| 228 | }); |
| 229 | |
| 230 | |
| 231 | |
| 232 | function toggle(obj, slide) { |
| 233 | var ul = $("ul", obj); |
| 234 | var li = ul.parent(); |
| 235 | if (li.hasClass("closed")) { |
| 236 | if (slide) { |
| 237 | ul.slideDown("fast"); |
| 238 | } else { |
| 239 | ul.show(); |
| 240 | } |
| 241 | li.removeClass("closed"); |
| 242 | li.addClass("open"); |
| 243 | $(".toggle-img", li).attr("title", "hide pages"); |
| 244 | } else { |
| 245 | ul.slideUp("fast"); |
| 246 | li.removeClass("open"); |
| 247 | li.addClass("closed"); |
| 248 | $(".toggle-img", li).attr("title", "show pages"); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | |
| 253 | |
| 254 | function buildToggleLists() { |
| 255 | $(".toggle-list").each( |
| 256 | function(i) { |
| 257 | $("div", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>"); |
| 258 | $(this).addClass("closed"); |
| 259 | }); |
| 260 | } |
| 261 | |
| 262 | function getNavPref() { |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 263 | var v = readCookie('reference_nav'); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 264 | if (v != NAV_PREF_TREE) { |
| 265 | v = NAV_PREF_PANELS; |
| 266 | } |
| 267 | return v; |
| 268 | } |
| 269 | |
| 270 | function chooseDefaultNav() { |
| 271 | nav_pref = getNavPref(); |
| 272 | if (nav_pref == NAV_PREF_TREE) { |
| 273 | $("#nav-panels").toggle(); |
| 274 | $("#panel-link").toggle(); |
| 275 | $("#nav-tree").toggle(); |
| 276 | $("#tree-link").toggle(); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | function swapNav() { |
| 281 | if (nav_pref == NAV_PREF_TREE) { |
| 282 | nav_pref = NAV_PREF_PANELS; |
| 283 | } else { |
| 284 | nav_pref = NAV_PREF_TREE; |
| 285 | init_navtree("nav-tree", toRoot, NAVTREE_DATA); |
| 286 | } |
| 287 | var date = new Date(); |
| 288 | date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 289 | writeCookie("nav", nav_pref, null, date.toGMTString()); |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 290 | |
| 291 | $("#nav-panels").toggle(); |
| 292 | $("#panel-link").toggle(); |
| 293 | $("#nav-tree").toggle(); |
| 294 | $("#tree-link").toggle(); |
| 295 | |
| 296 | if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree"); |
| 297 | else { |
| 298 | scrollIntoView("packages-nav"); |
| 299 | scrollIntoView("classes-nav"); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | function scrollIntoView(nav) { |
| 304 | var navObj = $("#"+nav); |
| 305 | if (navObj.is(':visible')) { |
| 306 | var selected = $(".selected", navObj); |
| 307 | if (selected.length == 0) return; |
| 308 | if (selected.is("div")) selected = selected.parent(); |
| 309 | |
| 310 | var scrolling = document.getElementById(nav); |
| 311 | var navHeight = navObj.height(); |
| 312 | var offsetTop = selected.position().top; |
| 313 | if (selected.parent().parent().is(".toggle-list")) offsetTop += selected.parent().parent().position().top; |
| 314 | if(offsetTop > navHeight - 92) { |
| 315 | scrolling.scrollTop = offsetTop - navHeight + 92; |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | function toggleAllInherited(linkObj, expand) { |
| 321 | var a = $(linkObj); |
| 322 | var table = $(a.parent().parent().parent()); |
| 323 | var expandos = $(".jd-expando-trigger", table); |
| 324 | if ( (expand == null && a.text() == "[Expand]") || expand ) { |
| 325 | expandos.each(function(i) { |
| 326 | toggleInherited(this, true); |
| 327 | }); |
| 328 | a.text("[Collapse]"); |
| 329 | } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) { |
| 330 | expandos.each(function(i) { |
| 331 | toggleInherited(this, false); |
| 332 | }); |
| 333 | a.text("[Expand]"); |
| 334 | } |
| 335 | return false; |
| 336 | } |
| 337 | |
| 338 | function toggleAllSummaryInherited(linkObj) { |
| 339 | var a = $(linkObj); |
| 340 | var content = $(a.parent().parent().parent()); |
| 341 | var toggles = $(".toggle-all", content); |
| 342 | if (a.text() == "[Expand All]") { |
| 343 | toggles.each(function(i) { |
| 344 | toggleAllInherited(this, true); |
| 345 | }); |
| 346 | a.text("[Collapse All]"); |
| 347 | } else { |
| 348 | toggles.each(function(i) { |
| 349 | toggleAllInherited(this, false); |
| 350 | }); |
| 351 | a.text("[Expand All]"); |
| 352 | } |
| 353 | return false; |
| 354 | } |
Scott Main | 1043da9 | 2009-05-20 17:16:35 -0700 | [diff] [blame^] | 355 | |
| 356 | |
| 357 | function changeTabLang(lang) { |
| 358 | var nodes = $("#header-tabs").find("."+lang); |
| 359 | for (i=0; i < nodes.length; i++) { // for each node in this language |
| 360 | var node = $(nodes[i]); |
| 361 | node.siblings().css("display","none"); // hide all siblings |
| 362 | if (node.not(":empty").length != 0) { //if this languages node has a translation, show it |
| 363 | node.css("display","inline"); |
| 364 | } else { //otherwise, show English instead |
| 365 | node.css("display","none"); |
| 366 | node.siblings().filter(".en").css("display","inline"); |
| 367 | } |
| 368 | } |
| 369 | } |
| 370 | |
| 371 | function changeNavLang(lang) { |
| 372 | var nodes = $("#side-nav").find("."+lang); |
| 373 | for (i=0; i < nodes.length; i++) { // for each node in this language |
| 374 | var node = $(nodes[i]); |
| 375 | node.siblings().css("display","none"); // hide all siblings |
| 376 | if (node.not(":empty").length != 0) { // if this languages node has a translation, show it |
| 377 | node.css("display","inline"); |
| 378 | } else { // otherwise, show English instead |
| 379 | node.css("display","none"); |
| 380 | node.siblings().filter(".en").css("display","inline"); |
| 381 | } |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | function changeDocLang(lang) { |
| 386 | changeTabLang(lang); |
| 387 | changeNavLang(lang); |
| 388 | } |
| 389 | |
| 390 | function changeLangPref(lang) { |
| 391 | var date = new Date(); |
| 392 | date.setTime(date.getTime()+(50*365*24*60*60*1000)); // keep this for 50 years |
| 393 | writeCookie("pref_lang", lang, null, date); |
| 394 | |
| 395 | changeDocLang(lang); |
| 396 | } |
| 397 | |
| 398 | function loadLangPref() { |
| 399 | var lang = readCookie("pref_lang"); |
| 400 | if (lang != 0) { |
| 401 | $("#language").find("option[value='"+lang+"']").attr("selected",true); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | function getLangPref() { |
| 406 | return $("#language").find(":selected").attr("value"); |
| 407 | } |
| 408 | |