<?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_QuickForm_Renderer_Tableless/download/0.6.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.6.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.3/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.0/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.3/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.2/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.1/"/>
<rdf:li rdf:resource="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.0/"/>
</rdf:Seq>
</items>

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

<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.6.1/">
 <title>HTML_QuickForm_Renderer_Tableless 0.6.1</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.6.1/</link>
 <content:encoded>- Bug #14443: form fields with regular expression syntax characters (e.g. with&lt;br /&gt;
  '**') were not added to the form and generated a PHP warning&lt;br /&gt;
  (thanks to Nikola Vignjevic)
 </content:encoded>
 <dc:date>2008-09-23T12:15:08-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.6.0/">
 <title>HTML_QuickForm_Renderer_Tableless 0.6.0</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.6.0/</link>
 <content:encoded>- setElementTemplate() now allows to apply a template multiple elements with&lt;br /&gt;
  a single call (the second parameter can now be an array of element names;&lt;br /&gt;
  this addition was inspired by a blog comment from Noel, herrnoel at gmail&lt;br /&gt;
  dot com, thanks)
 </content:encoded>
 <dc:date>2007-10-24T16:39:46-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.3/">
 <title>HTML_QuickForm_Renderer_Tableless 0.5.3</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.3/</link>
 <content:encoded>- Bug #11164: Static elements generate invalid XHTML code
 </content:encoded>
 <dc:date>2007-05-29T14:44:47-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.2/">
 <title>HTML_QuickForm_Renderer_Tableless 0.5.2</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.2/</link>
 <content:encoded>- Bug #10926: &quot;Undefined index in HTML/QuickForm/Renderer/Tableless.php:441&quot;
 </content:encoded>
 <dc:date>2007-05-04T10:25:36-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.1/">
 <title>HTML_QuickForm_Renderer_Tableless 0.5.1</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.1/</link>
 <content:encoded>- Request #10848: addStopFieldsetElements() now accepts also group names&lt;br /&gt;
- Request #10850: an additional class name for the hidden fieldsets that are&lt;br /&gt;
  generated by addStopFieldsetElements() can now be specified via the new&lt;br /&gt;
  second parameter&lt;br /&gt;
  (the template variable {class} was added to the openHiddenFieldsetTemplate)
 </content:encoded>
 <dc:date>2007-05-03T17:48:31-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.0/">
 <title>HTML_QuickForm_Renderer_Tableless 0.5.0</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.5.0/</link>
 <content:encoded>It is now possible to add attributes to the fieldset tags. A short example:&lt;br /&gt;
&lt;br /&gt;
$form-&gt;addElement('header', 'header', 'A new fieldset');&lt;br /&gt;
$header =&amp; $form-&gt;getElement('header');&lt;br /&gt;
$header-&gt;setAttribute('style', 'border: 2px dashed blue;');&lt;br /&gt;
&lt;br /&gt;
(Setting the attributes via addElement() is not possible for 'header' elements.)&lt;br /&gt;
  &lt;br /&gt;
To add the attributes to the fieldset tags, the template variable {attributes}&lt;br /&gt;
was added into the &quot;openFieldsetTemplate&quot;.&lt;br /&gt;
&lt;br /&gt;
To avoid problems with nested fieldsets, the fieldset and the legend tag have&lt;br /&gt;
now &quot;100%&quot; instead of &quot;560px&quot; width. If you want to use nested fieldsets, you&lt;br /&gt;
should consider re-enabling the border in the &quot;form fieldset&quot; block of the&lt;br /&gt;
stylesheet.
 </content:encoded>
 <dc:date>2007-04-23T13:21:12-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.3/">
 <title>HTML_QuickForm_Renderer_Tableless 0.4.3</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.3/</link>
 <content:encoded>The &quot;height: 1px;&quot; style was removed from &quot;form fieldset li&quot; block in the&lt;br /&gt;
stylesheet to achieve layout compatibility with Windows Internet Explorer 7.&lt;br /&gt;
&lt;br /&gt;
WARNING: This breaks layout compatibility with Firefox 1.x browsers (Firefox 2.0&lt;br /&gt;
still works as expected). The FAQ for this package in the PEAR manual contains&lt;br /&gt;
solutions for getting Firefox 1.x compatibility.&lt;br /&gt;
&lt;br /&gt;
(thanks to Brett Bieber and Alvin Woon for investigation on the layout issues&lt;br /&gt;
and the provided solutions)
 </content:encoded>
 <dc:date>2006-12-04T15:30:34-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.2/">
 <title>HTML_QuickForm_Renderer_Tableless 0.4.2</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.2/</link>
 <content:encoded>- fixed handling of empty header elements (which resulted in invalid XHTML code)
 </content:encoded>
 <dc:date>2006-11-09T16:13:45-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.1/">
 <title>HTML_QuickForm_Renderer_Tableless 0.4.1</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.1/</link>
 <content:encoded>In some browser (Firefox &lt; 2.0, Safari 2) the layout of the generated was&lt;br /&gt;
