Bug 132209 Many XUL documents are invalid XML (<!DOCTYPE window ...>)
patch by riceman+bmo@mail.rit.edu r=timeless rs=jag moa=dwitte
This commit is contained in:
Родитель
95f8707f50
Коммит
6aa7522fbf
|
@ -1,172 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["street.line1", "street.line2", "street.line3",
|
||||
"city", "state", "postalcode.prefix", "postalcode.suffix", "country",
|
||||
"email", "uri"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&address.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressLine1.label;" control="street.line1"
|
||||
accesskey="&addressLine1.accesskey;"/>
|
||||
<menulist id="street.line1" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressLine2.label;" control="street.line2"
|
||||
accesskey="&addressLine2.accesskey;"/>
|
||||
<menulist id="street.line2" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressLine3.label;" control="street.line3"
|
||||
accesskey="&addressLine3.accesskey;"/>
|
||||
<menulist id="street.line3" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressCity.label;" control="city"
|
||||
accesskey="&addressCity.accesskey;"/>
|
||||
<menulist id="city" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressState.label;" control="state"
|
||||
accesskey="&addressState.accesskey;"/>
|
||||
<menulist id="state" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressZipcode.label;" control="postalcode.prefix"
|
||||
accesskey="&addressZipcode.accesskey;"/>
|
||||
<hbox>
|
||||
<menulist id="postalcode.prefix" editable="true" disableautoselect="true" flex="55%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="postalcode.suffix" editable="true" disableautoselect="true" flex="45%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&addressCountry.label;" control="country"
|
||||
accesskey="&addressCountry.accesskey;"/>
|
||||
<menulist id="country" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&email.label;" control="email"
|
||||
accesskey="&email.accesskey;"/>
|
||||
<menulist id="email" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&homepage.label;" control="uri"
|
||||
accesskey="&homepage.accesskey;"/>
|
||||
<menulist id="uri" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,44 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = [];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
</page>
|
|
@ -1,513 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["name",
|
||||
"home.postalcode",
|
||||
"home.phone", "home.phone.number", "home.altphone", "home.altphone.number",
|
||||
"home.fax", "home.fax.number", "home.mobile", "home.mobile.number",
|
||||
"home.pager", "home.pager.number",
|
||||
"billto.name",
|
||||
"billto.postalcode",
|
||||
"billto.phone", "billto.phone.number", "billto.altphone", "billto.altphone.number",
|
||||
"billto.fax", "billto.fax.number", "billto.mobile", "billto.mobile.number",
|
||||
"billto.pager", "billto.pager.number",
|
||||
"shipto.name",
|
||||
"shipto.postalcode",
|
||||
"shipto.phone", "shipto.phone.number", "shipto.altphone", "shipto.altphone.number",
|
||||
"shipto.fax", "shipto.fax.number", "shipto.mobile", "shipto.mobile.number",
|
||||
"shipto.pager", "shipto.pager.number",
|
||||
"card.expdate", "socsec", "bdate", "anniv"];
|
||||
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
|
||||
<groupbox hidden="true">
|
||||
<caption label="&concatPrimary.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
<rows>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<label value="&concatName.label;" control="name"
|
||||
accesskey="&concatName.accesskey;"/>
|
||||
<menulist id="name" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatZipcode.label;</description>
|
||||
<menulist id="home.postalcode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatPhone.label;</description>
|
||||
<menulist id="home.phone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatPhonenumber.label;</description>
|
||||
<menulist id="home.phone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatAltPhone.label;</description>
|
||||
<menulist id="home.altphone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatAltPhonenumber.label;</description>
|
||||
<menulist id="home.altphone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatFax.label;</description>
|
||||
<menulist id="home.fax" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatFaxnumber.label;</description>
|
||||
<menulist id="home.fax.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatMobile.label;</description>
|
||||
<menulist id="home.mobile" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatMobilenumber.label;</description>
|
||||
<menulist id="home.mobile.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatPager.label;</description>
|
||||
<menulist id="home.pager" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatPagernumber.label;</description>
|
||||
<menulist id="home.pager.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
</groupbox>
|
||||
|
||||
<groupbox hidden="true">
|
||||
<caption label="&concatShipping.title;"/>
|
||||
<grid class="indent">
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
<rows>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoName.label;</description>
|
||||
<menulist id="shipto.name" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoZipcode.label;</description>
|
||||
<menulist id="shipto.postalcode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoPhone.label;</description>
|
||||
<menulist id="shipto.phone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoPhonenumber.label;</description>
|
||||
<menulist id="shipto.phone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoAltPhone.label;</description>
|
||||
<menulist id="shipto.altphone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoAltPhonenumber.label;</description>
|
||||
<menulist id="shipto.altphone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoFax.label;</description>
|
||||
<menulist id="shipto.fax" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoFaxnumber.label;</description>
|
||||
<menulist id="shipto.fax.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoMobile.label;</description>
|
||||
<menulist id="shipto.mobile" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoMobilenumber.label;</description>
|
||||
<menulist id="shipto.mobile.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoPager.label;</description>
|
||||
<menulist id="shipto.pager" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatShiptoPagernumber.label;</description>
|
||||
<menulist id="shipto.pager.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
</groupbox>
|
||||
|
||||
<groupbox hidden="true">
|
||||
<caption label="&concatBilling.title;"/>
|
||||
<grid class="indent">
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
<rows>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoName.label;</description>
|
||||
<menulist id="billto.name" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoZipcode.label;</description>
|
||||
<menulist id="billto.postalcode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoPhone.label;</description>
|
||||
<menulist id="billto.phone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoPhonenumber.label;</description>
|
||||
<menulist id="billto.phone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoAltPhone.label;</description>
|
||||
<menulist id="billto.altphone" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoAltPhonenumber.label;</description>
|
||||
<menulist id="billto.altphone.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoFax.label;</description>
|
||||
<menulist id="billto.fax" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoFaxnumber.label;</description>
|
||||
<menulist id="billto.fax.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoMobile.label;</description>
|
||||
<menulist id="billto.mobile" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoMobilenumber.label;</description>
|
||||
<menulist id="billto.mobile.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoPager.label;</description>
|
||||
<menulist id="billto.pager" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBilltoPagernumber.label;</description>
|
||||
<menulist id="billto.pager.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
</groupbox>
|
||||
|
||||
<groupbox hidden="true">
|
||||
<caption label="&concatOther.title;"/>label
|
||||
<grid class="indent">
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
<rows>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatCardExpdate.label;</description>
|
||||
<menulist id="card.expdate" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatSocSec.label;</description>
|
||||
<menulist id="socsec" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatBdate.label;</description>
|
||||
<menulist id="bdate" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row hidden="true" align="center">
|
||||
<description>&concatAnniv.label;</description>
|
||||
<menulist id="anniv" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,114 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["card.type", "card.number",
|
||||
"card.expdate.month", "card.expdate.year", "card.name"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&credit.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&creditType.label;" control="card.type"
|
||||
accesskey="&creditType.accesskey;"/>
|
||||
<menulist id="card.type" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&creditNumber.label;" control="card.number"
|
||||
accesskey="&creditNumber.accesskey;"/>
|
||||
<menulist id="card.number" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<description>&creditExpires.label;</description>
|
||||
<hbox align="center">
|
||||
<label value="&creditExpiresMonth.label;" control="card.expdate.month"
|
||||
accesskey="&creditExpiresMonth.accesskey;"/>
|
||||
<menulist id="card.expdate.month" editable="true" disableautoselect="true" flex="40%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&creditExpiresYear.label;" control="card.expdate.year"
|
||||
accesskey="&creditExpiresYear.accesskey;"/>
|
||||
<menulist id="card.expdate.year" editable="true" disableautoselect="true" flex="60%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&creditName.label;" control="card.name"
|
||||
accesskey="&creditName.accesskey;"/>
|
||||
<menulist id="card.name" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,92 +0,0 @@
|
|||
<?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):
|
||||
-->
|
||||
|
||||
<!-- CHANGE THIS WHEN MOVING FILES -->
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!-- CHANGE THIS WHEN MOVING FILES -->
|
||||
<!DOCTYPE window SYSTEM "chrome://communicator/locale/wallet/WalletEditor.dtd" >
|
||||
|
||||
<dialog id="walleteditor"
|
||||
title="&windowtitle.label;"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="Startup()"
|
||||
ondialogaccept="return onAccept();">
|
||||
|
||||
<script type="application/x-javascript" src="chrome://communicator/content/wallet/WalletEditor.js"/>
|
||||
<script type="application/x-javascript" src="chrome://global/content/strres.js" />
|
||||
|
||||
<vbox id="system" flex="100%">
|
||||
<spacer style="height: 7px;"/>
|
||||
<label value="&div.walletdataonsystem.label;"/>
|
||||
<separator class="groove"/>
|
||||
<spacer style="height: 10px;"/>
|
||||
<hbox id="system1" flex="100%">
|
||||
<spacer style="width: 7px;"/>
|
||||
<vbox>
|
||||
<label value="&treehead.schemaname.label;"/>
|
||||
<tree id="schematree"
|
||||
style="height: 250px;" onclick="ViewEntries();">
|
||||
<treecols>
|
||||
<treecol id="schemacol" flex="1"/>
|
||||
</treecols>
|
||||
<treechildren id="schemalist"/>
|
||||
</tree>
|
||||
<hbox>
|
||||
<button id="removeSchema" disabled="true" label="&button.remove.label;" oncommand="DeleteSchema();"/>
|
||||
<button id="addSchema" label="&button.addschema.label;" oncommand="AddSchema();"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
<spacer style="width: 7px;"/>
|
||||
<vbox>
|
||||
<label id="entrytext" value2="&treehead.entries.label;" value3="&treehead.entries1.label;"/>
|
||||
<tree id="entrytree" class="inset"
|
||||
style="height: 113px;" orient="vertical" onclick="ViewSynonyms();">
|
||||
<treecols>
|
||||
<treecol id="entrycol" flex="1"/>
|
||||
</treecols>
|
||||
<treechildren id="entrieslist"/>
|
||||
</tree>
|
||||
<spacer style="height: 7px;"/>
|
||||
<label id="synonymtext" value2="&treehead.synonyms.label;" value3="&treehead.synonymsoff.label;" value4="&treehead.synonyms1.label;"/>
|
||||
<tree id="synonymtree"
|
||||
style="height: 113px;" orient="vertical" onclick="SynonymSelected();">
|
||||
<treecols>
|
||||
<treecol id="synonymcol" flex="1"/>
|
||||
</treecols>
|
||||
<treechildren id="synonymslist"/>
|
||||
</tree>
|
||||
</vbox>
|
||||
<spacer style="width: 7px;"/>
|
||||
<vbox>
|
||||
<spacer style="height: 15px;"/>
|
||||
<button id="removeEntry" disabled="true" label="&button.remove.label;" oncommand="DeleteEntry();"/>
|
||||
<button id="addEntry" label="&button.addentry.label;" oncommand="AddEntry();"/>
|
||||
<spacer style="height: 93px;"/>
|
||||
<button id="removeSynonym" disabled="true" label="&button.remove.label;" oncommand="DeleteSynonym();"/>
|
||||
<button id="addSynonym" label="&button.addsynonym.label;" oncommand="AddSynonym();"/>
|
||||
</vbox>
|
||||
<spacer style="width: 7px;"/>
|
||||
</hbox>
|
||||
</vbox>
|
||||
</dialog>
|
|
@ -1,92 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["business.companyname", "business.jobtitle", "business.department"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&employ.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&employName.label;" control="business.companyname"
|
||||
accesskey="&employName.accesskey;"/>
|
||||
<menulist id="business.companyname" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&employTitle.label;" control="business.jobtitle"
|
||||
accesskey="&employTitle.accesskey;"/>
|
||||
<menulist id="business.jobtitle" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&employDepartment.label;" control="business.department"
|
||||
accesskey="&employDepartment.accesskey;"/>
|
||||
<menulist id="business.department" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,178 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["socsec.prefix", "socsec.middle", "socsec.suffix",
|
||||
"license.number", "license.state", "mothersmaidenname",
|
||||
"bdate.month", "bdate.day", "bdate.year",
|
||||
"anniv.month", "anniv.day", "anniv.year"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&misc.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&miscSS.label;" control="socsec.prefix"
|
||||
accesskey="&miscSS.accesskey;"/>
|
||||
<hbox>
|
||||
<menulist id="socsec.prefix" editable="true" disableautoselect="true" flex="33%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="socsec.middle" editable="true" disableautoselect="true" flex="24%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="socsec.suffix" editable="true" disableautoselect="true" flex="43%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&miscLicense.label;" control="license.number"
|
||||
accesskey="&miscLicense.accesskey;"/>
|
||||
<hbox align="center">
|
||||
<menulist id="license.number" editable="true" disableautoselect="true" flex="70" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<spacer style="width: 5px;"/>
|
||||
<label value="&miscLicenseState.label;" control="license.state"
|
||||
accesskey="&miscLicenseState.accesskey;"/>
|
||||
<menulist id="license.state" editable="true" disableautoselect="true" flex="30" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&miscMaiden.label;" control="mothersmaidenname"
|
||||
accesskey="&miscMaiden.accesskey;"/>
|
||||
<menulist id="mothersmaidenname" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&miscBirthday.label;" control="bdate.month"
|
||||
accesskey="&miscBirthday.accesskey;"/>
|
||||
<hbox align="center">
|
||||
<label value="&miscBirthdayMonth.label;"/>
|
||||
<menulist id="bdate.month" editable="true" disableautoselect="true" flex="40%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&miscBirthdayDay.label;" />
|
||||
<menulist id="bdate.day" editable="true" disableautoselect="true" flex="20%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&miscBirthdayYear.label;" />
|
||||
<menulist id="bdate.year" editable="true" disableautoselect="true" flex="40%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&miscAnniv.label;" control="anniv.month"
|
||||
accesskey="&miscAnniv.accesskey;"/>
|
||||
<hbox align="center">
|
||||
<label value="&miscAnnivMonth.label;"/>
|
||||
<menulist id="anniv.month" editable="true" disableautoselect="true" flex="40%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&miscAnnivDay.label;" />
|
||||
<menulist id="anniv.day" editable="true" disableautoselect="true" flex="20%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&miscAnnivYear.label;" />
|
||||
<menulist id="anniv.year" editable="true" disableautoselect="true" flex="40%" width="0"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</hbox>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,116 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs =
|
||||
["name.prefix", "name.first", "name.middle", "name.last", "name.suffix"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&name.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column flex="1"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&namePrefix.label;" accesskey="&namePrefix.accesskey;"
|
||||
control="name.prefix"/>
|
||||
<menulist id="name.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&nameFirst.label;" control="name.first"
|
||||
accesskey="&nameFirst.accesskey;"/>
|
||||
<menulist id="name.first" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&nameMiddle.label;" control="name.middle"
|
||||
accesskey="&nameMiddle.accesskey;"/>
|
||||
<menulist id="name.middle" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&nameLast.label;" control="name.last"
|
||||
accesskey="&nameLast.accesskey;"/>
|
||||
<menulist id="name.last" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&nameSuffix.label;" control="name.suffix"
|
||||
accesskey="&nameSuffix.accesskey;"/>
|
||||
<menulist id="name.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,44 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = [];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
</page>
|
|
@ -1,216 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = ["phone.loccode", "phone.number.prefix", "phone.number.suffix", "phone.extension",
|
||||
"altphone.loccode", "altphone.number.prefix", "altphone.number.suffix", "altphone.extension",
|
||||
"fax.loccode", "fax.number.prefix", "fax.number.suffix",
|
||||
"mobile.loccode", "mobile.number.prefix", "mobile.number.suffix",
|
||||
"pager.loccode", "pager.number.prefix", "pager.number.suffix"];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&phone.title;"/>
|
||||
<grid class="indent" flex="1">
|
||||
|
||||
<columns>
|
||||
<column/>
|
||||
<column/>
|
||||
<column flex="20%" width="0"/>
|
||||
<column/>
|
||||
<column flex="20%" width="0"/>
|
||||
<column/>
|
||||
<column flex="30%" width="0"/>
|
||||
<column/>
|
||||
<column flex="30%" width="0"/>
|
||||
</columns>
|
||||
|
||||
<rows>
|
||||
|
||||
<row align="center">
|
||||
<label value="&phoneDay.label;" control="phone.loccode"
|
||||
accesskey="&phoneDay.accesskey;"/>
|
||||
<label value="("/>
|
||||
<menulist id="phone.loccode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value=")"/>
|
||||
<menulist id="phone.number.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="phone.number.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&phoneDayExt.label;" control="phone.extension"
|
||||
accesskey="&phoneDayExt.accesskey;"/>
|
||||
<menulist id="phone.extension" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&phoneEve.label;" control="altphone.loccode"
|
||||
accesskey="&phoneEve.accesskey;"/>
|
||||
<label value="("/>
|
||||
<menulist id="altphone.loccode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value=")"/>
|
||||
<menulist id="altphone.number.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="altphone.number.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="&phoneEveExt.label;" control="altphone.extension"
|
||||
accesskey="&phoneEveExt.accesskey;"/>
|
||||
<menulist id="altphone.extension" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&phoneFax.label;" control="fax.loccode"
|
||||
accesskey="&phoneFax.accesskey;"/>
|
||||
<label value="("/>
|
||||
<menulist id="fax.loccode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value=")"/>
|
||||
<menulist id="fax.number.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="fax.number.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&phoneCell.label;" control="mobile.loccode"
|
||||
accesskey="&phoneCell.accesskey;"/>
|
||||
<label value="("/>
|
||||
<menulist id="mobile.loccode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value=")"/>
|
||||
<menulist id="mobile.number.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="mobile.number.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
<row align="center">
|
||||
<label value="&phonePager.label;" control="pager.loccode"
|
||||
accesskey="&phonePager.accesskey;"/>
|
||||
<label value="("/>
|
||||
<menulist id="pager.loccode" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value=")"/>
|
||||
<menulist id="pager.number.prefix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
<label value="__"/>
|
||||
<menulist id="pager.number.suffix" editable="true" disableautoselect="true"
|
||||
onchange="Append(this)">
|
||||
<menupopup onpopupshowing="Append(this.parentNode)">
|
||||
<menuitem label="" len="0"/>
|
||||
</menupopup>
|
||||
</menulist>
|
||||
</row>
|
||||
|
||||
</rows>
|
||||
|
||||
</grid>
|
||||
</groupbox>
|
||||
</page>
|
|
@ -1,44 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = [];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
</page>
|
|
@ -1,44 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="parent.initPanel();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = [];
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
</page>
|
|
@ -1,153 +0,0 @@
|
|||
<?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):
|
||||
-->
|
||||
|
||||
<?xul-overlay href="chrome://communicator/content/pref/platformPrefOverlay.xul"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd">
|
||||
|
||||
<overlay id="prefTreeOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<script>
|
||||
<![CDATA[
|
||||
var _elementIDs = []; // hack
|
||||
]]>
|
||||
</script>
|
||||
|
||||
<tree id="panelTree" hidecolumnpicker="true"
|
||||
onselect="if( hWalletViewer ) hWalletViewer.switchPage();">
|
||||
|
||||
<treecols>
|
||||
<treecol id="panelCol" flex="1" primary="true" label="&categoryHeader;"/>
|
||||
</treecols>
|
||||
|
||||
<treechildren id="panelChildren">
|
||||
|
||||
<treeitem container="true" open="true" id="primary">
|
||||
<treerow>
|
||||
<treecell url="chrome://communicator-region/locale/wallet/WalletPrimary.xul" label="&primary.label;"/>
|
||||
</treerow>
|
||||
<treechildren>
|
||||
<treeitem id="pnameID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletName.xul" label="&pname.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="paddressID">
|
||||
<treerow>
|
||||
<treecell tag="home." url="chrome://communicator-region/locale/wallet/WalletAddress.xul" label="&paddress.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="pphoneID">
|
||||
<treerow>
|
||||
<treecell tag="home." url="chrome://communicator-region/locale/wallet/WalletPhone.xul" label="&pphone.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="pcreditID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletCredit.xul" label="&pcredit.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="pemployID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletEmploy.xul" label="&pemploy.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="pmiscID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletMisc.xul" label="&pmisc.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</treeitem>
|
||||
|
||||
<treeitem container="true" open="true" id="shipping">
|
||||
<treerow>
|
||||
<treecell url="chrome://communicator-region/locale/wallet/WalletShipping.xul" label="&shipping.label;"/>
|
||||
</treerow>
|
||||
<treechildren>
|
||||
<treeitem id="snameID">
|
||||
<treerow>
|
||||
<treecell tag="shipto." url="chrome://communicator-region/locale/wallet/WalletName.xul" label="&sname.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="saddressID">
|
||||
<treerow>
|
||||
<treecell tag="shipto." url="chrome://communicator-region/locale/wallet/WalletAddress.xul" label="&saddress.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="sphoneID">
|
||||
<treerow>
|
||||
<treecell tag="shipto." url="chrome://communicator-region/locale/wallet/WalletPhone.xul" label="&sphone.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</treeitem>
|
||||
|
||||
<treeitem container="true" open="true" id="billing">
|
||||
<treerow>
|
||||
<treecell url="chrome://communicator-region/locale/wallet/WalletBilling.xul" label="&billing.label;"/>
|
||||
</treerow>
|
||||
<treechildren>
|
||||
<treeitem id="bnameID">
|
||||
<treerow>
|
||||
<treecell tag="billto." url="chrome://communicator-region/locale/wallet/WalletName.xul" label="&bname.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="baddressID">
|
||||
<treerow>
|
||||
<treecell tag="billto." url="chrome://communicator-region/locale/wallet/WalletAddress.xul" label="&baddress.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="bphoneID">
|
||||
<treerow>
|
||||
<treecell tag="billto." url="chrome://communicator-region/locale/wallet/WalletPhone.xul" label="&bphone.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</treeitem>
|
||||
|
||||
<treeitem container="true" open="true" id="other">
|
||||
<treerow>
|
||||
<treecell url="chrome://communicator-region/locale/wallet/WalletOther.xul" label="&other.label;"/>
|
||||
</treerow>
|
||||
<treechildren>
|
||||
<treeitem id="concatenatedID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletConcatenated.xul" label="&concatenated.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
<treeitem id="urlspecificID">
|
||||
<treerow>
|
||||
<treecell tag="" url="chrome://communicator-region/locale/wallet/WalletUrlspecific.xul" label="&urlspecific.label;"/>
|
||||
</treerow>
|
||||
</treeitem>
|
||||
</treechildren>
|
||||
</treeitem>
|
||||
|
||||
</treechildren>
|
||||
|
||||
</tree>
|
||||
|
||||
</overlay>
|
|
@ -1,114 +0,0 @@
|
|||
<?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/
|
||||
|
||||
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):
|
||||
-->
|
||||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
%walletviewerDTD;
|
||||
]>
|
||||
|
||||
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
onload="generate();">
|
||||
|
||||
<script type="application/x-javascript">
|
||||
<![CDATA[
|
||||
var _elementIDs = [];
|
||||
|
||||
function generate() {
|
||||
var colonIndex;
|
||||
for (var schema in parent.schemaToValue) {
|
||||
colonIndex = schema.indexOf(":");
|
||||
if (colonIndex != -1) {
|
||||
var rows = document.getElementById("rows");
|
||||
var row = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "row");
|
||||
var text1 = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "textbox");
|
||||
var text2 = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "textbox");
|
||||
var menuList = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menulist");
|
||||
var menuPopup = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menupopup");
|
||||
var menuItem = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "menuitem");
|
||||
|
||||
menuPopup.appendChild(menuItem);
|
||||
menuList.appendChild(menuPopup);
|
||||
row.appendChild(text1);
|
||||
row.appendChild(text2);
|
||||
row.appendChild(menuList);
|
||||
rows.appendChild(row);
|
||||
|
||||
menuItem.setAttribute("label", "");
|
||||
menuItem.setAttribute("len","0");
|
||||
menuList.setAttribute("id", schema);
|
||||
menuList.setAttribute("editable", "true");
|
||||
menuList.setAttribute("disableautoselect", "true");
|
||||
menuList.setAttribute("onchange", "Append(this)");
|
||||
menuList.setAttribute("onmousedown", "Append(this)");
|
||||
text1.setAttribute("value", schema.substring(0, colonIndex));
|
||||
text2.setAttribute("value", schema.substring(colonIndex+1, schema.length));
|
||||
text1.setAttribute("readonly", "true");
|
||||
text2.setAttribute("readonly", "true");
|
||||
|
||||
_elementIDs[_elementIDs.length] = schema;
|
||||
}
|
||||
}
|
||||
parent.initPanel();
|
||||
}
|
||||
]]>
|
||||
|
||||
</script>
|
||||
|
||||
<script type="application/x-javascript"
|
||||
src="chrome://communicator/content/wallet/WalletViewer.js"/>
|
||||
|
||||
<groupbox>
|
||||
<caption label="&urlspecific.title;"/>
|
||||
|
||||
<grid class="indent">
|
||||
<columns>
|
||||
<column width="115"/>
|
||||
<column width="75"/>
|
||||
<column width="115"/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<label value="&urlspecificUrl.label;"/>
|
||||
<label value="&urlspecificField.label;"/>
|
||||
<label value="&urlspecificValue.label;"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
|
||||
<hbox style="overflow: auto; height: 335px; width: 350px;">
|
||||
<grid class="indent">
|
||||
<columns>
|
||||
<column width="115"/>
|
||||
<column width="75"/>
|
||||
<column width="115"/>
|
||||
</columns>
|
||||
<rows id="rows">
|
||||
</rows>
|
||||
</grid>
|
||||
</hbox>
|
||||
|
||||
</groupbox>
|
||||
</page>
|
|
@ -23,7 +23,7 @@
|
|||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
<?xul-overlay href="chrome://communicator/content/pref/platformPrefOverlay.xul"?>
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd">
|
||||
<!DOCTYPE overlay SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd">
|
||||
|
||||
<overlay id="prefTreeOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % walletviewerDTD SYSTEM "chrome://communicator/locale/wallet/WalletViewer.dtd" >
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
-->
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % prefWalletDTD SYSTEM "chrome://wallet/locale/pref-passwords.dtd" >
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
-->
|
||||
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||||
|
||||
<!DOCTYPE window [
|
||||
<!DOCTYPE page [
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
<!ENTITY % prefWalletDTD SYSTEM "chrome://wallet/locale/pref-wallet.dtd" >
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Contributor(s):
|
||||
-->
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://wallet/locale/walletNavigatorOverlay.dtd">
|
||||
<!DOCTYPE overlay SYSTEM "chrome://wallet/locale/walletNavigatorOverlay.dtd">
|
||||
|
||||
<overlay id="walletNavigatorOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
- Contributor(s):
|
||||
-->
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://wallet/locale/walletPrefsOverlay.dtd" >
|
||||
<!DOCTYPE overlay SYSTEM "chrome://wallet/locale/walletPrefsOverlay.dtd" >
|
||||
|
||||
<overlay id="walletPrefsOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Contributor(s):
|
||||
-->
|
||||
|
||||
<!DOCTYPE window SYSTEM "chrome://wallet/locale/walletTasksOverlay.dtd">
|
||||
<!DOCTYPE overlay SYSTEM "chrome://wallet/locale/walletTasksOverlay.dtd">
|
||||
|
||||
<overlay id="walletTasksOverlay"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
|
Загрузка…
Ссылка в новой задаче