You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
617 B
22 lines
617 B
<!DOCTYPE html> |
|
<html> |
|
<body> |
|
|
|
<script type="text/javascript"> |
|
|
|
var loc = window.location.pathname; |
|
var pathArray = (loc + "").split("/"); |
|
var path = pathArray[pathArray.length - 2].replace(/:/g, "/"); |
|
var mode = pathArray[pathArray.length - 1]; |
|
var modeUrl =""; |
|
if (mode == "run") { |
|
modeUrl = "&MODE=VIEW"; |
|
} |
|
window.location = "../../../content/saiku-ui/index.html?biplugin5=true" + modeUrl + "&dimension_prefetch=false#query/open/" + path; |
|
|
|
|
|
|
|
|
|
</script> |
|
</body> |
|
</html>
|
|
|