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 / domainMismatch.xul < prev    next >
Extensible Markup Language  |  2002-02-27  |  2KB  |  68 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.    -
  14.    - Contributor(s):
  15.    -  Javier Delgadillo <javi@netscape.com>
  16.    -  Bob Lord <lord@netscape.com>
  17.   -->
  18.  
  19. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  20.  
  21. <!DOCTYPE window SYSTEM "chrome://pippki/locale/pippki.dtd">
  22.  
  23. <window id="domainMismatch" title="&domainMismatch.title;"
  24.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  25.   style="width: 32em;"
  26.   onload="onLoad();">
  27.  
  28. <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  29. <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  30. <script type="application/x-javascript" src="chrome://pippki/content/domainMismatch.js"/>
  31. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  32.  
  33.  
  34. <keyset id="keys">
  35.   <key id="enter-key"  keycode="VK_ENTER"  oncommand="doOK()"    />
  36.   <key id="return-key" keycode="VK_RETURN" oncommand="doOK()"    />
  37.   <key id="esc-key"    keycode="VK_ESCAPE" oncommand="doCancel()"/>
  38. </keyset>
  39.  
  40. <vbox style="margin: 5px;" flex="1">
  41.  
  42.   <description id="message1"/>
  43.   <separator/>
  44.   <description id="message2" flex="100%"/>
  45.  
  46.   <hbox>
  47.   <button id="examineCert-button" label="&examineCert.label;"
  48.      oncommand="viewCert();"/> 
  49.   </hbox>
  50.   <separator/>
  51.  
  52.   <keyset id="keys">
  53.     <key id="enter-key"  keycode="VK_ENTER"  oncommand="doOK();"/>
  54.     <key id="return-key" keycode="VK_RETURN" oncommand="doOK();"/>
  55.     <key id="esc-key"    keycode="VK_ESCAPE" oncommand="doCancel();"/>
  56.   </keyset>
  57.  
  58.   <hbox>
  59.   <button id="ok-button" label="&ok.label;"
  60.           oncommand="doOK();"/> 
  61.   <button id="cancel-button" label="&cancel.label;"
  62.           oncommand="doCancel();"/> 
  63.   <button id="help-button" label="&help.label;"
  64.           oncommand="openHelp('bad_name_web_cert');"/> 
  65.   </hbox>
  66. </vbox>
  67. </window>
  68.