blob: bf0974298512c090cc4c71ff865dfb337901f04e [file] [log] [blame]
<?php
if (isset($_COOKIE['scope']) and $_COOKIE['scope'] == 'manifest') {
header('Content-Type: text/html; ' . $_COOKIE['scope']);
print("CACHE MANIFEST\n");
print("/appcache/resources/simple.txt\n");
print("/appcache/resources/scope2/cookie-protected-script.php\n");
print("/appcache/resources/cookie-protected-script.php\n");
return;
}
header('HTTP/1.0 404 Not Found');
header('Content-Type: text/html; ' . $_COOKIE['scope']);
?>