<%
# PREP CACHES:
$u = $_COOKIE["c_uid"];
$tok = $_COOKIE["c_pass_token"];
if( $tok && $tok == md5( getPasswdForUser( $u ))) {
$dirty = 0;
$cache = rebuild_cache( $u, $cache, $dirty );
} else {
#echo "<!-- auth failed in prep-cache! -->";
}
if( $debug ) {
#print_r( $cache );
#echo "prep sees you as $u\n";
}
%>