httpError.htm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title>Winamp Online Services Error Page</title>
  6. <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  7. <meta http-equiv="Content-Style-Type" content="text/css" />
  8. <link rel="stylesheet" href="./winampError.css" type="text/css" media="all"/>
  9. <script src="./errorPageStrings.js"></script>
  10. <script src="./errorPageFunctions.js"></script>
  11. </head>
  12. <body>
  13. <!-- Container -->
  14. <div id="errorContainer">
  15. <!-- Icon -->
  16. <div id="errorIcon"></div>
  17. <!-- Error Body -->
  18. <div id="errorBody">
  19. <!-- Error Title -->
  20. <div id="errorTitle"><h1 id="errorTitleText"><noscript>An Error Has Occurred</noscript></h1></div>
  21. <!-- Error Code -->
  22. <div id="errorCode"><noscript>HTTP - Error</noscript></div>
  23. <!-- Error Description -->
  24. <div id="errorDesc"><p id="errorDescText"><noscript>An error has occurred. We would show you more but your browser does not support javascript.</noscript></p></div>
  25. <!-- Error Options -->
  26. <div id="errorTryAgain"><a href="javascript:tryagain();">Try Again</a></div>
  27. <div id="errorMore"><a href="javascript:togglemore();">More</a></div>
  28. <!-- Additional Info -->
  29. <div id="errorMoreInfo">
  30. <table>
  31. <tr><td nowrap>Service name:</td><td><script language=javascript>document.write(unescape(geturlparams('servicename')));</script></td></tr>
  32. <tr><td nowrap>Error code:</td><td><script language=javascript>document.write(geturlparams('errorcode'));</script></td></tr>
  33. <tr><td nowrap>Url:</td><td><script language=javascript>document.write(unescape(geturlparams('url')));</script></td></tr>
  34. <tr><td nowrap>Service id:</td><td><script language=javascript>document.write(geturlparams('svcid'));</script></td></tr>
  35. <tr><td nowrap>Client id:</td><td><script language=javascript>document.write(geturlparams('uniqueid'));</script></td></tr>
  36. </table>
  37. </div>
  38. </div>
  39. </div>
  40. <script language=javascript>
  41. window.onload = function(){populatepage();};
  42. </script>
  43. </body>
  44. </html>