broken. This release adds two styles to the &quot;form fieldset&quot; as well as to the&lt;br /&gt;
&quot;form fieldset li&quot; blocks in the stylesheet.&lt;br /&gt;
(thanks to Brett Bieber for the patch)&lt;br /&gt;
&lt;br /&gt;
Comparisons of all changes to the stylesheet are available:&lt;br /&gt;
- between release 0.3.4 and release 0.4.1:&lt;br /&gt;
  http://pear.markwiesemann.eu/stylesheet-comparison-0.3.4-0.4.1.txt&lt;br /&gt;
- between release 0.4.0 and release 0.4.1:&lt;br /&gt;
  http://pear.markwiesemann.eu/stylesheet-comparison-0.4.0-0.4.1.txt
 </content:encoded>
 <dc:date>2006-11-02T13:10:02-05:00</dc:date>
</item>
<item rdf:about="http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.0/">
 <title>HTML_QuickForm_Renderer_Tableless 0.4.0</title>
 <link>http://pear.php.net/package/HTML_QuickForm_Renderer_Tableless/download/0.4.0/</link>
 <content:encoded>- this package is now in beta status, i.e. the API can be considered as stable&lt;br /&gt;
- this package is now licensed under the New BSD license&lt;br /&gt;
- end-user documentation is now available in the manual&lt;br /&gt;
- bugfix: for real groups (e.g. groups of checkboxes) the &quot;id&quot; attribute was&lt;br /&gt;
  set two times (and an invalid &quot;for&quot; attribute was added to the label&lt;br /&gt;
  element)&lt;br /&gt;
- changes in the div tag (in the form template) for the hidden elements:&lt;br /&gt;
  * added a line break (\n) after the opening div tag&lt;br /&gt;
  * added a tab (\t) before the closing div tag&lt;br /&gt;
- changes in the templates: rows (consisting of a label and an element) are not&lt;br /&gt;
  put anymore into a div tag, but in a li element (and all li elements in an ol&lt;br /&gt;
  element); this adds also a more semantical meaning to the generated forms&lt;br /&gt;
  (a full list of changes to the templates is available on&lt;br /&gt;
  http://pear.markwiesemann.eu/template-changes-0.4.0.txt)&lt;br /&gt;
&lt;br /&gt;
  WARNING: you need to adopt the stylesheet changes (see also below) to&lt;br /&gt;
           your stylesheets, because otherwise your forms will not work&lt;br /&gt;
           (in terms of layout) anymore&lt;br /&gt;
&lt;br /&gt;
- example file: added three hidden form elements&lt;br /&gt;
- added &quot;id&quot; attribute also to group elements (and the &quot;for&quot; attribute to the&lt;br /&gt;
  label tag for groups)&lt;br /&gt;
- added &quot;id&quot; attribute also to hidden elemens&lt;br /&gt;
- removed &quot;qf&quot; prefix from CSS class names&lt;br /&gt;
  (exception: &quot;label.qflabel&quot; was renamed into &quot;label.element&quot;)&lt;br /&gt;
- adjusted the layout in the example file and the bundled stylesheet to the&lt;br /&gt;
  layout of the default renderer:&lt;br /&gt;
  * fieldsets now don't have a border and no top or bottom margin, and the&lt;br /&gt;
    fieldset legends have gotten a grey background (in Firefox not for the whole&lt;br /&gt;
    width of the fieldset)&lt;br /&gt;
  * element labels are now in a bold font&lt;br /&gt;
  * the required note is now horizontally aligned like the form elements, and&lt;br /&gt;
    not as before on the left margin&lt;br /&gt;
  (a comparison of all changes to the stylesheet is available on&lt;br /&gt;
  http://pear.markwiesemann.eu/stylesheet-comparison-0.4.0.txt)
 </content:encoded>
 <dc:date>2006-10-31T08:49:45-05:00</dc:date>
</item>

</rdf:RDF>