diff options
author | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
---|---|---|
committer | Alib <aliboba@free.fr> | 2010-03-15 17:56:22 +0100 |
commit | 438912c0c4a4075a5cd74cf9689451c9df4bbe34 (patch) | |
tree | 334e03bbba01b002a34d3cbf81ee7e600ec7bff6 /error.php | |
parent | a8012963c23e7e5eaf487ee9e192ae5c4d4ccff2 (diff) | |
download | istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.gz istreamdev-438912c0c4a4075a5cd74cf9689451c9df4bbe34.tar.bz2 |
New Jquery branch. Initial development version for istreamdev 1.0
Diffstat (limited to 'error.php')
-rwxr-xr-x | error.php | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/error.php b/error.php deleted file mode 100755 index 79f4648..0000000 --- a/error.php +++ /dev/null @@ -1,71 +0,0 @@ -<?php -include('includes/include.php'); -?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - -<head> -<meta content="yes" name="apple-mobile-web-app-capable" /> -<meta content="text/html; charset=utf8" http-equiv="Content-Type" /> -<meta content="minimum-scale=1.0, width=device-width, maximum-scale=0.6667, user-scalable=no" name="viewport" /> -<link href="css/style.css" rel="stylesheet" type="text/css" /> -<script src="javascript/functions.js" type="text/javascript"></script> -<script src="javascript/ajax.js" type="text/javascript"></script> -<title>iStreamdev</title> -<link href="images/startup.png" rel="apple-touch-startup-image" /> -<link rel="apple-touch-icon" href="images/istreamdev.png"/> -<script type="text/javascript"> -function updateOrientation() { - switch(window.orientation) { - case 0: - orient = "portrait"; - break; - case -90: - orient = "landscape"; - break; - case 90: - orient = "landscape"; - break; - case 180: - orient = "portrait"; - break; - } - document.body.setAttribute("orient", orient); - window.scrollTo(0, 1); - - } -function sendForm(formid) { - var frm; - frm = document.getElementById(formid); - frm.submit(); -} -</script> -</head> - - -<?php - print "<body onorientationchange=\"updateOrientation();\" onload=\"updateOrientation();\">\r\n"; - print "<div id=\"topbar\" class=\"transparent\">\r\n"; - print "<div id=\"leftnav\">\r\n"; - print "<a href=\"javascript:sendForm('stopstream');\">Back</a></div>\r\n"; - print "<div id=\"title\">iStream</div>\r\n"; - print "</div>\r\n"; - print "<div id=\"content\">\r\n"; - print " <span class=\"graytitle\">Stream error</span>\r\n"; - print " <ul class=\"pageitem\">\r\n"; - print " Streaming not started. Something went wrong. Perhaps VDR couldn't decode the channel."; - print "</div>\r\n"; - print " <form name=\"stopstream\" id=\"stopstream\" method=\"post\" action=\"index.php\"><input name =\"action\" type=\"hidden\" id=\"action\" value=\"stopstream\" /><input name=\"cat\" type=\"hidden\" id=\"cat\" value=\"{$_SESSION['currentcat']}\" /></form>\r\n"; - -?> - -<div id="footer"> - - iStreamdev version: <? print $isdversion; ?> -</div> - -</body> - -</html> - - |