mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 15:28:40 +00:00
Release 3.1.0rc1
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1672 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
4fe475c57f
commit
8fdf8c2e44
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 = 3.0.0
|
PROJECT_NUMBER = 3.1.0rc1
|
||||||
|
|
||||||
# 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
NEWS
2
NEWS
@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
. Internal change
|
. Internal change
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
3.1.0, unknown release date
|
3.1.0rc1, released 2008-04-22
|
||||||
# Autoload support added. Internal require_once's removed in favor of an
|
# Autoload support added. Internal require_once's removed in favor of an
|
||||||
explicit require list or autoloading. To use HTML Purifier,
|
explicit require list or autoloading. To use HTML Purifier,
|
||||||
you must now either use HTMLPurifier.auto.php
|
you must now either use HTMLPurifier.auto.php
|
||||||
|
18
WHATSNEW
18
WHATSNEW
@ -1,10 +1,8 @@
|
|||||||
Release 3.0.0 is the first release of 2008 and also HTML Purifier's first
|
Release 3.1.0rc1 is a release candidate aimed primarily at ironing out bugs
|
||||||
PHP 5 only release. The 2.1 series will still be supported for bug and
|
in HTML Purifier's shiny new __autoload system. There are lots of new features,
|
||||||
security fixes, but will not get new features. This release a number of
|
however; some notable ones include support for the !important CSS modifier,
|
||||||
improvements in CSS handling, including the filter
|
display and visibility CSS properties with %CSS.AllowTricky, marquee
|
||||||
HTMLPurifier_Filter_ExtractStyleBlocks which integrates HTML Purifier with
|
with %HTML.Proprietary (had you scared for a moment, hmm?), a kses() wrapper,
|
||||||
CSSTidy for cleaning style sheets, contains experimental support for
|
%CSS.AllowedProperties, %HTML.ForbiddenAttributes and %HTML.ForbiddenElements
|
||||||
proprietary CSS properties with %CSS.Proprietary, case-insensitive
|
and a totally revamped ConfigDoc system. And of course, the usual slew of
|
||||||
CSS properties, and more lenient hexadecimal color codes. Also, all code
|
bugfixes.
|
||||||
has been upgraded to full PHP 5 which is E_STRICT clean for all versions
|
|
||||||
of PHP 5 (including the 5.0 series).
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
HTML Purifier 3.0.0 - Standards Compliant HTML Filtering
|
HTML Purifier 3.1.0rc1 - 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
|
||||||
@ -57,7 +57,7 @@ class HTMLPurifier
|
|||||||
{
|
{
|
||||||
|
|
||||||
/** Version of HTML Purifier */
|
/** Version of HTML Purifier */
|
||||||
public $version = '3.0.0';
|
public $version = '3.1.0rc1';
|
||||||
|
|
||||||
/** 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 = '3.0.0';
|
public $version = '3.1.0rc1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bool indicator whether or not to automatically finalize
|
* Bool indicator whether or not to automatically finalize
|
||||||
|
Loading…
Reference in New Issue
Block a user