98 lines
3.3 KiB
XML
98 lines
3.3 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): Michael Lowe <michael.lowe@bigfoot.com> -->
|
|
|
|
<?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://navigator/locale/openLocation.dtd" >
|
|
|
|
|
|
<window
|
|
xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&caption.label;"
|
|
onload="onLoad()"
|
|
class="dialog"
|
|
align="vertical">
|
|
|
|
<html:script language="javascript" src="openLocation.js"/>
|
|
|
|
<keyset id="keyset"/>
|
|
|
|
<box align="vertical" style="width: 43em; margin:1em;">
|
|
|
|
<html:label>
|
|
&enter.label;
|
|
</html:label>
|
|
|
|
<html:label style="margin-left: 1em;" >
|
|
&example.label;
|
|
<html:i>
|
|
&exampleURL.label;
|
|
</html:i>
|
|
</html:label>
|
|
|
|
<html:input style="margin-left: 1em;" id="dialog.input" type="text" flex="100%" onkeyup="onTyping(event.which)"/>
|
|
|
|
<html:div style="margin-top: 0.5em; margin-left: 2em; margin-bottom: 1em;" >
|
|
<titledbutton class="dialog push" value="&chooseFile.label;" align="left" onclick="onChooseFile()"/>
|
|
</html:div>
|
|
|
|
<html:div>
|
|
<html:div class="separator" align="horizontal" />
|
|
</html:div>
|
|
|
|
<box align="horizontal" style="margin-top: 1em;" >
|
|
<html:div>
|
|
<html:label>&openWhere.label;</html:label>
|
|
</html:div>
|
|
|
|
<box align="vertical" id="dialog.openWhereBox">
|
|
<html:div id="dialog.topWindowDiv">
|
|
<html:input type="radio" name="openWhereRadio" id="dialog.topWindow"/>
|
|
<html:label for="dialog.topWindow">&topWindow.label;</html:label>
|
|
</html:div>
|
|
<html:div id="dialog.newWindowDiv">
|
|
<html:input type="radio" name="openWhereRadio" id="dialog.newWindow"/>
|
|
<html:label for="dialog.newWindow">&newWindow.label;</html:label>
|
|
</html:div>
|
|
<html:div id="dialog.editNewWindowDiv">
|
|
<html:input type="radio" name="openWhereRadio" id="dialog.editNewWindow"/>
|
|
<html:label for="dialog.editNewWindow">&editNewWindow.label;</html:label>
|
|
</html:div>
|
|
</box>
|
|
|
|
<spring flex="100%"/>
|
|
|
|
<html:div>
|
|
<box id="okCancelButtons"/>
|
|
</html:div>
|
|
|
|
</box>
|
|
</box>
|
|
|
|
<foo style="display:none;" id="openLabel" value="&open.label;"/>
|
|
<foo style="display:none;" id="chooseFileTitle" value="&chooseFileTitle.label;"/>
|
|
|
|
</window>
|