home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / mail.xpi / bin / chrome / messenger.jar / content / messenger / renameFolderDialog.xul < prev    next >
Extensible Markup Language  |  2001-08-31  |  2KB  |  59 lines

  1. <?xml version="1.0"?> <!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- -->
  2. <!--
  3.   - The contents of this file are subject to the Netscape Public
  4.   - License Version 1.1 (the "License"); you may not use this file
  5.   - except in compliance with the License. You may obtain a copy of
  6.   - the License at http://www.mozilla.org/NPL/
  7.   -
  8.   - Software distributed under the License is distributed on an "AS
  9.   - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.   - implied. See the License for the specific language governing
  11.   - rights and limitations under the License.
  12.   -
  13.   - The Original Code is Mozilla Communicator client code, released
  14.   - March 31, 1998.
  15.   -
  16.   - The Initial Developer of the Original Code is Netscape
  17.   - Communications Corporation. Portions created by Netscape are
  18.   - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.   - Rights Reserved.
  20.   -
  21.   - Contributor(s):
  22.   -   Fabian Guisset <hidday@geocities.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://messenger/skin/dialogs.css" type="text/css"?>
  26.  
  27. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  28. <?xul-overlay href="chrome://messenger/content/msgFolderPickerOverlay.xul"?>
  29.  
  30. <!DOCTYPE window SYSTEM "chrome://messenger/locale/renameFolderDialog.dtd">
  31.  
  32. <window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  33.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.         title="&renameFolderDialog.title;"
  35.         orient="vertical"
  36.         class="dialog"
  37.         onload="onLoad();">
  38.  
  39.   <stringbundleset id="stringbundleset"/>
  40.   <script type="application/x-javascript" src="chrome://messenger/content/mailCommands.js"/>
  41.   <script type="application/x-javascript" src="chrome://messenger/content/renameFolderDialog.js"/>
  42.  
  43.   <keyset id="dialogKeys"/>
  44.  
  45.   <vbox>
  46.  
  47.     <spring flex="100%"/>
  48.  
  49.     <text value="&rename.label;" class="label" accesskey="&rename.accesskey;" for="name"/>
  50.     <textbox tabindex="0" id="name" oninput="doEnabling();"/>
  51.  
  52.     <spring flex="100%"/>
  53.  
  54.     <hbox id="okCancelButtons"/>
  55.  
  56.   </vbox>
  57.  
  58. </window>
  59.