home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / load_device.xul < prev    next >
Extensible Markup Language  |  2001-11-04  |  2KB  |  63 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.    - The contents of this file are subject to the Mozilla 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/MPL/
  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.org code.
  14.    - 
  15.    - The Initial Developer of the Original Code is Netscape
  16.    - Communications Corp.  Portions created by Netscape are
  17.    - Copyright (C) 2001 Netscape Communications Corp.  All
  18.    - Rights Reserved.
  19.    - 
  20.    - Contributor(s):
  21.    -   Bob Lord <lord@netscape.com>
  22.    -   Ian McGreer <mcgreer@netscape.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  26.  
  27. <!DOCTYPE window [
  28. <!ENTITY % deviceManangerDTD SYSTEM "chrome://pippki/locale/deviceManager.dtd">
  29. %deviceManangerDTD;
  30. <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" >
  31. %pippkiDTD;
  32. ]>
  33.  
  34. <window id="loaddevice" 
  35.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  36.         title="&loaddevice.title;">
  37.  
  38.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  39.   <script type="application/x-javascript" src="chrome://pippki/content/device_manager.js"/>
  40.  
  41.   <vbox>
  42.     <description>&loaddevice.info;</description>
  43.     <hbox>
  44.       <label value="&loaddevice.modname;"/>
  45.       <textbox id="device_name" flex="1" value="&loaddevice.modname.default;"/>
  46.     </hbox>
  47.     <hbox>
  48.       <label value="&loaddevice.filename;"/>
  49.       <textbox id="device_path" flex="1"/>
  50.       <button label="&loaddevice.browse;" flex="1" oncommand="doBrowseFiles();"/>
  51.     </hbox>
  52.     <hbox>
  53.       <button id="ok_button"
  54.               label="&ok.label;" 
  55.               oncommand="doLoadDevice();"/> 
  56.       <button id="cancel_button" 
  57.               label="&cancel.label;" 
  58.               oncommand="window.close();"/> 
  59.     </hbox>
  60.   </vbox>
  61.  
  62. </window>
  63.