mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
1fdeed80f7
<boxDerivedTag orient="horizontal|vertical"> patch by andersma@luther.edu r=timeless sr=blake
131 lines
4.1 KiB
XML
131 lines
4.1 KiB
XML
<?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"?>
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window [
|
|
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
|
%brandDTD;
|
|
<!ENTITY % proxyDTD SYSTEM "chrome://communicator/locale/pref/pref-proxy-manual.dtd" >
|
|
%proxyDTD;
|
|
]>
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&window.title;"
|
|
class="dialog" orient="vertical"
|
|
onload="if( parent.handle ) parent.handle.onpageload( 'pref-proxy-manual' ); else parent.queuedTag = 'pref-proxy-manual';">
|
|
|
|
<keyset id="dialogKeys"/>
|
|
|
|
<html:div flex="100%">
|
|
<vbox>
|
|
<hbox>
|
|
<html:div>
|
|
&intro.label;
|
|
</html:div>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&ftp.label;
|
|
</html:div>
|
|
<html:input name="ftpproxy" type="text" id="networkProxyHTTP"
|
|
pref="true" preftype="string" prefstring="network.proxy.http" size="30"/>
|
|
<spring flex="100%"/>
|
|
<html:div>
|
|
&port.label;
|
|
</html:div>
|
|
<html:input name="ftpproxyport" type="text" id="networkProxyHTTPPort"
|
|
pref="true" preftype="string" prefstring="network.proxy.http_port" size="5"/>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&gopher.label;
|
|
</html:div>
|
|
<html:input name="gopherproxy" type="text" id="networkProxyGopher"
|
|
pref="true" preftype="string" prefstring="network.proxy.gopher" size="30"/>
|
|
<spring flex="100%"/>
|
|
<html:div>
|
|
&port.label;
|
|
</html:div>
|
|
<html:input name="gopherproxyport" type="text" id="networkProxyGopherPort"
|
|
pref="true" preftype="string" prefstring="network.proxy.gopher_port" size="5"/>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&http.label;
|
|
</html:div>
|
|
<html:input name="httpproxy" type="text" id="networkProxyHTTP"
|
|
pref="true" preftype="string" prefstring="network.proxy.http" size="30"/>
|
|
<spring flex="100%"/>
|
|
<html:div>
|
|
&port.label;
|
|
</html:div>
|
|
<html:input name="httpproxyport" type="text" id="networkProxyHTTPPort"
|
|
pref="true" preftype="string" prefstring="network.proxy.http_port" size="5"/>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&wais.label;
|
|
</html:div>
|
|
<html:input name="waisproxy" type="text" id="networkProxyWAIS"
|
|
pref="true" preftype="string" prefstring="network.proxy.wais" size="30"/>
|
|
<spring flex="100%"/>
|
|
<html:div>
|
|
&port.label;
|
|
</html:div>
|
|
<html:input name="waisproxyport" type="text" id="networkProxyWAISPort"
|
|
pref="true" preftype="string" prefstring="network.proxy.wais_port" size="5"/>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&direct.label;
|
|
</html:div>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&noproxy.label;
|
|
</html:div>
|
|
<html:input name="noproxy" type="text" id="networProxyNone"
|
|
pref="true" preftype="string" prefstring="network.proxy.none" size="60"/>
|
|
</hbox>
|
|
<hbox>
|
|
<html:div>
|
|
&sockhost.label;
|
|
</html:div>
|
|
<html:input name="sockshost" type="text" id="networkSocksHost"
|
|
pref="true" preftype="string" prefstring="network.socks.host" size="30"/>
|
|
<spring flex="100%"/>
|
|
<html:div>
|
|
&port.label;
|
|
</html:div>
|
|
<html:input name="socksport" type="text" id="networkSocksPort"
|
|
pref="true" preftype="string" prefstring="network.socks.port" size="5"/>
|
|
</hbox>
|
|
<hbox id="okCancelButtons"/>
|
|
</vbox>
|
|
</html:div>
|
|
|
|
</window>
|