mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0"?> <!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
|
|
<!--
|
|
|
|
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.org code.
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
Communications Corporation. Portions created by Netscape are
|
|
Copyright (C) 1998 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Ben Goodger <ben@netscape.com> (Original Author)
|
|
-->
|
|
|
|
<!--
|
|
"Find in History" window
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/"?>
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/history/findHistory.dtd">
|
|
|
|
<dialog id="findHistoryWindow" style="width: 36em;"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&findHistory.title;"
|
|
onload="Startup();"
|
|
ondialogaccept="return find();">
|
|
|
|
<stringbundle id="historyBundle" src="chrome://communicator/locale/history/history.properties"/>
|
|
|
|
<script type="application/x-javascript" src="chrome://communicator/content/history/findHistory.js"/>
|
|
|
|
<label value="&search.for.label;"/>
|
|
<hbox align="center">
|
|
<menulist id="matchList">
|
|
<menupopup>
|
|
<menuitem value="Name" label="&search.name.label;"/>
|
|
<menuitem value="URL" label="&search.url.label;"/>
|
|
</menupopup>
|
|
</menulist>
|
|
<menulist id="methodList">
|
|
<menupopup>
|
|
<menuitem value="contains" label="&search.contains.label;"/>
|
|
<menuitem value="startswith" label="&search.startswith.label;"/>
|
|
<menuitem value="endswith" label="&search.endswith.label;"/>
|
|
<menuitem value="is" label="&search.is.label;"/>
|
|
<menuitem value="isnot" label="&search.isnot.label;"/>
|
|
<menuitem value="doesntcontain" label="&search.doesntcontain.label;"/>
|
|
</menupopup>
|
|
</menulist>
|
|
<textbox id="searchField" flex="1" oninput="doEnabling();"/>
|
|
</hbox>
|
|
</dialog>
|
|
|