home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / toolkit.jar / content / global / netError.xhtml < prev    next >
Encoding:
Extensible Markup Language  |  2005-07-29  |  4.1 KB  |  151 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!DOCTYPE html [
  4.   <!ENTITY % htmlDTD
  5.     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  6.     "DTD/xhtml1-strict.dtd">
  7.   %htmlDTD;
  8.   <!ENTITY % netErrorDTD
  9.        SYSTEM "chrome://global/locale/netError.dtd">
  10.   %netErrorDTD;
  11. ]>
  12.  
  13. <!--
  14.    The contents of this file are subject to the Netscape Public License
  15.    Version 1.0 (the "NPL"); you may not use this file except in
  16.    compliance with the NPL.  You may obtain a copy of the NPL at
  17.    http://www.mozilla.org/NPL/
  18.   
  19.    Software distributed under the NPL is distributed on an "AS IS" basis,
  20.    WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  21.    for the specific language governing rights and limitations under the
  22.    NPL.
  23.   
  24.    The Initial Developer of this code under the NPL is Netscape
  25.    Communications Corporation.  Portions created by Netscape are
  26.    Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  27.    Reserved.
  28.    
  29.    Contributor(s):
  30.      Adam Lock <adamlock@netscape.com>
  31.  -->
  32.  
  33. <html xmlns="http://www.w3.org/1999/xhtml">
  34.  
  35. <head>
  36.   <title>&loadError.label;</title>
  37.   <script src="chrome://global/content/netError.js"></script>
  38.   <style><![CDATA[
  39.     body {
  40.       font: message-box;
  41.     }
  42.     div.invisible {
  43.       display: none;
  44.     }
  45.     div.et_visible {
  46.       margin-top: 2em;
  47.       margin-bottom: 1em;
  48.       font-size: large;
  49.       text-align: left;
  50.       font-weight: bold;
  51.       color: #5D616E;
  52.     }
  53.     div#shortDesc {
  54.       width: 90%;
  55.       text-align: justify;
  56.       margin-left: 5%;
  57.       margin-right: 5%;
  58.     }
  59.     div#longDesc {
  60.       width: 90%;
  61.       text-align: justify;
  62.       margin-left: 5%;
  63.       margin-right: 5%;
  64.     }
  65.     div.ld_visible {
  66.       display: block;
  67.       background-color: #CEE0FF;
  68.     }
  69.   ]]></style>
  70. </head>
  71.  
  72. <body style="font: message-box;" onload="fillIn();">
  73.  
  74.   <!-- ERROR TITLE -->
  75.   <div id="errorTitle">
  76.     <div id="et_malformedURI" class="invisible">
  77.       <p>&malformedURI.title;</p>
  78.     </div>
  79.     <div id="et_fileNotFound" class="invisible">
  80.       <p>&fileNotFound.title;</p>
  81.     </div>
  82.     <div id="et_dnsNotFound" class="invisible">
  83.       <p>&dnsNotFound.title;</p>
  84.     </div>
  85.     <div id="et_protocolNotFound" class="invisible">
  86.       <p>&protocolNotFound.title;</p>
  87.     </div>
  88.     <div id="et_connectionFailure" class="invisible">
  89.       <p>&connectionFailure.title;</p>
  90.     </div>
  91.     <div id="et_netTimeout" class="invisible">
  92.       <p>&netTimeout.title;</p>
  93.     </div>
  94.     <div id="et_redirectLoop" class="invisible">
  95.       <p>&redirectLoop.title;</p>
  96.     </div>
  97.     <div id="et_unknownSocketType" class="invisible">
  98.       <p>&unknownSocketType.title;</p>
  99.     </div>
  100.     <div id="et_netReset" class="invisible">
  101.       <p>&netReset.title;</p>
  102.     </div>
  103.     <div id="et_netOffline" class="invisible">
  104.       <p>&netOffline.title;</p>
  105.     </div>
  106.   </div>
  107.  
  108.   <!-- SHORT DESCRIPTION -->
  109.   <div id="shortDesc">
  110.     <p id="sd"> </p>
  111.   </div>
  112.  
  113.   <!-- LONG DESCRIPTION -->
  114.   <div id="longDesc">
  115.     <div id="ld_malformedURI" class="invisible">
  116.       <p>&malformedURI.longDesc;</p>
  117.     </div>
  118.     <div id="ld_fileNotFound" class="invisible">
  119.       <p>&fileNotFound.longDesc;</p>
  120.     </div>
  121.     <div id="ld_dnsNotFound" class="invisible">
  122.       <p>&dnsNotFound.longDesc;</p>
  123.     </div>
  124.     <div id="ld_protocolNotFound" class="invisible">
  125.       <p>&protocolNotFound.longDesc;</p>
  126.     </div>
  127.     <div id="ld_connectionFailure" class="invisible">
  128.       <p>&connectionFailure.longDesc;</p>
  129.     </div>
  130.     <div id="ld_netTimeout" class="invisible">
  131.       <p>&netTimeout.longDesc;</p>
  132.     </div>
  133.     <div id="ld_redirectLoop" class="invisible">
  134.       <p>&redirectLoop.longDesc;</p>
  135.     </div>
  136.     <div id="ld_unknownSocketType" class="invisible">
  137.       <p>&unknownSocketType.longDesc;</p>
  138.     </div>
  139.     <div id="ld_netReset" class="invisible">
  140.       <p>&netReset.longDesc;</p>
  141.     </div>
  142.     <div id="ld_netOffline" class="invisible">
  143.       <p>&netOffline.longDesc;</p>
  144.     </div>
  145.   </div>
  146.  
  147.   <p><a id="retry" href="#" onclick="retryThis();">&retry.label;</a></p>
  148. </body>
  149.  
  150. </html>
  151.