зеркало из https://github.com/mozilla/pjs.git
129 строки
4.9 KiB
XML
129 строки
4.9 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, released
|
|
March 31, 1998.
|
|
|
|
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):
|
|
Ben Goodger
|
|
-->
|
|
|
|
<!-- CHANGE THIS WHEN MOVING FILES -->
|
|
<?xml-stylesheet href="chrome://wallet/skin/SignonViewer.css" type="text/css"?>
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!-- CHANGE THIS WHEN MOVING FILES -->
|
|
<!DOCTYPE window SYSTEM "chrome://wallet/locale/SignonViewer.dtd" >
|
|
|
|
<window id="signonviewer"
|
|
width="410" height="440"
|
|
title="&windowtitle.label;"
|
|
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
align="vertical"
|
|
onload="Startup()">
|
|
|
|
<html:script src="SignonViewer.js"/>
|
|
<html:script language="javascript" src="chrome://global/content/strres.js" />
|
|
<html:script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js"/>
|
|
|
|
<tabcontrol flex="100%" align="vertical">
|
|
<tabbox>
|
|
<tab selected="true">&tab.signonsstored.label;</tab>
|
|
<tab>&tab.signonsnotstored.label;</tab>
|
|
<tab>&tab.nopreview.label;</tab>
|
|
<spring flex="1"/>
|
|
</tabbox>
|
|
<tabpanel align="horizontal" style="width: 400px;">
|
|
<!-- saved signons -->
|
|
<box class="tabpanel" id="savedsignons" flex="100%" align="vertical">
|
|
<box><html:div>&spiel.signonsstored.label;</html:div></box>
|
|
<spring style="height: 10px;"/>
|
|
<html:div style="width: 380px;">
|
|
<tree id="signonstree" style="height: 280px; width: 380px;" align="vertical">
|
|
<treecol width="45%"/>
|
|
<treecol width="55%"/>
|
|
<treehead>
|
|
<treerow>
|
|
<treecell value="&treehead.signonsite.label;"/>
|
|
<treecell value="&treehead.signonusername.label;"/>
|
|
</treerow>
|
|
</treehead>
|
|
<treechildren id="savesignonlist"/>
|
|
</tree>
|
|
</html:div>
|
|
<spring style="height: 5px;"/>
|
|
<box align="horizontal">
|
|
<titledbutton class="dialog push" value="&remove.label;" onclick="goneSS += DeleteItemSelected('signonstree','signon_','savesignonlist');"/>
|
|
</box>
|
|
<spring style="height: 5px;"/>
|
|
</box>
|
|
<!-- ignored signon sites -->
|
|
<box class="tabpanel" id="ignoredsites" flex="100%" align="vertical">
|
|
<html:div>&spiel.signonsnotstored.label;</html:div>
|
|
<spring style="height: 10px;"/>
|
|
<html:div flex="100%">
|
|
<tree id="ignoretree" style="height: 280px; width: 380px;" align="vertical">
|
|
<treecol width="45%"/>
|
|
<treecol width="55%"/>
|
|
<treehead>
|
|
<treerow>
|
|
<treecell value="&treehead.signonsite.label;"/>
|
|
<treecell value="&treehead.signonusername.label;"/>
|
|
</treerow>
|
|
</treehead>
|
|
<treechildren id="ignoredlist"/>
|
|
</tree>
|
|
</html:div>
|
|
<spring style="height: 5px;"/>
|
|
<box align="horizontal">
|
|
<titledbutton class="dialog push" value="&remove.label;" onclick="goneIS += DeleteItemSelected('ignoretree','reject_','ignoredlist');"/>
|
|
</box>
|
|
<spring style="height: 5px;"/>
|
|
</box>
|
|
<!-- do not preview panel -->
|
|
<box class="tabpanel" id="nopreviewforms" flex="100%" align="vertical">
|
|
<html:div>&spiel.nopreview.label;</html:div>
|
|
<spring style="height: 10px;"/>
|
|
<html:div flex="100%">
|
|
<tree id="nopreviewtree" style="height: 280px; width: 380px;" align="vertical">
|
|
<treehead>
|
|
<treerow>
|
|
<treecell value="&treehead.nopreviewforms.label;"/>
|
|
</treerow>
|
|
</treehead>
|
|
<treechildren id="nopreviewlist"/>
|
|
</tree>
|
|
</html:div>
|
|
<spring style="height: 5px;"/>
|
|
<box align="horizontal">
|
|
<titledbutton class="dialog push" value="&remove.label;" onclick="goneFR += DeleteItemSelected('nopreviewtree','nopreview_','nopreviewlist');"/>
|
|
</box>
|
|
<spring style="height: 5px;"/>
|
|
</box>
|
|
</tabpanel>
|
|
</tabcontrol>
|
|
|
|
<!-- from dialogOverlay.xul -->
|
|
<box align="horizontal">
|
|
<spring flex="100%"/>
|
|
<box id="okCancelButtons"/>
|
|
</box>
|
|
|
|
</window>
|
|
|