first working version of streaming for windows iframe based
[xynt.git] / web / winstream.php
diff --git a/web/winstream.php b/web/winstream.php
new file mode 100644 (file)
index 0000000..f083907
--- /dev/null
@@ -0,0 +1,26 @@
+<html>
+<head>
+<script type="text/javascript" src="xynt/xynt-commons.js"></script>
+<script type="text/javascript" src="xynt/xynt-console.js"></script>
+<script type="text/javascript"><!--
+     var allmythings="BEGIN";
+     var ifra;
+
+function check_and_set() {
+    $('cont').innerHTML = allmythings;
+    // console.log(allmythings);
+}
+ window.onload = function () {
+     ifra = document.createElement("iframe");
+     ifra.style.visibility = "hidden";
+     document.body.appendChild(ifra);
+     ifra.contentWindow.location.href = 'winstream_rd.php';
+     setInterval(check_and_set, 500);
+ }
+
+     //-->
+</script>
+<body>
+<div id="cont">INIT</div>
+</body>
+</html>