Files
2025-09-29 00:52:08 +02:00

63 lines
2.0 KiB
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Web Tools :: Error</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/images/rockstar.png" />
<!-- JQuery and JQuery UI -->
<script type="text/javascript" src="/js/libs/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="/libs/jquery-ui-1.8.23/js/jquery-ui-1.8.23.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="/libs/jquery-ui-1.8.23/css/ui-lightness/jquery-ui-1.8.23.custom.css" />
<link rel="stylesheet" type="text/css" href="/shared/css/jquery-ui-local.css" />
<!-- General Pages style -->
<link rel="stylesheet" type="text/css" href="/shared/css/generic.css" />
<script>
var msMinVersion = 9;
var mozMinVersion = 4;
var msg = "";
if ($.browser.msie) // IE
msg = "Your browser is out of date.<br /> Please update to IE " + msMinVersion
+ " or higher in order to view the page.";
else if ($.browser.mozilla) // FF
msg = "Your browser is out of date.<br /> Please update to Firefox " + mozMinVersion
+ " or higher in order to view the page.";
else if (!$.browser.msie && !$.browser.mozilla && !$.browser.webkit) {
msg = "Your browser is not supported.<br /> Please try with the latest version of <b>Internet Explorer</b>,"
+ " <b>Chrome</b>, <b>Firefox</b> or <b>Safari</b> in order to view the page."
}
msg += "<br /><br />Referrer : <i>" + $(document)[0].referrer + "</i>";
$(document).ready(function() {
$("#error").html(msg);
});
</script>
</head>
<body>
<div id="cocntent">
<div id="error"></div>
</div>
</div>
<div id="footer">
<div id="footer-links">
<a href="https://devstar.rockstargames.com/wiki/index.php"
title="Devstar Wiki" target="_blank">Devstar Wiki</a>
//
<a href="mailto:*Tools@rockstarnorth.com?subject=Web Tools"
title="Contact Tools" target="_blank">Contact Tools</a>
</div>
</div>
</body>
</html>