mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
93 lines
3.4 KiB
XML
93 lines
3.4 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
The contents of this file are subject to the Netscape Public
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
The Original Code is Mozilla Communicator client code.
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
Communications Corporation. Portions created by Netscape are
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Don Bragg (dbragg@netscape.com) 12/08/1999
|
|
Blake Ross (BlakeR1234@aol.com) 7/05/2000
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/xpinstall/xpinstall.css" type="text/css"?>
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/xpinstall/xpistatus.dtd" >
|
|
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="onLoad()"
|
|
onclose="return false"
|
|
title="&progressTitle.label;"
|
|
orient="vertical"
|
|
class = "dialog"
|
|
>
|
|
|
|
<script src="chrome://communicator/content/xpinstall/xpistatus.js"/>
|
|
<keyset id="keyset"/>
|
|
|
|
<box orient="vertical" id="mainBox">
|
|
<box id="interiorTitleBox" orient="horizontal" autostretch="never">
|
|
<text class="headline" id="interiorTitle" value="&progress.label;"/>
|
|
<spring flex="100%"/>
|
|
<image src="chrome://global/skin/animthrob_single.gif" />
|
|
</box>
|
|
|
|
<spring class="vertical-small-spacer"/>
|
|
<separator class="groove" flex="100%"/>
|
|
<spring class="vertical-small-spacer"/>
|
|
|
|
<text class="label" id="componentList" value="&downloadBeforeUpdate.text;"/>
|
|
<spring class="vertical-small-spacer"/>
|
|
<spring class="vertical-small-spacer"/>
|
|
|
|
<box orient="vertical" id="treebox">
|
|
<tree id="modulesTree" class="inset">
|
|
<treecolgroup>
|
|
<treecol flex="1"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol flex="1"/>
|
|
</treecolgroup>
|
|
<treehead>
|
|
<treerow>
|
|
<treecell id="moduleName" class="treecell-header" label="&moduleName.label;" />
|
|
<treecell id="moduleSource" class="treecell-header" label="&moduleSource.label;"/>
|
|
</treerow>
|
|
</treehead>
|
|
|
|
<treechildren id="theTreeBody" flex="1">
|
|
</treechildren>
|
|
</tree>
|
|
</box>
|
|
|
|
<spring class="vertical-small-spacer"/>
|
|
|
|
<box id="statusMessages" orient="vertical">
|
|
<textbox id="dialog.uiPackageName" readonly="" />
|
|
<textbox id="dialog.currentAction" readonly="" />
|
|
</box>
|
|
|
|
<box id="progressBox" orient="horizontal" autostretch="never">
|
|
<progressmeter id="dialog.progress" mode="normal" value="0"/>
|
|
<button class="dialog push" id="cancel" onclick="cancel()" label="&dialogCancel.label;"/>
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</window>
|