Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 378 → Rev 379

/trunk/setup/index.php
139,7 → 139,7
// echo '<p><a href="../">Run the OIDplus system</a></p>';
echo '</div>';
 
echo '<br><br><br>';
echo '<br><br><br>'; // because of iPhone Safari
 
echo '</body>';
echo '</html>';
/trunk/setup/setup.min.css.php
64,12 → 64,5
 
# ---
 
$etag = md5($out);
header("Etag: $etag");
header('Content-MD5: '.$etag); // RFC 2616 clause 14.15
if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && (trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag)) {
header("HTTP/1.1 304 Not Modified");
} else {
header('Content-Type:text/css');
echo $out;
}
httpOutWithETag($out, 'text/css', 'oidplus_setup.css');
 
/trunk/setup/setup.min.js.php
82,12 → 82,4
 
# ---
 
$etag = md5($out);
header("Etag: $etag");
header('Content-MD5: '.$etag); // RFC 2616 clause 14.15
if (isset($_SERVER['HTTP_IF_NONE_MATCH']) && (trim($_SERVER['HTTP_IF_NONE_MATCH']) == $etag)) {
header("HTTP/1.1 304 Not Modified");
} else {
header('Content-Type:application/javascript');
echo $out;
}
httpOutWithETag($out, 'application/javascript', 'oidplus_setup.js');