diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/omBrowser/resources/pages/httpError.htm | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/omBrowser/resources/pages/httpError.htm')
-rw-r--r-- | Src/omBrowser/resources/pages/httpError.htm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Src/omBrowser/resources/pages/httpError.htm b/Src/omBrowser/resources/pages/httpError.htm new file mode 100644 index 00000000..f89a1927 --- /dev/null +++ b/Src/omBrowser/resources/pages/httpError.htm @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title>Winamp Online Services Error Page</title> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <link rel="stylesheet" href="./winampError.css" type="text/css" media="all"/> + <script src="./errorPageStrings.js"></script> + <script src="./errorPageFunctions.js"></script> +</head> +<body> +<!-- Container --> +<div id="errorContainer"> + <!-- Icon --> + <div id="errorIcon"></div> + <!-- Error Body --> + <div id="errorBody"> + <!-- Error Title --> + <div id="errorTitle"><h1 id="errorTitleText"><noscript>An Error Has Occurred</noscript></h1></div> + <!-- Error Code --> + <div id="errorCode"><noscript>HTTP - Error</noscript></div> + <!-- Error Description --> + <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> + <!-- Error Options --> + <div id="errorTryAgain"><a href="javascript:tryagain();">Try Again</a></div> + <div id="errorMore"><a href="javascript:togglemore();">More</a></div> + <!-- Additional Info --> + <div id="errorMoreInfo"> + <table> + <tr><td nowrap>Service name:</td><td><script language=javascript>document.write(unescape(geturlparams('servicename')));</script></td></tr> + <tr><td nowrap>Error code:</td><td><script language=javascript>document.write(geturlparams('errorcode'));</script></td></tr> + <tr><td nowrap>Url:</td><td><script language=javascript>document.write(unescape(geturlparams('url')));</script></td></tr> + <tr><td nowrap>Service id:</td><td><script language=javascript>document.write(geturlparams('svcid'));</script></td></tr> + <tr><td nowrap>Client id:</td><td><script language=javascript>document.write(geturlparams('uniqueid'));</script></td></tr> + </table> + </div> + </div> +</div> +<script language=javascript> +window.onload = function(){populatepage();}; +</script> +</body> +</html>
\ No newline at end of file |