<?xml version="1.0"?>
<?xml-stylesheet
href="http://www.w3.org/2000/08/w3c-synd/style.css" type="text/css"
?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel rdf:about="http://pear.php.net/bugs/search.php">
    <title>PEAR Bug Search Results</title>
    <link>http://pear.php.net/bugs/search.php?cmd=display&amp;package_name%5B0%5D=HTML_TreeMenu</link>
    <description>Search Results</description>
    <dc:language>en-us</dc:language>
    <dc:creator>pear-webmaster@lists.php.net</dc:creator>
    <dc:publisher>pear-webmaster@lists.php.net</dc:publisher>
    <admin:generatorAgent rdf:resource="http://pear.php.net/bugs"/>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
    <items>
     <rdf:Seq>
      <rdf:li rdf:resource="http://pear.php.net/bug/19116" />
      <rdf:li rdf:resource="http://pear.php.net/bug/18310" />
      <rdf:li rdf:resource="http://pear.php.net/bug/14499" />
      <rdf:li rdf:resource="http://pear.php.net/bug/9750" />
      <rdf:li rdf:resource="http://pear.php.net/bug/5596" />

     </rdf:Seq>
    </items>
  </channel>

  <image rdf:about="http://pear.php.net/gifs/pearsmall.gif">
    <title>PEAR Bugs</title>
    <url>http://pear.php.net/gifs/pearsmall.gif</url>
    <link>http://pear.php.net/bugs</link>
  </image>

    <item rdf:about="http://pear.php.net/bug/19116">
      <title>HTML_TreeMenu: Bug 19116 [Open] EXPECT section lacks expected output in testBug_9750.phpt</title>
      <link>http://pear.php.net/bugs/19116</link>
      <content:encoded><![CDATA[<pre>HTML_TreeMenu Bug
Reported by danielc
2011-12-08T03:22:58+00:00
PHP: 5_4 SVN-2011-12-07 OS:  Package Version: SVN

Description:
------------
The FILE section of testBug_9750.phpt echos output of two methods but the EXPECT section does not account for that.

This is something you'll need to check on, please.</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_TreeMenu Bug
Reported by danielc
2011-12-08T03:22:58+00:00
PHP: 5_4 SVN-2011-12-07 OS:  Package Version: SVN

Description:
------------
The FILE section of testBug_9750.phpt echos output of two methods but the EXPECT section does not account for that.

This is something you'll need to check on, please.</pre>]]></description>
      <dc:date>2011-12-08T03:22:58+00:00</dc:date>
      <dc:creator>danielc &amp;#x61;&amp;#116; analysisandsolutions &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>HTML_TreeMenu Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/18310">
      <title>HTML_TreeMenu: Feature/Change Request 18310 [Open] Fixed width display and line wrapping.</title>
      <link>http://pear.php.net/bugs/18310</link>
      <content:encoded><![CDATA[<pre>HTML_TreeMenu Feature/Change Request
Reported by tbannister
2011-02-24T21:13:40+00:00
PHP: Irrelevant OS:  Package Version: 1.2.2

Description:
------------
I would like to see a version of the HTML menu that can have line items wrapped.  I understand this would require some big changes to the menu, like switching from using image tags to using background images, but I have a request from a client for this functionality.

Expected result:
----------------
When wrapped, items should span several lines with no break or interruption in the menu lines.

Actual result:
--------------
If you can force the lines to wrap (which is difficult in itself) the vertical images show up with large breaks where the wrapped lines show up.</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_TreeMenu Feature/Change Request
Reported by tbannister
2011-02-24T21:13:40+00:00
PHP: Irrelevant OS:  Package Version: 1.2.2

Description:
------------
I would like to see a version of the HTML menu that can have line items wrapped.  I understand this would require some big changes to the menu, like switching from using image tags to using background images, but I have a request from a client for this functionality.

Expected result:
----------------
When wrapped, items should span several lines with no break or interruption in the menu lines.

Actual result:
--------------
If you can force the lines to wrap (which is difficult in itself) the vertical images show up with large breaks where the wrapped lines show up.</pre>]]></description>
      <dc:date>2011-02-24T21:13:40+00:00</dc:date>
      <dc:creator>tyler &amp;#x61;&amp;#116; bannister &amp;#x64;&amp;#111;&amp;#x74; ca</dc:creator>
      <dc:subject>HTML_TreeMenu Feature/Change Request</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/14499">
      <title>HTML_TreeMenu: Bug 14499 [Open] working with AJAX</title>
      <link>http://pear.php.net/bugs/14499</link>
      <content:encoded><![CDATA[<pre>HTML_TreeMenu Bug
Reported by skianter
2008-08-13T17:31:36+00:00
PHP: Irrelevant OS:  Package Version: 1.2.1

Description:
------------
I'm making ajax call to a php script that contains this:

$menu = &amp;HTML_TreeMenu::createFromStructure(array('structure' =&gt; $tree_struct));

// Create the presentation class
$treeMenu = &amp;new HTML_TreeMenu_DHTML($menu, array('images' =&gt; 'libconf/pear/HTML/images', 'defaultClass' =&gt; 'treeMenuDefault'));
	
$treeMenu-&gt;printMenu();

and I'm putting the output in a &lt;DIV&gt;.
first of all, in IE there'is the first problem because it doesn't like the &lt;script&gt; tag...so I have to remove that from the HTML_TreeMenu_DHTML.toHTML()...
In this way IE put the output in the DIV as required.
With Firefox there isn't that problem.
Then I try to (javascript) eval this output so that JS draw the tree, but it draws on a new page...
How to draw in the DIV?</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_TreeMenu Bug
Reported by skianter
2008-08-13T17:31:36+00:00
PHP: Irrelevant OS:  Package Version: 1.2.1

Description:
------------
I'm making ajax call to a php script that contains this:

$menu = &amp;HTML_TreeMenu::createFromStructure(array('structure' =&gt; $tree_struct));

// Create the presentation class
$treeMenu = &amp;new HTML_TreeMenu_DHTML($menu, array('images' =&gt; 'libconf/pear/HTML/images', 'defaultClass' =&gt; 'treeMenuDefault'));
	
$treeMenu-&gt;printMenu();

and I'm putting the output in a &lt;DIV&gt;.
first of all, in IE there'is the first problem because it doesn't like the &lt;script&gt; tag...so I have to remove that from the HTML_TreeMenu_DHTML.toHTML()...
In this way IE put the output in the DIV as required.
With Firefox there isn't that problem.
Then I try to (javascript) eval this output so that JS draw the tree, but it draws on a new page...
How to draw in the DIV?</pre>]]></description>
      <dc:date>2008-08-13T18:35:10+00:00</dc:date>
      <dc:creator>porcapuzza &amp;#x61;&amp;#116; yahoo &amp;#x64;&amp;#111;&amp;#x74; it</dc:creator>
      <dc:subject>HTML_TreeMenu Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/9750">
      <title>HTML_TreeMenu: Bug 9750 [Open] Using &quot;kriesing&quot; tree type the &quot;nodeOptions&quot; paramether is not working.</title>
      <link>http://pear.php.net/bugs/9750</link>
      <content:encoded><![CDATA[<pre>HTML_TreeMenu Bug
Reported by riku.tuominen@...
2007-01-05T19:31:07+00:00
PHP: Irrelevant OS: XP Package Version: 1.2.0

Description:
------------
TO FIX THE PROBLEM CHANGE ONE LINE OF CODE IN TreeMenu.php FILE.
CHANGE 

line 168
$thisNode = &amp;$curNode[$aNode['level']]-&gt;addItem( new HTML_TreeNode( $data , $events ) );

WITH

$thisNode = &amp;$curNode[$aNode['level']]-&gt;addItem( new HTML_TreeNode( array_merge($params['nodeOptions'], $data) , $events ) );

Test script:
---------------
require_once 'Tree/Tree.php';
require_once 'Tree/Memory.php';
require_once 'HTML/TreeMenu.php';

$dbDsn = 'mysql://XXXX:XXXX@XXXX/testdB';
$options = array ('order' =&gt; 'name', 'table' =&gt; 'mytree');

$tree = Tree :: setup('Memory_DBnested', $dbDsn, $options);
$tree-&gt;setup();

$nodeOptions = array(
'text'          =&gt; '',
'link'          =&gt; 'editCategory.php?id=',
'icon'          =&gt; 'folder.gif',
'expandedIcon'  =&gt; 'folder-expanded.gif',
'class'         =&gt; '',
'expanded'      =&gt; false,
'linkTarget'    =&gt; '_self',
'isDynamic'     =&gt; 'true',
'ensureVisible' =&gt; '',
); 	

$options = array('structure' =&gt; $tree,
                    'type' =&gt; 'kriesing', 'nodeOptions' =&gt; $nodeOptions);
                    
$menu = &amp;HTML_TreeMenu::createFromStructure($options);

// Chose a generator. You can generate DHTML or a Listbox
$treeMenu = &amp;new HTML_TreeMenu_DHTML($menu, array('images' =&gt; 'images', 'defaultClass' =&gt; 'treeMenuDefault'));

echo $treeMenu-&gt;toHTML();

Expected result:
----------------
The nodes should have a folder icon and node name be a link, but that is not hapenning. Non of &quot;nodeOptions&quot; setting is in effect.

Actual result:
--------------
The nodes should have a folder icon and node name be a link, but that is not hapenning. Non of &quot;nodeOptions&quot; setting is in effect.</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_TreeMenu Bug
Reported by riku.tuominen@...
2007-01-05T19:31:07+00:00
PHP: Irrelevant OS: XP Package Version: 1.2.0

Description:
------------
TO FIX THE PROBLEM CHANGE ONE LINE OF CODE IN TreeMenu.php FILE.
CHANGE 

line 168
$thisNode = &amp;$curNode[$aNode['level']]-&gt;addItem( new HTML_TreeNode( $data , $events ) );

WITH

$thisNode = &amp;$curNode[$aNode['level']]-&gt;addItem( new HTML_TreeNode( array_merge($params['nodeOptions'], $data) , $events ) );

Test script:
---------------
require_once 'Tree/Tree.php';
require_once 'Tree/Memory.php';
require_once 'HTML/TreeMenu.php';

$dbDsn = 'mysql://XXXX:XXXX@XXXX/testdB';
$options = array ('order' =&gt; 'name', 'table' =&gt; 'mytree');

$tree = Tree :: setup('Memory_DBnested', $dbDsn, $options);
$tree-&gt;setup();

$nodeOptions = array(
'text'          =&gt; '',
'link'          =&gt; 'editCategory.php?id=',
'icon'          =&gt; 'folder.gif',
'expandedIcon'  =&gt; 'folder-expanded.gif',
'class'         =&gt; '',
'expanded'      =&gt; false,
'linkTarget'    =&gt; '_self',
'isDynamic'     =&gt; 'true',
'ensureVisible' =&gt; '',
); 	

$options = array('structure' =&gt; $tree,
                    'type' =&gt; 'kriesing', 'nodeOptions' =&gt; $nodeOptions);
                    
$menu = &amp;HTML_TreeMenu::createFromStructure($options);

// Chose a generator. You can generate DHTML or a Listbox
$treeMenu = &amp;new HTML_TreeMenu_DHTML($menu, array('images' =&gt; 'images', 'defaultClass' =&gt; 'treeMenuDefault'));

echo $treeMenu-&gt;toHTML();

Expected result:
----------------
The nodes should have a folder icon and node name be a link, but that is not hapenning. Non of &quot;nodeOptions&quot; setting is in effect.

Actual result:
--------------
The nodes should have a folder icon and node name be a link, but that is not hapenning. Non of &quot;nodeOptions&quot; setting is in effect.</pre>]]></description>
      <dc:date>2011-09-28T01:21:32+00:00</dc:date>
      <dc:creator>riku &amp;#x64;&amp;#111;&amp;#x74; tuominen &amp;#x61;&amp;#116; benchmarking &amp;#x64;&amp;#111;&amp;#x74; fi</dc:creator>
      <dc:subject>HTML_TreeMenu Bug</dc:subject>
    </item>
    <item rdf:about="http://pear.php.net/bug/5596">
      <title>HTML_TreeMenu: Feature/Change Request 5596 [Open] &lt;noscript&gt; version of the tree in toHTML()</title>
      <link>http://pear.php.net/bugs/5596</link>
      <content:encoded><![CDATA[<pre>HTML_TreeMenu Feature/Change Request
Reported by stoyan
2005-10-04T03:49:57+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Description:
------------
In addition to the javascript that displays the tree, it would be nice to add a &lt;noscript&gt; version of the tree for JS-challenged user-agents (like Googlebot).</pre>]]></content:encoded>
      <description><![CDATA[<pre>HTML_TreeMenu Feature/Change Request
Reported by stoyan
2005-10-04T03:49:57+00:00
PHP: Irrelevant OS: Irrelevant Package Version: 

Description:
------------
In addition to the javascript that displays the tree, it would be nice to add a &lt;noscript&gt; version of the tree for JS-challenged user-agents (like Googlebot).</pre>]]></description>
      <dc:date>2008-04-06T22:34:49+00:00</dc:date>
      <dc:creator>ssttoo &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>HTML_TreeMenu Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
