// funções que convertem datas no formato mes, dia ano para dia, mes ano // o parâmetro CSSclass é o nome da classe em que os links se encontram // função específica para o Blogger // esta função procura pelos links com a classe passada como parâmetro // e aplica a função usdate2brdate function brdate(CSSclass){ archlinks = document.getElementsByTagName("a"); for (var x = 0 ;x < archlinks.length; x++){ if (archlinks[x].className==CSSclass){ archlinks[x].innerHTML = usdate2brdate(archlinks[x].innerHTML); } } } // função que faz a conversão das datas function usdate2brdate(date){ // procurar função que retira espaços em branco de uma string dates = date.split(" - "); dateA = dates[0]; dateB = dates[1]; partA = dateA.split("/"); partB = dateB.split("/"); date1 = partA[1] + "/" + partA[0] + "/" + partA[2]; date2 = partB[1] + "/" + partB[0] + "/" + partB[2]; datebr = date1 + " - " + date2; return datebr; } // funções que alteram as folhas de estilo function setActiveStyleSheet(title) { var i, a, main; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) { a.disabled = true; if(a.getAttribute("title") == title) a.disabled = false; } } } function getActiveStyleSheet() { var i, a; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title"); } return null; } function getPreferredStyleSheet() { var i, a; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("rel").indexOf("alt") == -1 && a.getAttribute("title") ) return a.getAttribute("title"); } return null; } function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } window.onload = function(e) { var cookie = readCookie("style"); var title = cookie ? cookie : getPreferredStyleSheet(); setActiveStyleSheet(title); } window.onunload = function(e) { var title = getActiveStyleSheet(); createCookie("style", title, 365); } // função para adicionar eventos function addEvent(obj, evType, fn){ if (obj.addEventListener) obj.addEventListener(evType, fn, true) if (obj.attachEvent) obj.attachEvent("on"+evType, fn) } // função que chama a função brdate function changedate(){ brdate("archlink"); } // lista de eventos addEvent(window,"load",changedate)