2009-01-16 13:58:38 +01:00
|
|
|
<?php
|
|
|
|
|
2009-01-17 15:08:15 +01:00
|
|
|
$basepath = dirname(__FILE__);
|
|
|
|
|
2009-01-16 13:58:38 +01:00
|
|
|
function get_file($path) {
|
|
|
|
|
|
|
|
if ( function_exists('realpath') )
|
|
|
|
$path = realpath($path);
|
|
|
|
|
|
|
|
if ( ! $path || ! @is_file($path) )
|
|
|
|
return '';
|
|
|
|
|
|
|
|
return @file_get_contents($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
$expires_offset = 31536000;
|
|
|
|
|
|
|
|
header('Content-Type: application/x-javascript; charset=UTF-8');
|
|
|
|
header('Vary: Accept-Encoding'); // Handle proxies
|
|
|
|
header('Expires: ' . gmdate( "D, d M Y H:i:s", time() + $expires_offset ) . ' GMT');
|
|
|
|
header("Cache-Control: public, max-age=$expires_offset");
|
|
|
|
|
2009-02-01 10:45:24 +01:00
|
|
|
if ( isset($_GET['c']) && 1 == $_GET['c'] && false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip') ) {
|
2009-01-16 13:58:38 +01:00
|
|
|
header('Content-Encoding: gzip');
|
2009-01-17 15:08:15 +01:00
|
|
|
echo get_file($basepath . '/wp-tinymce.js.gz');
|
2009-01-16 13:58:38 +01:00
|
|
|
} else {
|
2009-01-17 15:08:15 +01:00
|
|
|
echo get_file($basepath . '/wp-tinymce.js');
|
2009-01-16 13:58:38 +01:00
|
|
|
}
|
|
|
|
exit;
|