Skip to content

Instantly share code, notes, and snippets.

@andzi
Created October 16, 2015 04:35
Show Gist options
  • Select an option

  • Save andzi/1d7216fd4464df459763 to your computer and use it in GitHub Desktop.

Select an option

Save andzi/1d7216fd4464df459763 to your computer and use it in GitHub Desktop.
error
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description"
content="GenMyModel is an UML online modeler with code generation capabilities."/>
<title>Loading...</title>
<link type="text/css" rel="stylesheet" href="/css/GMM-Style.nocache.css">
<link type="text/css" rel="stylesheet" href="/css/foundation-icons/foundation-icons.css">
<script type="text/javascript">
var apihost = window.location.hostname == "127.0.0.1" ? "localhost:8443/gmmapi" : window.location.hostname.replace("app", "api");
var url = "https://" + apihost + "/oauth/authorize?response_type=token&client_id=gmm&redirect_uri="
+ window.location.href;
var isSandbox = document.location.href.indexOf('/sandbox/') > -1;
if (document.location.hash != "") {
var token = decodeURI((RegExp('access_token=' + '(.+?)(&|$)')
.exec(document.location.hash) || [, null])[1]);
}
if (!token && !isSandbox) {
window.location = url;
}
</script>
<script type="text/javascript" src="/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="/gmm/showdownjs/showdown.js"></script>
<script type="text/javascript" src="/gmm/ace/ace.js" charset="utf-8"></script>
<script type="text/javascript" src="/gmm/ace/mode-acceleo.js" charset="utf-8"></script>
<script type="text/javascript" src="/gmm/ace/mode-java.js" charset="utf-8"></script>
<script type="text/javascript" src="/gmm/ace/ext-language_tools.js" charset="utf-8"></script>
<script type="text/javascript" src="/gmm/ace/ext-modelist.js" charset="utf-8"></script>
<script type="text/javascript" src="/gmm/ace/ext-tokentooltip.js" charset="utf-8"></script>
</head>
<body>
<noscript>
<iframe src="/ns.html?id=GTM-WZNWH7"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(), event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'/js/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WZNWH7');</script>
<!-- History support -->
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1'
style="position: absolute; width: 0; height: 0; border: 0"></iframe>
<noscript>
<div
style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
Your web browser must have JavaScript enabled in order for this
application to display correctly.
</div>
</noscript>
<div class="splashscreen" id="splashScreen">
<div class="splashScreenContent">
<h1><span>GenMyModel</span></h1>
<div class="progressContainer">
<span>Starting up...</span>
<div class="progressBar" id="progressBar"></div>
</div>
<div class="progressInfo" id="progressInfo"></div>
</div>
</div>
<div id="widget-container" class="content"></div>
<div id="timeInfo" style="display: none;"></div>
<div id="versionInfo" style="display: none;">0.52.2</div>
<script type="text/javascript">
document.getElementById("timeInfo").innerHTML = new Date().getTime();
document.write("<script type='text/javascript' src='/js/dojo/dojo.js'><\/script>");
if (window.location.hostname == "app.genmymodel.com") {
document.write("<script type='text/javascript' src='//d1gab6e6olhths.cloudfront.net/gmm/gmm.nocache.js'><\/script>");
}
else if (window.location.hostname == "apppreprodks.genmymodel.com") {
document.write("<script type='text/javascript' src='//d2skuxbw5hq3ck.cloudfront.net/gmm/gmm.nocache.js'><\/script>");
}
else {
document.write("<script type='text/javascript' src='/gmm/gmm.nocache.js'><\/script>");
}
setTimeout(function(){
document.getElementById("splashScreen").className += ' onShow';
}, 1000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment