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 / bookmarks / findBookmark.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  70 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- -*- Mode: HTML; indent-tabs-mode: nil; -*- -->
  4. <!--
  5.  
  6.   The contents of this file are subject to the Netscape Public
  7.   License Version 1.1 (the "License"); you may not use this file
  8.   except in compliance with the License. You may obtain a copy of
  9.   the License at http://www.mozilla.org/NPL/
  10.  
  11.   Software distributed under the License is distributed on an "AS
  12.   IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.   implied. See the License for the specific language governing
  14.   rights and limitations under the License.
  15.  
  16.   The Original Code is mozilla.org code.
  17.  
  18.   The Initial Developer of the Original Code is Netscape
  19.   Communications Corporation.  Portions created by Netscape are
  20.   Copyright (C) 1998 Netscape Communications Corporation. All
  21.   Rights Reserved.
  22.  
  23.   Contributor(s): 
  24.     Ben Goodger <ben@netscape.com> (Original Author)
  25. -->
  26.  
  27. <!--
  28.     "Find Bookmarks" window
  29.   -->
  30.  
  31. <?xml-stylesheet href="chrome://communicator/skin/"?>
  32. <!DOCTYPE dialog SYSTEM "chrome://communicator/locale/bookmarks/findBookmark.dtd">
  33.  
  34. <dialog id="findBookmarkWindow" style="width: 36em;"
  35.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  36.         title="&findBookmark.title;" 
  37.         onload="Startup();"
  38.         ondialogaccept="return find();">
  39.  
  40.   <stringbundle id="bookmarksBundle" src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
  41.   
  42.   <script type="application/x-javascript" src="chrome://communicator/content/bookmarks/bookmarksOverlay.js"/>
  43.   <script type="application/x-javascript" src="chrome://communicator/content/bookmarks/findBookmark.js"/>
  44.  
  45.   <label value="&search.for.label;"/>
  46.   <hbox align="center">
  47.     <menulist id="matchList" class="menulist-toolbar">
  48.       <menupopup>
  49.         <menuitem value="http://home.netscape.com/NC-rdf#Name" label="&search.name.label;"/>
  50.         <menuitem value="http://home.netscape.com/NC-rdf#URL" label="&search.url.label;"/>
  51.         <menuitem value="http://home.netscape.com/NC-rdf#Description" label="&search.description.label;"/>
  52.         <menuitem value="http://home.netscape.com/NC-rdf#ShortcutURL" label="&search.shortcut.label;"/>
  53.       </menupopup>
  54.     </menulist>
  55.     <menulist id="methodList" class="menulist-toolbar">
  56.       <menupopup>
  57.         <menuitem value="contains" label="&search.contains.label;"/>
  58.         <menuitem value="startswith" label="&search.startswith.label;"/>
  59.         <menuitem value="endswith" label="&search.endswith.label;"/>
  60.         <menuitem value="is" label="&search.is.label;"/>
  61.         <menuitem value="isnot" label="&search.isnot.label;"/>
  62.         <menuitem value="doesntcontain" label="&search.doesntcontain.label;"/>
  63.       </menupopup>
  64.     </menulist>
  65.     <textbox id="searchField" flex="1" oninput="doEnabling();"/>
  66.   </hbox>
  67.   <checkbox id="saveQuery" label="&save.query.label;" />
  68. </dialog>
  69.  
  70.