blob: a6a03e0680e95b33c14b5c622ce99d37f8582375 [file] [log] [blame]
<body>
<script>
function dirname(path) {
return path.replace(/\/[^\/]*$/, '/');
}
function request() {
var dirName = dirname(location.href);
var client = new XMLHttpRequest,
// create a cross-origin request
url = dirName.replace('://', '://www.') + 'TAOResponse.py?tao=match_wildcard';
client.open("GET", url, false);
client.send(null);
}
if(window.parent.setup_iframe) {
window.parent.setup_iframe();
request();
}
</script>
</body>