diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-18 17:25:40 +0100 |
commit | 84a7173ff812d7ed510ccf6568b791fbb464706f (patch) | |
tree | ad78d48ef9f4220817102bcd1d493bee8cdbd9b9 /themes/getstatus.php.bak | |
parent | 1bf6db40207a6e967f896bd3d9034337ce22b84a (diff) | |
parent | 816d55f57ec56f4f306585075ac43e011bcb9fea (diff) | |
download | istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.gz istreamdev-84a7173ff812d7ed510ccf6568b791fbb464706f.tar.bz2 |
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev:
clean themes rep
Diffstat (limited to 'themes/getstatus.php.bak')
-rwxr-xr-x | themes/getstatus.php.bak | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/themes/getstatus.php.bak b/themes/getstatus.php.bak deleted file mode 100755 index 368991b..0000000 --- a/themes/getstatus.php.bak +++ /dev/null @@ -1,30 +0,0 @@ -<?php -header('Content-type: application/json'); -$oldtree = null; -$time = time(); -$i = 0; -while((time() - $time) < 29) -{ - $tree = file_get_contents("status.txt"); - - if ($tree !== $oldtree ) - { - $i+=1; - print $tree; - ob_flush(); - flush(); - } - $data = json_decode($tree); - if ($data->status == "ready") - { - break; - } else if ($data->status == "error") - { - break; - } - $oldtree = $tree; - usleep(1000); - -} - -?> |