<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns="http://purl.org/rss/1.0/"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
    <channel rdf:about="http://pear.php.net">
    <link>http://pear.php.net/</link>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <dc:language>en-us</dc:language><items>
<rdf:Seq><rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/2.1.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/2.0.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/2.0.0RC1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/2.0.0beta1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/0.3.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/0.2.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_Common2/download/0.1.0/"/>
</rdf:Seq>
</items>

<title>Latest releases of html_common2</title>
<description>The latest releases for the package html_common2</description>
</channel>

<item rdf:about="http://pear.php.net/package/HTML_Common2/download/2.1.0/">
 <title>HTML_Common2 2.1.0</title>
 <link>http://pear.php.net/package/HTML_Common2/download/2.1.0/</link>
 <content:encoded>* HTML_Common2 now implements ArrayAccess, allowing more intuitive attribute&lt;br /&gt;
  handling similar to that of SimpleXML extension&lt;br /&gt;
* Unit tests properly run under recent PHPUnit versions and from SVN checkout&lt;br /&gt;
* Coding standards fixes
 </content:encoded>
 <dc:date>2012-04-08T17:09:32-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/2.0.0/">
 <title>HTML_Common2 2.0.0</title>
 <link>http://pear.php.net/package/HTML_Common2/download/2.0.0/</link>
 <content:encoded>* Due to addition of end-user docs to PEAR manual, the package is now &lt;br /&gt;
  declared stable&lt;br /&gt;
* Added array type hinting to removeAttributeArray() and getAttributesString()&lt;br /&gt;
  methods&lt;br /&gt;
* Packaging fix: tests now install without redundant subdirectory, to&lt;br /&gt;
  @test_dir@/HTML_Common2 rather than to @test_dir@/HTML_Common2/tests
 </content:encoded>
 <dc:date>2010-10-20T10:57:53-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/2.0.0RC1/">
 <title>HTML_Common2 2.0.0RC1</title>
 <link>http://pear.php.net/package/HTML_Common2/download/2.0.0RC1/</link>
 <content:encoded>* HTML_Common2::getOption() now returns an array of all options if no option&lt;br /&gt;
  name is given (see request #11209), setOption() can accept an array of options&lt;br /&gt;
* Implemented hasClass() / addClass() / removeClass() methods for working with&lt;br /&gt;
  element's CSS classes (see request #10191).&lt;br /&gt;
* Packaging fixes: added AllTests.php, updated PEAR installer dependency
 </content:encoded>
 <dc:date>2009-09-27T08:22:26-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/2.0.0beta1/">
 <title>HTML_Common2 2.0.0beta1</title>
 <link>http://pear.php.net/package/HTML_Common2/download/2.0.0beta1/</link>
 <content:encoded>* Use phpunit/PHPUnit rather than pear/PHPUnit2 for unit testing needs&lt;br /&gt;
* &quot;Fluent interfaces&quot;: all methods that didn't return anything now&lt;br /&gt;
  return $this. The following methods are affected: mergeAttributes(),&lt;br /&gt;
  removeAttribute(), setAttribute(), setAttributes(), setComment() and&lt;br /&gt;
  setIndentLevel().
 </content:encoded>
 <dc:date>2007-05-04T06:09:11-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/0.3.0/">
 <title>HTML_Common2 0.3.0</title>
 <link>http://pear.php.net/package/HTML_Common2/download/0.3.0/</link>
 <content:encoded>Radical changes to API are not expected after this release, you may use the &lt;br /&gt;
package for development.&lt;br /&gt;
&lt;br /&gt;
Changes:&lt;br /&gt;
* Renamed 'encoding' option to 'charset', as htmlspecialchars() parameter is named&lt;br /&gt;
* Removed toHtml() and display() methods, __toString() is now declared abstract&lt;br /&gt;
* Attribute values are always converted to strings&lt;br /&gt;
* Minor performance tweaks&lt;br /&gt;
* Switched to BSD license and package.xml 2.0
 </content:encoded>
 <dc:date>2006-10-16T09:09:40-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/0.2.0/">
 <title>HTML_Common2 0.2.0</title>
 <link>http://pear.php.net/package/HTML_Common2/download/0.2.0/</link>
 <content:encoded>* $attributes array is now protected rather than private (and thus renamed&lt;br /&gt;
  from $_attributes)&lt;br /&gt;
* parseAttributes() was renamed to prepareAttributes(), string parsing logic&lt;br /&gt;
  was extracted into the new parseAttributes() method&lt;br /&gt;
* Added magic __toString() method as an alias for toHtml(), deprecated&lt;br /&gt;
  display(): it is now possible to print an instance of HTML_Common2 subclass&lt;br /&gt;
  by simply using the 'echo $object;'&lt;br /&gt;
* It is now possible to watch some attributes for changes, this can be used to&lt;br /&gt;
  - Make attributes read-only (like 'type' attribute of &lt;input /&gt; tag)&lt;br /&gt;
  - Do some custom processing (update the element's value if its name changes)
 </content:encoded>
 <dc:date>2006-07-03T14:51:11-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_Common2/download/0.1.0/">
 <title>HTML_Common2 0.1.0</title>
 <link>http://pear.php.net/package/HTML_Common2/download/0.1.0/</link>
 <content:encoded>First release of a new major version.
 </content:encoded>
 <dc:date>2004-10-27T05:38:56-05:00</dc:date>
</item>

</rdf:RDF>