var resurrect={ mirrors:[ {name:'CoralCDN', id:'coralcdn'}, {name:'Google Cache', id:'google'}, {name:'The Internet Archive', id:'archive'}, {name:'MSN Cache', id:'msn'}, {name:'Yahoo! Cache', id:'yahoo'} ], originalDoc:null, gotoUrl:null, // // // // // // // // // // // // // // // // // // // // // // // // // // // onLoad:function() { window.removeEventListener('load', resurrect.onLoad, false); document.getElementById('contentAreaContextMenu') .addEventListener('popupshowing', resurrect.toggleContextItems, false); }, toggleContextItems:function(event) { resurrect.clickTarget=event.target; var onDocument=!( gContextMenu.isContentSelected || gContextMenu.onTextInput || gContextMenu.onLink || gContextMenu.onImage ); document.getElementById('resurrect-page-context') .setAttribute('hidden', !onDocument); document.getElementById('resurrect-link-context') .setAttribute('hidden', !gContextMenu.onLink); }, // // // // // // // // // // // // // // // // // // // // // // // // // // // page:function(event) { var doc=getBrowser().contentWindow.document; resurrect.showDialog(doc.location.href); }, link:function(event) { var el=document.popupNode; try { while (el && el.tagName && 'A'!=el.tagName) { el=el.parentNode; } resurrect.showDialog(el.href); } catch (e) { } return null; }, // // // // // // // // // // // // // // // // // // // // // // // // // // // showDialog:function(url) { resurrect.originalDoc=getBrowser().contentWindow.document; resurrect.gotoUrl=url; window.openDialog( 'chrome://resurrect/content/resurrect-select-mirror.xul', '_blank', 'modal,centerscreen,resizable=no,chrome,dependent' ); }, selectMirror:function(event) { var listbox=document.getElementById('mirror'); var gotoUrl=null; var rawUrl=opener.resurrect.gotoUrl; var encUrl=encodeURIComponent(rawUrl); switch (listbox.value) { case 'coralcdn': gotoUrl=rawUrl.substring(0, 8)+ rawUrl.substring(8).replace(/\//, '.nyud.net:8080/'); break; case 'google': gotoUrl='http://www.google.com/search?q=cache:'+encUrl break; case 'archive': gotoUrl='http://web.archive.org/web/*/'+rawUrl break; case 'yahoo': var xhr=new XMLHttpRequest(); xhr.open('GET', 'http://api.search.yahoo.com/WebSearchService/V1/'+ 'webSearch?appid=firefox-resurrect&query='+encUrl+'&results=1', false ); xhr.send(null); try { var c=xhr.responseXML.getElementsByTagName('Cache'); gotoUrl=c[0].firstChild.textContent; } catch (e ) { gotoUrl='http://search.yahoo.com/search?p='+encUrl; } break; case 'msn': //FD382E93B5ABC456C5E34C238A906CAB2DEEB5D6 //ugh, they've got an API but .. SOAP? blech too complicated var searchUrl='http://search.msn.com/results.aspx?q='+encUrl; var xhr=new XMLHttpRequest(); xhr.open('GET', searchUrl, false); xhr.send(null); try { var m=xhr.responseText.match(/Cached page/); gotoUrl=m[1]; gotoUrl=gotoUrl.replace('&', '&'); } catch (e ) { gotoUrl=searchUrl; } break; } if (gotoUrl) { opener.resurrect.originalDoc.location.assign(gotoUrl); } //setTimeout avoids error message when selecting in listbox setTimeout(window.close, 0); } // // // // // // // // // // // // // // // // // // // // // // // // // // // }//end var resurrect if ('undefined'!=typeof gBrowser) { window.addEventListener('load', resurrect.onLoad, false); }