1999-09-03 08:55:23 +04:00
|
|
|
<?xml version="1.0"?>
|
2000-01-25 06:30:33 +03:00
|
|
|
<!--
|
|
|
|
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):
|
|
|
|
-->
|
1999-09-03 08:55:23 +04:00
|
|
|
|
2000-01-25 06:30:33 +03:00
|
|
|
<!-- CHANGE THIS WHEN MOVING FILES -->
|
2000-04-21 13:40:38 +04:00
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
2000-01-25 06:30:33 +03:00
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
1999-09-03 08:55:23 +04:00
|
|
|
|
2000-01-25 06:30:33 +03:00
|
|
|
<!-- CHANGE THIS WHEN MOVING FILES -->
|
2000-04-20 01:42:30 +04:00
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/wallet/WalletEditor.dtd" >
|
1999-09-03 08:55:23 +04:00
|
|
|
|
2000-01-25 06:30:33 +03:00
|
|
|
<window id="walleteditor"
|
|
|
|
class="dialog"
|
|
|
|
title="&windowtitle.label;"
|
2000-06-15 13:54:41 +04:00
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
2000-01-25 06:30:33 +03:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2000-07-14 01:54:37 +04:00
|
|
|
orient="vertical"
|
2000-01-25 06:30:33 +03:00
|
|
|
onload="Startup()">
|
|
|
|
|
2000-07-14 01:54:37 +04:00
|
|
|
<script src="chrome://communicator/content/wallet/WalletEditor.js"/>
|
|
|
|
<script language="javascript" src="chrome://global/content/strres.js" />
|
2000-06-04 19:34:09 +04:00
|
|
|
<keyset id="keyset"/>
|
|
|
|
|
2000-07-14 01:54:37 +04:00
|
|
|
<box id="system" flex="100%" orient="vertical">
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="height: 7px;"/>
|
2000-04-28 18:07:07 +04:00
|
|
|
<text class="label" value="&div.walletdataonsystem.label;"/>
|
2000-04-29 03:06:52 +04:00
|
|
|
<separator orient="horizontal" class="groove"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="height: 10px;"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box id="system1" flex="100%" orient="horizontal">
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="width: 7px;"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box orient="vertical">
|
2000-04-28 18:07:07 +04:00
|
|
|
<text class="label" value="&treehead.schemaname.label;"/>
|
2000-04-04 06:52:56 +04:00
|
|
|
<tree multiple="true" id="schematree" class="inset"
|
2000-07-14 01:54:37 +04:00
|
|
|
style="height: 250px;" orient="vertical" onclick="ViewEntries();">
|
2000-06-20 05:04:20 +04:00
|
|
|
<treecolgroup>
|
|
|
|
<treecol flex="1"/>
|
|
|
|
</treecolgroup>
|
|
|
|
<treechildren id="schemalist" flex="1"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
</tree>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box orient="horizontal">
|
2000-12-20 04:58:56 +03:00
|
|
|
<button id="removeSchema" class="dialog push" disabled="true" value="&button.remove.label;" oncommand="DeleteSchema();"/>
|
|
|
|
<button id="addSchema" class="dialog push" disabled="false" value="&button.addschema.label;" oncommand="AddSchema();"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
</box>
|
2000-07-14 01:54:37 +04:00
|
|
|
</box>
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="width: 7px;"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box orient="vertical">
|
2000-11-15 01:11:25 +03:00
|
|
|
<text class="label" id="entrytext" value2="&treehead.entries.label;" value3="&treehead.entries1.label;"/>
|
2000-04-04 06:52:56 +04:00
|
|
|
<tree multiple="true" id="entrytree" class="inset"
|
2000-07-14 01:54:37 +04:00
|
|
|
style="height: 113px;" orient="vertical" onclick="ViewSynonyms();">
|
2000-06-20 05:04:20 +04:00
|
|
|
<treecolgroup>
|
|
|
|
<treecol flex="1"/>
|
|
|
|
</treecolgroup>
|
|
|
|
<treechildren flex="1" id="entrieslist"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
</tree>
|
|
|
|
<spring style="height: 7px;"/>
|
2000-11-15 01:11:25 +03:00
|
|
|
<text class="label" id="synonymtext" value2="&treehead.synonyms.label;" value3="&treehead.synonymsoff.label;" value4="&treehead.synonyms1.label;"/>
|
2000-04-04 06:52:56 +04:00
|
|
|
<tree multiple="true" id="synonymtree" class="inset"
|
2000-07-14 01:54:37 +04:00
|
|
|
style="height: 113px;" orient="vertical" onclick="SynonymSelected();">
|
2000-06-20 05:04:20 +04:00
|
|
|
<treecolgroup>
|
|
|
|
<treecol flex="1"/>
|
|
|
|
</treecolgroup>
|
|
|
|
<treechildren flex="1" id="synonymslist"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
</tree>
|
2000-07-14 01:54:37 +04:00
|
|
|
</box>
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="width: 7px;"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box orient="vertical">
|
|
|
|
<spring style="height: 15px;"/>
|
2000-12-20 04:58:56 +03:00
|
|
|
<button id="removeEntry" class="dialog push" disabled="true" value="&button.remove.label;" oncommand="DeleteEntry();"/>
|
|
|
|
<button id="addEntry" class="dialog push" disabled="false" value="&button.addentry.label;" oncommand="AddEntry();"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<spring style="height: 93px;"/>
|
2000-12-20 04:58:56 +03:00
|
|
|
<button id="removeSynonym" class="dialog push" disabled="true" value="&button.remove.label;" oncommand="DeleteSynonym();"/>
|
|
|
|
<button id="addSynonym" class="dialog push" disabled="false" value="&button.addsynonym.label;" oncommand="AddSynonym();"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
</box>
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring style="width: 7px;"/>
|
|
|
|
</box>
|
|
|
|
</box>
|
2000-04-29 03:06:52 +04:00
|
|
|
<separator orient="horizontal" class="groove"/>
|
2000-01-25 06:30:33 +03:00
|
|
|
|
|
|
|
<!-- from dialogOverlay.xul -->
|
|
|
|
<spring style="height: 5px;"/>
|
2000-07-14 01:54:37 +04:00
|
|
|
<box orient="horizontal">
|
2000-01-25 06:30:33 +03:00
|
|
|
<spring flex="100%"/>
|
|
|
|
<box id="okCancelButtons"/>
|
|
|
|
</box>
|
|
|
|
<spring style="height: 5px;"/>
|
|
|
|
|
|
|
|
</window>
|