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 / navigator / viewPartialSource.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  3KB  |  83 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: HTML -*- --> 
  2. <?xml-stylesheet href="chrome://navigator/skin/" type="text/css"?> 
  3.  
  4. <!--
  5.    - The contents of this file are subject to the Mozilla Public
  6.    - License Version 1.1 (the "License"); you may not use this file
  7.    - except in compliance with the License. You may obtain a copy of
  8.    - the License at http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS
  11.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  12.    - implied. See the License for the specific language governing
  13.    - rights and limitations under the License.
  14.    -
  15.    - The Original Code is mozilla.org view-source front end.
  16.    -
  17.    - The Initial Developer of the Original Code is mozilla.org.
  18.    - Portions created by the Initial Developer are Copyright (C) 2002
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   Roger B. Sidje <rbs@maths.uq.edu.au> (Original Author)
  23.    -   Doron Rosenberg <doronr@naboonline.com>
  24.    -
  25.    - Alternatively, the contents of this file may be used under the
  26.    - terms of the GNU General Public License Version 2 or later (the
  27.    - "GPL"), in which case the provisions of the GPL are applicable 
  28.    - instead of those above.  If you wish to allow use of your 
  29.    - version of this file only under the terms of the GPL and not to
  30.    - allow others to use your version of this file under the MPL,
  31.    - indicate your decision by deleting the provisions above and
  32.    - replace them with the notice and other provisions required by
  33.    - the GPL.  If you do not delete the provisions above, a recipient
  34.    - may use your version of this file under either the MPL or the
  35.    - GPL.
  36.   -->
  37.  
  38. <?xul-overlay href="chrome://navigator/content/viewSourceOverlay.xul"?>
  39.  
  40. <!DOCTYPE window [
  41. <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  42. %brandDTD;
  43. <!ENTITY % sourceDTD SYSTEM "chrome://navigator/locale/viewSource.dtd" >
  44. %sourceDTD;
  45. <!ENTITY % navigatorDTD SYSTEM "chrome://navigator/locale/navigator.dtd" >
  46. %navigatorDTD;
  47. <!ENTITY % contentAreaCommandsDTD SYSTEM "chrome://communicator/locale/contentAreaCommands.dtd" >
  48. %contentAreaCommandsDTD;
  49. ]>
  50.  
  51. <window id="main-window"
  52.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  53.         onload="onLoadViewPartialSource();"
  54.         contenttitlesetting="false"
  55.         title="&mainWindow.title;" 
  56.         titlemodifier="&mainWindow.titlemodifier;" 
  57.         titlepreface=""
  58.         titlemenuseparator ="&mainWindow.titlemodifierseparator;"  
  59.         windowtype="navigator:view-source"
  60.         width="500" height="300"
  61.         screenX="10" screenY="10"
  62.         persist="screenX screenY width height sizemode">
  63.  
  64.   <script type="application/x-javascript" src="chrome://navigator/content/viewPartialSource.js"/>
  65.  
  66.   <commandset id="commands"/>
  67.   <keyset id="viewSourceKeys"/>
  68.   <stringbundleset id="viewSource-stringbundleset"/>
  69.   <popupset id="viewSourceContextSet" />
  70.   <popup id="contentAreaContextMenu"/>
  71.  
  72.   <toolbox id="viewSource-toolbox"/>
  73.  
  74.   <vbox id="appcontent" flex="1"
  75.         ondragdrop="nsDragAndDrop.drop(event, contentAreaDNDObserver);">
  76.  
  77.     <browser id="content" type="content-primary" name="content" src="about:blank" flex="1"
  78.              context="viewSourceContextMenu"/>
  79.  
  80.   </vbox>
  81.  
  82. </window>
  83.