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 / bookmarksOverlay.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  4KB  |  75 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. <!DOCTYPE overlay SYSTEM "chrome://communicator/locale/bookmarks/bookmarksOverlay.dtd">
  28.  
  29. <overlay id="bookmarksOverlay"
  30.          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  31.  
  32.   <stringbundleset id="stringbundleset">
  33.     <stringbundle id="bundle_bookmarks" src="chrome://communicator/locale/bookmarks/bookmark.properties"/>
  34.     <stringbundle id="bundle_brand" src="chrome://global/locale/brand.properties"/>
  35.   </stringbundleset>
  36.          
  37.   <popupset id="bookmarksPopupset">
  38.     <!-- the toolbar buttons in the personal toolbar have -moz-user-focus:ignore
  39.          we have to focus them manually -->
  40.     <popup id="bmContext" 
  41.            onpopupshowing="gBookmarksShell.doFocus(); gBookmarksShell.createContextMenu(event);"
  42.            onpopuphidden="if (content) content.focus()"/>
  43.   </popupset>
  44.  
  45.   <commands id="commands">
  46.     <commandset id="bookmarksItems">
  47.       <command id="cmd_bm_open"                      oncommand="goDoCommand('cmd_bm_open');"/>
  48.       <command id="cmd_bm_openfolder"                oncommand="goDoCommand('cmd_bm_openfolder');"/>
  49.       <command id="cmd_bm_newfolder"                 oncommand="goDoCommand('cmd_bm_newfolder');"/>
  50.       <command id="cmd_bm_newbookmark"               oncommand="goDoCommand('cmd_bm_newbookmark');"/>
  51.       <command id="cmd_bm_newseparator"              oncommand="goDoCommand('cmd_bm_newseparator');"/>
  52.       <command id="cmd_bm_find"                      oncommand="goDoCommand('cmd_bm_find');"/>
  53.       <command id="cmd_bm_setnewbookmarkfolder"      oncommand="goDoCommand('cmd_bm_setnewbookmarkfolder');"/>
  54.       <command id="cmd_bm_setpersonaltoolbarfolder"  oncommand="goDoCommand('cmd_bm_setpersonaltoolbarfolder');"/>
  55.       <command id="cmd_bm_setnewsearchfolder"        oncommand="goDoCommand('cmd_bm_setnewsearchfolder');"/>
  56.       <command id="cmd_bm_properties"                oncommand="goDoCommand('cmd_bm_properties');"/>
  57.       <command id="cmd_bm_rename"                    oncommand="goDoCommand('cmd_bm_rename');"/>
  58.       <command id="cmd_bm_openinnewwindow"           oncommand="goDoCommand('cmd_bm_openinnewwindow');"/>
  59.       <command id="cmd_bm_openinnewtab"              oncommand="goDoCommand('cmd_bm_openinnewtab');"/>
  60.       <command id="cmd_bm_import"                    oncommand="goDoCommand('cmd_bm_import');"/>
  61.       <command id="cmd_bm_export"                    oncommand="goDoCommand('cmd_bm_export');"/>
  62.       <command id="cmd_bm_fileBookmark"           oncommand="goDoCommand('cmd_bm_fileBookmark');"/>
  63.  
  64.       <command id="cmd_bm_cut"                    oncommand="goDoCommand('cmd_bm_cut');"/>
  65.       <command id="cmd_bm_copy"                   oncommand="goDoCommand('cmd_bm_copy');"/>
  66.       <command id="cmd_bm_paste"                  oncommand="goDoCommand('cmd_bm_paste');"/>
  67.       <command id="cmd_bm_delete"                 oncommand="goDoCommand('cmd_bm_delete');"/>
  68.       <command id="cmd_bm_selectAll"              oncommand="goDoCommand('cmd_bm_selectAll');"/>
  69.     </commandset>
  70.     <commandset id="selectEditMenuItems"/>
  71.     <commandset id="globalEditMenuItems"/>
  72.   </commands>
  73.  
  74. </overlay>
  75.