summaryrefslogtreecommitdiff
path: root/themes/getstatus.php.bak
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-18 17:25:40 +0100
committerTheTroll <trolldev@gmail.com>2010-03-18 17:25:40 +0100
commit84a7173ff812d7ed510ccf6568b791fbb464706f (patch)
treead78d48ef9f4220817102bcd1d493bee8cdbd9b9 /themes/getstatus.php.bak
parent1bf6db40207a6e967f896bd3d9034337ce22b84a (diff)
parent816d55f57ec56f4f306585075ac43e011bcb9fea (diff)
downloadistreamdev-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-xthemes/getstatus.php.bak30
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);
-
-}
-
-?>