home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / lib / xulrunner-1.9.0.14 / chrome / toolkit.jar / content / mozapps / preferences / removemp.xul < prev   
Encoding:
Extensible Markup Language  |  2007-12-12  |  1.3 KB  |  43 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog [
  6. <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
  7. <!ENTITY % removempDTD SYSTEM "chrome://mozapps/locale/preferences/removemp.dtd" >
  8. %brandDTD;
  9. %removempDTD;
  10. ]>
  11.  
  12. <dialog id="removemp" title="&removePassword.title;"
  13.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  14.         style="width: 35em;" 
  15.         ondialogaccept="gRemovePasswordDialog.removePassword();" 
  16.         onload="gRemovePasswordDialog.init()">
  17.  
  18.   <script type="application/javascript" src="chrome://mozapps/content/preferences/removemp.js"/>
  19.  
  20.   <stringbundle id="bundlePreferences" src="chrome://mozapps/locale/preferences/preferences.properties"/>
  21.  
  22.   <vbox id="warnings">
  23.     <description>&removeWarning1.label;</description>
  24.     <description class="header">&removeWarning2.label;</description>
  25.   </vbox>
  26.   
  27.   <separator class="thin"/>
  28.     
  29.   <groupbox>
  30.     <caption label="&removeInfo.label;"/>
  31.  
  32.     <hbox align="center">
  33.       <label control="password" value="&setPassword.oldPassword.label;"/> 
  34.       <textbox id="password" type="password"
  35.                oninput="gRemovePasswordDialog.validateInput();"
  36.                aria-describedby="warnings"/>
  37.     </hbox>
  38.   </groupbox>
  39.   
  40.   <separator/>
  41.  
  42. </dialog>
  43.