home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 March / PCWorld_2007-03_cd.bin / komunikace / nvu / nvu-1.0-cs-CZ.win32.installer.exe / chrome / pippki.jar / content / pippki / choosetoken.xul < prev    next >
Extensible Markup Language  |  2002-02-27  |  2KB  |  66 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 Corporation.  Portions created by Netscape are
  17.   - Copyright (C) 2001 Netscape Communications Corporation. All
  18.   - Rights Reserved.
  19.   -
  20.   - Contributor(s):
  21.   - David Drinan (ddrinan@netscape.com)
  22.   -->
  23.  
  24. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  25.  
  26. <!DOCTYPE window [
  27. <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" >
  28. %pippkiDTD;
  29. ]>
  30.  
  31.  
  32. <window id="ssl_warning" title="&chooseToken.title;"
  33.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  34.   style="width: 40em;"
  35.   onload="onLoad();">
  36.  
  37. <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  38. <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  39. <script type="application/x-javascript" src="chrome://pippki/content/choosetoken.js"/>
  40. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  41.  
  42. <keyset id="keys">
  43.   <key id="enter-key"  keycode="VK_ENTER"  oncommand="if (!document.getElementById('ok-button').disabled) doOK();"/>
  44.   <key id="return-key" keycode="VK_RETURN" oncommand="if (!document.getElementById('ok-button').disabled) doOK();"/>
  45.   <key id="esc-key"    keycode="VK_ESCAPE" oncommand="doCancel();"/>
  46. </keyset>
  47.  
  48. <vbox style="margin: 5px;" flex="1">
  49.     <groupbox>
  50.     <description>&chooseToken.message1;</description>
  51.     <menulist id="tokens">
  52.         <menupopup/>
  53.     </menulist>
  54.     </groupbox>
  55.   <separator />
  56.   <hbox>
  57.   <button id="ok-button" label="&ok.label;"
  58.           oncommand="doOK();"/> 
  59.   <button id="cancel-button" label="&cancel.label;"
  60.           oncommand="doCancel();"/> 
  61.   <button id="help-button" label="&help.label;"
  62.           oncommand="openHelp('which_token');"/> 
  63.   </hbox>
  64. </vbox>
  65. </window>
  66.