mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
Release 2.1.2.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1402 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
5b3c8c5534
commit
b9d886d53b
2
Doxyfile
2
Doxyfile
@ -4,7 +4,7 @@
|
|||||||
# Project related configuration options
|
# Project related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
PROJECT_NAME = HTML Purifier
|
PROJECT_NAME = HTML Purifier
|
||||||
PROJECT_NUMBER = 2.1.1
|
PROJECT_NUMBER = 2.1.2
|
||||||
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
|
||||||
|
3
NEWS
3
NEWS
@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
. Internal change
|
. Internal change
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
2.1.2, unknown release date
|
2.1.2, released 2007-09-03
|
||||||
! Implemented Object module for trusted users
|
! Implemented Object module for trusted users
|
||||||
! Implemented experimental HTML5 parsing mode using PH5P. To use, add
|
! Implemented experimental HTML5 parsing mode using PH5P. To use, add
|
||||||
this to your code:
|
this to your code:
|
||||||
@ -17,6 +17,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
$config->set('Core', 'LexerImpl', 'PH5P');
|
$config->set('Core', 'LexerImpl', 'PH5P');
|
||||||
Note that this Lexer introduces some classes not in the HTMLPurifier
|
Note that this Lexer introduces some classes not in the HTMLPurifier
|
||||||
namespace. Also, this is PHP5 only.
|
namespace. Also, this is PHP5 only.
|
||||||
|
! CSS property border-spacing implemented
|
||||||
- Fix non-visible parsing error in DirectLex with empty tags that have
|
- Fix non-visible parsing error in DirectLex with empty tags that have
|
||||||
slashes inside attribute values.
|
slashes inside attribute values.
|
||||||
- Fix typo in CSS definition: border-collapse:seperate; was incorrectly
|
- Fix typo in CSS definition: border-collapse:seperate; was incorrectly
|
||||||
|
18
WHATSNEW
18
WHATSNEW
@ -1,10 +1,8 @@
|
|||||||
In version 2.1, HTML Purifier's URI validation and filtering handling
|
Version 2.1.2 is a mix of experimental features and stability updates.
|
||||||
system has been revamped with a new, extensible URIFilter system. Also
|
Among new features: an Object module for trusted users, support for the
|
||||||
notable features include preservation of emoticons in PHP5 with
|
CSS property 'border-spacing', and HTML 5 style parsing using PH5P.
|
||||||
%Core.AggressivelyFixLt, standalone and lite download versions,
|
Bug fixes ihave resolved a few obscure issues including border-collapse:seperate,
|
||||||
transforming relative URIs to absolute URIs, Ruby in XHTML 1.1, a Phorum
|
a DirectLex parsing error, broken HTML in printDefinition.php, and problems
|
||||||
mod, and UTF-8 font names. Notable bug-fixes include refinement of
|
with the experimental standalone distribution. Also, there were large
|
||||||
the auto-paragraphing algorithm (no longer experimental), better XHTML
|
amounts of behind-the-scenes refactoring and the removal of URIScheme
|
||||||
1.1 support and the removal of the contents of <style> elements. Version
|
inclusion reflection.
|
||||||
2.1.1 amends a few bugs in some of newly introduced features, namely
|
|
||||||
running the standalone download version in PHP4 and %URI.MakeAbsolute.
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 2.1.1 - Standards Compliant HTML Filtering
|
HTML Purifier 2.1.2 - 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.1.1';
|
var $version = '2.1.2';
|
||||||
|
|
||||||
var $config;
|
var $config;
|
||||||
var $filters;
|
var $filters;
|
||||||
|
@ -42,7 +42,7 @@ class HTMLPurifier_Config
|
|||||||
/**
|
/**
|
||||||
* HTML Purifier's version
|
* HTML Purifier's version
|
||||||
*/
|
*/
|
||||||
var $version = '2.1.1';
|
var $version = '2.1.2';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Two-level associative array of configuration directives
|
* Two-level associative array of configuration directives
|
||||||
|
Loading…
Reference in New Issue
Block a user