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 / communicator / pref / pref-debug2.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  74 lines

  1. <?xml version="1.0"?> 
  2. <!--
  3.    The contents of this file are subject to the Netscape Public
  4.    License Version 1.1 (the "License"); you may not use this file
  5.    except in compliance with the License. You may obtain a copy of
  6.    the License at http://www.mozilla.org/NPL/
  7.     
  8.    Software distributed under the License is distributed on an "AS
  9.    IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    implied. See the License for the specific language governing
  11.    rights and limitations under the License.
  12.     
  13.    The Original Code is Mozilla Communicator client code, released
  14.    March 31, 1998.
  15.    
  16.    The Initial Developer of the Original Code is Netscape
  17.    Communications Corporation. Portions created by Netscape are
  18.    Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.    Rights Reserved.
  20.    
  21.    Contributor(s): 
  22.   -->
  23. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  24.  
  25. <!DOCTYPE page SYSTEM "chrome://communicator/locale/pref/pref-debug2.dtd" >
  26.  
  27. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  28.       onload="parent.initPanel('chrome://communicator/content/pref/pref-debug2.xul');"
  29.       headertitle="&lHeader;">
  30.  
  31.   <script type="application/x-javascript">
  32.   <![CDATA[
  33.     var _elementIDs = ["dirFormat", "browserEnableCache",
  34.                        "browserEnableDiskCache"];
  35.   ]]>
  36.   </script>
  37.  
  38.   <!-- nothing on this page has accesskeys because this is a temporary debug
  39.        panel and you can damn well click the widgets! -->
  40.  
  41.   <groupbox>
  42.     <caption label="&debugNetworking.label;"/>
  43.     <vbox align="start">
  44.       <description>&dirFormat;</description>
  45.       <vbox align="start" class="indent">
  46.         <radiogroup id="dirFormat"
  47.                     prefstring="network.dir.format">
  48.           <!-- If we display a raw option, then people select it, and complain
  49.                when they don't actually get results -->
  50.           <!-- <radio value="1" label="&raw.label;"/> -->
  51.           <radio value="2" label="&html.label;"/>
  52.           <!-- OK, this is application/http-index-format, not XUL. But the
  53.                result is that the XUL viwer is used. Anyway, this is only a
  54.                debug panel, so lets not get worked up about it -->
  55.           <radio value="3" label="&xul.label;"/>
  56.         </radiogroup>
  57.       </vbox>         
  58.     </vbox>
  59.   </groupbox>
  60.  
  61.   <groupbox>
  62.     <caption label="&debugCache.label;"/>
  63.     <vbox align="start">
  64.     <checkbox id="browserEnableDiskCache" label="&debugEnableDiskCache.label;"
  65.               prefstring="browser.cache.disk.enable"/>
  66.     <checkbox id="browserEnableCache" label="&debugEnableMemCache.label;"
  67.               prefstring="browser.cache.memory.enable"/>
  68.  
  69.     </vbox>
  70.   </groupbox>
  71.  
  72. </page>
  73.  
  74.