blob: 2edf39d546e1f4430344409c07b194834079f156 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001var resizePackagesNav;
2var classesNav;
3var devdocNav;
4var sidenav;
5var content;
6var HEADER_HEIGHT = 117;
Dirk Dougherty4405a232009-07-07 17:43:27 -07007var cookie_namespace = 'android_developer';
The Android Open Source Project88b60792009-03-03 19:28:42 -08008var NAV_PREF_TREE = "tree";
9var NAV_PREF_PANELS = "panels";
10var nav_pref;
11var toRoot;
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070012var isMobile = false; // true if mobile, so we can adjust some layout
The Android Open Source Project88b60792009-03-03 19:28:42 -080013
14function 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 Projectfdd3a102009-03-11 12:11:54 -070026var agent = navigator['userAgent'];
27if ((agent.indexOf("Mobile") != -1) ||
28 (agent.indexOf("BlackBerry") != -1) ||
29 (agent.indexOf("Mini") != -1)) {
30 isMobile = true;
31 addLoadEvent(mobileSetup);
32}
33
Dirk Dougherty3b1ee372009-07-29 12:25:44 -070034/* loads the lists.js file to the page.
35Loading this in the head was slowing page load time */
36addLoadEvent( function() {
37 var lists = document.createElement("script");
38 lists.setAttribute("type","text/javascript");
39 lists.setAttribute("src", toRoot+"reference/lists.js");
40 $("head").append($(lists));
41} );
42
The Android Open Source Project88b60792009-03-03 19:28:42 -080043window.onresize = resizeAll;
44
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070045function mobileSetup() {
46 $("body").css({'overflow':'auto'});
47 $("html").css({'overflow':'auto'});
48 $("#body-content").css({'position':'relative', 'top':'0'});
49 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'});
50 $("#side-nav").css({'padding':'0'});
51 $("#nav-tree").css({'overflow-y': 'auto'});
52}
53
The Android Open Source Project88b60792009-03-03 19:28:42 -080054function setToRoot(root) {
55 toRoot = root;
56 // note: toRoot also used by carousel.js
57}
58
59function restoreWidth(navWidth) {
60 var windowWidth = $(window).width() + "px";
61 content.css({marginLeft:parseInt(navWidth) + 6 + "px", //account for 6px-wide handle-bar
62 width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"});
63 sidenav.css({width:navWidth});
64 resizePackagesNav.css({width:navWidth});
65 classesNav.css({width:navWidth});
66 $("#packages-nav").css({width:navWidth});
67}
68
69function restoreHeight(packageHeight) {
70 var windowHeight = ($(window).height() - HEADER_HEIGHT);
71 var swapperHeight = windowHeight - 13;
72 $("#swapper").css({height:swapperHeight + "px"});
73 sidenav.css({height:windowHeight + "px"});
74 content.css({height:windowHeight + "px"});
75 resizePackagesNav.css({maxHeight:swapperHeight + "px", height:packageHeight});
76 classesNav.css({height:swapperHeight - parseInt(packageHeight) + "px"});
77 $("#packages-nav").css({height:parseInt(packageHeight) - 6 + "px"}); //move 6px to give space for the resize handle
78 devdocNav.css({height:sidenav.css("height")});
79 $("#nav-tree").css({height:swapperHeight + "px"});
80}
81
Dirk Dougherty4405a232009-07-07 17:43:27 -070082function readCookie(cookie) {
83 var myCookie = cookie_namespace+"_"+cookie+"=";
The Android Open Source Project88b60792009-03-03 19:28:42 -080084 if (document.cookie) {
85 var index = document.cookie.indexOf(myCookie);
86 if (index != -1) {
87 var valStart = index + myCookie.length;
88 var valEnd = document.cookie.indexOf(";", valStart);
89 if (valEnd == -1) {
90 valEnd = document.cookie.length;
91 }
92 var val = document.cookie.substring(valStart, valEnd);
93 return val;
94 }
95 }
96 return 0;
97}
98
Dirk Dougherty4405a232009-07-07 17:43:27 -070099function writeCookie(cookie, val, section, expiration) {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800100 if (!val) return;
Dirk Dougherty4405a232009-07-07 17:43:27 -0700101 section = section == null ? "_" : "_"+section+"_";
102 if (expiration == null) {
103 var date = new Date();
104 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
105 expiration = date.toGMTString();
The Android Open Source Project88b60792009-03-03 19:28:42 -0800106 }
Dirk Dougherty4405a232009-07-07 17:43:27 -0700107 document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800108}
109
110function init() {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800111 $("#side-nav").css({position:"absolute",left:0});
112 content = $("#doc-content");
113 resizePackagesNav = $("#resize-packages-nav");
114 classesNav = $("#classes-nav");
115 sidenav = $("#side-nav");
116 devdocNav = $("#devdoc-nav");
117
118 if (location.href.indexOf("/reference/") != -1) {
119 var cookiePath = "reference_";
120 } else if (location.href.indexOf("/guide/") != -1) {
121 var cookiePath = "guide_";
122 }
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700123
124 if (!isMobile) {
125 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizeHeight(); } });
126 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
Dirk Dougherty4405a232009-07-07 17:43:27 -0700127 var cookieWidth = readCookie(cookiePath+'width');
128 var cookieHeight = readCookie(cookiePath+'height');
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700129 if (cookieWidth) {
130 restoreWidth(cookieWidth);
131 } else if ($(".side-nav-resizable").length) {
132 resizeWidth();
133 }
134 if (cookieHeight) {
135 restoreHeight(cookieHeight);
136 } else {
137 resizeHeight();
138 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800139 }
140
141 if (devdocNav.length) { // only dev guide and sdk
142 highlightNav(location.href);
143 }
144}
145
146function highlightNav(fullPageName) {
147 var lastSlashPos = fullPageName.lastIndexOf("/");
148 var firstSlashPos = (fullPageName.indexOf("/guide/") != -1) ?
149 fullPageName.indexOf("/guide/") :
150 fullPageName.indexOf("/sdk/"); // first slash after /guide or /sdk
151 if (lastSlashPos == (fullPageName.length - 1)) { // if the url ends in slash (add 'index.html')
152 fullPageName = fullPageName + "index.html";
153 }
154 var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
155 var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
156 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
157 if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/sdk/") != -1))) {
158// 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)
159 lastBackstep = pathPageName.lastIndexOf("/");
160 while (link.length == 0) {
161 backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep);
162 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']");
163 lastBackstep = pathPageName.lastIndexOf("/", lastBackstep - 1);
164 if (lastBackstep == 0) break;
165 }
166 }
167 link.parent().addClass('selected');
168 if (link.parent().parent().is(':hidden')) {
169 toggle(link.parent().parent().parent(), false);
170 } else if (link.parent().parent().hasClass('toggle-list')) {
171 toggle(link.parent().parent(), false);
172 }
173}
174
175function resizeHeight() {
176 var windowHeight = ($(window).height() - HEADER_HEIGHT);
177 var swapperHeight = windowHeight - 13;
178 $("#swapper").css({height:swapperHeight + "px"});
179 sidenav.css({height:windowHeight + "px"});
180 content.css({height:windowHeight + "px"});
181 resizePackagesNav.css({maxHeight:swapperHeight + "px"});
182 classesNav.css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
183 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
184 devdocNav.css({height:sidenav.css("height")});
185 $("#nav-tree").css({height:swapperHeight + "px"});
Dirk Dougherty4405a232009-07-07 17:43:27 -0700186
Dirk Doughertyc13d0452009-07-08 14:39:31 -0700187 var basePath = getBaseUri(location.pathname);
188 var section = basePath.substring(1,basePath.indexOf("/",1));
Dirk Dougherty4405a232009-07-07 17:43:27 -0700189 writeCookie("height", resizePackagesNav.css("height"), section, null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800190}
191
192function resizeWidth() {
193 var windowWidth = $(window).width() + "px";
194 if (sidenav.length) {
195 var sidenavWidth = sidenav.css("width");
196 } else {
197 var sidenavWidth = 0;
198 }
199 content.css({marginLeft:parseInt(sidenavWidth) + 6 + "px", //account for 6px-wide handle-bar
200 width:parseInt(windowWidth) - parseInt(sidenavWidth) - 6 + "px"});
201 resizePackagesNav.css({width:sidenavWidth});
202 classesNav.css({width:sidenavWidth});
203 $("#packages-nav").css({width:sidenavWidth});
Dirk Dougherty4405a232009-07-07 17:43:27 -0700204
Dirk Doughertyc13d0452009-07-08 14:39:31 -0700205 var basePath = getBaseUri(location.pathname);
206 var section = basePath.substring(1,basePath.indexOf("/",1));
Dirk Dougherty4405a232009-07-07 17:43:27 -0700207 writeCookie("width", sidenavWidth, section, null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800208}
209
210function resizeAll() {
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700211 if (!isMobile) {
212 resizeHeight();
213 if ($(".side-nav-resizable").length) {
214 resizeWidth();
215 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800216 }
217}
218
Dirk Dougherty4405a232009-07-07 17:43:27 -0700219function getBaseUri(uri) {
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700220 var intlUrl = (uri.substring(0,6) == "/intl/");
Dirk Dougherty4405a232009-07-07 17:43:27 -0700221 if (intlUrl) {
222 base = uri.substring(uri.indexOf('intl/')+5,uri.length);
223 base = base.substring(base.indexOf('/')+1, base.length);
224 //alert("intl, returning base url: /" + base);
225 return ("/" + base);
226 } else {
227 //alert("not intl, returning uri as found.");
228 return uri;
229 }
230}
231
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700232function requestAppendHL(uri) {
233//append "?hl=<lang> to an outgoing request (such as to blog)
234 var lang = getLangPref();
235 if (lang) {
236 var q = 'hl=' + lang;
237 uri += '?' + q;
238 window.location = uri;
239 return false;
240 } else {
241 return true;
242 }
243}
244
The Android Open Source Project88b60792009-03-03 19:28:42 -0800245function loadLast(cookiePath) {
246 var location = window.location.href;
247 if (location.indexOf("/"+cookiePath+"/") != -1) {
248 return true;
249 }
Dirk Dougherty4405a232009-07-07 17:43:27 -0700250 var lastPage = readCookie(cookiePath + "_lastpage");
The Android Open Source Project88b60792009-03-03 19:28:42 -0800251 if (lastPage) {
252 window.location = lastPage;
253 return false;
254 }
255 return true;
256}
257
258$(window).unload(function(){
Dirk Dougherty4405a232009-07-07 17:43:27 -0700259 var path = getBaseUri(location.pathname);
260 if (path.indexOf("/reference/") != -1) {
261 writeCookie("lastpage", path, "reference", null);
262 } else if (path.indexOf("/guide/") != -1) {
263 writeCookie("lastpage", path, "guide", null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800264 }
265});
266
The Android Open Source Project88b60792009-03-03 19:28:42 -0800267function toggle(obj, slide) {
268 var ul = $("ul", obj);
269 var li = ul.parent();
270 if (li.hasClass("closed")) {
271 if (slide) {
272 ul.slideDown("fast");
273 } else {
274 ul.show();
275 }
276 li.removeClass("closed");
277 li.addClass("open");
278 $(".toggle-img", li).attr("title", "hide pages");
279 } else {
280 ul.slideUp("fast");
281 li.removeClass("open");
282 li.addClass("closed");
283 $(".toggle-img", li).attr("title", "show pages");
284 }
285}
286
The Android Open Source Project88b60792009-03-03 19:28:42 -0800287function buildToggleLists() {
288 $(".toggle-list").each(
289 function(i) {
290 $("div", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>");
291 $(this).addClass("closed");
292 });
293}
294
295function getNavPref() {
Dirk Dougherty4405a232009-07-07 17:43:27 -0700296 var v = readCookie('reference_nav');
The Android Open Source Project88b60792009-03-03 19:28:42 -0800297 if (v != NAV_PREF_TREE) {
298 v = NAV_PREF_PANELS;
299 }
300 return v;
301}
302
303function chooseDefaultNav() {
304 nav_pref = getNavPref();
305 if (nav_pref == NAV_PREF_TREE) {
306 $("#nav-panels").toggle();
307 $("#panel-link").toggle();
308 $("#nav-tree").toggle();
309 $("#tree-link").toggle();
310 }
311}
312
313function swapNav() {
314 if (nav_pref == NAV_PREF_TREE) {
315 nav_pref = NAV_PREF_PANELS;
316 } else {
317 nav_pref = NAV_PREF_TREE;
Dirk Dougherty3b1ee372009-07-29 12:25:44 -0700318 init_default_navtree(toRoot);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800319 }
320 var date = new Date();
321 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
Dirk Dougherty4405a232009-07-07 17:43:27 -0700322 writeCookie("nav", nav_pref, "reference", date.toGMTString());
The Android Open Source Project88b60792009-03-03 19:28:42 -0800323
324 $("#nav-panels").toggle();
325 $("#panel-link").toggle();
326 $("#nav-tree").toggle();
327 $("#tree-link").toggle();
328
329 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
330 else {
331 scrollIntoView("packages-nav");
332 scrollIntoView("classes-nav");
333 }
334}
335
336function scrollIntoView(nav) {
337 var navObj = $("#"+nav);
338 if (navObj.is(':visible')) {
339 var selected = $(".selected", navObj);
340 if (selected.length == 0) return;
341 if (selected.is("div")) selected = selected.parent();
342
343 var scrolling = document.getElementById(nav);
344 var navHeight = navObj.height();
345 var offsetTop = selected.position().top;
346 if (selected.parent().parent().is(".toggle-list")) offsetTop += selected.parent().parent().position().top;
347 if(offsetTop > navHeight - 92) {
348 scrolling.scrollTop = offsetTop - navHeight + 92;
349 }
350 }
351}
352
353function toggleAllInherited(linkObj, expand) {
354 var a = $(linkObj);
355 var table = $(a.parent().parent().parent());
356 var expandos = $(".jd-expando-trigger", table);
357 if ( (expand == null && a.text() == "[Expand]") || expand ) {
358 expandos.each(function(i) {
359 toggleInherited(this, true);
360 });
361 a.text("[Collapse]");
362 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
363 expandos.each(function(i) {
364 toggleInherited(this, false);
365 });
366 a.text("[Expand]");
367 }
368 return false;
369}
370
371function toggleAllSummaryInherited(linkObj) {
372 var a = $(linkObj);
373 var content = $(a.parent().parent().parent());
374 var toggles = $(".toggle-all", content);
375 if (a.text() == "[Expand All]") {
376 toggles.each(function(i) {
377 toggleAllInherited(this, true);
378 });
379 a.text("[Collapse All]");
380 } else {
381 toggles.each(function(i) {
382 toggleAllInherited(this, false);
383 });
384 a.text("[Expand All]");
385 }
386 return false;
387}
Dirk Dougherty4405a232009-07-07 17:43:27 -0700388
389
390function changeTabLang(lang) {
391 var nodes = $("#header-tabs").find("."+lang);
392 for (i=0; i < nodes.length; i++) { // for each node in this language
393 var node = $(nodes[i]);
394 node.siblings().css("display","none"); // hide all siblings
395 if (node.not(":empty").length != 0) { //if this languages node has a translation, show it
396 node.css("display","inline");
397 } else { //otherwise, show English instead
398 node.css("display","none");
399 node.siblings().filter(".en").css("display","inline");
400 }
401 }
402}
403
404function changeNavLang(lang) {
405 var nodes = $("#side-nav").find("."+lang);
406 for (i=0; i < nodes.length; i++) { // for each node in this language
407 var node = $(nodes[i]);
408 node.siblings().css("display","none"); // hide all siblings
409 if (node.not(":empty").length != 0) { // if this languages node has a translation, show it
410 node.css("display","inline");
411 } else { // otherwise, show English instead
412 node.css("display","none");
413 node.siblings().filter(".en").css("display","inline");
414 }
415 }
416}
417
418function changeDocLang(lang) {
419 changeTabLang(lang);
420 changeNavLang(lang);
421}
422
423function changeLangPref(lang, refresh) {
424 var date = new Date();
425 expires = date.toGMTString(date.setTime(date.getTime()+(10*365*24*60*60*1000))); // keep this for 50 years
426 //alert("expires: " + expires)
427 writeCookie("pref_lang", lang, null, expires);
428 //changeDocLang(lang);
429 if (refresh) {
430 l = getBaseUri(location.pathname);
431 window.location = l;
432 }
433}
434
435function loadLangPref() {
436 var lang = readCookie("pref_lang");
437 if (lang != 0) {
438 $("#language").find("option[value='"+lang+"']").attr("selected",true);
439 }
440}
441
442function getLangPref() {
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700443 var lang = $("#language").find(":selected").attr("value");
444 if (!lang) {
445 lang = readCookie("pref_lang");
446 }
447 return (lang != 0) ? lang : 'en';
Dirk Dougherty4405a232009-07-07 17:43:27 -0700448}