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 / newserver.xul < prev    next >
Extensible Markup Language  |  2003-06-23  |  3KB  |  78 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.    -  H├Ñkan Waara <hwaara@chello.se>
  18.   -->
  19.  
  20. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  21.  
  22. <!DOCTYPE dialog [
  23. <!ENTITY % newserverDTD SYSTEM "chrome://pippki/locale/newserver.dtd" >
  24. %newserverDTD;
  25. <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" >
  26. %pippkiDTD;
  27. ]>
  28.  
  29. <dialog id="ssl_warning" title="&newserver.title;"
  30.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  31.   onload="onLoad();"
  32.   buttons="accept,cancel,help"
  33.   ondialogaccept="return doOK();"
  34.   ondialogcancel="return doCancel();"
  35.   ondialoghelp="return doHelpButton();">
  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/newserver.js"/>
  40. <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  41.  
  42. <stringbundle id="newserver_bundle" src="chrome://pippki/locale/newserver.properties"/>
  43.  
  44. <vbox flex="1">
  45.   <hbox valign="top" align="center">
  46.  
  47.     <image class="alert-icon" style="margin: 5px"/>
  48.     <vbox flex="1" valign="middle">
  49.  
  50.       <description id="intro"/>
  51.       <separator class="thin"/>
  52.       <description>&newserver.reasons;</description>
  53.       <description>&newserver.reason1;</description>
  54.       <description>&newserver.reason2;</description>
  55.       <description id="reason3"/>
  56.       <separator class="thin"/>
  57.       <description>&newserver.notify;</description>
  58.       <separator/>
  59.       <description id="question"/>
  60.       <separator class="thin"/>
  61.       <vbox flex="1" align="start">
  62.         <button id="examineCert-button" label="&newserver.examine;"
  63.                 oncommand="viewCert();"/> 
  64.       </vbox>
  65.       <separator class="thin"/>
  66.       <vbox>
  67.         <radiogroup id="whatnow" flex="1">
  68.           <radio label="&newserver.remember;" id="remember"/>
  69.           <radio label="&newserver.session;" id="session" selected="true"/>
  70.           <radio label="&newserver.refuse;" id="refuse"/>
  71.         </radiogroup>
  72.       </vbox>
  73.     </vbox>
  74.   </hbox>
  75. </vbox>
  76.  
  77. </dialog>
  78.