[3.0.0] <style> tags can now be extracted from input HTML using %HTML.ExtractStyleBlo...
[htmlpurifier/rdancer.git] / NEWS
blobc78f781fc2fd2285d30573dd00e867f5a5d9994a
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 3.0.0, unknown release date
13 # HTML Purifier is PHP 5 only! The 2.1.x branch will be maintained
14   until PHP 4 is completely deprecated, but no new features will be added
15   to it.
16   + Visibility declarations added
17   + Constructor methods renamed to __construct()
18   + PHP4 reference/foreach cruft removed (in progress)
19 ! CSS properties are no case-insensitive
20 ! DefinitionCacheFactory now can register new implementations
21 ! <style> tags can now be extracted from input HTML using %HTML.ExtractStyleBlocks.
22   These contents can be retrieved from $context->get('StyleBlocks');
23 . Unit tests for Injector improved
25 2.1.3, released 2007-11-05
26 ! tests/multitest.php allows you to test multiple versions by running
27   tests/index.php through multiple interpreters using `phpv` shell
28   script (you must provide this script!)
29 - Fixed poor include ordering for Email URI AttrDefs, causes fatal errors
30   on some systems.
31 - Injector algorithm further refined: off-by-one error regarding skip 
32   counts for dormant injectors fixed
33 - Corrective blockquote definition now enabled for HTML 4.01 Strict
34 - Fatal error when <img> tag (or any other element with required attributes)
35   has 'id' attribute fixed, thanks NykO18 for reporting
36 - Fix warning emitted when a non-supported URI scheme is passed to the
37   MakeAbsolute URIFilter, thanks NykO18 (again)
38 - Further refine AutoParagraph injector. Behavior inside of elements
39   allowing paragraph tags clarified: only inline content delimeted by
40   double newlines (not block elements) are paragraphed.
41 - Buggy treatment of end tags of elements that have required attributes
42   fixed (does not manifest on default tag-set)
43 - Spurious internal content reorganization error suppressed
44 - HTMLDefinition->addElement now returns a reference to the created
45   element object, as implied by the documentation
46 - Phorum mod's HTML Purifier help message expanded (unreleased elsewhere)
47 - Fix a theoretical class of infinite loops from DirectLex reported
48   by Nate Abele
49 - Work around unnecessary DOMElement type-cast in PH5P that caused errors
50   in PHP 5.1
51 - Work around PHP 4 SimpleTest lack-of-error complaining for one-time-only
52   HTMLDefinition errors, this may indicate problems with error-collecting
53   facilities in PHP 5
54 - Make ErrorCollectorEMock work in both PHP 4 and PHP 5
55 - Make PH5P work with PHP 5.0 by removing unnecessary array parameter typedef
56 . %Core.AcceptFullDocuments renamed to %Core.ConvertDocumentToFragment 
57   to better communicate its purpose
58 . Error unit tests can now specify the expectation of no errors. Future
59   iterations of the harness will be extremely strict about what errors
60   are allowed
61 . Extend Injector hooks to allow for more powerful injector routines
62 . HTMLDefinition->addBlankElement created, as according to the HTMLModule
63   method
64 . Doxygen configuration file updated, with minor improvements
65 . Test runner now checks for similarly named files in conf/ directory too.
66 . Minor cosmetic change to flush-definition-cache.php: trailing newline is
67   outputted
68 . Maintenance script for generating PH5P patch added, original PH5P source
69   file also added under version control
70 . Full unit test runner script title made more descriptive with PHP version
71 . Updated INSTALL file to state that 4.3.7 is the earliest version we
72   are actively testing
74 2.1.2, released 2007-09-03
75 ! Implemented Object module for trusted users
76 ! Implemented experimental HTML5 parsing mode using PH5P. To use, add
77   this to your code:
78         require_once 'HTMLPurifier/Lexer/PH5P.php';
79         $config->set('Core', 'LexerImpl', 'PH5P');
80   Note that this Lexer introduces some classes not in the HTMLPurifier
81   namespace.  Also, this is PHP5 only.
82 ! CSS property border-spacing implemented
83 - Fix non-visible parsing error in DirectLex with empty tags that have
84   slashes inside attribute values.
85 - Fix typo in CSS definition: border-collapse:seperate; was incorrectly
86   accepted as valid CSS. Usually non-visible, because this styling is the
87   default for tables in most browsers. Thanks Brett Zamir for pointing
88   this out.
89 - Fix validation errors in configuration form
90 - Hammer out a bunch of edge-case bugs in the standalone distribution
91 - Inclusion reflection removed from URISchemeRegistry; you must manually
92   include any new schema files you wish to use
93 - Numerous typo fixes in documentation thanks to Brett Zamir
94 . Unit test refactoring for one logical test per test function
95 . Config and context parameters in ComplexHarness deprecated: instead, edit
96   the $config and $context member variables
97 . HTML wrapper in DOMLex now takes DTD identifiers into account; doesn't
98   really make a difference, but is good for completeness sake
99 . merge-library.php script refactored for greater code reusability and
100   PHP4 compatibility
102 2.1.1, released 2007-08-04
103 - Fix show-stopper bug in %URI.MakeAbsolute functionality
104 - Fix PHP4 syntax error in standalone version
105 . Add prefix directory to include path for standalone, this prevents
106   other installations from clobbering the standalone's URI schemes
107 . Single test methods can be invoked by prefixing with __only
109 2.1.0, released 2007-08-02
110 # flush-htmldefinition-cache.php superseded in favor of a generic
111   flush-definition-cache.php script, you can clear a specific cache
112   by passing its name as a parameter to the script
113 ! Phorum mod implemented for HTML Purifier
114 ! With %Core.AggressivelyFixLt, <3 and similar emoticons no longer
115   trigger HTML removal in PHP5 (DOMLex). This directive is not necessary
116   for PHP4 (DirectLex).
117 ! Standalone file now available, which greatly reduces the amount of
118   includes (although there are still a few files that reside in the
119   standalone folder)
120 ! Relative URIs can now be transformed into their absolute equivalents
121   using %URI.Base and %URI.MakeAbsolute
122 ! Ruby implemented for XHTML 1.1
123 ! You can now define custom URI filtering behavior, see enduser-uri-filter.html
124   for more details
125 ! UTF-8 font names now supported in CSS
126 - AutoFormatters emit friendly error messages if tags or attributes they
127   need are not allowed
128 - ConfigForm's compactification of directive names is now configurable
129 - AutoParagraph autoformatter algorithm refined after field-testing
130 - XHTML 1.1 now applies XHTML 1.0 Strict cleanup routines, namely
131   blockquote wrapping
132 - Contents of <style> tags removed by default when tags are removed
133 . HTMLPurifier_Config->getSerial() implemented, this is extremely useful
134   for output cache invalidation
135 . ConfigForm printer now can retrieve CSS and JS files as strings, in
136   case HTML Purifier's directory is not publically accessible
137 . Introduce new text/itext configuration directive values: these represent
138   longer strings that would be more appropriately edited with a textarea
139 . Allow newlines to act as separators for lists, hashes, lookups and
140   %HTML.Allowed
141 . ConfigForm generates textareas instead of text inputs for lists, hashes,
142   lookups, text and itext fields
143 . Hidden element content removal genericized: %Core.HiddenElements can
144   be used to customize this behavior, by default <script> and <style> are
145   hidden
146 . Added HTMLPURIFIER_PREFIX constant, should be used instead of dirname(__FILE__)
147 . Custom ChildDef added to default include list
148 . URIScheme reflection improved: will not attempt to include file if class
149   already exists. May clobber autoload, so I need to keep an eye on it
150 . ConfigSchema heavily optimized, will only collect information and validate
151   definitions when HTMLPURIFIER_SCHEMA_STRICT is true.
152 . AttrDef_URI unit tests and implementation refactored
153 . benchmarks/ directory now protected from public view with .htaccess file;
154   run the tests via command line
155 . URI scheme is munged off if there is no authority and the scheme is the
156   default one
157 . All unit tests inherit from HTMLPurifier_Harness, not UnitTestCase
158 . Interface for URIScheme changed
159 . Generic URI object to hold components of URI added, most systems involved
160   in URI validation have been migrated to use it
161 . Custom filtering for URIs factored out to URIDefinition interface for
162   maximum extensibility
164 2.0.1, released 2007-06-27
165 ! Tag auto-closing now based on a ChildDef heuristic rather than a
166   manually set auto_close array; some behavior may change
167 ! Experimental AutoFormat functionality added: auto-paragraph and
168   linkify your HTML input by setting %AutoFormat.AutoParagraph and
169   %AutoFormat.Linkify to true
170 ! Newlines normalized internally, and then converted back to the
171   value of PHP_EOL. If this is not desired, set your newline format
172   using %Output.Newline.
173 ! Beta error collection, messages are implemented for the most generic
174   cases involving Lexing or Strategies
175 - Clean up special case code for <script> tags
176 - Reorder includes for DefinitionCache decorators, fixes a possible
177   missing class error
178 - Fixed bug where manually modified definitions were not saved via cache
179   (mostly harmless, except for the fact that it would be a little slower)
180 - Configuration objects with different serials do not clobber each
181   others when revision numbers are unequal
182 - Improve Serializer DefinitionCache directory permissions checks
183 - DefinitionCache no longer throws errors when it encounters old
184   serial files that do not conform to the current style
185 - Stray xmlns attributes removed from configuration documentation
186 - configForm.php smoketest no longer has XSS vulnerability due to
187   unescaped print_r output
188 - Printer adheres to configuration's directives on output format
189 - Fix improperly named form field in ConfigForm printer
190 . Rewire some test-cases to swallow errors rather than expect them
191 . HTMLDefinition printer updated with some of the new attributes
192 . DefinitionCache keys reordered to reflect precedence: version number,
193   hash, then revision number
194 . %Core.DefinitionCache renamed to %Cache.DefinitionImpl
195 . Interlinking in configuration documentation added using
196   Injector_PurifierLinkify
197 . Directives now keep track of aliases to themselves
198 . Error collector now requires a severity to be passed, use PHP's internal
199   error constants for this
200 . HTMLPurifier_Config::getAllowedDirectivesForForm implemented, allows
201   much easier selective embedding of configuration values
202 . Doctype objects now accept public and system DTD identifiers
203 . %HTML.Doctype is now constrained by specific values, to specify a custom
204   doctype use new %HTML.CustomDoctype
205 . ConfigForm truncates long directives to keep the form small, and does
206   not re-output namespaces
208 2.0.0, released 2007-06-20
209 # Completely refactored HTMLModuleManager, decentralizing safety
210   information
211 # Transform modules changed to Tidy modules, which offer more flexibility
212   and better modularization
213 # Configuration object now finalizes itself when a read operation is
214   performed on it, ensuring that its internal state stays consistent.
215   To revert this behavior, you can set the $autoFinalize member variable 
216   off, but it's not recommended.
217 # New compact syntax for AttrDef objects that can be used to instantiate
218   new objects via make()
219 # Definitions (esp. HTMLDefinition) are now cached for a significant
220   performance boost. You can disable caching by setting %Core.DefinitionCache
221   to null. You CANNOT edit raw definitions without setting the corresponding
222   DefinitionID directive (%HTML.DefinitionID for HTMLDefinition).
223 # Contents between <script> tags are now completely removed if <script>
224   is not allowed
225 # Prototype-declarations for Lexer removed in favor of configuration
226   determination of Lexer implementations.
227 ! HTML Purifier now works in PHP 4.3.2.
228 ! Configuration form-editing API makes tweaking HTMLPurifier_Config a
229   breeze!
230 ! Configuration directives that accept hashes now allow new string
231   format: key1:value1,key2:value2
232 ! ConfigDoc now factored into OOP design
233 ! All deprecated elements now natively supported
234 ! Implement TinyMCE styled whitelist specification format in
235   %HTML.Allowed
236 ! Config object gives more friendly error messages when things go wrong
237 ! Advanced API implemented: easy functions for creating elements (addElement)
238   and attributes (addAttribute) on HTMLDefinition
239 ! Add native support for required attributes
240 - Deprecated and removed EnableRedundantUTF8Cleaning. It didn't even work!
241 - DOMLex will not emit errors when a custom error handler that does not
242   honor error_reporting is used
243 - StrictBlockquote child definition refrains from wrapping whitespace
244   in tags now.
245 - Bug resulting from tag transforms to non-allowed elements fixed
246 - ChildDef_Custom's regex generation has been improved, removing several
247   false positives
248 . Unit test for ElementDef created, ElementDef behavior modified to
249   be more flexible
250 . Added convenience functions for HTMLModule constructors
251 . AttrTypes now has accessor functions that should be used instead
252   of directly manipulating info
253 . TagTransform_Center deprecated in favor of generic TagTransform_Simple
254 . Add extra protection in AttrDef_URI against phantom Schemes
255 . Doctype object added to HTMLDefinition which describes certain aspects
256   of the operational document type
257 . Lexer is now pre-emptively included, with a conditional include for the
258   PHP5 only version.
259 . HTMLDefinition and CSSDefinition have a common parent class: Definition.
260 . DirectLex can now track line-numbers
261 . Preliminary error collector is in place, although no code actually reports
262   errors yet
263 . Factor out most of ValidateAttributes to new AttrValidator class
265 1.6.1, released 2007-05-05
266 ! Support for more deprecated attributes via transformations:
267   + hspace and vspace in img
268   + size and noshade in hr
269   + nowrap in td
270   + clear in br
271   + align in caption, table, img and hr
272   + type in ul, ol and li
273 ! DirectLex now preserves text in which a < bracket is followed by
274   a non-alphanumeric character. This means that certain emoticons
275   are now preserved.
276 ! %Core.RemoveInvalidImg is now operational, when set to false invalid
277   images will hang around with an empty src
278 ! target attribute in a tag supported, use %Attr.AllowedFrameTargets
279   to enable
280 ! CSS property white-space now allows nowrap (supported in all modern
281   browsers) but not others (which have spotty browser implementations)
282 ! XHTML 1.1 mode now sort-of works without any fatal errors, and
283   lang is now moved over to xml:lang.
284 ! Attribute transformation smoketest available at smoketests/attrTransform.php
285 ! Transformation of font's size attribute now handles super-large numbers
286 - Possibly fatal bug with __autoload() fixed in module manager
287 - Invert HTMLModuleManager->addModule() processing order to check
288   prefixes first and then the literal module
289 - Empty strings get converted to empty arrays instead of arrays with
290   an empty string in them.
291 - Merging in attribute lists now works.
292 . Demo script removed: it has been added to the website's repository
293 . Basic.php script modified to work out of the box
294 . Refactor AttrTransform classes to reduce duplication
295 . AttrTransform_TextAlign axed in favor of a more general
296   AttrTransform_EnumToCSS, refer to HTMLModule/TransformToStrict.php to
297   see how the new equivalent is implemented
298 . Unit tests now use exclusively assertIdentical
300 1.6.0, released 2007-04-01
301 ! Support for most common deprecated attributes via transformations:
302   + bgcolor in td, th, tr and table
303   + border in img
304   + name in a and img
305   + width in td, th and hr
306   + height in td, th
307 ! Support for CSS attribute 'height' added
308 ! Support for rel and rev attributes in a tags added, use %Attr.AllowedRel
309   and %Attr.AllowedRev to activate
310 - You can define ID blacklists using regular expressions via
311   %Attr.IDBlacklistRegexp
312 - Error messages are emitted when you attempt to "allow" elements or
313   attributes that HTML Purifier does not support
314 - Fix segfault in unit test. The problem is not very reproduceable and
315   I don't know what causes it, but a six line patch fixed it.
317 1.5.0, released 2007-03-23
318 ! Added a rudimentary I18N and L10N system modeled off MediaWiki. It
319   doesn't actually do anything yet, but keep your eyes peeled.
320 ! docs/enduser-utf8.html explains how to use UTF-8 and HTML Purifier
321 ! Newly structured HTMLDefinition modeled off of XHTML 1.1 modules.
322   I am loathe to release beta quality APIs, but this is exactly that;
323   don't use the internal interfaces if you're not willing to do migration
324   later on.
325 - Allow 'x' subtag in language codes
326 - Fixed buggy chameleon-support for ins and del
327 . Added support for IDREF attributes (i.e. for)
328 . Renamed HTMLPurifier_AttrDef_Class to HTMLPurifier_AttrDef_Nmtokens
329 . Removed context variable ParentType, replaced with IsInline, which
330   is false when you're not inline and an integer of the parent that
331   caused you to become inline when you are (so possibly zero)
332 . Removed ElementDef->type in favor of ElementDef->descendants_are_inline
333   and HTMLDefinition->content_sets
334 . StrictBlockquote now reports what elements its supposed to allow,
335   rather than what it does allow
336 . Removed HTMLDefinition->info_flow_elements in favor of
337   HTMLDefinition->content_sets['Flow']
338 . Removed redundant "exclusionary" definitions from DTD roster
339 . StrictBlockquote now requires a construction parameter as if it
340   were an Required ChildDef, this is the "real" set of allowed elements
341 . AttrDef partitioned into HTML, CSS and URI segments
342 . Modify Youtube filter regexp to be multiline
343 . Require both PHP5 and DOM extension in order to use DOMLex, fixes
344   some edge cases where a DOMDocument class exists in a PHP4 environment
345   due to DOM XML extension.
347 1.4.1, released 2007-01-21
348 ! docs/enduser-youtube.html updated according to new functionality
349 - YouTube IDs can have underscores and dashes
351 1.4.0, released 2007-01-21
352 ! Implemented list-style-image, URIs now allowed in list-style
353 ! Implemented background-image, background-repeat, background-attachment
354   and background-position CSS properties. Shorthand property background
355   supports all of these properties.
356 ! Configuration documentation looks nicer
357 ! Added %Core.EscapeNonASCIICharacters to workaround loss of Unicode
358   characters while %Core.Encoding is set to a non-UTF-8 encoding.
359 ! Support for configuration directive aliases added
360 ! Config object can now be instantiated from ini files
361 ! YouTube preservation code added to the core, with two lines of code
362   you can add it as a filter to your code. See smoketests/preserveYouTube.php
363   for sample code.
364 ! Moved SLOW to docs/enduser-slow.html and added code examples
365 - Replaced version check with functionality check for DOM (thanks Stephen
366   Khoo)
367 . Added smoketest 'all.php', which loads all other smoketests via frames
368 . Implemented AttrDef_CSSURI for url(http://google.com) style declarations
369 . Added convenient single test selector form on test runner
371 1.3.2, released 2006-12-25
372 ! HTMLPurifier object now accepts configuration arrays, no need to manually
373   instantiate a configuration object
374 ! Context object now accessible to outside
375 ! Added enduser-youtube.html, explains how to embed YouTube videos. See
376   also corresponding smoketest preserveYouTube.php.
377 ! Added purifyArray(), which takes a list of HTML and purifies it all
378 ! Added static member variable $version to HTML Purifier with PHP-compatible
379   version number string.
380 - Fixed fatal error thrown by upper-cased language attributes
381 - printDefinition.php: added labels, added better clarification
382 . HTMLPurifier_Config::create() added, takes mixed variable and converts into
383   a HTMLPurifier_Config object.
385 1.3.1, released 2006-12-06
386 ! Added HTMLPurifier.func.php stub for a convenient function to call the library
387 - Fixed bug in RemoveInvalidImg code that caused all images to be dropped
388   (thanks to .mario for reporting this)
389 . Standardized all attribute handling variables to attr, made it plural
391 1.3.0, released 2006-11-26
392 # Invalid images are now removed, rather than replaced with a dud
393   <img src="" alt="Invalid image" />. Previous behavior can be restored
394   with new directive %Core.RemoveInvalidImg set to false.
395 ! (X)HTML Strict now supported
396   + Transparently handles inline elements in block context (blockquote)
397 ! Added GET method to demo for easier validation, added 50kb max input size
398 ! New directive %HTML.BlockWrapper, for block-ifying inline elements
399 ! New directive %HTML.Parent, allows you to only allow inline content
400 ! New directives %HTML.AllowedElements and %HTML.AllowedAttributes to let
401   users narrow the set of allowed tags
402 ! <li value="4"> and <ul start="2"> now allowed in loose mode
403 ! New directives %URI.DisableExternalResources and %URI.DisableResources
404 ! New directive %Attr.DisableURI, which eliminates all hyperlinking
405 ! New directive %URI.Munge, munges URI so you can use some sort of redirector
406   service to avoid PageRank leaks or warn users that they are exiting your site.
407 ! Added spiffy new smoketest printDefinition.php, which lets you twiddle with
408   the configuration settings and see how the internal rules are affected.
409 ! New directive %URI.HostBlacklist for blocking links to bad hosts.
410   xssAttacks.php smoketest updated accordingly.
411 - Added missing type to ChildDef_Chameleon
412 - Remove Tidy option from demo if there is not Tidy available
413 . ChildDef_Required guards against empty tags
414 . Lookup table HTMLDefinition->info_flow_elements added
415 . Added peace-of-mind variable initialization to Strategy_FixNesting
416 . Added HTMLPurifier->info_parent_def, parent child processing made special
417 . Added internal documents briefly summarizing future progression of HTML
418 . HTMLPurifier_Config->getBatch($namespace) added
419 . More lenient casting to bool from string in HTMLPurifier_ConfigSchema
420 . Refactored ChildDef classes into their own files
422 1.2.0, released 2006-11-19
423 # ID attributes now disabled by default. New directives:
424   + %HTML.EnableAttrID - restores old behavior by allowing IDs
425   + %Attr.IDPrefix - %Attr.IDBlacklist alternative that munges all user IDs
426     so that they don't collide with your IDs
427   + %Attr.IDPrefixLocal - Same as above, but for when there are multiple
428     instances of user content on the page
429   + Profuse documentation on how to use these available in docs/enduser-id.txt
430 ! Added MODx plugin <http://modxcms.com/forums/index.php/topic,6604.0.html>
431 ! Added percent encoding normalization
432 ! XSS attacks smoketest given facelift
433 ! Configuration documentation now has table of contents
434 ! Added %URI.DisableExternal, which prevents links to external websites.  You
435   can also use %URI.Host to permit absolute linking to subdomains
436 ! Non-accessible resources (ex. mailto) blocked from embedded URIs (img src)
437 - Type variable in HTMLDefinition was not being set properly, fixed
438 - Documentation updated
439   + TODO added request Phalanger
440   + TODO added request Native compression
441   + TODO added request Remove redundant tags
442   + TODO added possible plaintext formatter for HTML Purifier documentation
443   + Updated ConfigDoc TODO
444   + Improved inline comments in AttrDef/Class.php, AttrDef/CSS.php
445     and AttrDef/Host.php
446   + Revamped documentation into HTML, along with misc updates
447 - HTMLPurifier_Context doesn't throw a variable reference error if you attempt
448   to retrieve a non-existent variable
449 . Switched to purify()-wide Context object registry
450 . Refactored unit tests to minimize duplication
451 . XSS attack sheet updated
452 . configdoc.xml now has xml:space attached to default value nodes
453 . Allow configuration directives to permit null values
454 . Cleaned up test-cases to remove unnecessary swallowErrors()
456 1.1.2, released 2006-09-30
457 ! Add HTMLPurifier.auto.php stub file that configures include_path
458 - Documentation updated
459   + INSTALL document rewritten
460   + TODO added semi-lossy conversion
461   + API Doxygen docs' file exclusions updated
462   + Added notes on HTML versus XML attribute whitespace handling
463   + Noted that HTMLPurifier_ChildDef_Custom isn't being used
464   + Noted that config object's definitions are cached versions
465 - Fixed lack of attribute parsing in HTMLPurifier_Lexer_PEARSax3
466 - ftp:// URIs now have their typecodes checked
467 - Hooked up HTMLPurifier_ChildDef_Custom's unit tests (they weren't being run)
468 . Line endings standardized throughout project (svn:eol-style standardized)
469 . Refactored parseData() to general Lexer class
470 . Tester named "HTML Purifier" not "HTMLPurifier"
472 1.1.1, released 2006-09-24
473 ! Configuration option to optionally Tidy up output for indentation to make up
474   for dropped whitespace by DOMLex (pretty-printing for the entire application
475   should be done by a page-wide Tidy)
476 - Various documentation updates
477 - Fixed parse error in configuration documentation script
478 - Fixed fatal error in benchmark scripts, slightly augmented
479 - As far as possible, whitespace is preserved in-between table children
480 - Sample test-settings.php file included
482 1.1.0, released 2006-09-16
483 ! Directive documentation generation using XSLT
484 ! XHTML can now be turned off, output becomes <br>
485 - Made URI validator more forgiving: will ignore leading and trailing
486   quotes, apostrophes and less than or greater than signs.
487 - Enforce alphanumeric namespace and directive names for configuration.
488 - Table child definition made more flexible, will fix up poorly ordered elements
489 . Renamed ConfigDef to ConfigSchema
491 1.0.1, released 2006-09-04
492 - Fixed slight bug in DOMLex attribute parsing
493 - Fixed rejection of case-insensitive configuration values when there is a
494   set of allowed values.  This manifested in %Core.Encoding.
495 - Fixed rejection of inline style declarations that had lots of extra
496   space in them.  This manifested in TinyMCE.
498 1.0.0, released 2006-09-01
499 ! Shorthand CSS properties implemented: font, border, background, list-style
500 ! Basic color keywords translated into hexadecimal values
501 ! Table CSS properties implemented
502 ! Support for charsets other than UTF-8 (defined by iconv)
503 ! Malformed UTF-8 and non-SGML character detection and cleaning implemented
504 - Fixed broken numeric entity conversion
505 - API documentation completed
506 . (HTML|CSS)Definition de-singleton-ized
508 1.0.0beta, released 2006-08-16
509 ! First public release, most functionality implemented. Notable omissions are:
510   + Shorthand CSS properties
511   + Table CSS properties
512   + Deprecated attribute transformations