Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
3.3 KiB

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
  2. <html>
  3. <head>
  4. <style>
  5. a:link {font:8pt/11pt verdana; color:red}
  6. a:visited {font:8pt/11pt verdana; color:#4e4e4e}
  7. </style>
  8. <meta HTTP-EQUIV="Content-Type" Content="text-html; charset=Windows-1252">
  9. <title>Invalid syntax error</title>
  10. </head>
  11. <script>
  12. function Homepage(){
  13. // in real bits, urls get returned to our script like this:
  14. // res://shdocvw.dll/http_404.htm#http://www.DocURL.com/bar.htm
  15. //For testing use DocURL = "res://shdocvw.dll/http_404.htm#https://www.microsoft.com/bar.htm"
  16. DocURL=document.location.href;
  17. //this is where the http or https will be, as found by searching for :// but skipping the res://
  18. protocolIndex=DocURL.indexOf("://",4);
  19. //this finds the ending slash for the domain server
  20. serverIndex=DocURL.indexOf("/",protocolIndex + 3);
  21. //for the href, we need a valid URL to the domain. We search for the # symbol to find the begining
  22. //of the true URL, and add 1 to skip it - this is the BeginURL value. We use serverIndex as the end marker.
  23. //urlresult=DocURL.substring(protocolIndex - 4,serverIndex);
  24. BeginURL=DocURL.indexOf("#",1) + 1;
  25. urlresult=DocURL.substring(BeginURL,serverIndex);
  26. if (protocolIndex - BeginURL > 7)
  27. urlresult=""
  28. //for display, we need to skip after http://, and go to the next slash
  29. displayresult=DocURL.substring(protocolIndex + 3 ,serverIndex);
  30. // Security precaution: must filter out "urlResult" and "displayresult"
  31. forbiddenChars = new RegExp("[<>\'\"]", "g"); // Global search/replace
  32. urlresult = urlresult.replace(forbiddenChars, "");
  33. displayresult = displayresult.replace(forbiddenChars, "");
  34. document.write('<A HREF="' + urlresult + '">' + displayresult + "</a>");
  35. }
  36. </script>
  37. <body bgcolor="white">
  38. <table width="400" cellpadding="3" cellspacing="5">
  39. <tr>
  40. <td id="tableProps" valign="top" align="left"><img id="pagerrorImg" SRC="pagerror.gif"
  41. width="25" height="33"></td>
  42. <td id="tableProps2" align="left" valign="middle" width="360"><h1 id="errorText"
  43. style="COLOR: black; FONT: 13pt/15pt verdana">The page cannot be displayed</h1>
  44. </td>
  45. </tr>
  46. <tr>
  47. <td id="tablePropsWidth" width="400" colspan="2"><font id="LID1"
  48. style="COLOR: black; FONT: 8pt/11pt verdana">The page you are looking for might have been
  49. removed or had its name changed.</font></td>
  50. </tr>
  51. <tr>
  52. <td id="tablePropsWidth2" width="400" colspan="2"><font id="LID2"
  53. style="COLOR: black; FONT: 8pt/11pt verdana"><hr color="#C0C0C0" noshade>
  54. <p id="LID3">Please try the following:</p><ul>
  55. <li id="term1">Open the <script> Homepage();</script> home page, and then look for links to the
  56. information you want.<br>
  57. </li>
  58. <li id="term2">If you typed the page address in the Address bar, make sure that it is
  59. spelled correctly.<br>
  60. </li>
  61. </ul>
  62. <p id="instructionsText3">If you still cannot open the page, click the Internet Explorer <br>
  63. <a onclick="window.open('','_search');event.returnValue=false" href=""><img border=0 src="search.gif" width="16" height="16" alt="search.gif (114 bytes)" align="center">Search</a> button to look for
  64. similar sites. </p>
  65. <p><br>
  66. </p>
  67. <h2 id="ietext" style="font:8pt/11pt verdana; color:black">Internet Explorer </h2>
  68. </font></td>
  69. </tr>
  70. </table>
  71. </body>
  72. </html>