2000-08-17 00:51:18 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
The contents of this file are subject to the Netscape Public
|
|
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
|
|
except in compliance with the License. You may obtain a copy of
|
|
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
implied. See the License for the specific language governing
|
|
|
|
rights and limitations under the License.
|
|
|
|
|
|
|
|
The Original Code is Mozilla Communicator client code, released
|
|
|
|
March 31, 1998.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
|
|
Communications Corporation. Portions created by Netscape are
|
|
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
|
|
Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
2001-04-05 19:53:13 +00:00
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/dialogOverlay.css" type="text/css"?>
|
2000-08-17 00:51:18 +00:00
|
|
|
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-debug2.dtd" >
|
|
|
|
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
2001-03-22 00:59:29 +00:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2000-08-17 00:51:18 +00:00
|
|
|
class="color-dialog"
|
|
|
|
orient="vertical"
|
2001-03-22 00:59:29 +00:00
|
|
|
onload="parent.initPanel('chrome://communicator/content/pref/pref-debug2.xul');">
|
2000-08-17 00:51:18 +00:00
|
|
|
|
2001-03-11 12:17:34 +00:00
|
|
|
<script type="application/x-javascript">
|
2000-08-17 00:51:18 +00:00
|
|
|
<![CDATA[
|
2001-01-17 07:13:12 +00:00
|
|
|
var _elementIDs = ["browserEnableKeepAlive", "browserEnablePipelining",
|
2001-06-09 09:54:50 +00:00
|
|
|
"dirGenerateHtml", "httpVersionString", "acceptEncodingString",
|
|
|
|
"nglayoutDebugDisableXULCache", "browserEnableCache", "browserEnableDiskCache", ];
|
2000-08-17 00:51:18 +00:00
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
2001-07-09 18:41:07 +00:00
|
|
|
<hbox class="box-smallheader" title="&lHeader;"/>
|
2000-08-17 00:51:18 +00:00
|
|
|
|
|
|
|
<!-- nothing on this page has accesskeys because this is a temporary debug
|
|
|
|
panel and you can damn well click the widgets! -->
|
|
|
|
|
2001-07-09 18:41:07 +00:00
|
|
|
<groupbox orient="vertical">
|
2001-03-22 00:59:29 +00:00
|
|
|
<label value="&debugNetworking.label;"/>
|
2001-08-04 06:21:59 +00:00
|
|
|
<vbox align="start">
|
2001-03-22 00:59:29 +00:00
|
|
|
<checkbox id="browserEnableKeepAlive" label="&debugEnableKeepAlive.label;"
|
2001-02-01 22:11:05 +00:00
|
|
|
pref="true" preftype="bool" prefstring="network.http.keep-alive"
|
|
|
|
prefattribute="checked"/>
|
2001-03-22 00:59:29 +00:00
|
|
|
<checkbox id="browserEnablePipelining" label="&debugEnablePipelining.label;"
|
2001-02-01 22:11:05 +00:00
|
|
|
pref="true" preftype="bool" prefstring="network.http.pipelining"
|
|
|
|
prefattribute="checked"/>
|
2001-04-26 23:46:21 +00:00
|
|
|
<checkbox id="dirGenerateHtml" label="&debugEnableHTML.label;"
|
|
|
|
pref="true" preftype="bool" prefstring="network.dir.generate_html"
|
|
|
|
prefattribute="checked"/>
|
2001-02-01 22:11:05 +00:00
|
|
|
</vbox>
|
2000-08-17 00:51:18 +00:00
|
|
|
<text class="label" value="&httpVersion.label;" for="httpVersionString"/>
|
2001-03-22 00:15:47 +00:00
|
|
|
<textbox id="httpVersionString" wsm_persist="true" maxlength="3" flex="0"
|
2000-08-17 00:51:18 +00:00
|
|
|
pref="true" preftype="string" prefstring="network.http.version"
|
|
|
|
prefattribute="value"/>
|
|
|
|
<text class="label" value="&acceptEncoding.label;" for="acceptEncodingString"/>
|
2001-03-22 00:15:47 +00:00
|
|
|
<textbox id="acceptEncodingString" flex="1" wsm_persist="true"
|
2000-08-17 00:51:18 +00:00
|
|
|
pref="true" preftype="string" prefstring="network.http.accept-encoding"
|
|
|
|
prefattribute="value"/>
|
2001-07-09 18:41:07 +00:00
|
|
|
</groupbox>
|
2000-08-17 00:51:18 +00:00
|
|
|
|
2001-07-09 18:41:07 +00:00
|
|
|
<groupbox orient="vertical">
|
2001-06-09 09:54:50 +00:00
|
|
|
<label value="&debugCache.label;"/>
|
2001-08-04 06:21:59 +00:00
|
|
|
<vbox align="start">
|
2001-06-09 09:54:50 +00:00
|
|
|
<checkbox id="nglayoutDebugDisableXULCache" label="&debugDisableXULCache.label;"
|
|
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.disable_xul_cache"
|
|
|
|
prefattribute="checked"/>
|
|
|
|
<checkbox id="browserEnableDiskCache" label="&debugEnableDiskCache.label;"
|
|
|
|
pref="true" preftype="bool" prefstring="browser.cache.disk.enable"
|
|
|
|
prefattribute="checked"/>
|
|
|
|
<checkbox id="browserEnableCache" label="&debugEnableMemCache.label;"
|
2001-06-28 01:30:26 +00:00
|
|
|
pref="true" preftype="bool" prefstring="browser.cache.memory.enable"
|
2001-06-09 09:54:50 +00:00
|
|
|
prefattribute="checked"/>
|
|
|
|
|
|
|
|
</vbox>
|
2001-07-09 18:41:07 +00:00
|
|
|
</groupbox>
|
2001-06-09 09:54:50 +00:00
|
|
|
|
2000-08-17 00:51:18 +00:00
|
|
|
</window>
|
|
|
|
|