9edd50b20875ef6bf028237c6ba4a96ccca09ad5
[xynt.git] / web / test-hs-rd.php
1 <html>
2 <head>
3 <script type="text/javascript" src="xynt/xynt-console.js"></script>
4 <script type="text/javascript" src="xynt/xynt-http-streaming-ifra.js"></script>
5 <script type="text/javascript">
6 var http_streaming = "ready";
7 var ctx_new = "";
8
9 window.onload = function () { if (http_streaming != "ready") http_streaming.reload(); };
10 </script> 
11 <?php
12 function mop_flush()
13 {
14     ob_flush();
15     flush();
16 }
17
18 function main()
19 {
20     $s = "";
21     for ($i = 0 ; $i < 4096 ; $i++) {
22         $s .= rand(65,90);
23     }
24     for ($i = 0 ; $i < 15 ; $i++) {
25         // if ($i == 0)
26         //    sleep(1);
27      
28         if ($i != 8) {
29             printf("<script id='hs%d' type='text/javascript'>
30 push(\"$('cont').innerHTML = '%d';\");
31 </script>", $i, $i);
32         }
33         else {
34             // exit();
35             // sleep(30);
36         }
37         if ($i == 0)
38             printf("<!-- %s -->", $s);
39         mop_flush();
40         usleep(1000000);
41     }
42 }
43 main();
44 ?>
45 </head>
46 <body>
47 </body>
48 </html>