Add isBenign and getDefaultScheme methods.
[htmlpurifier.git] / NEWS
blobed51c52946a3923f9374734f6b60e5096e14ad31
1 NEWS ( CHANGELOG and HISTORY )                                     HTMLPurifier
2 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 = KEY ====================
5     # Breaks back-compat
6     ! Feature
7     - Bugfix
8       + Sub-comment
9     . Internal change
10 ==========================
12 4.3.1, unknown release date
13 # URI.Munge now munges URIs inside the same host that go from https
14   to http.  Reported by Neike Taika-Tessaro.
15 # Core.EscapeNonASCIICharacters now always transforms entities to
16   entities, even if target encoding is UTF-8.
17 ! Added support for 'scope' attribute on tables.
18 - Color keywords are now case insensitive.  Thanks Yzmir Ramirez
19   <yramirez-htmlpurifier@adicio.com> for reporting.
20 - Explicitly initialize anonModule variable to null.
21 - Do not duplicate nofollow if already present.  Thanks 178
22   for reporting.
23 - Do not add nofollow if hostname matches our current host.  Thanks 178
24   for reporting, and Neike Taika-Tessaro for helping diagnose.
25 - Do not unset parser variable; this fixes intermittent serialization
26   problems.
27 - Fix iconv truncation bug, where non-UTF-8 target encodings see
28   output truncated after around 8000 characters.
30 4.3.0, released 2011-03-27
31 # Fixed broken caching of customized raw definitions, but requires an
32   API change.  The old API still works but will emit a warning,
33   see http://htmlpurifier.org/docs/enduser-customize.html#optimized
34   for how to upgrade your code.
35 # Protect against Internet Explorer innerHTML behavior by specially
36   treating attributes with backticks but no angled brackets, quotes or
37   spaces.  This constitutes a slight semantic change, which can be
38   reverted using %Output.FixInnerHTML.  Reported by Neike Taika-Tessaro
39   and Mario Heiderich.
40 # Protect against cssText/innerHTML by restricting allowed characters
41   used in fonts further than mandated by the specification and encoding
42   some extra special characters in URLs.  Reported by Neike
43   Taika-Tessaro and Mario Heiderich.
44 ! Added %HTML.Nofollow to add rel="nofollow" to external links.
45 ! More types of SPL autoloaders allowed on later versions of PHP.
46 ! Implementations for position, top, left, right, bottom, z-index
47   when %CSS.Trusted is on.
48 ! Add %Cache.SerializerPermissions option for custom serializer
49   directory/file permissions
50 ! Fix longstanding bug in Flash support for non-IE browsers, and
51   allow more wmode attributes.
52 ! Add %CSS.AllowedFonts to restrict permissible font names.
53 - Switch to an iterative traversal of the DOM, which prevents us
54   from running out of stack space for deeply nested documents.
55   Thanks Maxim Krizhanovsky for contributing a patch.
56 - Make removal of conditional IE comments ungreedy; thanks Bernd
57   for reporting.
58 - Escape CDATA before removing Internet Explorer comments.
59 - Fix removal of id attributes under certain conditions by ensuring
60   armor attributes are preserved when recreating tags.
61 - Check if schema.ser was corrupted.
62 - Check if zend.ze1_compatibility_mode is on, and error out if it is.
63   This safety check is only done for HTMLPurifier.auto.php; if you
64   are using standalone or the specialized includes files, you're
65   expected to know what you're doing.
66 - Stop repeatedly writing the cache file after I'm done customizing a
67   raw definition.  Reported by ajh.
68 - Switch to using require_once in the Bootstrap to work around bad
69   interaction with Zend Debugger and APC.  Reported by Antonio Parraga.
70 - Fix URI handling when hostname is missing but scheme is present.
71   Reported by Neike Taika-Tessaro.
72 - Fix missing numeric entities on DirectLex; thanks Neike Taika-Tessaro
73   for reporting.
74 - Fix harmless notice from indexing into empty string.  Thanks Matthijs
75   Kooijman <matthijs@stdin.nl> for reporting.
76 - Don't autoclose no parent elements are able to support the element
77   that triggered the autoclose.  In particular fixes strange behavior
78   of stray <li> tags.  Thanks pkuliga@gmail.com for reporting and
79   Neike Taika-Tessaro <pinkgothic@gmail.com> for debugging assistance.
81 4.2.0, released 2010-09-15
82 ! Added %Core.RemoveProcessingInstructions, which lets you remove
83   <? ... ?> statements.
84 ! Added %URI.DisableResources functionality; the directive originally
85   did nothing.  Thanks David Rothstein for reporting.
86 ! Add documentation about configuration directive types.
87 ! Add %CSS.ForbiddenProperties configuration directive.
88 ! Add %HTML.FlashAllowFullScreen to permit embedded Flash objects
89   to utilize full-screen mode.
90 ! Add optional support for the <code>file</code> URI scheme, enable
91   by explicitly setting %URI.AllowedSchemes.
92 ! Add %Core.NormalizeNewlines options to allow turning off newline
93   normalization.
94 - Fix improper handling of Internet Explorer conditional comments
95   by parser.  Thanks zmonteca for reporting.
96 - Fix missing attributes bug when running on Mac Snow Leopard and APC.
97   Thanks sidepodcast for the fix.
98 - Warn if an element is allowed, but an attribute it requires is
99   not allowed.
101 4.1.1, released 2010-05-31
102 - Fix undefined index warnings in maintenance scripts.
103 - Fix bug in DirectLex for parsing elements with a single attribute
104   with entities.
105 - Rewrite CSS output logic for font-family and url().  Thanks Mario
106   Heiderich <mario.heiderich@googlemail.com> for reporting and Takeshi
107   Terada <t-terada@violet.plala.or.jp> for suggesting the fix.
108 - Emit an error for CollectErrors if a body is extracted
109 - Fix bug where in background-position for center keyword handling.
110 - Fix infinite loop when a wrapper element is inserted in a context
111   where it's not allowed.  Thanks Lars <lars@renoz.dk> for reporting.
112 - Remove +x bit and shebang from index.php; only supported mode is to
113   explicitly call it with php.
114 - Make test script less chatty when log_errors is on.
116 4.1.0, released 2010-04-26
117 ! Support proprietary height attribute on table element
118 ! Support YouTube slideshows that contain /cp/ in their URL.
119 ! Support for data: URI scheme; not enabled by default, add it using
120   %URI.AllowedSchemes
121 ! Support flashvars when using %HTML.SafeObject and %HTML.SafeEmbed.
122 ! Support for Internet Explorer compatibility with %HTML.SafeObject
123   using %Output.FlashCompat.
124 ! Handle <ol><ol> properly, by inserting the necessary <li> tag.
125 - Always quote the insides of url(...) in CSS.
127 4.0.0, released 2009-07-07
128 # APIs for ConfigSchema subsystem have substantially changed. See
129   docs/dev-config-bcbreaks.txt for details; in essence, anything that
130   had both namespace and directive now have a single unified key.
131 # Some configuration directives were renamed, specifically:
132     %AutoFormatParam.PurifierLinkifyDocURL -> %AutoFormat.PurifierLinkify.DocURL
133     %FilterParam.ExtractStyleBlocksEscaping -> %Filter.ExtractStyleBlocks.Escaping
134     %FilterParam.ExtractStyleBlocksScope -> %Filter.ExtractStyleBlocks.Scope
135     %FilterParam.ExtractStyleBlocksTidyImpl -> %Filter.ExtractStyleBlocks.TidyImpl
136   As usual, the old directive names will still work, but will throw E_NOTICE
137   errors.
138 # The allowed values for class have been relaxed to allow all of CDATA for
139   doctypes that are not XHTML 1.1 or XHTML 2.0.  For old behavior, set
140   %Attr.ClassUseCDATA to false.
141 # Instead of appending the content model to an old content model, a blank
142   element will replace the old content model.  You can use #SUPER to get
143   the old content model.
144 ! More robust support for name="" and id=""
145 ! HTMLPurifier_Config::inherit($config) allows you to inherit one
146   configuration, and have changes to that configuration be propagated
147   to all of its children.
148 ! Implement %HTML.Attr.Name.UseCDATA, which relaxes validation rules on
149   the name attribute when set. Use with care. Thanks Ian Cook for
150   sponsoring.
151 ! Implement %AutoFormat.RemoveEmpty.RemoveNbsp, which removes empty
152   tags that contain non-breaking spaces as well other whitespace. You
153   can also modify which tags should have &nbsp; maintained with
154   %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.
155 ! Implement %Attr.AllowedClasses, which allows administrators to restrict
156   classes users can use to a specified finite set of classes, and
157   %Attr.ForbiddenClasses, which is the logical inverse.
158 ! You can now maintain your own configuration schema directories by
159   creating a config-schema.php file or passing an extra argument. Check
160   docs/dev-config-schema.html for more details.
161 ! Added HTMLPurifier_Config->serialize() method, which lets you save away
162   your configuration in a compact serial file, which you can unserialize
163   and use directly without having to go through the overhead of setup.
164 - Fix bug where URIDefinition would not get cleared if it's directives got
165   changed.
166 - Fix fatal error in HTMLPurifier_Encoder on certain platforms (probably NetBSD 5.0)
167 - Fix bug in Linkify autoformatter involving <a><span>http://foo</span></a>
168 - Make %URI.Munge not apply to links that have the same host as your host.
169 - Prevent stray </body> tag from truncating output, if a second </body>
170   is present.
171 . Created script maintenance/rename-config.php for renaming a configuration
172   directive while maintaining its alias.  This script does not change source code.
173 . Implement namespace locking for definition construction, to prevent
174   bugs where a directive is used for definition construction but is not
175   used to construct the cache hash.
177 3.3.0, released 2009-02-16
178 ! Implement CSS property 'overflow' when %CSS.AllowTricky is true.
179 ! Implement generic property list classess
180 - Fix bug with testEncodingSupportsASCII() algorithm when iconv() implementation
181   does not do the "right thing" with characters not supported in the output
182   set.
183 - Spellcheck UTF-8: The Secret To Character Encoding
184 - Fix improper removal of the contents of elements with only whitespace. Thanks
185   Eric Wald for reporting.
186 - Fix broken test suite in versions of PHP without spl_autoload_register()
187 - Fix degenerate case with YouTube filter involving double hyphens.
188   Thanks Pierre Attar for reporting.
189 - Fix YouTube rendering problem on certain versions of Firefox.
190 - Fix CSSDefinition Printer problems with decorators
191 - Add text parameter to unit tests, forces text output
192 . Add verbose mode to command line test runner, use (--verbose)
193 . Turn on unit tests for UnitConverter
194 . Fix missing version number in configuration %Attr.DefaultImageAlt (added 3.2.0)
195 . Fix newline errors that caused spurious failures when CRLF HTML Purifier was
196   tested on Linux.
197 . Removed trailing whitespace from all text files, see
198   remote-trailing-whitespace.php maintenance script.
199 . Convert configuration to use property list backend.
201 3.2.0, released 2008-10-31
202 # Using %Core.CollectErrors forces line number/column tracking on, whereas
203   previously you could theoretically turn it off.
204 # HTMLPurifier_Injector->notifyEnd() is formally deprecated. Please
205   use handleEnd() instead.
206 ! %Output.AttrSort for when you need your attributes in alphabetical order to
207   deal with a bug in FCKEditor. Requested by frank farmer.
208 ! Enable HTML comments when %HTML.Trusted is on. Requested by Waldo Jaquith.
209 ! Proper support for name attribute. It is now allowed and equivalent to the id
210   attribute in a and img tags, and is only converted to id when %HTML.TidyLevel
211   is heavy (for all doctypes).
212 ! %AutoFormat.RemoveEmpty to remove some empty tags from documents. Please don't
213   use on hand-written HTML.
214 ! Add error-cases for unsupported elements in MakeWellFormed. This enables
215   the strategy to be used, standalone, on untrusted input.
216 ! %Core.AggressivelyFixLt is on by default. This causes more sensible
217   processing of left angled brackets in smileys and other whatnot.
218 ! Test scripts now have a 'type' parameter, which lets you say 'htmlpurifier',
219   'phpt', 'vtest', etc. in order to only execute those tests. This supercedes
220   the --only-phpt parameter, although for backwards-compatibility the flag
221   will still work.
222 ! AutoParagraph auto-formatter will now preserve double-newlines upon output.
223   Users who are not performing inbound filtering, this may seem a little
224   useless, but as a bonus, the test suite and handling of edge cases is also
225   improved.
226 ! Experimental implementation of forms for %HTML.Trusted
227 ! Track column numbers when maintain line numbers is on
228 ! Proprietary 'background' attribute on table-related elements converted into
229   corresponding CSS.  Thanks Fusemail for sponsoring this feature!
230 ! Add forward(), forwardUntilEndToken(), backward() and current() to Injector
231   supertype.
232 ! HTMLPurifier_Injector->handleEnd() permits modification to end tokens. The
233   time of operation varies slightly from notifyEnd() as *all* end tokens are
234   processed by the injector before they are subject to the well-formedness rules.
235 ! %Attr.DefaultImageAlt allows overriding default behavior of setting alt to
236   basename of image when not present.
237 ! %AutoFormat.DisplayLinkURI neuters <a> tags into plain text URLs.
238 - Fix two bugs in %URI.MakeAbsolute; one involving empty paths in base URLs,
239   the other involving an undefined $is_folder error.
240 - Throw error when %Core.Encoding is set to a spurious value. Previously,
241   this errored silently and returned false.
242 - Redirected stderr to stdout for flush error output.
243 - %URI.DisableExternal will now use the host in %URI.Base if %URI.Host is not
244   available.
245 - Do not re-munge URL if the output URL has the same host as the input URL.
246   Requested by Chris.
247 - Fix error in documentation regarding %Filter.ExtractStyleBlocks
248 - Prevent <![CDATA[<body></body>]]> from triggering %Core.ConvertDocumentToFragment
249 - Fix bug with inline elements in blockquotes conflicting with strict doctype
250 - Detect if HTML support is disabled for DOM by checking for loadHTML() method.
251 - Fix bug where dots and double-dots in absolute URLs without hostname were
252   not collapsed by URIFilter_MakeAbsolute.
253 - Fix bug with anonymous modules operating on SafeEmbed or SafeObject elements
254   by reordering their addition.
255 - Will now throw exception on many error conditions during lexer creation; also
256   throw an exception when MaintainLineNumbers is true, but a non-tracksLineNumbers
257   is being used.
258 - Detect if domxml extension is loaded, and use DirectLEx accordingly.
259 - Improve handling of big numbers with floating point arithmetic in UnitConverter.
260   Reported by David Morton.
261 . Strategy_MakeWellFormed now operates in-place, saving memory and allowing
262   for more interesting filter-backtracking
263 . New HTMLPurifier_Injector->rewind() functionality, allows injectors to rewind
264   index to reprocess tokens.
265 . StringHashParser now allows for multiline sections with "empty" content;
266   previously the section would remain undefined.
267 . Added --quick option to multitest.php, which tests only the most recent
268   release for each series.
269 . Added --distro option to multitest.php, which accepts either 'normal' or
270   'standalone'. This supercedes --exclude-normal and --exclude-standalone
272 3.1.1, released 2008-06-19
273 # %URI.Munge now, by default, does not munge resources (for example, <img src="">)
274   In order to enable this again, please set %URI.MungeResources to true.
275 ! More robust imagecrash protection with height/width CSS with %CSS.MaxImgLength,
276   and height/width HTML with %HTML.MaxImgLength.
277 ! %URI.MungeSecretKey for secure URI munging. Thanks Chris
278   for sponsoring this feature. Check out the corresponding documentation
279   for details. (Att Nightly testers: The API for this feature changed before
280   the general release. Namely, rename your directives %URI.SecureMungeSecretKey =>
281   %URI.MungeSecretKey and and %URI.SecureMunge => %URI.Munge)
282 ! Implemented post URI filtering. Set member variable $post to true to set
283   a URIFilter as such.
284 ! Allow modules to define injectors via $info_injector. Injectors are
285   automatically disabled if injector's needed elements are not found.
286 ! Support for "safe" objects added, use %HTML.SafeObject and %HTML.SafeEmbed.
287   Thanks Chris for sponsoring. If you've been using ad hoc code from the
288   forums, PLEASE use this instead.
289 ! Added substitutions for %e, %n, %a and %p in %URI.Munge (in order,
290   embedded, tag name, attribute name, CSS property name). See %URI.Munge
291   for more details. Requested by Jochem Blok.
292 - Disable percent height/width attributes for img.
293 - AttrValidator operations are now atomic; updates to attributes are not
294   manifest in token until end of operations. This prevents naughty internal
295   code from directly modifying CurrentToken when they're not supposed to.
296   This semantics change was requested by frank farmer.
297 - Percent encoding checks enabled for URI query and fragment
298 - Fix stray backslashes in font-family; CSS Unicode character escapes are
299   now properly resolved (although *only* in font-family). Thanks Takeshi Terada
300   for reporting.
301 - Improve parseCDATA algorithm to take into account newline normalization
302 - Account for browser confusion between Yen character and backslash in
303   Shift_JIS encoding. This fix generalizes to any other encoding which is not
304   a strict superset of printable ASCII. Thanks Takeshi Terada for reporting.
305 - Fix missing configuration parameter in Generator calls. Thanks vs for the
306   partial patch.
307 - Improved adherence to Unicode by checking for non-character codepoints.
308   Thanks Geoffrey Sneddon for reporting. This may result in degraded
309   performance for extremely large inputs.
310 - Allow CSS property-value pair ''text-decoration: none''. Thanks Jochem Blok
311   for reporting.
312 . Added HTMLPurifier_UnitConverter and HTMLPurifier_Length for convenient
313   handling of CSS-style lengths. HTMLPurifier_AttrDef_CSS_Length now uses
314   this class.
315 . API of HTMLPurifier_AttrDef_CSS_Length changed from __construct($disable_negative)
316   to __construct($min, $max). __construct(true) is equivalent to
317   __construct('0').
318 . Added HTMLPurifier_AttrDef_Switch class
319 . Rename HTMLPurifier_HTMLModule_Tidy->construct() to setup() and bubble method
320   up inheritance hierarchy to HTMLPurifier_HTMLModule. All HTMLModules
321   get this called with the configuration object.  All modules now
322   use this rather than __construct(), although legacy code using constructors
323   will still work--the new format, however, lets modules access the
324   configuration object for HTML namespace dependant tweaks.
325 . AttrDef_HTML_Pixels now takes a single construction parameter, pixels.
326 . ConfigSchema data-structure heavily optimized; on average it uses a third
327   the memory it did previously. The interface has changed accordingly,
328   consult changes to HTMLPurifier_Config for details.
329 . Variable parsing types now are magic integers instead of strings
330 . Added benchmark for ConfigSchema
331 . HTMLPurifier_Generator requires $config and $context parameters. If you
332   don't know what they should be, use HTMLPurifier_Config::createDefault()
333   and new HTMLPurifier_Context().
334 . Printers now properly distinguish between output configuration, and
335   target configuration. This is not applicable to scripts using
336   the Printers for HTML Purifier related tasks.
337 . HTML/CSS Printers must be primed with prepareGenerator($gen_config), otherwise
338   fatal errors will ensue.
339 . URIFilter->prepare can return false in order to abort loading of the filter
340 . Factory for AttrDef_URI implemented, URI#embedded to indicate URI that embeds
341   an external resource.
342 . %URI.Munge functionality factored out into a post-filter class.
343 . Added CurrentCSSProperty context variable during CSS validation
345 3.1.0, released 2008-05-18
346 # Unnecessary references to objects (vestiges of PHP4) removed from method
347   signatures.  The following methods do not need references when assigning from
348   them and will result in E_STRICT errors if you try:
349     + HTMLPurifier_Config->get*Definition() [* = HTML, CSS]
350     + HTMLPurifier_ConfigSchema::instance()
351     + HTMLPurifier_DefinitionCacheFactory::instance()
352     + HTMLPurifier_DefinitionCacheFactory->create()
353     + HTMLPurifier_DoctypeRegistry->register()
354     + HTMLPurifier_DoctypeRegistry->get()
355     + HTMLPurifier_HTMLModule->addElement()
356     + HTMLPurifier_HTMLModule->addBlankElement()
357     + HTMLPurifier_LanguageFactory::instance()
358 # Printer_ConfigForm's get*() functions were static-ified
359 # %HTML.ForbiddenAttributes requires attribute declarations to be in the
360   form of tag@attr, NOT tag.attr (which will throw an error and won't do
361   anything). This is for forwards compatibility with XML; you'd do best
362   to migrate an %HTML.AllowedAttributes directives to this syntax too.
363 ! Allow index to be false for config from form creation
364 ! Added HTMLPurifier::VERSION constant
365 ! Commas, not dashes, used for serializer IDs. This change is forwards-compatible
366   and allows for version numbers like "3.1.0-dev".
367 ! %HTML.Allowed deals gracefully with whitespace anywhere, anytime!
368 ! HTML Purifier's URI handling is a lot more robust, with much stricter
369   validation checks and better percent encoding handling. Thanks Gareth Heyes
370   for indicating security vulnerabilities from lax percent encoding.
371 ! Bootstrap autoloader deals more robustly with classes that don't exist,
372   preventing class_exists($class, true) from barfing.
373 - InterchangeBuilder now alphabetizes its lists
374 - Validation error in configdoc output fixed
375 - Iconv and other encoding errors muted even with custom error handlers that
376   do not honor error_reporting
377 - Add protection against imagecrash attack with CSS height/width
378 - HTMLPurifier::instance() created for consistency, is equivalent to getInstance()
379 - Fixed and revamped broken ConfigForm smoketest
380 - Bug with bool/null fields in Printer_ConfigForm fixed
381 - Bug with global forbidden attributes fixed
382 - Improved error messages for allowed and forbidden HTML elements and attributes
383 - Missing (or null) in configdoc documentation restored
384 - If DOM throws and exception during parsing with PH5P (occurs in newer versions
385   of DOM), HTML Purifier punts to DirectLex
386 - Fatal error with unserialization of ScriptRequired
387 - Created directories are now chmod'ed properly
388 - Fixed bug with fallback languages in LanguageFactory
389 - Standalone testing setup properly with autoload
390 . Out-of-date documentation revised
391 . UTF-8 encoding check optimization as suggested by Diego
392 . HTMLPurifier_Error removed in favor of exceptions
393 . More copy() function removed; should use clone instead
394 . More extensive unit tests for HTMLDefinition
395 . assertPurification moved to central harness
396 . HTMLPurifier_Generator accepts $config and $context parameters during
397   instantiation, not runtime
398 . Double-quotes outside of attribute values are now unescaped
400 3.1.0rc1, released 2008-04-22
401 # Autoload support added. Internal require_once's removed in favor of an
402   explicit require list or autoloading. To use HTML Purifier,
403   you must now either use HTMLPurifier.auto.php
404   or HTMLPurifier.includes.php; setting the include path and including
405   HTMLPurifier.php is insufficient--in such cases include HTMLPurifier.autoload.php
406   as well to register our autoload handler (or modify your autoload function
407   to check HTMLPurifier_Bootstrap::getPath($class)). You can also use
408   HTMLPurifier.safe-includes.php for a less performance friendly but more
409   user-friendly library load.
410 # HTMLPurifier_ConfigSchema static functions are officially deprecated. Schema
411   information is stored in the ConfigSchema directory, and the
412   maintenance/generate-schema-cache.php generates the schema.ser file, which
413   is now instantiated. Support for userland schema changes coming soon!
414 # HTMLPurifier_Config will now throw E_USER_NOTICE when you use a directive
415   alias; to get rid of these errors just modify your configuration to use
416   the new directive name.
417 # HTMLPurifier->addFilter is deprecated; built-in filters can now be
418   enabled using %Filter.$filter_name or by setting your own filters using
419   %Filter.Custom
420 # Directive-level safety properties superceded in favor of module-level
421   safety. Internal method HTMLModule->addElement() has changed, although
422   the externally visible HTMLDefinition->addElement has *not* changed.
423 ! Extra utility classes for testing and non-library operations can
424   be found in extras/. Specifically, these are FSTools and ConfigDoc.
425   You may find a use for these in your own project, but right now they
426   are highly experimental and volatile.
427 ! Integration with PHPT allows for automated smoketests
428 ! Limited support for proprietary HTML elements, namely <marquee>, sponsored
429   by Chris. You can enable them with %HTML.Proprietary if your client
430   demands them.
431 ! Support for !important CSS cascade modifier. By default, this will be stripped
432   from CSS, but you can enable it using %CSS.AllowImportant
433 ! Support for display and visibility CSS properties added, set %CSS.AllowTricky
434   to true to use them.
435 ! HTML Purifier now has its own Exception hierarchy under HTMLPurifier_Exception.
436   Developer error (not enduser error) can cause these to be triggered.
437 ! Experimental kses() wrapper introduced with HTMLPurifier.kses.php
438 ! Finally %CSS.AllowedProperties for tweaking allowed CSS properties without
439   mucking around with HTMLPurifier_CSSDefinition
440 ! ConfigDoc output has been enhanced with version and deprecation info.
441 ! %HTML.ForbiddenAttributes and %HTML.ForbiddenElements implemented.
442 - Autoclose now operates iteratively, i.e. <span><span><div> now has
443   both span tags closed.
444 - Various HTMLPurifier_Config convenience functions now accept another parameter
445   $schema which defines what HTMLPurifier_ConfigSchema to use besides the
446   global default.
447 - Fix bug with trusted script handling in libxml versions later than 2.6.28.
448 - Fix bug in ExtractStyleBlocks with comments in style tags
449 - Fix bug in comment parsing for DirectLex
450 - Flush output now displayed when in command line mode for unit tester
451 - Fix bug with rgb(0, 1, 2) color syntax with spaces inside shorthand syntax
452 - HTMLPurifier_HTMLDefinition->addAttribute can now be called multiple times
453   on the same element without emitting errors.
454 - Fixed fatal error in PH5P lexer with invalid tag names
455 . Plugins now get their own changelogs according to project conventions.
456 . Convert tokens to use instanceof, reducing memory footprint and
457   improving comparison speed.
458 . Dry runs now supported in SimpleTest; testing facilities improved
459 . Bootstrap class added for handling autoloading functionality
460 . Implemented recursive glob at FSTools->globr
461 . ConfigSchema now has instance methods for all corresponding define*
462   static methods.
463 . A couple of new historical maintenance scripts were added.
464 . HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php split into two files
465 . tests/index.php can now be run from any directory.
466 . HTMLPurifier_Token subclasses split into seperate files
467 . HTMLPURIFIER_PREFIX now is defined in Bootstrap.php, NOT HTMLPurifier.php
468 . HTMLPURIFIER_PREFIX can now be defined outside of HTML Purifier
469 . New --php=php flag added, allows PHP executable to be specified (command
470   line only!)
471 . htmlpurifier_add_test() preferred method to translate test files in to
472   classes, because it handles PHPT files too.
473 . Debugger class is deprecated and will be removed soon.
474 . Command line argument parsing for testing scripts revamped, now --opt value
475   format is supported.
476 . Smoketests now cleanup after magic quotes
477 . Generator now can output comments (however, comments are still stripped
478   from HTML Purifier output)
479 . HTMLPurifier_ConfigSchema->validate() deprecated in favor of
480   HTMLPurifier_VarParser->parse()
481 . Integers auto-cast into float type by VarParser.
482 . HTMLPURIFIER_STRICT removed; no validation is performed on runtime, only
483   during cache generation
484 . Reordered script calls in maintenance/flush.php
485 . Command line scripts now honor exit codes
486 . When --flush fails in unit testers, abort tests and print message
487 . Improved documentation in docs/dev-flush.html about the maintenance scripts
488 . copy() methods removed in favor of clone keyword
490 3.0.0, released 2008-01-06
491 # HTML Purifier is PHP 5 only! The 2.1.x branch will be maintained
492   until PHP 4 is completely deprecated, but no new features will be added
493   to it.
494   + Visibility declarations added
495   + Constructor methods renamed to __construct()
496   + PHP4 reference cruft removed (in progress)
497 ! CSS properties are now case-insensitive
498 ! DefinitionCacheFactory now can register new implementations
499 ! New HTMLPurifier_Filter_ExtractStyleBlocks for extracting <style> from
500   documents and cleaning their contents up. Requires the CSSTidy library
501   <http://csstidy.sourceforge.net/>. You can access the blocks with the
502   'StyleBlocks' Context variable ($purifier->context->get('StyleBlocks')).
503   The output CSS can also be "scoped" for a specific element, use:
504   %Filter.ExtractStyleBlocksScope
505 ! Experimental support for some proprietary CSS attributes allowed:
506   opacity (and all of the browser-specific equivalents) and scrollbar colors.
507   Enable by setting %CSS.Proprietary to true.
508 - Colors missing # but in hex form will be corrected
509 - CSS Number algorithm improved
510 - Unit testing and multi-testing now on steroids: command lines,
511   XML output, and other goodies now added.
512 . Unit tests for Injector improved
513 . New classes:
514   + HTMLPurifier_AttrDef_CSS_AlphaValue
515   + HTMLPurifier_AttrDef_CSS_Filter
516 . Multitest now has a file docblock
518 2.1.3, released 2007-11-05
519 ! tests/multitest.php allows you to test multiple versions by running
520   tests/index.php through multiple interpreters using `phpv` shell
521   script (you must provide this script!)
522 - Fixed poor include ordering for Email URI AttrDefs, causes fatal errors
523   on some systems.
524 - Injector algorithm further refined: off-by-one error regarding skip
525   counts for dormant injectors fixed
526 - Corrective blockquote definition now enabled for HTML 4.01 Strict
527 - Fatal error when <img> tag (or any other element with required attributes)
528   has 'id' attribute fixed, thanks NykO18 for reporting
529 - Fix warning emitted when a non-supported URI scheme is passed to the
530   MakeAbsolute URIFilter, thanks NykO18 (again)
531 - Further refine AutoParagraph injector. Behavior inside of elements
532   allowing paragraph tags clarified: only inline content delimeted by
533   double newlines (not block elements) are paragraphed.
534 - Buggy treatment of end tags of elements that have required attributes
535   fixed (does not manifest on default tag-set)
536 - Spurious internal content reorganization error suppressed
537 - HTMLDefinition->addElement now returns a reference to the created
538   element object, as implied by the documentation
539 - Phorum mod's HTML Purifier help message expanded (unreleased elsewhere)
540 - Fix a theoretical class of infinite loops from DirectLex reported
541   by Nate Abele
542 - Work around unnecessary DOMElement type-cast in PH5P that caused errors
543   in PHP 5.1
544 - Work around PHP 4 SimpleTest lack-of-error complaining for one-time-only
545   HTMLDefinition errors, this may indicate problems with error-collecting
546   facilities in PHP 5
547 - Make ErrorCollectorEMock work in both PHP 4 and PHP 5
548 - Make PH5P work with PHP 5.0 by removing unnecessary array parameter typedef
549 . %Core.AcceptFullDocuments renamed to %Core.ConvertDocumentToFragment
550   to better communicate its purpose
551 . Error unit tests can now specify the expectation of no errors. Future
552   iterations of the harness will be extremely strict about what errors
553   are allowed
554 . Extend Injector hooks to allow for more powerful injector routines
555 . HTMLDefinition->addBlankElement created, as according to the HTMLModule
556   method
557 . Doxygen configuration file updated, with minor improvements
558 . Test runner now checks for similarly named files in conf/ directory too.
559 . Minor cosmetic change to flush-definition-cache.php: trailing newline is
560   outputted
561 . Maintenance script for generating PH5P patch added, original PH5P source
562   file also added under version control
563 . Full unit test runner script title made more descriptive with PHP version
564 . Updated INSTALL file to state that 4.3.7 is the earliest version we
565   are actively testing
567 2.1.2, released 2007-09-03
568 ! Implemented Object module for trusted users
569 ! Implemented experimental HTML5 parsing mode using PH5P. To use, add
570   this to your code:
571         require_once 'HTMLPurifier/Lexer/PH5P.php';
572         $config->set('Core', 'LexerImpl', 'PH5P');
573   Note that this Lexer introduces some classes not in the HTMLPurifier
574   namespace.  Also, this is PHP5 only.
575 ! CSS property border-spacing implemented
576 - Fix non-visible parsing error in DirectLex with empty tags that have
577   slashes inside attribute values.
578 - Fix typo in CSS definition: border-collapse:seperate; was incorrectly
579   accepted as valid CSS. Usually non-visible, because this styling is the
580   default for tables in most browsers. Thanks Brett Zamir for pointing
581   this out.
582 - Fix validation errors in configuration form
583 - Hammer out a bunch of edge-case bugs in the standalone distribution
584 - Inclusion reflection removed from URISchemeRegistry; you must manually
585   include any new schema files you wish to use
586 - Numerous typo fixes in documentation thanks to Brett Zamir
587 . Unit test refactoring for one logical test per test function
588 . Config and context parameters in ComplexHarness deprecated: instead, edit
589   the $config and $context member variables
590 . HTML wrapper in DOMLex now takes DTD identifiers into account; doesn't
591   really make a difference, but is good for completeness sake
592 . merge-library.php script refactored for greater code reusability and
593   PHP4 compatibility
595 2.1.1, released 2007-08-04
596 - Fix show-stopper bug in %URI.MakeAbsolute functionality
597 - Fix PHP4 syntax error in standalone version
598 . Add prefix directory to include path for standalone, this prevents
599   other installations from clobbering the standalone's URI schemes
600 . Single test methods can be invoked by prefixing with __only
602 2.1.0, released 2007-08-02
603 # flush-htmldefinition-cache.php superseded in favor of a generic
604   flush-definition-cache.php script, you can clear a specific cache
605   by passing its name as a parameter to the script
606 ! Phorum mod implemented for HTML Purifier
607 ! With %Core.AggressivelyFixLt, <3 and similar emoticons no longer
608   trigger HTML removal in PHP5 (DOMLex). This directive is not necessary
609   for PHP4 (DirectLex).
610 ! Standalone file now available, which greatly reduces the amount of
611   includes (although there are still a few files that reside in the
612   standalone folder)
613 ! Relative URIs can now be transformed into their absolute equivalents
614   using %URI.Base and %URI.MakeAbsolute
615 ! Ruby implemented for XHTML 1.1
616 ! You can now define custom URI filtering behavior, see enduser-uri-filter.html
617   for more details
618 ! UTF-8 font names now supported in CSS
619 - AutoFormatters emit friendly error messages if tags or attributes they
620   need are not allowed
621 - ConfigForm's compactification of directive names is now configurable
622 - AutoParagraph autoformatter algorithm refined after field-testing
623 - XHTML 1.1 now applies XHTML 1.0 Strict cleanup routines, namely
624   blockquote wrapping
625 - Contents of <style> tags removed by default when tags are removed
626 . HTMLPurifier_Config->getSerial() implemented, this is extremely useful
627   for output cache invalidation
628 . ConfigForm printer now can retrieve CSS and JS files as strings, in
629   case HTML Purifier's directory is not publically accessible
630 . Introduce new text/itext configuration directive values: these represent
631   longer strings that would be more appropriately edited with a textarea
632 . Allow newlines to act as separators for lists, hashes, lookups and
633   %HTML.Allowed
634 . ConfigForm generates textareas instead of text inputs for lists, hashes,
635   lookups, text and itext fields
636 . Hidden element content removal genericized: %Core.HiddenElements can
637   be used to customize this behavior, by default <script> and <style> are
638   hidden
639 . Added HTMLPURIFIER_PREFIX constant, should be used instead of dirname(__FILE__)
640 . Custom ChildDef added to default include list
641 . URIScheme reflection improved: will not attempt to include file if class
642   already exists. May clobber autoload, so I need to keep an eye on it
643 . ConfigSchema heavily optimized, will only collect information and validate
644   definitions when HTMLPURIFIER_SCHEMA_STRICT is true.
645 . AttrDef_URI unit tests and implementation refactored
646 . benchmarks/ directory now protected from public view with .htaccess file;
647   run the tests via command line
648 . URI scheme is munged off if there is no authority and the scheme is the
649   default one
650 . All unit tests inherit from HTMLPurifier_Harness, not UnitTestCase
651 . Interface for URIScheme changed
652 . Generic URI object to hold components of URI added, most systems involved
653   in URI validation have been migrated to use it
654 . Custom filtering for URIs factored out to URIDefinition interface for
655   maximum extensibility
657 2.0.1, released 2007-06-27
658 ! Tag auto-closing now based on a ChildDef heuristic rather than a
659   manually set auto_close array; some behavior may change
660 ! Experimental AutoFormat functionality added: auto-paragraph and
661   linkify your HTML input by setting %AutoFormat.AutoParagraph and
662   %AutoFormat.Linkify to true
663 ! Newlines normalized internally, and then converted back to the
664   value of PHP_EOL. If this is not desired, set your newline format
665   using %Output.Newline.
666 ! Beta error collection, messages are implemented for the most generic
667   cases involving Lexing or Strategies
668 - Clean up special case code for <script> tags
669 - Reorder includes for DefinitionCache decorators, fixes a possible
670   missing class error
671 - Fixed bug where manually modified definitions were not saved via cache
672   (mostly harmless, except for the fact that it would be a little slower)
673 - Configuration objects with different serials do not clobber each
674   others when revision numbers are unequal
675 - Improve Serializer DefinitionCache directory permissions checks
676 - DefinitionCache no longer throws errors when it encounters old
677   serial files that do not conform to the current style
678 - Stray xmlns attributes removed from configuration documentation
679 - configForm.php smoketest no longer has XSS vulnerability due to
680   unescaped print_r output
681 - Printer adheres to configuration's directives on output format
682 - Fix improperly named form field in ConfigForm printer
683 . Rewire some test-cases to swallow errors rather than expect them
684 . HTMLDefinition printer updated with some of the new attributes
685 . DefinitionCache keys reordered to reflect precedence: version number,
686   hash, then revision number
687 . %Core.DefinitionCache renamed to %Cache.DefinitionImpl
688 . Interlinking in configuration documentation added using
689   Injector_PurifierLinkify
690 . Directives now keep track of aliases to themselves
691 . Error collector now requires a severity to be passed, use PHP's internal
692   error constants for this
693 . HTMLPurifier_Config::getAllowedDirectivesForForm implemented, allows
694   much easier selective embedding of configuration values
695 . Doctype objects now accept public and system DTD identifiers
696 . %HTML.Doctype is now constrained by specific values, to specify a custom
697   doctype use new %HTML.CustomDoctype
698 . ConfigForm truncates long directives to keep the form small, and does
699   not re-output namespaces
701 2.0.0, released 2007-06-20
702 # Completely refactored HTMLModuleManager, decentralizing safety
703   information
704 # Transform modules changed to Tidy modules, which offer more flexibility
705   and better modularization
706 # Configuration object now finalizes itself when a read operation is
707   performed on it, ensuring that its internal state stays consistent.
708   To revert this behavior, you can set the $autoFinalize member variable
709   off, but it's not recommended.
710 # New compact syntax for AttrDef objects that can be used to instantiate
711   new objects via make()
712 # Definitions (esp. HTMLDefinition) are now cached for a significant
713   performance boost. You can disable caching by setting %Core.DefinitionCache
714   to null. You CANNOT edit raw definitions without setting the corresponding
715   DefinitionID directive (%HTML.DefinitionID for HTMLDefinition).
716 # Contents between <script> tags are now completely removed if <script>
717   is not allowed
718 # Prototype-declarations for Lexer removed in favor of configuration
719   determination of Lexer implementations.
720 ! HTML Purifier now works in PHP 4.3.2.
721 ! Configuration form-editing API makes tweaking HTMLPurifier_Config a
722   breeze!
723 ! Configuration directives that accept hashes now allow new string
724   format: key1:value1,key2:value2
725 ! ConfigDoc now factored into OOP design
726 ! All deprecated elements now natively supported
727 ! Implement TinyMCE styled whitelist specification format in
728   %HTML.Allowed
729 ! Config object gives more friendly error messages when things go wrong
730 ! Advanced API implemented: easy functions for creating elements (addElement)
731   and attributes (addAttribute) on HTMLDefinition
732 ! Add native support for required attributes
733 - Deprecated and removed EnableRedundantUTF8Cleaning. It didn't even work!
734 - DOMLex will not emit errors when a custom error handler that does not
735   honor error_reporting is used
736 - StrictBlockquote child definition refrains from wrapping whitespace
737   in tags now.
738 - Bug resulting from tag transforms to non-allowed elements fixed
739 - ChildDef_Custom's regex generation has been improved, removing several
740   false positives
741 . Unit test for ElementDef created, ElementDef behavior modified to
742   be more flexible
743 . Added convenience functions for HTMLModule constructors
744 . AttrTypes now has accessor functions that should be used instead
745   of directly manipulating info
746 . TagTransform_Center deprecated in favor of generic TagTransform_Simple
747 . Add extra protection in AttrDef_URI against phantom Schemes
748 . Doctype object added to HTMLDefinition which describes certain aspects
749   of the operational document type
750 . Lexer is now pre-emptively included, with a conditional include for the
751   PHP5 only version.
752 . HTMLDefinition and CSSDefinition have a common parent class: Definition.
753 . DirectLex can now track line-numbers
754 . Preliminary error collector is in place, although no code actually reports
755   errors yet
756 . Factor out most of ValidateAttributes to new AttrValidator class
758 1.6.1, released 2007-05-05
759 ! Support for more deprecated attributes via transformations:
760   + hspace and vspace in img
761   + size and noshade in hr
762   + nowrap in td
763   + clear in br
764   + align in caption, table, img and hr
765   + type in ul, ol and li
766 ! DirectLex now preserves text in which a < bracket is followed by
767   a non-alphanumeric character. This means that certain emoticons
768   are now preserved.
769 ! %Core.RemoveInvalidImg is now operational, when set to false invalid
770   images will hang around with an empty src
771 ! target attribute in a tag supported, use %Attr.AllowedFrameTargets
772   to enable
773 ! CSS property white-space now allows nowrap (supported in all modern
774   browsers) but not others (which have spotty browser implementations)
775 ! XHTML 1.1 mode now sort-of works without any fatal errors, and
776   lang is now moved over to xml:lang.
777 ! Attribute transformation smoketest available at smoketests/attrTransform.php
778 ! Transformation of font's size attribute now handles super-large numbers
779 - Possibly fatal bug with __autoload() fixed in module manager
780 - Invert HTMLModuleManager->addModule() processing order to check
781   prefixes first and then the literal module
782 - Empty strings get converted to empty arrays instead of arrays with
783   an empty string in them.
784 - Merging in attribute lists now works.
785 . Demo script removed: it has been added to the website's repository
786 . Basic.php script modified to work out of the box
787 . Refactor AttrTransform classes to reduce duplication
788 . AttrTransform_TextAlign axed in favor of a more general
789   AttrTransform_EnumToCSS, refer to HTMLModule/TransformToStrict.php to
790   see how the new equivalent is implemented
791 . Unit tests now use exclusively assertIdentical
793 1.6.0, released 2007-04-01
794 ! Support for most common deprecated attributes via transformations:
795   + bgcolor in td, th, tr and table
796   + border in img
797   + name in a and img
798   + width in td, th and hr
799   + height in td, th
800 ! Support for CSS attribute 'height' added
801 ! Support for rel and rev attributes in a tags added, use %Attr.AllowedRel
802   and %Attr.AllowedRev to activate
803 - You can define ID blacklists using regular expressions via
804   %Attr.IDBlacklistRegexp
805 - Error messages are emitted when you attempt to "allow" elements or
806   attributes that HTML Purifier does not support
807 - Fix segfault in unit test. The problem is not very reproduceable and
808   I don't know what causes it, but a six line patch fixed it.
810 1.5.0, released 2007-03-23
811 ! Added a rudimentary I18N and L10N system modeled off MediaWiki. It
812   doesn't actually do anything yet, but keep your eyes peeled.
813 ! docs/enduser-utf8.html explains how to use UTF-8 and HTML Purifier
814 ! Newly structured HTMLDefinition modeled off of XHTML 1.1 modules.
815   I am loathe to release beta quality APIs, but this is exactly that;
816   don't use the internal interfaces if you're not willing to do migration
817   later on.
818 - Allow 'x' subtag in language codes
819 - Fixed buggy chameleon-support for ins and del
820 . Added support for IDREF attributes (i.e. for)
821 . Renamed HTMLPurifier_AttrDef_Class to HTMLPurifier_AttrDef_Nmtokens
822 . Removed context variable ParentType, replaced with IsInline, which
823   is false when you're not inline and an integer of the parent that
824   caused you to become inline when you are (so possibly zero)
825 . Removed ElementDef->type in favor of ElementDef->descendants_are_inline
826   and HTMLDefinition->content_sets
827 . StrictBlockquote now reports what elements its supposed to allow,
828   rather than what it does allow
829 . Removed HTMLDefinition->info_flow_elements in favor of
830   HTMLDefinition->content_sets['Flow']
831 . Removed redundant "exclusionary" definitions from DTD roster
832 . StrictBlockquote now requires a construction parameter as if it
833   were an Required ChildDef, this is the "real" set of allowed elements
834 . AttrDef partitioned into HTML, CSS and URI segments
835 . Modify Youtube filter regexp to be multiline
836 . Require both PHP5 and DOM extension in order to use DOMLex, fixes
837   some edge cases where a DOMDocument class exists in a PHP4 environment
838   due to DOM XML extension.
840 1.4.1, released 2007-01-21
841 ! docs/enduser-youtube.html updated according to new functionality
842 - YouTube IDs can have underscores and dashes
844 1.4.0, released 2007-01-21
845 ! Implemented list-style-image, URIs now allowed in list-style
846 ! Implemented background-image, background-repeat, background-attachment
847   and background-position CSS properties. Shorthand property background
848   supports all of these properties.
849 ! Configuration documentation looks nicer
850 ! Added %Core.EscapeNonASCIICharacters to workaround loss of Unicode
851   characters while %Core.Encoding is set to a non-UTF-8 encoding.
852 ! Support for configuration directive aliases added
853 ! Config object can now be instantiated from ini files
854 ! YouTube preservation code added to the core, with two lines of code
855   you can add it as a filter to your code. See smoketests/preserveYouTube.php
856   for sample code.
857 ! Moved SLOW to docs/enduser-slow.html and added code examples
858 - Replaced version check with functionality check for DOM (thanks Stephen
859   Khoo)
860 . Added smoketest 'all.php', which loads all other smoketests via frames
861 . Implemented AttrDef_CSSURI for url(http://google.com) style declarations
862 . Added convenient single test selector form on test runner
864 1.3.2, released 2006-12-25
865 ! HTMLPurifier object now accepts configuration arrays, no need to manually
866   instantiate a configuration object
867 ! Context object now accessible to outside
868 ! Added enduser-youtube.html, explains how to embed YouTube videos. See
869   also corresponding smoketest preserveYouTube.php.
870 ! Added purifyArray(), which takes a list of HTML and purifies it all
871 ! Added static member variable $version to HTML Purifier with PHP-compatible
872   version number string.
873 - Fixed fatal error thrown by upper-cased language attributes
874 - printDefinition.php: added labels, added better clarification
875 . HTMLPurifier_Config::create() added, takes mixed variable and converts into
876   a HTMLPurifier_Config object.
878 1.3.1, released 2006-12-06
879 ! Added HTMLPurifier.func.php stub for a convenient function to call the library
880 - Fixed bug in RemoveInvalidImg code that caused all images to be dropped
881   (thanks to .mario for reporting this)
882 . Standardized all attribute handling variables to attr, made it plural
884 1.3.0, released 2006-11-26
885 # Invalid images are now removed, rather than replaced with a dud
886   <img src="" alt="Invalid image" />. Previous behavior can be restored
887   with new directive %Core.RemoveInvalidImg set to false.
888 ! (X)HTML Strict now supported
889   + Transparently handles inline elements in block context (blockquote)
890 ! Added GET method to demo for easier validation, added 50kb max input size
891 ! New directive %HTML.BlockWrapper, for block-ifying inline elements
892 ! New directive %HTML.Parent, allows you to only allow inline content
893 ! New directives %HTML.AllowedElements and %HTML.AllowedAttributes to let
894   users narrow the set of allowed tags
895 ! <li value="4"> and <ul start="2"> now allowed in loose mode
896 ! New directives %URI.DisableExternalResources and %URI.DisableResources
897 ! New directive %Attr.DisableURI, which eliminates all hyperlinking
898 ! New directive %URI.Munge, munges URI so you can use some sort of redirector
899   service to avoid PageRank leaks or warn users that they are exiting your site.
900 ! Added spiffy new smoketest printDefinition.php, which lets you twiddle with
901   the configuration settings and see how the internal rules are affected.
902 ! New directive %URI.HostBlacklist for blocking links to bad hosts.
903   xssAttacks.php smoketest updated accordingly.
904 - Added missing type to ChildDef_Chameleon
905 - Remove Tidy option from demo if there is not Tidy available
906 . ChildDef_Required guards against empty tags
907 . Lookup table HTMLDefinition->info_flow_elements added
908 . Added peace-of-mind variable initialization to Strategy_FixNesting
909 . Added HTMLPurifier->info_parent_def, parent child processing made special
910 . Added internal documents briefly summarizing future progression of HTML
911 . HTMLPurifier_Config->getBatch($namespace) added
912 . More lenient casting to bool from string in HTMLPurifier_ConfigSchema
913 . Refactored ChildDef classes into their own files
915 1.2.0, released 2006-11-19
916 # ID attributes now disabled by default. New directives:
917   + %HTML.EnableAttrID - restores old behavior by allowing IDs
918   + %Attr.IDPrefix - %Attr.IDBlacklist alternative that munges all user IDs
919     so that they don't collide with your IDs
920   + %Attr.IDPrefixLocal - Same as above, but for when there are multiple
921     instances of user content on the page
922   + Profuse documentation on how to use these available in docs/enduser-id.txt
923 ! Added MODx plugin <http://modxcms.com/forums/index.php/topic,6604.0.html>
924 ! Added percent encoding normalization
925 ! XSS attacks smoketest given facelift
926 ! Configuration documentation now has table of contents
927 ! Added %URI.DisableExternal, which prevents links to external websites.  You
928   can also use %URI.Host to permit absolute linking to subdomains
929 ! Non-accessible resources (ex. mailto) blocked from embedded URIs (img src)
930 - Type variable in HTMLDefinition was not being set properly, fixed
931 - Documentation updated
932   + TODO added request Phalanger
933   + TODO added request Native compression
934   + TODO added request Remove redundant tags
935   + TODO added possible plaintext formatter for HTML Purifier documentation
936   + Updated ConfigDoc TODO
937   + Improved inline comments in AttrDef/Class.php, AttrDef/CSS.php
938     and AttrDef/Host.php
939   + Revamped documentation into HTML, along with misc updates
940 - HTMLPurifier_Context doesn't throw a variable reference error if you attempt
941   to retrieve a non-existent variable
942 . Switched to purify()-wide Context object registry
943 . Refactored unit tests to minimize duplication
944 . XSS attack sheet updated
945 . configdoc.xml now has xml:space attached to default value nodes
946 . Allow configuration directives to permit null values
947 . Cleaned up test-cases to remove unnecessary swallowErrors()
949 1.1.2, released 2006-09-30
950 ! Add HTMLPurifier.auto.php stub file that configures include_path
951 - Documentation updated
952   + INSTALL document rewritten
953   + TODO added semi-lossy conversion
954   + API Doxygen docs' file exclusions updated
955   + Added notes on HTML versus XML attribute whitespace handling
956   + Noted that HTMLPurifier_ChildDef_Custom isn't being used
957   + Noted that config object's definitions are cached versions
958 - Fixed lack of attribute parsing in HTMLPurifier_Lexer_PEARSax3
959 - ftp:// URIs now have their typecodes checked
960 - Hooked up HTMLPurifier_ChildDef_Custom's unit tests (they weren't being run)
961 . Line endings standardized throughout project (svn:eol-style standardized)
962 . Refactored parseData() to general Lexer class
963 . Tester named "HTML Purifier" not "HTMLPurifier"
965 1.1.1, released 2006-09-24
966 ! Configuration option to optionally Tidy up output for indentation to make up
967   for dropped whitespace by DOMLex (pretty-printing for the entire application
968   should be done by a page-wide Tidy)
969 - Various documentation updates
970 - Fixed parse error in configuration documentation script
971 - Fixed fatal error in benchmark scripts, slightly augmented
972 - As far as possible, whitespace is preserved in-between table children
973 - Sample test-settings.php file included
975 1.1.0, released 2006-09-16
976 ! Directive documentation generation using XSLT
977 ! XHTML can now be turned off, output becomes <br>
978 - Made URI validator more forgiving: will ignore leading and trailing
979   quotes, apostrophes and less than or greater than signs.
980 - Enforce alphanumeric namespace and directive names for configuration.
981 - Table child definition made more flexible, will fix up poorly ordered elements
982 . Renamed ConfigDef to ConfigSchema
984 1.0.1, released 2006-09-04
985 - Fixed slight bug in DOMLex attribute parsing
986 - Fixed rejection of case-insensitive configuration values when there is a
987   set of allowed values.  This manifested in %Core.Encoding.
988 - Fixed rejection of inline style declarations that had lots of extra
989   space in them.  This manifested in TinyMCE.
991 1.0.0, released 2006-09-01
992 ! Shorthand CSS properties implemented: font, border, background, list-style
993 ! Basic color keywords translated into hexadecimal values
994 ! Table CSS properties implemented
995 ! Support for charsets other than UTF-8 (defined by iconv)
996 ! Malformed UTF-8 and non-SGML character detection and cleaning implemented
997 - Fixed broken numeric entity conversion
998 - API documentation completed
999 . (HTML|CSS)Definition de-singleton-ized
1001 1.0.0beta, released 2006-08-16
1002 ! First public release, most functionality implemented. Notable omissions are:
1003   + Shorthand CSS properties
1004   + Table CSS properties
1005   + Deprecated attribute transformations
1007     vim: et sw=4 sts=4