home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / editor / sb-file-panel.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-08-06  |  2.5 KB  |  71 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.    -    Ben Goodger
  24.   -->
  25.  
  26. <?xml-stylesheet href="chrome://communicator/skin/sidebar/sidebar.css" type="text/css"?>
  27. <?xml-stylesheet href="chrome://communicator/skin/bookmarks/bookmarks.css" type="text/css"?>
  28.  
  29. <window
  30.   xmlns:html="http://www.w3.org/1999/xhtml"
  31.   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  32.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  33.  
  34.   <script src="chrome://global/content/tasksOverlay.js"/>
  35.   <script src="chrome://editor/content/sb-file-panel.js"/>
  36.   <script src="chrome://editor/content/sb-FileWidgetFileHandler.js"/>
  37.  
  38. <popup id="contextual" onpopupshowing="return fillContextMenu('contextual',event.target.parentNode.parentNode);" >
  39.   <menu />
  40. </popup>
  41.   
  42. <tree id="fileTree" context="contextual" ref="NC:FilesRoot"
  43.    flex="100%" style="height: 100%"
  44.    datasources="rdf:files"
  45.    ondblclick="return OpenURL(event, event.target.parentNode.parentNode);">
  46.  
  47.   <!-- Commented out until new tree content model and template builder can play nice -->
  48.   <template>
  49.     <rule>
  50.       <treechildren flex="1">
  51.         <treeitem uri="...">
  52.           <treerow>
  53.             <treecell>
  54.               <treeindentation />
  55.               <button label="rdf:http://home.netscape.com/NC-rdf#Name"
  56.                             align="left" />
  57.             </treecell>
  58.           </treerow>
  59.         </treeitem>
  60.       </treechildren>
  61.     </rule>
  62.   </template>
  63.  
  64.   <treecolgroup>
  65.     <treecol id="NameColumn" resource="http://home.netscape.com/NC-rdf#Name" flex="1"/>
  66.   </treecolgroup>
  67. </tree>
  68.  
  69. </window>
  70.  
  71.