0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-18 11:41:52 +00:00

Release 4.4.0

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
Edward Z. Yang 2012-01-18 19:22:27 -05:00
parent 70028f83d6
commit 17af0e4fc1
9 changed files with 20 additions and 20 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.3.0 PROJECT_NUMBER = 4.4.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 @@
9 - Major security fixes 8 - Minor 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.4.0, unknown release date 4.4.0, released 2012-01-18
# Removed PEARSax3 handler. # Removed PEARSax3 handler.
# URI.Munge now munges URIs inside the same host that go from https # URI.Munge now munges URIs inside the same host that go from https
to http. Reported by Neike Taika-Tessaro. to http. Reported by Neike Taika-Tessaro.

View File

@ -1 +1 @@
4.3.0 4.4.0

View File

@ -1,8 +1,8 @@
HTML Purifier 4.3.0 is a major security release addressing various HTML Purifier 4.4.0 is a minor security release addressing a security
security vulnerabilities related to user-submitted code and legitimate vulnerability associated with some optional functionality. It also
client-side scripts. It also contains an accumulation of new features contains an accumulation of new features and bugfixes over half a year.
and bugfixes over half a year. New configuration options include New configuration options include %HTML.TargetBlank,
%CSS.Trusted, %CSS.AllowedFonts and %Cache.SerializerPermissions. %HTML.AllowedComments, %HTML.AllowedCommentsRegexp, %HTML.SafeIframe,
There is a backwards-incompatible API change for customized raw %URI.SafeIframeRegexp, %Core.EnableIDNA (requires PEAR Net_IDNA2 module and
definitions, see <http://htmlpurifier.org/docs/enduser-customize.html#optimized> doesn't work for PHP 5.0.5). We also now support the 'scope' attribute on
for details. tables.

View File

@ -411,17 +411,17 @@
</directive> </directive>
<directive id="Filter.ExtractStyleBlocks.TidyImpl"> <directive id="Filter.ExtractStyleBlocks.TidyImpl">
<file name="HTMLPurifier/Filter/ExtractStyleBlocks.php"> <file name="HTMLPurifier/Filter/ExtractStyleBlocks.php">
<line>50</line> <line>54</line>
</file> </file>
</directive> </directive>
<directive id="Filter.ExtractStyleBlocks.Scope"> <directive id="Filter.ExtractStyleBlocks.Scope">
<file name="HTMLPurifier/Filter/ExtractStyleBlocks.php"> <file name="HTMLPurifier/Filter/ExtractStyleBlocks.php">
<line>74</line> <line>78</line>
</file> </file>
</directive> </directive>
<directive id="Filter.ExtractStyleBlocks.Escaping"> <directive id="Filter.ExtractStyleBlocks.Escaping">
<file name="HTMLPurifier/Filter/ExtractStyleBlocks.php"> <file name="HTMLPurifier/Filter/ExtractStyleBlocks.php">
<line>272</line> <line>276</line>
</file> </file>
</directive> </directive>
<directive id="HTML.SafeIframe"> <directive id="HTML.SafeIframe">

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.3.0 * @version 4.4.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.3.0 - Standards Compliant HTML Filtering HTML Purifier 4.4.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.3.0'; public $version = '4.4.0';
/** Constant with version of HTML Purifier */ /** Constant with version of HTML Purifier */
const VERSION = '4.3.0'; const VERSION = '4.4.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.3.0'; public $version = '4.4.0';
/** /**
* Bool indicator whether or not to automatically finalize * Bool indicator whether or not to automatically finalize