ctx_old attribute removed (we will use ctx_old_len only), url_complete js function...
[xynt.git] / web / test-hs.php
index 5f48ac3..8711ef9 100644 (file)
@@ -4,18 +4,49 @@
 <script type="text/javascript" src="xynt/xynt-console.js"></script>
 <script type="text/javascript" src="xynt/xynt-http-streaming.js"></script>
 <script type="text/javascript"><!--
-var allmythings="BEGIN";
+var gst = null;
 
+<?php
+    if ($action != 'stop') {
+?>
 window.onload = function () {
     var hs;
+    var sess;
+
+    sess = '<?php
+    if (!isset($sess)) {
+        $sess = md5(mt_rand());
+    }
+    printf("%s", $sess);
+?>';
     
-    hs = new http_streaming(document);
+    createCookie('sess', sess, 24*365,cookiepath);
+    gst = new globst();
+    hs = new http_streaming(window, gst, sess, console);
     hs.start('test-hs-rd.php');
+};
+<?php
+    }
+?>
+
+window.onkeypress = function () {
+    console.log("win kpress");
 }
-    
 //-->
 </script>
-<body>
+<body onabort = "console.log('abort');" onunload = "console.log('unload');" onerror = "console.log('error');" onkeypress = "console.log('keypress');">
 <div id="cont">INIT</div>
+<?php
+    if ($action != 'stop') {
+?>
+    <a href="test-hs.php?action=stop">STOP</a>
+<?php
+    } else {
+?>
+    <a href="test-hs.php?action=start">START</a>
+<?php
+    }
+?>
+
 </body>
 </html>