Albirew
11b6f9177a
merged
c31fb0830f
Their API docs now say that "c=" is a required parameter. But not what
value to put there. Not to mention it takes several seconds just to
respond with an error page.
67 lignes
2,2 Kio
XML
67 lignes
2,2 Kio
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE overlay SYSTEM "chrome://resurrect/locale/overlay.dtd">
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://resurrect/skin/select-mirror.css" type="text/css"?>
|
|
|
|
<!-- "B" in the ID is to lose the (wrong) persisted height from old versions -->
|
|
<dialog id="resurrect-select-mirrorB"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&resurrect.title;"
|
|
buttons="cancel"
|
|
persist="screenX screenY"
|
|
>
|
|
|
|
<script type='application/x-javascript' src='chrome://resurrect/content/resurrect.js'></script>
|
|
<script type='application/x-javascript'>
|
|
window.addEventListener('load', resurrect.loadTarget, false);
|
|
</script>
|
|
|
|
<vbox>
|
|
<groupbox>
|
|
<caption label='&resurrect.this;' />
|
|
|
|
<radiogroup id='targetGroup'>
|
|
<radio id='targetCurr' label='&resurrect.inCurrTab;' />
|
|
<radio id='targetTab' label='&resurrect.inNewTab;' />
|
|
<radio id='targetWin' label='&resurrect.inNewWin;' />
|
|
</radiogroup>
|
|
</groupbox>
|
|
|
|
<groupbox id='resurrect' oncommand='resurrect.clickedXul(event);'>
|
|
<caption label='&resurrect.fromMirror;' />
|
|
|
|
<xul:button
|
|
value='google' label=' &resurrect.google;'
|
|
image='chrome://resurrect/skin/cacheicons/google.png'
|
|
/>
|
|
<xul:button
|
|
value='googletext' label=' &resurrect.google;&resurrect.textonly;'
|
|
image='chrome://resurrect/skin/cacheicons/google.png'
|
|
/>
|
|
<xul:button
|
|
value='archive' label=' &resurrect.archive;'
|
|
image='chrome://resurrect/skin/cacheicons/archive.png'
|
|
/>
|
|
<xul:button
|
|
value='bing' label=' &resurrect.bing;'
|
|
image='chrome://resurrect/skin/cacheicons/bing.png'
|
|
/>
|
|
<xul:button
|
|
value='webcitation' label=' &resurrect.webcitation;'
|
|
image='chrome://resurrect/skin/cacheicons/webcitation.png'
|
|
/>
|
|
<xul:button
|
|
value='archiveis' label=' &resurrect.archiveis;'
|
|
image='chrome://resurrect/skin/cacheicons/archiveis.png'
|
|
/>
|
|
<xul:button
|
|
value='isup' label=' &resurrect.isup;'
|
|
image='chrome://resurrect/skin/cacheicons/isup.png'
|
|
/>
|
|
</groupbox>
|
|
|
|
</vbox>
|
|
|
|
</dialog>
|