80 lines
3.1 KiB
HTML
Executable File
80 lines
3.1 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Automation Web Client</title>
|
|
<meta charset="utf-8" />
|
|
<!-- IE set to latest comp mode -->
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
|
|
|
|
<link rel="stylesheet" href="/libs/jquery-ui-1.8.23/css/smoothness/jquery-ui-1.8.23.custom.css">
|
|
<!--<link rel="stylesheet" href="../libs/jquery-ui-1.8.23/css/ui-lightness/jquery-ui-1.8.23.custom.css">-->
|
|
|
|
<link rel="stylesheet" type="text/css" href="/libs/jquery-datatables/jquery.dataTables.css">
|
|
<link rel="stylesheet" type="text/css" href="css/automation.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/jquery.dataTables-local.css" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/shared/css/generic.css">
|
|
|
|
<script type="text/javascript" src="/libs/jquery-ui-1.8.23/js/jquery-1.7.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>
|
|
|
|
<!-- Detect any old browsers before loading any new libraries that will crash IE -->
|
|
<script type="text/javascript" src="/js/detect_browser_error.js"></script>
|
|
|
|
<script type="text/javascript" src="/libs/jquery-datatables/jquery.dataTables.min.js"></script>
|
|
<script type="text/javascript" src="/libs/jquery-datatables/datatables.fnStandingRedraw.js"></script>
|
|
|
|
<!-- d3js -->
|
|
<script type="text/javascript" src="/js/libs/d3.v2.js"></script>
|
|
|
|
<!-- generic stats functions -->
|
|
<script type="text/javascript" src="/project/project.js"></script>
|
|
<script type="text/javascript" src="/shared/js/generic.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<!--
|
|
<div id="header"></div>
|
|
<div id="navigation"></div>
|
|
-->
|
|
|
|
<div id="content" style="left:0px; width: calc(100% - 42px); height: calc(100% - 25px - 60px - 5px);">
|
|
<!-- 25 is the padding top/ 60 is the footer height"-->
|
|
<div id="content-title"> Automation Web Client <span class="last"></span></div>
|
|
<div id="content-description"></div>
|
|
<div id="content-body">
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<div id="footer-links">
|
|
<a href="https://devstar.rockstargames.com/wiki/index.php/Asset_Pipeline3_Automation_Web_Client"
|
|
title="Automation Web Client on Devstar Wiki" target="_blank">Devstar Wiki</a>
|
|
//
|
|
<a href="mailto:*Tools@rockstarnorth.com?subject=Automation Web Client"
|
|
title="Contact Tools" target="_blank">Contact Tools</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#content-body").append(
|
|
$("<div>")
|
|
.addClass("content-loading-error")
|
|
.html("This page is not being maintained anymore.<br /> Please navigate to "
|
|
+ (project.hasOwnProperty("portalUrl")
|
|
? ("<a target='_blank' href='"+ project["portalUrl"] + project["portalAutomation"] + "' "
|
|
+ "title='"+ project["portalUrl"] + project["portalAutomation"] + "'>"
|
|
+ project["portalUrl"] + project["portalAutomation"]
|
|
+ "</a>"
|
|
)
|
|
: ""
|
|
)
|
|
+ "<br /> and update your bookmarks."
|
|
)
|
|
);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |