blob: fa24e995c91ca5997666152eb210679bd41ba8eb [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
Scott Main3f7d1df2009-11-02 15:31:04 -080013var isIE6 = false; // true if IE6
The Android Open Source Project88b60792009-03-03 19:28:42 -080014
Scott Mainf8af8872009-12-02 20:59:40 -080015// TODO: use $(document).ready instead
The Android Open Source Project88b60792009-03-03 19:28:42 -080016function addLoadEvent(newfun) {
17 var current = window.onload;
18 if (typeof window.onload != 'function') {
19 window.onload = newfun;
20 } else {
21 window.onload = function() {
22 current();
23 newfun();
24 }
25 }
26}
27
Scott Maind8115ff2009-11-03 18:54:26 -080028var agent = navigator['userAgent'].toLowerCase();
Scott Main3f7d1df2009-11-02 15:31:04 -080029// If a mobile phone, set flag and do mobile setup
Scott Maind8115ff2009-11-03 18:54:26 -080030if ((agent.indexOf("mobile") != -1) || // android, iphone, ipod
31 (agent.indexOf("blackberry") != -1) ||
32 (agent.indexOf("webos") != -1) ||
33 (agent.indexOf("mini") != -1)) { // opera mini browsers
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070034 isMobile = true;
35 addLoadEvent(mobileSetup);
Scott Main3f7d1df2009-11-02 15:31:04 -080036// If not a mobile browser, set the onresize event for IE6, and others
Scott Maind8115ff2009-11-03 18:54:26 -080037} else if (agent.indexOf("msie 6") != -1) {
Scott Main3f7d1df2009-11-02 15:31:04 -080038 isIE6 = true;
39 addLoadEvent(function() {
40 window.onresize = resizeAll;
41 });
42} else {
43 addLoadEvent(function() {
44 window.onresize = resizeHeight;
45 });
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070046}
47
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -070048function mobileSetup() {
49 $("body").css({'overflow':'auto'});
50 $("html").css({'overflow':'auto'});
51 $("#body-content").css({'position':'relative', 'top':'0'});
52 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'});
53 $("#side-nav").css({'padding':'0'});
54 $("#nav-tree").css({'overflow-y': 'auto'});
55}
56
Scott Main25fda192009-08-04 11:26:30 -070057/* loads the lists.js file to the page.
58Loading this in the head was slowing page load time */
59addLoadEvent( function() {
60 var lists = document.createElement("script");
61 lists.setAttribute("type","text/javascript");
62 lists.setAttribute("src", toRoot+"reference/lists.js");
Scott Main1da82382009-09-17 10:54:05 -070063 document.getElementsByTagName("head")[0].appendChild(lists);
Scott Main25fda192009-08-04 11:26:30 -070064} );
65
Scott Mainf8af8872009-12-02 20:59:40 -080066addLoadEvent( function() {
67 $("pre").addClass("prettyprint");
68 prettyPrint();
69} );
70
The Android Open Source Project88b60792009-03-03 19:28:42 -080071function setToRoot(root) {
72 toRoot = root;
73 // note: toRoot also used by carousel.js
74}
75
76function restoreWidth(navWidth) {
77 var windowWidth = $(window).width() + "px";
Scott Main3f7d1df2009-11-02 15:31:04 -080078 content.css({marginLeft:parseInt(navWidth) + 6 + "px"}); //account for 6px-wide handle-bar
79
80 if (isIE6) {
81 content.css({width:parseInt(windowWidth) - parseInt(navWidth) - 6 + "px"}); // necessary in order for scrollbars to be visible
82 }
83
The Android Open Source Project88b60792009-03-03 19:28:42 -080084 sidenav.css({width:navWidth});
85 resizePackagesNav.css({width:navWidth});
86 classesNav.css({width:navWidth});
87 $("#packages-nav").css({width:navWidth});
88}
89
90function restoreHeight(packageHeight) {
91 var windowHeight = ($(window).height() - HEADER_HEIGHT);
92 var swapperHeight = windowHeight - 13;
93 $("#swapper").css({height:swapperHeight + "px"});
94 sidenav.css({height:windowHeight + "px"});
95 content.css({height:windowHeight + "px"});
96 resizePackagesNav.css({maxHeight:swapperHeight + "px", height:packageHeight});
97 classesNav.css({height:swapperHeight - parseInt(packageHeight) + "px"});
98 $("#packages-nav").css({height:parseInt(packageHeight) - 6 + "px"}); //move 6px to give space for the resize handle
99 devdocNav.css({height:sidenav.css("height")});
100 $("#nav-tree").css({height:swapperHeight + "px"});
101}
102
Dirk Dougherty4405a232009-07-07 17:43:27 -0700103function readCookie(cookie) {
104 var myCookie = cookie_namespace+"_"+cookie+"=";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800105 if (document.cookie) {
106 var index = document.cookie.indexOf(myCookie);
107 if (index != -1) {
108 var valStart = index + myCookie.length;
109 var valEnd = document.cookie.indexOf(";", valStart);
110 if (valEnd == -1) {
111 valEnd = document.cookie.length;
112 }
113 var val = document.cookie.substring(valStart, valEnd);
114 return val;
115 }
116 }
117 return 0;
118}
119
Dirk Dougherty4405a232009-07-07 17:43:27 -0700120function writeCookie(cookie, val, section, expiration) {
Scott Main9b5fdb92009-10-27 15:09:15 -0700121 if (val==undefined) return;
Dirk Dougherty4405a232009-07-07 17:43:27 -0700122 section = section == null ? "_" : "_"+section+"_";
123 if (expiration == null) {
124 var date = new Date();
125 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
126 expiration = date.toGMTString();
The Android Open Source Project88b60792009-03-03 19:28:42 -0800127 }
Scott Main3f7d1df2009-11-02 15:31:04 -0800128 document.cookie = cookie_namespace + section + cookie + "=" + val + "; expires=" + expiration+"; path=/";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800129}
130
131function init() {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800132 $("#side-nav").css({position:"absolute",left:0});
133 content = $("#doc-content");
134 resizePackagesNav = $("#resize-packages-nav");
135 classesNav = $("#classes-nav");
136 sidenav = $("#side-nav");
137 devdocNav = $("#devdoc-nav");
138
Scott Maina39d3bb2010-01-06 14:18:02 -0800139 var cookiePath = "";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800140 if (location.href.indexOf("/reference/") != -1) {
Scott Maina39d3bb2010-01-06 14:18:02 -0800141 cookiePath = "reference_";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800142 } else if (location.href.indexOf("/guide/") != -1) {
Scott Maina39d3bb2010-01-06 14:18:02 -0800143 cookiePath = "guide_";
Dirk Dougherty502c4982009-12-02 18:01:16 -0800144 } else if (location.href.indexOf("/resources/") != -1) {
Scott Maina39d3bb2010-01-06 14:18:02 -0800145 cookiePath = "resources_";
The Android Open Source Project88b60792009-03-03 19:28:42 -0800146 }
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700147
148 if (!isMobile) {
Scott Main3f7d1df2009-11-02 15:31:04 -0800149 $("#resize-packages-nav").resizable({handles: "s", resize: function(e, ui) { resizePackagesHeight(); } });
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700150 $(".side-nav-resizable").resizable({handles: "e", resize: function(e, ui) { resizeWidth(); } });
Dirk Dougherty4405a232009-07-07 17:43:27 -0700151 var cookieWidth = readCookie(cookiePath+'width');
152 var cookieHeight = readCookie(cookiePath+'height');
The Android Open Source Projectfdd3a102009-03-11 12:11:54 -0700153 if (cookieWidth) {
154 restoreWidth(cookieWidth);
155 } else if ($(".side-nav-resizable").length) {
156 resizeWidth();
157 }
158 if (cookieHeight) {
159 restoreHeight(cookieHeight);
160 } else {
161 resizeHeight();
162 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800163 }
164
165 if (devdocNav.length) { // only dev guide and sdk
166 highlightNav(location.href);
167 }
168}
169
170function highlightNav(fullPageName) {
171 var lastSlashPos = fullPageName.lastIndexOf("/");
Dirk Dougherty502c4982009-12-02 18:01:16 -0800172 var firstSlashPos;
173 if (fullPageName.indexOf("/guide/") != -1) {
174 firstSlashPos = fullPageName.indexOf("/guide/");
175 } else if (fullPageName.indexOf("/sdk/") != -1) {
176 firstSlashPos = fullPageName.indexOf("/sdk/");
177 } else {
178 firstSlashPos = fullPageName.indexOf("/resources/");
179 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800180 if (lastSlashPos == (fullPageName.length - 1)) { // if the url ends in slash (add 'index.html')
181 fullPageName = fullPageName + "index.html";
182 }
183 var htmlPos = fullPageName.lastIndexOf(".html", fullPageName.length);
184 var pathPageName = fullPageName.slice(firstSlashPos, htmlPos + 5);
185 var link = $("#devdoc-nav a[href$='"+ pathPageName+"']");
Dirk Doughertyf32c5ac2009-12-15 18:48:38 -0800186 if ((link.length == 0) && ((fullPageName.indexOf("/guide/") != -1) || (fullPageName.indexOf("/resources/") != -1))) {
Scott Main0d8872e2009-10-23 13:04:31 -0700187// 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)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800188 lastBackstep = pathPageName.lastIndexOf("/");
189 while (link.length == 0) {
190 backstepDirectory = pathPageName.lastIndexOf("/", lastBackstep);
191 link = $("#devdoc-nav a[href$='"+ pathPageName.slice(0, backstepDirectory + 1)+"index.html']");
192 lastBackstep = pathPageName.lastIndexOf("/", lastBackstep - 1);
193 if (lastBackstep == 0) break;
194 }
195 }
196 link.parent().addClass('selected');
197 if (link.parent().parent().is(':hidden')) {
198 toggle(link.parent().parent().parent(), false);
199 } else if (link.parent().parent().hasClass('toggle-list')) {
200 toggle(link.parent().parent(), false);
201 }
202}
203
Scott Main3f7d1df2009-11-02 15:31:04 -0800204/* Resize the height of the nav panels in the reference,
205 * and save the new size to a cookie */
206function resizePackagesHeight() {
The Android Open Source Project88b60792009-03-03 19:28:42 -0800207 var windowHeight = ($(window).height() - HEADER_HEIGHT);
Scott Main3f7d1df2009-11-02 15:31:04 -0800208 var swapperHeight = windowHeight - 13; // move 13px for swapper link at the bottom
The Android Open Source Project88b60792009-03-03 19:28:42 -0800209 resizePackagesNav.css({maxHeight:swapperHeight + "px"});
210 classesNav.css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
Scott Main3f7d1df2009-11-02 15:31:04 -0800211
212 $("#swapper").css({height:swapperHeight + "px"});
The Android Open Source Project88b60792009-03-03 19:28:42 -0800213 $("#packages-nav").css({height:parseInt(resizePackagesNav.css("height")) - 6 + "px"}); //move 6px for handle
Scott Main3f7d1df2009-11-02 15:31:04 -0800214
Dirk Doughertyc13d0452009-07-08 14:39:31 -0700215 var basePath = getBaseUri(location.pathname);
216 var section = basePath.substring(1,basePath.indexOf("/",1));
Dirk Dougherty4405a232009-07-07 17:43:27 -0700217 writeCookie("height", resizePackagesNav.css("height"), section, null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800218}
219
Scott Main3f7d1df2009-11-02 15:31:04 -0800220/* Resize the height of the side-nav and doc-content divs,
221 * which creates the frame effect */
222function resizeHeight() {
223 // Get the window height and always resize the doc-content and side-nav divs
224 var windowHeight = ($(window).height() - HEADER_HEIGHT);
225 content.css({height:windowHeight + "px"});
226 sidenav.css({height:windowHeight + "px"});
227
228 var href = location.href;
229 // If in the reference docs, also resize the "swapper", "classes-nav", and "nav-tree" divs
230 if (href.indexOf("/reference/") != -1) {
231 var swapperHeight = windowHeight - 13;
232 $("#swapper").css({height:swapperHeight + "px"});
233 $("#classes-nav").css({height:swapperHeight - parseInt(resizePackagesNav.css("height")) + "px"});
234 $("#nav-tree").css({height:swapperHeight + "px"});
235
236 // If in the dev guide docs, also resize the "devdoc-nav" div
237 } else if (href.indexOf("/guide/") != -1) {
238 $("#devdoc-nav").css({height:sidenav.css("height")});
Dirk Dougherty502c4982009-12-02 18:01:16 -0800239 } else if (href.indexOf("/resources/") != -1) {
240 $("#devdoc-nav").css({height:sidenav.css("height")});
Scott Main3f7d1df2009-11-02 15:31:04 -0800241 }
242}
243
244/* Resize the width of the "side-nav" and the left margin of the "doc-content" div,
245 * which creates the resizable side bar */
The Android Open Source Project88b60792009-03-03 19:28:42 -0800246function resizeWidth() {
247 var windowWidth = $(window).width() + "px";
248 if (sidenav.length) {
249 var sidenavWidth = sidenav.css("width");
250 } else {
251 var sidenavWidth = 0;
252 }
Scott Main3f7d1df2009-11-02 15:31:04 -0800253 content.css({marginLeft:parseInt(sidenavWidth) + 6 + "px"}); //account for 6px-wide handle-bar
254
255 if (isIE6) {
256 content.css({width:parseInt(windowWidth) - parseInt(sidenavWidth) - 6 + "px"}); // necessary in order to for scrollbars to be visible
257 }
258
The Android Open Source Project88b60792009-03-03 19:28:42 -0800259 resizePackagesNav.css({width:sidenavWidth});
260 classesNav.css({width:sidenavWidth});
261 $("#packages-nav").css({width:sidenavWidth});
Scott Main3f7d1df2009-11-02 15:31:04 -0800262
Scott Mainb6da4802010-01-06 14:18:02 -0800263 if ($(".side-nav-resizable").length) { // Must check if the nav is resizable because IE6 calls resizeWidth() from resizeAll() for all pages
264 var basePath = getBaseUri(location.pathname);
265 var section = basePath.substring(1,basePath.indexOf("/",1));
266 writeCookie("width", sidenavWidth, section, null);
267 }
The Android Open Source Project88b60792009-03-03 19:28:42 -0800268}
269
Scott Main3f7d1df2009-11-02 15:31:04 -0800270/* For IE6 only,
271 * because it can't properly perform auto width for "doc-content" div,
272 * avoiding this for all browsers provides better performance */
The Android Open Source Project88b60792009-03-03 19:28:42 -0800273function resizeAll() {
Scott Main3f7d1df2009-11-02 15:31:04 -0800274 resizeHeight();
Scott Mainb6da4802010-01-06 14:18:02 -0800275 resizeWidth();
The Android Open Source Project88b60792009-03-03 19:28:42 -0800276}
277
Dirk Dougherty4405a232009-07-07 17:43:27 -0700278function getBaseUri(uri) {
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700279 var intlUrl = (uri.substring(0,6) == "/intl/");
Dirk Dougherty4405a232009-07-07 17:43:27 -0700280 if (intlUrl) {
281 base = uri.substring(uri.indexOf('intl/')+5,uri.length);
282 base = base.substring(base.indexOf('/')+1, base.length);
283 //alert("intl, returning base url: /" + base);
284 return ("/" + base);
285 } else {
286 //alert("not intl, returning uri as found.");
287 return uri;
288 }
289}
290
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700291function requestAppendHL(uri) {
292//append "?hl=<lang> to an outgoing request (such as to blog)
293 var lang = getLangPref();
294 if (lang) {
295 var q = 'hl=' + lang;
296 uri += '?' + q;
297 window.location = uri;
298 return false;
299 } else {
300 return true;
301 }
302}
303
The Android Open Source Project88b60792009-03-03 19:28:42 -0800304function loadLast(cookiePath) {
305 var location = window.location.href;
306 if (location.indexOf("/"+cookiePath+"/") != -1) {
307 return true;
308 }
Dirk Dougherty4405a232009-07-07 17:43:27 -0700309 var lastPage = readCookie(cookiePath + "_lastpage");
The Android Open Source Project88b60792009-03-03 19:28:42 -0800310 if (lastPage) {
311 window.location = lastPage;
312 return false;
313 }
314 return true;
315}
316
317$(window).unload(function(){
Dirk Dougherty4405a232009-07-07 17:43:27 -0700318 var path = getBaseUri(location.pathname);
319 if (path.indexOf("/reference/") != -1) {
320 writeCookie("lastpage", path, "reference", null);
321 } else if (path.indexOf("/guide/") != -1) {
322 writeCookie("lastpage", path, "guide", null);
Dirk Dougherty502c4982009-12-02 18:01:16 -0800323 } else if (path.indexOf("/resources/") != -1) {
324 writeCookie("lastpage", path, "resources", null);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800325 }
326});
327
The Android Open Source Project88b60792009-03-03 19:28:42 -0800328function toggle(obj, slide) {
329 var ul = $("ul", obj);
330 var li = ul.parent();
331 if (li.hasClass("closed")) {
332 if (slide) {
333 ul.slideDown("fast");
334 } else {
335 ul.show();
336 }
337 li.removeClass("closed");
338 li.addClass("open");
339 $(".toggle-img", li).attr("title", "hide pages");
340 } else {
341 ul.slideUp("fast");
342 li.removeClass("open");
343 li.addClass("closed");
344 $(".toggle-img", li).attr("title", "show pages");
345 }
346}
347
The Android Open Source Project88b60792009-03-03 19:28:42 -0800348function buildToggleLists() {
349 $(".toggle-list").each(
350 function(i) {
351 $("div", this).append("<a class='toggle-img' href='#' title='show pages' onClick='toggle(this.parentNode.parentNode, true); return false;'></a>");
352 $(this).addClass("closed");
353 });
354}
355
356function getNavPref() {
Dirk Dougherty4405a232009-07-07 17:43:27 -0700357 var v = readCookie('reference_nav');
The Android Open Source Project88b60792009-03-03 19:28:42 -0800358 if (v != NAV_PREF_TREE) {
359 v = NAV_PREF_PANELS;
360 }
361 return v;
362}
363
364function chooseDefaultNav() {
365 nav_pref = getNavPref();
366 if (nav_pref == NAV_PREF_TREE) {
367 $("#nav-panels").toggle();
368 $("#panel-link").toggle();
369 $("#nav-tree").toggle();
370 $("#tree-link").toggle();
371 }
372}
373
374function swapNav() {
375 if (nav_pref == NAV_PREF_TREE) {
376 nav_pref = NAV_PREF_PANELS;
377 } else {
378 nav_pref = NAV_PREF_TREE;
Dirk Dougherty3b1ee372009-07-29 12:25:44 -0700379 init_default_navtree(toRoot);
The Android Open Source Project88b60792009-03-03 19:28:42 -0800380 }
381 var date = new Date();
382 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
Dirk Dougherty4405a232009-07-07 17:43:27 -0700383 writeCookie("nav", nav_pref, "reference", date.toGMTString());
The Android Open Source Project88b60792009-03-03 19:28:42 -0800384
385 $("#nav-panels").toggle();
386 $("#panel-link").toggle();
387 $("#nav-tree").toggle();
388 $("#tree-link").toggle();
389
390 if ($("#nav-tree").is(':visible')) scrollIntoView("nav-tree");
391 else {
392 scrollIntoView("packages-nav");
393 scrollIntoView("classes-nav");
394 }
395}
396
397function scrollIntoView(nav) {
398 var navObj = $("#"+nav);
399 if (navObj.is(':visible')) {
400 var selected = $(".selected", navObj);
401 if (selected.length == 0) return;
402 if (selected.is("div")) selected = selected.parent();
403
404 var scrolling = document.getElementById(nav);
405 var navHeight = navObj.height();
406 var offsetTop = selected.position().top;
407 if (selected.parent().parent().is(".toggle-list")) offsetTop += selected.parent().parent().position().top;
408 if(offsetTop > navHeight - 92) {
409 scrolling.scrollTop = offsetTop - navHeight + 92;
410 }
411 }
412}
413
414function toggleAllInherited(linkObj, expand) {
415 var a = $(linkObj);
416 var table = $(a.parent().parent().parent());
417 var expandos = $(".jd-expando-trigger", table);
418 if ( (expand == null && a.text() == "[Expand]") || expand ) {
419 expandos.each(function(i) {
420 toggleInherited(this, true);
421 });
422 a.text("[Collapse]");
423 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
424 expandos.each(function(i) {
425 toggleInherited(this, false);
426 });
427 a.text("[Expand]");
428 }
429 return false;
430}
431
432function toggleAllSummaryInherited(linkObj) {
433 var a = $(linkObj);
434 var content = $(a.parent().parent().parent());
435 var toggles = $(".toggle-all", content);
436 if (a.text() == "[Expand All]") {
437 toggles.each(function(i) {
438 toggleAllInherited(this, true);
439 });
440 a.text("[Collapse All]");
441 } else {
442 toggles.each(function(i) {
443 toggleAllInherited(this, false);
444 });
445 a.text("[Expand All]");
446 }
447 return false;
448}
Dirk Dougherty4405a232009-07-07 17:43:27 -0700449
450
451function changeTabLang(lang) {
452 var nodes = $("#header-tabs").find("."+lang);
453 for (i=0; i < nodes.length; i++) { // for each node in this language
454 var node = $(nodes[i]);
455 node.siblings().css("display","none"); // hide all siblings
456 if (node.not(":empty").length != 0) { //if this languages node has a translation, show it
457 node.css("display","inline");
458 } else { //otherwise, show English instead
459 node.css("display","none");
460 node.siblings().filter(".en").css("display","inline");
461 }
462 }
463}
464
465function changeNavLang(lang) {
466 var nodes = $("#side-nav").find("."+lang);
467 for (i=0; i < nodes.length; i++) { // for each node in this language
468 var node = $(nodes[i]);
469 node.siblings().css("display","none"); // hide all siblings
470 if (node.not(":empty").length != 0) { // if this languages node has a translation, show it
471 node.css("display","inline");
472 } else { // otherwise, show English instead
473 node.css("display","none");
474 node.siblings().filter(".en").css("display","inline");
475 }
476 }
477}
478
479function changeDocLang(lang) {
480 changeTabLang(lang);
481 changeNavLang(lang);
482}
483
484function changeLangPref(lang, refresh) {
485 var date = new Date();
486 expires = date.toGMTString(date.setTime(date.getTime()+(10*365*24*60*60*1000))); // keep this for 50 years
487 //alert("expires: " + expires)
488 writeCookie("pref_lang", lang, null, expires);
489 //changeDocLang(lang);
490 if (refresh) {
491 l = getBaseUri(location.pathname);
492 window.location = l;
493 }
494}
495
496function loadLangPref() {
497 var lang = readCookie("pref_lang");
498 if (lang != 0) {
499 $("#language").find("option[value='"+lang+"']").attr("selected",true);
500 }
501}
502
503function getLangPref() {
Dirk Doughertyefdcda42009-07-15 16:41:48 -0700504 var lang = $("#language").find(":selected").attr("value");
505 if (!lang) {
506 lang = readCookie("pref_lang");
507 }
508 return (lang != 0) ? lang : 'en';
Dirk Dougherty4405a232009-07-07 17:43:27 -0700509}
Scott Main462cc372009-10-23 16:19:37 -0700510
511
512function toggleContent(obj) {
513 var button = $(obj);
514 var div = $(obj.parentNode);
515 var toggleMe = $(".toggle-content-toggleme",div);
516 if (button.hasClass("show")) {
517 toggleMe.slideDown();
518 button.removeClass("show").addClass("hide");
519 } else {
520 toggleMe.slideUp();
521 button.removeClass("hide").addClass("show");
522 }
523 $("span", button).toggle();
524}