1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/mozapps/extensions/content/eula.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 +<?xml version="1.0"?> 1.5 + 1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.7 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.9 + 1.10 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 1.11 +<?xml-stylesheet href="chrome://mozapps/skin/extensions/eula.css" type="text/css"?> 1.12 + 1.13 +<!DOCTYPE window [ 1.14 +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> 1.15 +%brandDTD; 1.16 +<!ENTITY % extensionsDTD SYSTEM "chrome://mozapps/locale/extensions/extensions.dtd"> 1.17 +%extensionsDTD; 1.18 +]> 1.19 + 1.20 +<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.21 + title="&eula.title;" width="&eula.width;" height="&eula.height;" 1.22 + buttons="accept,cancel" buttonlabelaccept="&eula.accept;" 1.23 + ondialogaccept="window.arguments[0].accepted = true" 1.24 + onload="Startup();"> 1.25 + 1.26 + <script type="application/javascript" src="chrome://mozapps/content/extensions/eula.js"/> 1.27 + 1.28 + <stringbundleset id="extensionsSet"> 1.29 + <stringbundle id="extensionsStrings" src="chrome://mozapps/locale/extensions/extensions.properties"/> 1.30 + </stringbundleset> 1.31 + 1.32 + <hbox id="heading-container"> 1.33 + <image id="icon"/> 1.34 + <label id="heading" flex="1"/> 1.35 + </hbox> 1.36 + 1.37 + <textbox id="eula" multiline="true" readonly="true" flex="1"/> 1.38 +</dialog>