0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-12-22 16:31:53 +00:00

Release 2.1.0.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1351 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2007-08-03 03:04:40 +00:00
parent a40e16dd2e
commit 350d8301dd
6 changed files with 14 additions and 18 deletions

View File

@ -4,7 +4,7 @@
# Project related configuration options # Project related configuration options
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
PROJECT_NAME = HTML Purifier PROJECT_NAME = HTML Purifier
PROJECT_NUMBER = 2.0.1 PROJECT_NUMBER = 2.1.0
OUTPUT_DIRECTORY = "C:/Documents and Settings/Edward/My Documents/My Webs/htmlpurifier/docs/doxygen" OUTPUT_DIRECTORY = "C:/Documents and Settings/Edward/My Documents/My Webs/htmlpurifier/docs/doxygen"
CREATE_SUBDIRS = NO CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English OUTPUT_LANGUAGE = English

2
NEWS
View File

@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
. Internal change . Internal change
========================== ==========================
2.1.0, unknown release date 2.1.0, released 2007-08-02
# flush-htmldefinition-cache.php superseded in favor of a generic # flush-htmldefinition-cache.php superseded in favor of a generic
flush-definition-cache.php script, you can clear a specific cache flush-definition-cache.php script, you can clear a specific cache
by passing its name as a parameter to the script by passing its name as a parameter to the script

View File

@ -1 +1 @@
2.0.1 2.1.0

View File

@ -1,12 +1,8 @@
The 2.0.1 release introduces a number of stability and usability fixes, In version 2.1, HTML Purifier's URI validation and filtering handling
as well as a number of (disabled by default) experimental features. The system has been revamped with a new, extensible URIFilter system. Also
security-minded should note that a reflected XSS vulnerability was patched notable features include preservation of emoticons in PHP5 with
in smoketests/configForm.php; if you cannot upgrade immediately, please %Core.AggressivelyFixLt, standalone and lite download versions,
delete that file (if that directory is not publically accessible, there transforming relative URIs to absolute URIs, Ruby in XHTML 1.1, a Phorum
is no security risk). The maintenance changes include more helpful file mod, and UTF-8 font names. Notable bug-fixes include refinement of
permissions errors, internal newline normalization, reordered includes the auto-paragraphing algorithm (no longer experimental), better XHTML
to prevent a missing class definition in some setups, and better cache 1.1 support and the removal of the contents of <style> elements.
revision and id handling. The two experimental features are auto-formatting
(auto-paragraphing and linkification) and error collection, these can
be enabled with %AutoFormat.AutoParagraph, %AutoFormat.Linkify and
%Core.CollectErrors respectively.

View File

@ -22,7 +22,7 @@
*/ */
/* /*
HTML Purifier 2.0.1 - Standards Compliant HTML Filtering HTML Purifier 2.1.0 - Standards Compliant HTML Filtering
Copyright (C) 2006 Edward Z. Yang Copyright (C) 2006 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
@ -77,7 +77,7 @@ This directive has been available since 2.0.0.
class HTMLPurifier class HTMLPurifier
{ {
var $version = '2.0.1'; var $version = '2.1.0';
var $config; var $config;
var $filters; var $filters;

View File

@ -42,7 +42,7 @@ class HTMLPurifier_Config
/** /**
* HTML Purifier's version * HTML Purifier's version
*/ */
var $version = '2.0.1'; var $version = '2.1.0';
/** /**
* Two-level associative array of configuration directives * Two-level associative array of configuration directives