mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-12 16:38:40 +00:00
Release 1.6.1.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1025 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
c5e33416d3
commit
f4e4c1556d
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 = 1.6.0
|
PROJECT_NUMBER = 1.6.1
|
||||||
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
|
||||||
|
12
NEWS
12
NEWS
@ -11,12 +11,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
|
|
||||||
1.7.0, unknown release date
|
1.7.0, unknown release date
|
||||||
|
|
||||||
1.6.1, unknown release date
|
1.6.1, released 2007-05-05
|
||||||
! DirectLex now preserves text in which a < bracket is followed by
|
|
||||||
a non-alphanumeric character. This means that certain emoticons
|
|
||||||
are now preserved.
|
|
||||||
! %Core.RemoveInvalidImg is now operational, when set to false invalid
|
|
||||||
images will hang around with an empty src
|
|
||||||
! Support for more deprecated attributes via transformations:
|
! Support for more deprecated attributes via transformations:
|
||||||
+ hspace and vspace in img
|
+ hspace and vspace in img
|
||||||
+ size and noshade in hr
|
+ size and noshade in hr
|
||||||
@ -24,6 +19,11 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
+ clear in br
|
+ clear in br
|
||||||
+ align in caption, table, img and hr
|
+ align in caption, table, img and hr
|
||||||
+ type in ul, ol and li
|
+ type in ul, ol and li
|
||||||
|
! DirectLex now preserves text in which a < bracket is followed by
|
||||||
|
a non-alphanumeric character. This means that certain emoticons
|
||||||
|
are now preserved.
|
||||||
|
! %Core.RemoveInvalidImg is now operational, when set to false invalid
|
||||||
|
images will hang around with an empty src
|
||||||
! target attribute in a tag supported, use %Attr.AllowedFrameTargets
|
! target attribute in a tag supported, use %Attr.AllowedFrameTargets
|
||||||
to enable
|
to enable
|
||||||
! CSS property white-space now allows nowrap (supported in all modern
|
! CSS property white-space now allows nowrap (supported in all modern
|
||||||
|
12
WHATSNEW
12
WHATSNEW
@ -1,5 +1,7 @@
|
|||||||
The 1.6.0 release, code-named Long-Overdue, contains added support
|
The 1.6.1 release, code-named 'Ach! We missed something! Run!', completes
|
||||||
for a number of deprecated attributes HTML Purifier should have
|
HTML Purifier's roster of attribute transformations. It also implements
|
||||||
had from the very beginning, including the name, bgcolor, border,
|
a number of minor features (such as better font transformations, smarter
|
||||||
width and height attributes. The CSS property 'height',
|
HTML parsing, the CSS property 'white-space' and XHTML 1.1), a few bug
|
||||||
rel and rev attributes, ID blacklist regexps are also available.
|
fixes (most notably fixed __autoload compatibility issues) and a ton
|
||||||
|
of refactoring. 1.6 was for things that absolutely could not wait: this
|
||||||
|
release, developed in a more leisurely pace, fills in the gaps.
|
@ -22,7 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 1.6.0 - Standards Compliant HTML Filtering
|
HTML Purifier 1.6.1 - 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
|
||||||
@ -64,7 +64,7 @@ require_once 'HTMLPurifier/Encoder.php';
|
|||||||
class HTMLPurifier
|
class HTMLPurifier
|
||||||
{
|
{
|
||||||
|
|
||||||
var $version = '1.6.0';
|
var $version = '1.6.1';
|
||||||
|
|
||||||
var $config;
|
var $config;
|
||||||
var $filters;
|
var $filters;
|
||||||
|
Loading…
Reference in New Issue
Block a user