summaryrefslogtreecommitdiffstats
path: root/comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul
diff options
context:
space:
mode:
Diffstat (limited to 'comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul')
-rw-r--r--comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul43
1 files changed, 43 insertions, 0 deletions
diff --git a/comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul b/comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul
new file mode 100644
index 0000000000..90de4f6105
--- /dev/null
+++ b/comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul
@@ -0,0 +1,43 @@
+<?xml version="1.0"?>
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+
+<!DOCTYPE window SYSTEM "chrome://chatzilla/locale/install-plugin.dtd">
+
+<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
+<?xml-stylesheet href="chrome://chatzilla/skin/install-plugin.css" type="text/css"?>
+
+<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:html="http://www.w3.org/1999/xhtml" onload="onLoad();"
+ title="&windowtitle;"
+ ondialogaccept="return doOK()"
+ ondialogcancel="doCancel()">
+ <script src="install-plugin.js"/>
+ <script src="../lib/js/file-utils.js"/>
+ <script src="../lib/js/utils.js"/>
+ <grid>
+ <columns><column/><column flex="1"/></columns>
+ <rows>
+ <row align="center">
+ <label id="lbl-source" accesskey="&source.accesskey;"
+ control="txt-source" value="&source.label;"/>
+ <textbox id="txt-source"/>
+ <button id="btn-browse" label="&browse.label;"
+ accesskey="&browse.accesskey;"/>
+ </row>
+ <row align="center">
+ <label id="lbl-name" control="txt-name"
+ value="&name.label;" accesskey="&name.accesskey;"/>
+ <textbox id="txt-name" disabled="true"/>
+ </row>
+ <row align="center">
+ <spacer/>
+ <checkbox id="chk-name-auto" checked="true"
+ label="&name.autopick.label;"
+ accesskey="&name.autopick.accesskey;"/>
+ </row>
+ </rows>
+ </grid>
+</dialog>