home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / comm.jar / content / editor / EdLinkProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-29  |  2.5 KB  |  66 lines

  1. <?xml version="1.0"?>
  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) 1998-1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.   -->
  24.   
  25. <!--  Commented Feb 8, 2005 S. Lang 
  26. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  27. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  28. -->
  29.  
  30. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  31. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  32.  
  33. <!DOCTYPE dialog SYSTEM "chrome://editor/locale/EditorLinkProperties.dtd">
  34.  
  35. <dialog id="linkDlg" title="&windowTitle.label;"
  36.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  37.    buttons="accept,cancel,help"
  38.    onload = "Startup()"
  39.    ondialogaccept="return onAccept();"
  40.    ondialogcancel="return onCancel();"
  41.    ondialoghelp="return doHelpButton();">
  42.  
  43.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  44.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  45.   <script type="application/x-javascript" src="chrome://editor/content/EdLinkProps.js"/>
  46.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  47.  
  48.   <broadcaster id="args" value=""/>
  49.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  50.  
  51.   <vbox style="min-width: 20em">
  52.     <groupbox><caption id="linkTextCaption"/>
  53.       <vbox>
  54.         <label id="linkTextMessage" control="linkTextInput"/>
  55.         <textbox id="linkTextInput"/>
  56.       </vbox>
  57.     </groupbox>
  58.  
  59.     <groupbox><caption label="&LinkURLBox.label;"/>
  60.       <vbox id="LinkLocationBox"/>
  61.     </groupbox>
  62.   </vbox>
  63.   <!-- from EdDialogOverlay -->
  64.   <vbox id="AdvancedEdit"/>
  65. </dialog>
  66.