mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 16:31:53 +00:00
Update Modx plugin to work with HTML Purifier 3.1.0.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1801 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
643ed1bddc
commit
e901d832ab
2
TODO
2
TODO
@ -14,8 +14,6 @@ afraid to cast your vote for the next feature to be implemented!
|
|||||||
- Investigate how early internal structures can be accessed; this would
|
- Investigate how early internal structures can be accessed; this would
|
||||||
prevent structures from being parsed and serialized multiple times.
|
prevent structures from being parsed and serialized multiple times.
|
||||||
- Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)
|
- Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)
|
||||||
- Merge bugfixes to PHP4
|
|
||||||
- Upgrade Modx module for HTML Purifier 3.1 (HTMLPurifier.php -> HTMLPurifier.auto.php)
|
|
||||||
- Built-in support for target="_blank" on all external links
|
- Built-in support for target="_blank" on all external links
|
||||||
- Make Phorum hide emails
|
- Make Phorum hide emails
|
||||||
- Implement SecureMunge for resources too
|
- Implement SecureMunge for resources too
|
||||||
|
@ -35,9 +35,7 @@ $e = &$modx->Event;
|
|||||||
if ($e->name == 'OnBeforeDocFormSave') {
|
if ($e->name == 'OnBeforeDocFormSave') {
|
||||||
global $content;
|
global $content;
|
||||||
|
|
||||||
set_include_path('../assets/plugins/htmlpurifier/library/'
|
include_once '../assets/plugins/htmlpurifier/library/HTMLPurifier.auto.php';
|
||||||
. PATH_SEPARATOR . get_include_path());
|
|
||||||
include_once 'HTMLPurifier.php';
|
|
||||||
$purifier = new HTMLPurifier();
|
$purifier = new HTMLPurifier();
|
||||||
|
|
||||||
static $magic_quotes = null;
|
static $magic_quotes = null;
|
||||||
@ -89,3 +87,24 @@ HTML Purifier properly like this:
|
|||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
$config->set('Core', 'Encoding', 'ISO-8859-1'); // or whatever encoding
|
$config->set('Core', 'Encoding', 'ISO-8859-1'); // or whatever encoding
|
||||||
$purifier = new HTMLPurifier($config);
|
$purifier = new HTMLPurifier($config);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
5. Known Bugs
|
||||||
|
|
||||||
|
'rn' characters sometimes mysteriously appear after purification. We are
|
||||||
|
currently investigating this issue. See: <http://htmlpurifier.org/phorum/read.php?3,1866>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
6. See Also
|
||||||
|
|
||||||
|
A modified version of Jot 1.1.3 is available, which integrates with HTML
|
||||||
|
Purifier. You can check it out here: <http://modxcms.com/forums/index.php/topic,25621.msg161970.html>
|
||||||
|
|
||||||
|
|
||||||
|
X. Changelog
|
||||||
|
|
||||||
|
2008-06-16
|
||||||
|
- Updated code to work with 3.1.0 and later
|
||||||
|
- Add Known Bugs and See Also section
|
||||||
|
Loading…
Reference in New Issue
Block a user