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 / cipherinfo.xul < prev    next >
Extensible Markup Language  |  2003-01-06  |  3KB  |  97 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Communicator
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Netscape Communications Corp..
  19.    - Portions created by the Initial Developer are Copyright (C) 2001
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Kai Engert <kaie@netscape.com>
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the LGPL or the GPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK ***** -->
  38.  
  39. <!DOCTYPE window SYSTEM "chrome://pippki/locale/pref-ssl.dtd">
  40.  
  41. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  42. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  43.  
  44. <window id="cipherinfo" 
  45.   title="&cipherinfo.title;"
  46.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  47.   onload="onLoad();">
  48.  
  49.   <script type="application/x-javascript" src="chrome://pippki/content/cipherinfo.js"/>
  50.  
  51.   <grid style="margin: 1em;">
  52.     <columns>
  53.       <column/>
  54.       <column/>
  55.     </columns>
  56.     <rows>
  57.       <row>
  58.         <label value="&cipher.name;"/>
  59.         <label id="name"/>
  60.       </row>
  61.       <row>
  62.         <label value="&cipher.encryption;"/>
  63.         <label id="encryption"/>
  64.       </row>
  65.       <row>
  66.         <label value="&cipher.authAlg;"/>
  67.         <label id="authAlg"/>
  68.       </row>
  69.       <row>
  70.         <label value="&cipher.keyAlg;"/>
  71.         <label id="keyAlg"/>
  72.       </row>
  73.       <row>
  74.         <label value="&cipher.keySize;"/>
  75.         <label id="keySize"/>
  76.       </row>
  77.       <row>
  78.         <label value="&cipher.macAlg;"/>
  79.         <label id="macAlg"/>
  80.       </row>
  81.       <row>
  82.         <label value="&cipher.other;"/>
  83.         <label id="fips" value="&cipher.fips;" collapsed="true"/>
  84.       </row>
  85.       <row>
  86.         <label value=""/>
  87.         <label id="exportable" value="&cipher.exportable;" collapsed="true"/>
  88.       </row>
  89.     </rows>
  90.   </grid>
  91.  
  92.   <keyset id="dialogKeys"/>
  93.   <hbox id="okCancelButtonsRight"/>
  94.  
  95. </window>
  96.  
  97.