diff options
author | James Meyer <james.meyer@operamail.com> | 2013-01-15 18:02:19 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2013-01-15 18:02:19 (GMT) |
commit | 38d2158355d4ebddf3bcf10a488fdf85c4f57d90 (patch) | |
tree | e288dcaa6ce1d875eb413f2c6c8856ea5559de08 /abs/extra/remyth/remyth.html | |
parent | 2a67b29320c4c371098f519fe36bc8babb59aa29 (diff) | |
download | linhes_pkgbuild-38d2158355d4ebddf3bcf10a488fdf85c4f57d90.zip linhes_pkgbuild-38d2158355d4ebddf3bcf10a488fdf85c4f57d90.tar.gz linhes_pkgbuild-38d2158355d4ebddf3bcf10a488fdf85c4f57d90.tar.bz2 |
mythexpress, remyth: add error page for when the software isn't installed. After install the webpage for each application will redirect the browser to the correct network address.
Diffstat (limited to 'abs/extra/remyth/remyth.html')
-rwxr-xr-x | abs/extra/remyth/remyth.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/abs/extra/remyth/remyth.html b/abs/extra/remyth/remyth.html new file mode 100755 index 0000000..4d1ddb3 --- /dev/null +++ b/abs/extra/remyth/remyth.html @@ -0,0 +1,30 @@ +<head> +<script type="text/javascript"> +function r() +{ + current_hostname=parent.location.hostname + top.frames["content"].location.href = ( "http://" + current_hostname + ":6544" ) ; + +} + +function express() +{ + current_hostname=parent.location.hostname + top.frames["content"].location.href = ( "http://" + current_hostname + ":6565" ) ; + + } + +function remyth() +{ + current_hostname=parent.location.hostname + top.frames["content"].location.href = ( "http://" + current_hostname + ":8088" ) ; + + } + + +</script> +</head> +<body onload="JavaScript:remyth();"> + +</body> +</html>
\ No newline at end of file |