home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / wallet / pref-wallet.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  87 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!--
  4.    The contents of this file are subject to the Netscape Public
  5.    License Version 1.1 (the "License"); you may not use this file
  6.    except in compliance with the License. You may obtain a copy of
  7.    the License at http://www.mozilla.org/NPL/
  8.     
  9.    implied. See the License for the specific language governing
  10.    rights and limitations under the License.
  11.     
  12.    The Original Code is Mozilla Communicator client code, released
  13.    March 31, 1998.
  14.    
  15.    The Initial Developer of the Original Code is Netscape
  16.    Communications Corporation. Portions created by Netscape are
  17.    Copyright (C) 1998-1999 Netscape Communications Corporation. All
  18.    Rights Reserved.
  19.    
  20.    Contributor(s): 
  21.   -->
  22. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  23.  
  24. <!DOCTYPE window [
  25. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  26. %brandDTD;
  27. <!ENTITY % prefWalletDTD SYSTEM "chrome://wallet/locale/pref-wallet.dtd" >
  28. %prefWalletDTD;
  29. ]>
  30. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  31.       onload="parent.initPanel('chrome://wallet/content/pref-wallet.xul');"
  32.       headertitle="&lHeader;">
  33.  
  34.   <script type="application/x-javascript" src="chrome://wallet/content/walletOverlay.js"/>
  35.  
  36.   <script type="application/x-javascript">
  37.   <![CDATA[
  38.     var _elementIDs = ["walletCaptureForms"];
  39.   ]]>
  40.   </script>
  41.           
  42.   <script type="application/x-javascript">
  43.   <![CDATA[
  44.  
  45.     function viewWalletSites()
  46.     {
  47.       window.openDialog("chrome://communicator/content/wallet/SignonViewer.xul",
  48.                         "_blank","chrome,resizable=no", "W");
  49.     }
  50.  
  51.   ]]>
  52.   </script>
  53.         
  54.   <groupbox>
  55.     <caption label="&walletHeader.label;"/>
  56.     <description>&walletDescription.label;</description>
  57. <!--
  58.     <hbox align="center">
  59.       <label control="walletServer"
  60.             value="&walletServer.label;"
  61.             accesskey="&walletServer.accesskey;"/>
  62.       <textbox id="walletServer"
  63.                preftype="localizedstring"
  64.                prefstring="wallet.Server"/>
  65.     </hbox>
  66. -->
  67.     <hbox align="center">
  68.       <checkbox id="walletCaptureForms"
  69.               label="&walletEnabled.label;"
  70.               accesskey="&walletEnabled.accesskey;"
  71.               prefstring="wallet.captureForms"/>
  72.     </hbox>
  73.     <hbox pack="end">
  74.       <button label="&viewWallet.label;"
  75.               accesskey="&viewWallet.accesskey;" 
  76.               oncommand="formShow();"
  77.               id="viewFormButton"
  78.               prefstring="pref.advanced.form.disable_button.view_form"/>
  79.       <button label="&viewWalletSites.label;"
  80.               accesskey="&viewWalletSites.accesskey;" 
  81.               oncommand="viewWalletSites();"
  82.               id="viewSiteButton"
  83.               prefstring="pref.advanced.form.disable_button.view_sites"/>
  84.     </hbox>
  85.   </groupbox>
  86. </page>
  87.