aboutsummaryrefslogtreecommitdiff
path: root/id/server/data/deploy/conf/moa-id/htmlTemplates
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2014-09-19 11:02:16 +0200
committerThomas Lenz <tlenz@iaik.tugraz.at>2014-09-19 11:02:16 +0200
commit249ded0cad445464239553f5629a59524ae785d7 (patch)
tree24c520db5feabaa36fcb795609aada38f3d47df4 /id/server/data/deploy/conf/moa-id/htmlTemplates
parent42fbebacc80981b145464287f1bbbd8441713652 (diff)
downloadmoa-id-spss-249ded0cad445464239553f5629a59524ae785d7.tar.gz
moa-id-spss-249ded0cad445464239553f5629a59524ae785d7.tar.bz2
moa-id-spss-249ded0cad445464239553f5629a59524ae785d7.zip
solve SLO frontchannel timeout problem
Diffstat (limited to 'id/server/data/deploy/conf/moa-id/htmlTemplates')
-rw-r--r--id/server/data/deploy/conf/moa-id/htmlTemplates/slo_template.html19
1 files changed, 16 insertions, 3 deletions
diff --git a/id/server/data/deploy/conf/moa-id/htmlTemplates/slo_template.html b/id/server/data/deploy/conf/moa-id/htmlTemplates/slo_template.html
index 88279ee96..6cefe4054 100644
--- a/id/server/data/deploy/conf/moa-id/htmlTemplates/slo_template.html
+++ b/id/server/data/deploy/conf/moa-id/htmlTemplates/slo_template.html
@@ -380,7 +380,21 @@
function sloTimeOut() {
window.location.href="$timeoutURL";
- }
+ }
+ function RestartAfterDelay() {
+ var eDate = null;
+ var MilliSekZeit = 0;
+ var SysDatumJetzt = new Date();
+ var SysDatumJetztMilli = SysDatumJetzt.getTime();
+
+ do {
+ eDate = new Date();
+ MilliSekZeit = eDate.getTime();
+
+ } while ((MilliSekZeit-SysDatumJetztMilli) < $timeout);
+
+ sloTimeOut();
+ }
</script>
#end
@@ -389,7 +403,7 @@
</head>
#if($timeoutURL)
- <body onload='setTimeout(sloTimeOut(), $timeout);'>
+ <body onload='setTimeout(sloTimeOut, $timeout);'>
#else
<body>
#end
@@ -446,6 +460,5 @@
#foreach( $el in $redirectURLs )
<iframe src=$el class="reqframe"></iframe>
#end
-
</body>
</html> \ No newline at end of file