0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-20 19:25:19 +00:00

Release 4.1.0.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
Edward Z. Yang 2010-04-26 18:31:40 -04:00
parent c1cbd9e565
commit f4c6e10ff7
9 changed files with 16 additions and 17 deletions

View File

@ -31,7 +31,7 @@ PROJECT_NAME = HTMLPurifier
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = 4.0.0 PROJECT_NUMBER = 4.1.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.

2
FOCUS
View File

@ -1,4 +1,4 @@
5 - Major feature enhancements 9 - Major security fixes
[ Appendix A: Release focus IDs ] [ Appendix A: Release focus IDs ]
0 - N/A 0 - N/A

2
NEWS
View File

@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
. Internal change . Internal change
========================== ==========================
4.1.0, unknown release date 4.1.0, released 2010-04-26
! Support proprietary height attribute on table element ! Support proprietary height attribute on table element
! Support YouTube slideshows that contain /cp/ in their URL. ! Support YouTube slideshows that contain /cp/ in their URL.
! Support for data: URI scheme; not enabled by default, add it using ! Support for data: URI scheme; not enabled by default, add it using

2
TODO
View File

@ -24,7 +24,7 @@ Things to do as soon as possible:
FUTURE VERSIONS FUTURE VERSIONS
--------------- ---------------
4.1 release [OMG CONFIG PONIES] 4.2 release [OMG CONFIG PONIES]
! Fix Printer. It's from the old days when we didn't have decent XML classes ! Fix Printer. It's from the old days when we didn't have decent XML classes
! Factor demo.php into a set of Printer classes, and then create a stub ! Factor demo.php into a set of Printer classes, and then create a stub
file for users here (inside the actual HTML Purifier library) file for users here (inside the actual HTML Purifier library)

View File

@ -1 +1 @@
4.0.0 4.1.0

View File

@ -1,7 +1,6 @@
HTML Purifier 4.0 is a major feature release focused on configuration HTML Purifier 4.1 is a major security release that fixes an XSS
It deprecates the $config->set('Ns', 'Directive', $value) syntax for vulnerability exploitable on Internet Explorer. It also contains
$config->set('Ns.Directive', $value); both syntaxes work but the a number of new features, including dramatically more flexible Flash
former will throw errors. There are also some new features: robust support, including %Output.FlashCompat to replace %HTML.SafeEmbed,
support for name/id, configuration inheritance, remove nbsp in optional support for the data: URI scheme and better HTML parsing
the RemoveEmpty autoformatter, userland configuration directives capabilities.
and configuration serialization.

View File

@ -7,7 +7,7 @@
* primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS * primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS
* FILE, changes will be overwritten the next time the script is run. * FILE, changes will be overwritten the next time the script is run.
* *
* @version 4.0.0 * @version 4.1.0
* *
* @warning * @warning
* You must *not* include any other HTML Purifier files before this file, * You must *not* include any other HTML Purifier files before this file,

View File

@ -19,7 +19,7 @@
*/ */
/* /*
HTML Purifier 4.0.0 - Standards Compliant HTML Filtering HTML Purifier 4.1.0 - Standards Compliant HTML Filtering
Copyright (C) 2006-2008 Edward Z. Yang Copyright (C) 2006-2008 Edward Z. Yang
This library is free software; you can redistribute it and/or This library is free software; you can redistribute it and/or
@ -55,10 +55,10 @@ class HTMLPurifier
{ {
/** Version of HTML Purifier */ /** Version of HTML Purifier */
public $version = '4.0.0'; public $version = '4.1.0';
/** Constant with version of HTML Purifier */ /** Constant with version of HTML Purifier */
const VERSION = '4.0.0'; const VERSION = '4.1.0';
/** Global configuration object */ /** Global configuration object */
public $config; public $config;

View File

@ -20,7 +20,7 @@ class HTMLPurifier_Config
/** /**
* HTML Purifier's version * HTML Purifier's version
*/ */
public $version = '4.0.0'; public $version = '4.1.0';
/** /**
* Bool indicator whether or not to automatically finalize * Bool indicator whether or not to automatically finalize