Skip to content

Commit

Permalink
Release 3.3.0.
Browse files Browse the repository at this point in the history
Signed-off-by: Edward Z. Yang <[email protected]>
  • Loading branch information
Edward Z. Yang committed Feb 16, 2009
1 parent e802065 commit e9f529e
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = HTMLPurifier
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = 3.2.0
PROJECT_NUMBER = 3.3.0

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion FOCUS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
5 - Major feature enhancements
7 - Major bugfixes

[ Appendix A: Release focus IDs ]
0 - N/A
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
. Internal change
==========================

3.3.0, unknown release date
3.3.0, released 2009-02-16
! Implement CSS property 'overflow' when %CSS.AllowTricky is true.
! Implement generic property list classess
- Fix bug with testEncodingSupportsASCII() algorithm when iconv() implementation
Expand Down
10 changes: 5 additions & 5 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ afraid to cast your vote for the next feature to be implemented!
FUTURE VERSIONS
---------------

3.3 release [It's All About Trust] (floating)
4.1 release [It's All About Trust] (floating)
# Implement untrusted, dangerous elements/attributes
# Implement IDREF support (harder than it seems, since you cannot have
IDREFs to non-existent IDs)
# Frameset XHTML 1.0 and HTML 4.01 doctypes
- Implement <area>
- Figure out how to simultaneously set %CSS.Trusted and %HTML.Trusted (?)

3.4 release [Error'ed]
4.2 release [Error'ed]
# Error logging for filtering/cleanup procedures
- XSS-attempt detection--certain errors are flagged XSS-like

3.5 release [Do What I Mean, Not What I Say]
4.3 release [Do What I Mean, Not What I Say]
# Additional support for poorly written HTML
- Microsoft Word HTML cleaning (i.e. MsoNormal, but research essential!)
- Friendly strict handling of <address> (block -> <br>)
Expand All @@ -48,7 +48,7 @@ FUTURE VERSIONS
dupe detector would also need to detect the suffix as well)
- Externalize inline CSS to promote clean HTML, proposed by Sander Tekelenburg

4.0 release [Beyond HTML]
5.0 release [Beyond HTML]
# Legit token based CSS parsing (will require revamping almost every
AttrDef class). Probably will use CSSTidy class?
# More control over allowed CSS properties using a modularization
Expand All @@ -58,7 +58,7 @@ FUTURE VERSIONS
- Convert RTL/LTR override characters to <bdo> tags, or vice versa on demand.
Also, enable disabling of directionality

5.0 release [To XML and Beyond]
6.0 release [To XML and Beyond]
- Extended HTML capabilities based on namespacing and tag transforms (COMPLEX)
- Hooks for adding custom processors to custom namespaced tags and
attributes, offer default implementation
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.3.0
12 changes: 6 additions & 6 deletions WHATSNEW
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HTML Purifier 3.2.0 is an amalgamation of new features and fixes that
have accumulated over a four month period. Some notable features
include %AutoFormat.RemoveEmpty, column tracking for tokens,
%AutoFormat.DisplayLinkURI and %Attr.DefaultImageAlt. There were also
major improvements to the test suite interface, error collection output
and the auto-formatter framework.
HTML Purifier 3.3.0 is fixes a number of obscure bugs reported and fixed
over a four month period. It is probably the last release in the 3.x
series. Notable new features include support for the overflow CSS
property; notable bugfixes include fixed YouTube rendering in certain
versions of Firefox, CSSDefinition Printer, improved early PHP support
and bugs in iconv.
2 changes: 1 addition & 1 deletion library/HTMLPurifier.includes.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* primary concern and you are using an opcode cache. PLEASE DO NOT EDIT THIS
* FILE, changes will be overwritten the next time the script is run.
*
* @version 3.2.0
* @version 3.3.0
*
* @warning
* You must *not* include any other HTML Purifier files before this file,
Expand Down
6 changes: 3 additions & 3 deletions library/HTMLPurifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

/*
HTML Purifier 3.2.0 - Standards Compliant HTML Filtering
HTML Purifier 3.3.0 - Standards Compliant HTML Filtering
Copyright (C) 2006-2008 Edward Z. Yang
This library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -55,10 +55,10 @@ class HTMLPurifier
{

/** Version of HTML Purifier */
public $version = '3.2.0';
public $version = '3.3.0';

/** Constant with version of HTML Purifier */
const VERSION = '3.2.0';
const VERSION = '3.3.0';

/** Global configuration object */
public $config;
Expand Down
2 changes: 1 addition & 1 deletion library/HTMLPurifier/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class HTMLPurifier_Config
/**
* HTML Purifier's version
*/
public $version = '3.2.0';
public $version = '3.3.0';

/**
* Bool indicator whether or not to automatically finalize
Expand Down

0 comments on commit e9f529e

Please sign in to comment.