blob: 264959a8804e721642cf7df020dbf2e278c86ab8 [file] [log] [blame]
<?php
require_once '../../resources/portabilityLayer.php';
$tmpFile = sys_get_temp_dir() . "/" . "appcache_manifest_counter";
function getCount($file)
{
if (!file_exists($file)) {
file_put_contents($file, "0");
return "0";
}
return file_get_contents($file);
}
function stepCounter($file)
{
if (file_exists($file)) {
$value = getCount($file);
file_put_contents($file, ++$value);
}
}
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");
if ("step" == $_GET['command'])
stepCounter($tmpFile);
print("CACHE MANIFEST\n");
print("# version " . getCount($tmpFile) . "\n");
print("counter.php\n");
print("uncacheable-resource.php\n"); // with Cache-control: no-store
print("ORIGIN-TRIAL:\n");
# Generate this token with the command:
# tools/origin_trials/generate_token.py http://127.0.0.1:8000 AppCache --expire-days=2000
print("AnwB3aSh6U8pmYtO/AzzxELSwk8BRJoj77nUnCq6u3N8LMJKlX/ImydQmXn3SgE0a+8RyowLbV835tXQHJMHuAEAAABQeyJvcmlnaW4iOiAiaHR0cDovLzEyNy4wLjAuMTo4MDAwIiwgImZlYXR1cmUiOiAiQXBwQ2FjaGUiLCAiZXhwaXJ5IjogMTc2MTE3NjE5OH0=\n");
print("NETWORK:\n");
print("versioned-manifest-with-token.php?command=\n");
?>