mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 16:31:53 +00:00
Release 1.3.2.
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@621 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
18f7c85ebe
commit
a909632d2d
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.3.0
|
PROJECT_NUMBER = 1.3.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
|
||||||
|
8
NEWS
8
NEWS
@ -9,17 +9,21 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
. Internal change
|
. Internal change
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
1.4.0, unknown release date (around Christmas, hopefully)
|
1.4.0, unknown release date
|
||||||
(major feature release)
|
(major feature release)
|
||||||
|
|
||||||
1.3.2, unknown release date, may be dropped
|
1.3.3, unknown release date, may be dropped
|
||||||
(security/bugfix/minor feature release)
|
(security/bugfix/minor feature release)
|
||||||
|
|
||||||
|
1.3.2, released 2006-12-25
|
||||||
! HTMLPurifier object now accepts configuration arrays, no need to manually
|
! HTMLPurifier object now accepts configuration arrays, no need to manually
|
||||||
instantiate a configuration object
|
instantiate a configuration object
|
||||||
! Context object now accessible to outside
|
! Context object now accessible to outside
|
||||||
! Added enduser-youtube.html, explains how to embed YouTube videos. See
|
! Added enduser-youtube.html, explains how to embed YouTube videos. See
|
||||||
also corresponding smoketest preserveYouTube.php.
|
also corresponding smoketest preserveYouTube.php.
|
||||||
! Added purifyArray(), which takes a list of HTML and purifies it all
|
! Added purifyArray(), which takes a list of HTML and purifies it all
|
||||||
|
! Added static member variable $version to HTML Purifier with PHP-compatible
|
||||||
|
version number string.
|
||||||
- Fixed fatal error thrown by upper-cased language attributes
|
- Fixed fatal error thrown by upper-cased language attributes
|
||||||
- printDefinition.php: added labels, added better clarification
|
- printDefinition.php: added labels, added better clarification
|
||||||
. HTMLPurifier_Config::create() added, takes mixed variable and converts into
|
. HTMLPurifier_Config::create() added, takes mixed variable and converts into
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 1.3.1 - Standards Compliant HTML Filtering
|
HTML Purifier 1.3.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
|
||||||
@ -64,6 +64,8 @@ require_once 'HTMLPurifier/Encoder.php';
|
|||||||
class HTMLPurifier
|
class HTMLPurifier
|
||||||
{
|
{
|
||||||
|
|
||||||
|
var $version = '1.3.2';
|
||||||
|
|
||||||
var $config;
|
var $config;
|
||||||
|
|
||||||
var $lexer, $strategy, $generator;
|
var $lexer, $strategy, $generator;
|
||||||
|
Loading…
Reference in New Issue
Block a user