Prettify release directory output.
[htmlpurifier-web.git] / news.xhtml
blob80f7c461b11fdf5aea913dbaf712f61c5c21c8bc
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:xi="http://www.w3.org/2001/XInclude"
6 xmlns:xc="urn:xhtml-compiler"
7 xmlns:rss="urn:xhtml-compiler:RSSGenerator"
8 xmlns:svn="urn:xhtml-compiler:Subversion"
9 svn:head-url="$HeadURL: svn+ssh://ezyang@htmlpurifier.org/svnroot/htmlpurifier-web/trunk/index.xhtml $"
10 svn:revision="$Revision: 1139 $"
11 xml:lang="en">
12 <head>
13 <title>News - HTML Purifier</title>
14 <xi:include href="common-meta.xml" xpointer="xpointer(/*/node())" />
15 <meta name="description"
16 content="Recent news related to HTML Purifier." />
17 <meta name="keywords"
18 content="HTMLPurifier, HTML Purifier, HTML, filter, filtering, standards, compliant, w3c, news, blog, releases, rss" />
19 <link rel="alternate" type="application/rss+xml"
20 title="News - HTML Purifier" href="news.rss"
21 rss:for="news-container"
22 rss:description="Recent news and updates on HTML Purifier" />
23 </head>
24 <body>
26 <xi:include href="common-header.xml" xpointer="xpointer(/*/node())" />
27 <h1 id="title">News</h1>
29 <div id="content">
31 <xi:include href="download-box.xml" xpointer="xpointer(/*/node())" />
33 <div id="news-container" class="news">
35 <div class="item" id="news-3.1.0rc1-released">
36 <h3 class="title">HTML Purifier 3.1.0 release candidate</h3>
37 <div class="date">Tue, 22 Apr 2008 02:51:00 EST</div>
39 <div class="body">
40 <p>
41 I assure you, this has <em>never</em> happened before to HTML Purifier;
42 never before have we had a release candidate. I assure you, there is
43 something big with this release, and that's why I am painstakingly
44 doing a release candidate before the official 3.1 series begins.
45 </p>
46 <p>
47 To read more about it, please check out the
48 <a href="news/2008/3.1.0rc1-released.html">3.1.0rc1 release candidate page</a>.
49 </p>
50 </div>
51 </div>
53 <div class="item" id="news-3.0.0-released">
54 <h3 class="title">HTML Purifier 3.0.0 released</h3>
55 <div class="date">Sun, 06 Jan 2008 10:44:00 EST</div>
57 <div class="body">
58 <p>
59 Release 3.0.0 is the first release of 2008 and also HTML Purifier's first
60 <a href="http://gophp5.org/">PHP 5 only</a> release.
61 The 2.1 series will still
62 <a href="download.html#PHP4">be supported for bug and security fixes,</a>
63 but will not get new features. This release a number of
64 improvements in <abbr>CSS</abbr> handling, including the filter
65 <code>HTMLPurifier_Filter_ExtractStyleBlocks</code> which integrates
66 HTML Purifier with
67 <a href="http://csstidy.sourceforge.net/">CSSTidy</a> for cleaning style sheets
68 (see the source code file for more information on usage), contains
69 experimental support for
70 proprietary <abbr>CSS</abbr> properties with %CSS.Proprietary, case-insensitive
71 <abbr>CSS</abbr> properties, and more lenient hexadecimal color codes. Also, all code
72 has been upgraded to full <abbr>PHP</abbr> 5 and is
73 <code>E_STRICT</code> clean for all versions of PHP 5 (including the
74 5.0 series, which previously had parse-time errors).
75 </p>
76 <p>
77 See <a href="http://htmlpurifier.org/svnroot/htmlpurifier/tags/3.0.0/NEWS">NEWS</a>
78 for a complete changelog.
79 </p>
80 </div>
81 </div>
83 <div class="item" id="news-2.1.3-released">
84 <h3 class="title">HTML Purifier 2.1.3 released</h3>
85 <div class="date">Tue, 06 Nov 2007 11:32:22 EST</div>
87 <div class="body">
88 <p>
89 Stability release 2.1.3 fixes a slew of minor bugs found in HTML Purifier,
90 and also includes some internal code enhancements and refactorings.
91 Notably, tests/multitest.php automates testing in multiple versions,
92 fatal AttrDef_URI_Email error fixed, blockquote contents are more lenient
93 in HTML 4.01 Strict and fatal errors involving ID tags in img tags were
94 fixed.
95 </p>
96 <p>
97 See <a href="http://htmlpurifier.org/svnroot/htmlpurifier/tags/2.1.3/NEWS">NEWS</a>
98 for a complete changelog.
99 </p>
100 </div>
101 </div>
103 <div class="item" id="news-2.1.2-released">
104 <h3 class="title">HTML Purifier 2.1.2 released</h3>
105 <div class="date">Mon, 03 Sep 2007 16:06:00 EDT</div>
107 <div class="body">
109 Version 2.1.2 is a mix of experimental features and stability updates.
110 Among new features: an Object module for trusted users, support for the
111 CSS property 'border-spacing', and HTML 5 style parsing using PH5P.
112 Bug fixes have resolved a few obscure issues including <code>border-collapse:seperate</code>,
113 a DirectLex parsing error, broken HTML in printDefinition.php, and problems
114 with the experimental standalone distribution. Also, there were large
115 amounts of behind-the-scenes refactoring and the removal of URIScheme
116 inclusion reflection.
117 </p>
119 The new PH5P feature is especially exciting, and can be tested at
120 the <a href="demo.php?experimental=1">demo with the experimental flag</a>.
121 You can enable it using:
122 </p>
123 <pre>require_once 'HTMLPurifier/Lexer/PH5P.php';
124 $config->set('Core', 'LexerImpl', 'PH5P');</pre>
126 Be sure to report bugs! And of course,
127 see <a href="http://htmlpurifier.org/svnroot/htmlpurifier/tags/2.1.2/NEWS">NEWS</a>
128 for a complete changelog.
129 </p>
130 </div>
131 </div>
133 <div class="item" id="news-2.1.1-released">
134 <h3 class="title">HTML Purifier 2.1.1 released</h3>
135 <div class="date">Sat, 04 Aug 2007 22:33:55 EDT</div>
137 <div class="body">
139 It looks like I'm going to have to start making release candidates
140 before I release new major versions. There were three show-stopper
141 bugs for version 2.1.0:
142 </p>
143 <ul>
144 <li>
145 The <abbr>PHP</abbr>5-strict version was missing a lot of new
146 features due to a botched merge, making it functionally equivalent
147 to the previous 2.0.1 release.
148 </li>
149 <li>
150 The new %URI.MakeAbsolute feature, the flagship of the new URI
151 system, just didn't work due to a slight misordering of two
152 method calls.
153 </li>
154 <li>
155 The new standalone distribution did not work on <abbr>PHP</abbr>4
156 because a <abbr>PHP</abbr>5 specific file was inlined, resulting
157 in a parse error.
158 </li>
159 </ul>
161 All of these issues have been fixed and our release strategy has been
162 amended to ensure that it does not happen again. See <a
163 href="http://htmlpurifier.org/svnroot/htmlpurifier/tags/2.1.1/NEWS">NEWS</a>
164 for a complete changelog, though not much else changed in this version.
165 </p>
166 </div>
167 </div>
169 <div class="item" id="news-2.1.0-released">
170 <h3 class="title">HTML Purifier 2.1.0 released</h3>
171 <div class="date">Thur, 02 Aug 2007 23:33:09 EDT</div>
173 <div class="body">
175 In version 2.1, HTML Purifier's URI validation and filtering handling
176 system has been revamped with a <a href="docs/enduser-uri-filter.html">new, extensible URIFilter system</a>. Also
177 notable features include preservation of emoticons in PHP5 with
178 <a href="live/configdoc/plain.html#Core.AggressivelyFixLt">%Core.AggressivelyFixLt</a>, standalone and lite download versions,
179 <del>transforming relative URIs to absolute URIs</del>, Ruby in XHTML 1.1 and UTF-8 font
180 names. Notable bug-fixes include refinement of
181 the auto-paragraphing algorithm (no longer experimental), better XHTML
182 1.1 support and the removal of the contents of <code>&lt;style&gt;</code> elements.
183 </p>
185 <strong>Update:</strong> It has come to my attention that there is
186 a bug with the %URI.MakeAbsolute functionality; apply
187 <a href="http://htmlpurifier.org/phorum/read.php?3,573,574#msg-574">a patch</a>
188 to fix the problem, or wait until the next version.
189 </p>
191 As usual, see <a
192 href="http://htmlpurifier.org/svnroot/htmlpurifier/tags/2.1.0/NEWS">NEWS</a>
193 for a complete changelog.
194 </p>
195 </div>
196 </div>
198 <div class="item" id="news-nightlies">
199 <h3 class="title">Nightly Builds Now Available</h3>
200 <div class="date">Tue, 31 July 2007 08:39:02 EDT</div>
202 <div class="body">
204 Nightly builds are now available for HTML Purifier, you can get
205 them here: <a href="download.html#NightlyBuilds">Nightly Builds</a>.
206 Be sure to check out the <strong>Standalone</strong> version: it's
207 essentially HTML Purifier in one file.
208 </p>
209 </div>
210 </div>
212 </div> <!-- end news-container -->
214 </div>
216 </body>
217 </html>