blob: 0b9f8edb7e0ef49ddf2bc069d5386a3aa4cf8492 [file] [log] [blame]
<?php
header("Expires: Thu, 01 Dec 2003 16:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
header("Content-Type: text/cache-manifest");
$manifestId = $_GET["manifestId"];
echo("CACHE MANIFEST\n");
echo("# " . $manifestId . "\n");
echo("page-with-manifest.php?manifestId=" . $manifestId . "\n");
if ($manifestId == "with-non-existing-file")
echo("non-existing-file\n");
?>