mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 01:40:17 +01:00
527 lines
20 KiB
Plaintext
527 lines
20 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
|
||
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
||
|
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||
|
|
||
|
The contents of this file are subject to the Mozilla 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/MPL/
|
||
|
|
||
|
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 the Initial Developer are Copyright (C) 1998-1999
|
||
|
the Initial Developer. All Rights Reserved.
|
||
|
|
||
|
Contributor(s):
|
||
|
|
||
|
Alternatively, the contents of this file may be used under the terms of
|
||
|
either the GNU General Public License Version 2 or later (the "GPL"), or
|
||
|
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||
|
in which case the provisions of the GPL or the LGPL are applicable instead
|
||
|
of those above. If you wish to allow use of your version of this file only
|
||
|
under the terms of either the GPL or the LGPL, and not to allow others to
|
||
|
use your version of this file under the terms of the MPL, indicate your
|
||
|
decision by deleting the provisions above and replace them with the notice
|
||
|
and other provisions required by the GPL or the LGPL. If you do not delete
|
||
|
the provisions above, a recipient may use your version of this file under
|
||
|
the terms of any one of the MPL, the GPL or the LGPL.
|
||
|
|
||
|
***** END LICENSE BLOCK ***** -->
|
||
|
|
||
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
||
|
|
||
|
<!DOCTYPE page [
|
||
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/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>
|
||
|
|
||
|
<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>
|