2009-01-16 13:58:38 +01:00
|
|
|
<?php
|
2009-11-19 10:46:07 +01:00
|
|
|
/**
|
|
|
|
* Disable error reporting
|
|
|
|
*
|
|
|
|
* Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging
|
|
|
|
*/
|
|
|
|
error_reporting(0);
|
2009-01-16 13:58:38 +01:00
|
|
|
|
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) )
|
2009-06-17 03:06:32 +02:00
|
|
|
return false;
|
2009-01-16 13:58:38 +01:00
|
|
|
|
|
|
|
return @file_get_contents($path);
|
|
|
|
}
|
|
|
|
|
2012-11-10 19:13:09 +01:00
|
|
|
$expires_offset = 31536000; // 1 year
|
2009-01-16 13:58:38 +01:00
|
|
|
|
|
|
|
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-11-19 10:46:07 +01:00
|
|
|
if ( isset($_GET['c']) && 1 == $_GET['c'] && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
|
2011-04-11 20:55:11 +02:00
|
|
|
&& false !== stripos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') && ( $file = get_file($basepath . '/wp-tinymce.js.gz') ) ) {
|
2009-11-19 10:46:07 +01:00
|
|
|
|
2009-01-16 13:58:38 +01:00
|
|
|
header('Content-Encoding: gzip');
|
2009-06-17 03:06:32 +02:00
|
|
|
echo $file;
|
2009-01-16 13:58:38 +01:00
|
|
|
} else {
|
2010-05-20 23:05:16 +02:00
|
|
|
echo get_file($basepath . '/tiny_mce.js');
|
Add a sane, inclusive HTML element/attribute schema to TinyMCE.
TinyMCE 3.4.x (shipped with WordPress 3.4.x) had an HTML4-based schema definition, with HTML5 elements added to it. TinyMCE 3.5.x (shipping, again coincidentally, with WordPress 3.5) allows for HTML5 schema support, which also provides for full HTML5 attribute support. The problem is its HTML5 schema excludes all HTML4 elements and attributes that were dropped in the HTML5 spec, which is unacceptable behavior.
This "duck punch" of TinyMCE's Schema.js file creates a new, sane schema. It is TinyMCE's HTML4 and HTML5 schema definitions recursively merged.
Objects are not whitelisted in either schema to allow for embed elements as child nodes, so object, param, and embed remain separately whitelisted in the WordPress TinyMCE plugin. Our attempts to add other attributes in said plugin is now superceded.
props koopersmith, azaozz.
fixes #22790.
git-svn-id: https://develop.svn.wordpress.org/trunk@23120 602fd350-edb4-49c9-b593-d223f7449a82
2012-12-07 12:26:25 +01:00
|
|
|
echo get_file($basepath . '/wp-tinymce-schema.js');
|
2009-01-16 13:58:38 +01:00
|
|
|
}
|
|
|
|
exit;
|