зеркало из https://github.com/mozilla/gecko-dev.git
97 строки
3.4 KiB
XML
97 строки
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;"
|
|
align = "vertical"
|
|
class = "dialog"
|
|
>
|
|
|
|
<script src="chrome://communicator/content/xpinstall/xpistatus.js"></script>
|
|
<keyset id="keyset"/>
|
|
|
|
<box align="vertical" id="mainBox">
|
|
<box align="horizontal" id="interiorTitleBox">
|
|
<text class="headline" id="interiorTitle" value="&progress.label;"/>
|
|
<spring flex="100%"/>
|
|
<image src="chrome://global/skin/animthrob_single.gif" />
|
|
</box>
|
|
|
|
<spring id ="verticalSmallSpacer"/>
|
|
<separator align="center" class="groove" flex="100%"/>
|
|
<spring id="verticalSmallSpacer"/>
|
|
|
|
<text class="label" id="componentList" value="&downloadBeforeUpdate.text;"/>
|
|
<spring id="verticalSmallSpacer"/>
|
|
<spring id="verticalSmallSpacer"/>
|
|
|
|
<box align="vertical" id="treebox">
|
|
<tree id="modulesTree">
|
|
<treecolgroup>
|
|
<treecol flex="1"/>
|
|
<treecol flex="1"/>
|
|
</treecolgroup>
|
|
<treehead>
|
|
<treerow>
|
|
<treecell id="moduleName" value="&moduleName.label;" />
|
|
<treecell id="moduleSource" value="&moduleSource.label;"/>
|
|
</treerow>
|
|
</treehead>
|
|
|
|
<treechildren id="theTreeBody" flex="1">
|
|
</treechildren>
|
|
</tree>
|
|
</box>
|
|
|
|
<spring id="verticalSmallSpacer"/>
|
|
|
|
<box align="vertical" id="statusMessages">
|
|
<textfield id="dialog.uiPackageName" readonly="" />
|
|
<textfield id="dialog.currentAction" readonly="" />
|
|
</box>
|
|
|
|
<box align="horizontal">
|
|
<box align="vertical">
|
|
<spring style="height:6px"/>
|
|
<progressmeter id="dialog.progress" mode="normal" value="0" style="width:200px;height:10px">
|
|
</progressmeter>
|
|
</box>
|
|
|
|
<button class="dialog push" id="cancel" onclick="cancel()" value="&dialogCancel.label;"/>
|
|
</box>
|
|
|
|
</box>
|
|
|
|
</window>
|