home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 October / maximum-cd-2009-10.iso / DiscContents / Firefox Setup 3.5.exe / nonlocalized / chrome / browser.jar / content / browser / preferences / sanitize.xul < prev    next >
Encoding:
Extensible Markup Language  |  2009-06-24  |  4.5 KB  |  101 lines

  1. <?xml version="1.0"?>
  2.  
  3.  
  4. <?xml-stylesheet href="chrome://global/skin/"?>
  5. <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?> 
  6.  
  7. <!DOCTYPE dialog [
  8.   <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
  9.   <!ENTITY % sanitizeDTD SYSTEM "chrome://browser/locale/sanitize.dtd">
  10.   %brandDTD;
  11.   %sanitizeDTD;
  12. ]>
  13.  
  14. <prefwindow id="SanitizeDialog" type="child"
  15.             xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  16.             dlgbuttons="accept,cancel,help"
  17.             ondialoghelp="openPrefsHelp()"
  18.             style="width: &dialog.width;;"
  19.             title="&sanitizePrefs2.title;">
  20.  
  21.   <script type="application/javascript" src="chrome://browser/content/utilityOverlay.js"/>
  22.  
  23.   <prefpane id="SanitizeDialogPane"
  24.             helpTopic="prefs-clear-private-data">
  25.  
  26.     <preferences>
  27.       <preference id="privacy.clearOnShutdown.history"               name="privacy.clearOnShutdown.history"               type="bool"/>
  28.       <preference id="privacy.clearOnShutdown.formdata"              name="privacy.clearOnShutdown.formdata"              type="bool"/>
  29.       <preference id="privacy.clearOnShutdown.passwords"             name="privacy.clearOnShutdown.passwords"             type="bool"/>
  30.       <preference id="privacy.clearOnShutdown.downloads"             name="privacy.clearOnShutdown.downloads"             type="bool"/>
  31.       <preference id="privacy.clearOnShutdown.cookies"               name="privacy.clearOnShutdown.cookies"               type="bool"/>
  32.       <preference id="privacy.clearOnShutdown.cache"                 name="privacy.clearOnShutdown.cache"                 type="bool"/>
  33.       <preference id="privacy.clearOnShutdown.offlineApps"           name="privacy.clearOnShutdown.offlineApps"           type="bool"/>
  34.       <preference id="privacy.clearOnShutdown.sessions"              name="privacy.clearOnShutdown.sessions"              type="bool"/>
  35.       <preference id="privacy.clearOnShutdown.siteSettings"          name="privacy.clearOnShutdown.siteSettings"          type="bool"/>
  36.     </preferences>
  37.  
  38.     <description>&clearDataSettings2.label;</description>
  39.  
  40.     <groupbox orient="horizontal">
  41.       <caption label="&historySection.label;"/>
  42.       <grid flex="1">
  43.         <columns>
  44.           <column style="width: &column.width;"/>
  45.           <column flex="1"/>
  46.         </columns>
  47.         <rows>
  48.           <row>
  49.             <checkbox label="&itemBrowsingHistory.label;"
  50.                       accesskey="&itemBrowsingHistory.accesskey;"
  51.                       preference="privacy.clearOnShutdown.history"/>
  52.             <checkbox label="&itemCookies.label;"
  53.                       accesskey="&itemCookies.accesskey;"
  54.                       preference="privacy.clearOnShutdown.cookies"/>
  55.           </row>
  56.           <row>
  57.             <checkbox label="&itemDownloadHistory.label;"
  58.                       accesskey="&itemDownloadHistory.accesskey;"
  59.                       preference="privacy.clearOnShutdown.downloads"/>
  60.             <checkbox label="&itemActiveLogins.label;"
  61.                       accesskey="&itemActiveLogins.accesskey;"
  62.                       preference="privacy.clearOnShutdown.sessions"/>
  63.           </row>
  64.           <row>
  65.             <checkbox label="&itemFormSearchHistory.label;"
  66.                       accesskey="&itemFormSearchHistory.accesskey;"
  67.                       preference="privacy.clearOnShutdown.formdata"/>
  68.             <checkbox label="&itemCache.label;"
  69.                       accesskey="&itemCache.accesskey;"
  70.                       preference="privacy.clearOnShutdown.cache"/>
  71.           </row>
  72.         </rows>
  73.       </grid>
  74.     </groupbox>
  75.     <groupbox orient="horizontal">
  76.       <caption label="&dataSection.label;"/>
  77.       <grid flex="1">
  78.         <columns>
  79.           <column style="width: &column.width;"/>
  80.           <column flex="1"/>
  81.         </columns>
  82.         <rows>
  83.           <row>
  84.             <checkbox label="&itemPasswords.label;"
  85.                       accesskey="&itemPasswords.accesskey;"
  86.                       preference="privacy.clearOnShutdown.passwords"/>
  87.             <checkbox label="&itemOfflineApps.label;"
  88.                       accesskey="&itemOfflineApps.accesskey;"
  89.                       preference="privacy.clearOnShutdown.offlineApps"/>
  90.           </row>
  91.           <row>
  92.             <checkbox label="&itemSitePreferences.label;"
  93.                       accesskey="&itemSitePreferences.accesskey;"
  94.                       preference="privacy.clearOnShutdown.siteSettings"/>
  95.           </row>
  96.         </rows>
  97.       </grid>
  98.     </groupbox>
  99.   </prefpane>
  100. </prefwindow>
  101.