home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / toolkit.jar / content / mozapps / autofill / datacardUpdateDialog.xul < prev    next >
Extensible Markup Language  |  2005-07-29  |  2KB  |  49 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <dialog id="datacardUpdateDialog"
  4.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  5.         title="Update DataCard"
  6.         style="width: 250px;"
  7.         persist="screenX screenY"
  8.         onload="initUpdateDialog();" 
  9.         buttons="accept,cancel"
  10.         ondialogaccept="return onUpdateAccept();"
  11.         ondialogcancel="">
  12.  
  13. <script type="application/x-javascript"
  14.         src="chrome://mozapps/content/autofill/datacardDialogs.js"/>
  15. <script type="application/x-javascript"
  16.         src="chrome://mozapps/content/autofill/masterpassword.js" />
  17.  
  18. <description>You have entered new data into this form.
  19. Would you like to update your DataCard?</description>
  20.  
  21. <radiogroup id="datacardChoice" oncommand="enableDisable();">
  22.  
  23.     <hbox align="center">
  24.         <radio id="update" value="update"
  25.                label="Update DataCard:"/>
  26.         <menulist id="datacardList">
  27.             <menupopup/>
  28.         </menulist>
  29.     </hbox>
  30.  
  31.     <radio id="saveNew" value="saveNew"
  32.            label="Create another DataCard for this site"/>
  33.     <vbox style="margin-left: 20px;">
  34.         <hbox align="center">
  35.             <label id="nameLabel" value="DataCard Name:" disabled="true"/>
  36.             <textbox id="datacardName" maxlength="20" disabled="true"/>
  37.         </hbox>
  38.         <checkbox id="passwordProtect" disabled="true"
  39.                   label="Password Protect Sensitive Data"
  40.                   oncommand="onPasswordProtect(this.checked);"/>
  41.     </vbox>
  42.  
  43.     <!--<radio value="doNotSave" label="Ignore the new data."/>-->
  44.  
  45.     <radio value="neverForThisSite" label="Always ignore changes for this site."/>
  46.  
  47. </radiogroup>
  48.  
  49. </dialog>