mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 16:31:53 +00:00
Release 4.5.0
Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
parent
631021733b
commit
d516e2f8de
2
Doxyfile
2
Doxyfile
@ -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.4.0
|
PROJECT_NUMBER = 4.5.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
2
FOCUS
@ -1,4 +1,4 @@
|
|||||||
8 - Minor security fixes
|
4 - Minor feature enhancements
|
||||||
|
|
||||||
[ Appendix A: Release focus IDs ]
|
[ Appendix A: Release focus IDs ]
|
||||||
0 - N/A
|
0 - N/A
|
||||||
|
2
NEWS
2
NEWS
@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
. Internal change
|
. Internal change
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
4.5.0, unknown release date
|
4.5.0, released 2013-02-17
|
||||||
# Fix bug where stacked attribute transforms clobber each other;
|
# Fix bug where stacked attribute transforms clobber each other;
|
||||||
this also means it's no longer possible to override attribute
|
this also means it's no longer possible to override attribute
|
||||||
transforms in later modules. No internal code was using this
|
transforms in later modules. No internal code was using this
|
||||||
|
2
TODO
2
TODO
@ -32,7 +32,7 @@ Things to do as soon as possible:
|
|||||||
FUTURE VERSIONS
|
FUTURE VERSIONS
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
4.5 release [OMG CONFIG PONIES]
|
4.6 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)
|
||||||
|
14
WHATSNEW
14
WHATSNEW
@ -1,8 +1,6 @@
|
|||||||
HTML Purifier 4.4.0 is a minor security release addressing a security
|
HTML Purifier 4.5.0 is a minor bugfix and feature release, containing an
|
||||||
vulnerability associated with some optional functionality. It also
|
accumulation of changes over a year. CSS support has been extended to
|
||||||
contains an accumulation of new features and bugfixes over half a year.
|
support display:inline-block, white-space, underscores in font families,
|
||||||
New configuration options include %HTML.TargetBlank,
|
page-break-* CSS3 properties (when proprietary is enabled.) We now use
|
||||||
%HTML.AllowedComments, %HTML.AllowedCommentsRegexp, %HTML.SafeIframe,
|
SHA-1 to identify cached definitions, and the semantics of stacked
|
||||||
%URI.SafeIframeRegexp, %Core.EnableIDNA (requires PEAR Net_IDNA2 module and
|
attribute transforms has changed slightly.
|
||||||
doesn't work for PHP 5.0.5). We also now support the 'scope' attribute on
|
|
||||||
tables.
|
|
||||||
|
@ -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.4.0
|
* @version 4.5.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,
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 4.4.0 - Standards Compliant HTML Filtering
|
HTML Purifier 4.5.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.4.0';
|
public $version = '4.5.0';
|
||||||
|
|
||||||
/** Constant with version of HTML Purifier */
|
/** Constant with version of HTML Purifier */
|
||||||
const VERSION = '4.4.0';
|
const VERSION = '4.5.0';
|
||||||
|
|
||||||
/** Global configuration object */
|
/** Global configuration object */
|
||||||
public $config;
|
public $config;
|
||||||
|
@ -20,7 +20,7 @@ class HTMLPurifier_Config
|
|||||||
/**
|
/**
|
||||||
* HTML Purifier's version
|
* HTML Purifier's version
|
||||||
*/
|
*/
|
||||||
public $version = '4.4.0';
|
public $version = '4.5.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bool indicator whether or not to automatically finalize
|
* Bool indicator whether or not to automatically finalize
|
||||||
|
Loading…
Reference in New Issue
Block a user