NEWS 62 KB

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