toolkit/mozapps/plugins/content/pluginInstallerWizard.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
michael@0 7 <?xml-stylesheet href="chrome://mozapps/content/plugins/pluginInstallerWizard.css"?>
michael@0 8 <?xml-stylesheet href="chrome://mozapps/skin/plugins/pluginInstallerWizard.css"?>
michael@0 9
michael@0 10 <!DOCTYPE wizard [
michael@0 11 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 12 %brandDTD;
michael@0 13 <!ENTITY % pluginsDTD SYSTEM "chrome://mozapps/locale/plugins/plugins.dtd">
michael@0 14 %pluginsDTD;
michael@0 15 ]>
michael@0 16
michael@0 17 <wizard id="plugin-installer-wizard" title="&pluginWizard.title;"
michael@0 18 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 19 persist="width height screenX screenY sizemode"
michael@0 20 style="width: 50em; min-height: 40em;"
michael@0 21 onload="wizardInit()"
michael@0 22 onwizardfinish="return wizardFinish();">
michael@0 23
michael@0 24 <script type="application/javascript" src="chrome://mozapps/content/plugins/pluginInstallerWizard.js"/>
michael@0 25 <script type="application/javascript" src="chrome://mozapps/content/plugins/pluginInstallerDatasource.js"/>
michael@0 26 <script type="application/javascript" src="chrome://mozapps/content/plugins/pluginInstallerService.js"/>
michael@0 27
michael@0 28 <stringbundleset id="pluginSet">
michael@0 29 <stringbundle id="brandStrings" src="chrome://branding/locale/brand.properties"/>
michael@0 30 <stringbundle id="xpinstallStrings" src="chrome://global/locale/xpinstall/xpinstall.properties"/>
michael@0 31 <stringbundle id="pluginWizardString" src="chrome://mozapps/locale/plugins/plugins.properties"/>
michael@0 32 </stringbundleset>
michael@0 33
michael@0 34 <wizardpage label="&pluginWizard.firstPage.title;">
michael@0 35 <description value="&pluginWizard.checkingForPlugins.description.label;"/>
michael@0 36 <separator />
michael@0 37 <progressmeter id="ws_request_progress" mode="undetermined"/>
michael@0 38 </wizardpage>
michael@0 39
michael@0 40 <wizardpage label="&pluginWizard.availablePluginsPage.title;"
michael@0 41 onpageshow="gPluginInstaller.showPluginList()">
michael@0 42
michael@0 43 <description value="&pluginWizard.availablePluginsPage.description.label;"/>
michael@0 44
michael@0 45 <vbox id="pluginList" flex="1" align="left" style="overflow: auto;"/>
michael@0 46
michael@0 47 <vbox id="installerUI" hidden="true">
michael@0 48 <separator />
michael@0 49 <description>&pluginWizard.availablePluginsPage.installerUI;</description>
michael@0 50 </vbox>
michael@0 51
michael@0 52 <separator />
michael@0 53 <description value="&pluginWizard.availablePluginsPage.continueMsg.label;"/>
michael@0 54 </wizardpage>
michael@0 55
michael@0 56 <wizardpage label="&pluginWizard.licensePage.title;"
michael@0 57 onpageshow="gPluginInstaller.showLicenses()"
michael@0 58 onpageadvanced="return gPluginInstaller.showNextLicense();"
michael@0 59 onpagerewound="return gPluginInstaller.showPreviousLicense();">
michael@0 60 <description id="pluginLicenseLabel"> </description>
michael@0 61
michael@0 62 <vbox id="licenseContainer" flex="1">
michael@0 63 <iframe id="licenseIFrame" flex="1" src="" />
michael@0 64 </vbox>
michael@0 65
michael@0 66 <radiogroup id="licenseRadioGroup">
michael@0 67 <radio id="licenseRadioGroup1" disabled="true"
michael@0 68 oncommand="gPluginInstaller.licenseRadioGroupChange(true)"
michael@0 69 label="&pluginWizard.licensePage.accept.label;"/>
michael@0 70 <radio id="licenseRadioGroup2" disabled="true" selected="true"
michael@0 71 oncommand="gPluginInstaller.licenseRadioGroupChange(false)"
michael@0 72 label="&pluginWizard.licensePage.deny.label;"/>
michael@0 73 </radiogroup>
michael@0 74 </wizardpage>
michael@0 75
michael@0 76 <wizardpage label="&pluginWizard.installPluginsPage.title;"
michael@0 77 onpageshow="gPluginInstaller.startPluginInstallation()">
michael@0 78 <description value="&pluginWizard.installPluginsPage.description.label;"/>
michael@0 79
michael@0 80 <separator />
michael@0 81
michael@0 82 <description id="plugin_install_progress_message" value=""/>
michael@0 83 <progressmeter id="plugin_install_progress" mode="undetermined"/>
michael@0 84 </wizardpage>
michael@0 85
michael@0 86 <wizardpage id="lastpage" pageid="lastpage"
michael@0 87 onpageshow="gPluginInstaller.showPluginResults()">
michael@0 88
michael@0 89 <description id="pluginSummaryDescription"
michael@0 90 value="&pluginWizard.finalPage.description.label;"/>
michael@0 91
michael@0 92 <separator />
michael@0 93
michael@0 94 <grid class="indent">
michael@0 95 <columns>
michael@0 96 <column/>
michael@0 97 <column style="margin-right:15px;"/>
michael@0 98 <column style="margin-right:15px;"/>
michael@0 99 <column />
michael@0 100 </columns>
michael@0 101
michael@0 102 <rows id="pluginResultList">
michael@0 103 </rows>
michael@0 104 </grid>
michael@0 105
michael@0 106 <description id="pluginSummaryRestartNeeded" style="padding-top:10px;"
michael@0 107 value="&pluginWizard.finalPage.restart.label;"/>
michael@0 108 <spacer flex="1" />
michael@0 109 <description id="moreInfoLink"
michael@0 110 style="color:rgb(0, 0, 255); cursor:pointer; text-decoration:underline;"
michael@0 111 value="&pluginWizard.finalPage.moreInfo.label;"/>
michael@0 112 </wizardpage>
michael@0 113
michael@0 114 </wizard>
michael@0 115

mercurial