<?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=XML_FOAF</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/16629" />

     </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/16629">
      <title>XML_FOAF: Feature/Change Request 16629 [Open] Use XML_Serializer, not XML_Tree</title>
      <link>http://pear.php.net/bugs/16629</link>
      <content:encoded><![CDATA[<pre>XML_FOAF Feature/Change Request
Reported by doconnor
2009-09-21T00:58:14+00:00
PHP: 5.3.0 OS:  Package Version: CVS

Description:
------------
We need to use XML_Serializer, not XML_Tree


---------- Find in Files ----------
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(72,20):     * @var object XML_Tree object containing the FOAF RDF/XML Tree
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(82,28):     * @var array Contains XML_Tree Child nodes for all FOAF elements
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(87,20):     * @var object XML_Tree object for the FOAF
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(89,10):    var $xml_tree = null;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(108,24):                $this-&gt;xml_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(109,43):                $this-&gt;foaf     =&amp; $this-&gt;xml_tree-&gt;getTreeFromString($foaf);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(149,16):        $this-&gt;xml_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(154,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Group');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(157,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Organization');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(160,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Agent');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(163,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Person');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1112,54):     * @param mixed &amp;$membership_class XML String or XML_Tree/XML_Tree_Node object
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1124,40):                $membership_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1178,15):     * Add an XML_Tree, XML_Tree_Node object or XML String to the FOAF
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1180,23):     * @param mixed &amp;$xml_tree XML_Tree, XML_Tree_Node or XML String
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1185,25):    function addChild(&amp;$xml_tree)
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1187,23):        if (is_array($xml_tree)) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1188,28):            if (is_string($xml_tree['xml'])) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1189,29):                $tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1190,43):                $tree-&gt;getTreeFromString($xml_tree['xml']);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1191,18):                $xml_tree['child']-&gt;addChild($tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1193,18):                $xml_tree['child']-&gt;addChild($xml_tree['xml']);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1196,28):            if (is_string($xml_tree)) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1197,29):                $tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1198,43):                $tree-&gt;getTreeFromString($xml_tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1201,40):                $this-&gt;foaf-&gt;addChild($xml_tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\package.php&quot;(41,26):$package-&gt;addDependency('XML_Tree', '1.1', 'ge', 'pkg', false);
&quot;c:\work\pear\packages\XML_Foaf\trunk\package2.php&quot;(57,49):$package-&gt;addPackageDepWithChannel('required', 'XML_Tree', 'pear.php.net', '1.1');
28 occurrences have been found in 3 files.
Output completed (0 sec consumed)</pre>]]></content:encoded>
      <description><![CDATA[<pre>XML_FOAF Feature/Change Request
Reported by doconnor
2009-09-21T00:58:14+00:00
PHP: 5.3.0 OS:  Package Version: CVS

Description:
------------
We need to use XML_Serializer, not XML_Tree


---------- Find in Files ----------
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(72,20):     * @var object XML_Tree object containing the FOAF RDF/XML Tree
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(82,28):     * @var array Contains XML_Tree Child nodes for all FOAF elements
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(87,20):     * @var object XML_Tree object for the FOAF
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(89,10):    var $xml_tree = null;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(108,24):                $this-&gt;xml_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(109,43):                $this-&gt;foaf     =&amp; $this-&gt;xml_tree-&gt;getTreeFromString($foaf);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(149,16):        $this-&gt;xml_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(154,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Group');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(157,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Organization');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(160,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Agent');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(163,35):            $this-&gt;foaf =&amp; $this-&gt;xml_tree-&gt;addRoot('foaf:Person');
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1112,54):     * @param mixed &amp;$membership_class XML String or XML_Tree/XML_Tree_Node object
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1124,40):                $membership_tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1178,15):     * Add an XML_Tree, XML_Tree_Node object or XML String to the FOAF
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1180,23):     * @param mixed &amp;$xml_tree XML_Tree, XML_Tree_Node or XML String
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1185,25):    function addChild(&amp;$xml_tree)
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1187,23):        if (is_array($xml_tree)) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1188,28):            if (is_string($xml_tree['xml'])) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1189,29):                $tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1190,43):                $tree-&gt;getTreeFromString($xml_tree['xml']);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1191,18):                $xml_tree['child']-&gt;addChild($tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1193,18):                $xml_tree['child']-&gt;addChild($xml_tree['xml']);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1196,28):            if (is_string($xml_tree)) {
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1197,29):                $tree = new XML_Tree;
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1198,43):                $tree-&gt;getTreeFromString($xml_tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\FOAF.php&quot;(1201,40):                $this-&gt;foaf-&gt;addChild($xml_tree);
&quot;c:\work\pear\packages\XML_Foaf\trunk\package.php&quot;(41,26):$package-&gt;addDependency('XML_Tree', '1.1', 'ge', 'pkg', false);
&quot;c:\work\pear\packages\XML_Foaf\trunk\package2.php&quot;(57,49):$package-&gt;addPackageDepWithChannel('required', 'XML_Tree', 'pear.php.net', '1.1');
28 occurrences have been found in 3 files.
Output completed (0 sec consumed)</pre>]]></description>
      <dc:date>2009-09-21T00:58:14+00:00</dc:date>
      <dc:creator>daniel &amp;#x64;&amp;#111;&amp;#x74; oconnor &amp;#x61;&amp;#116; gmail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>XML_FOAF Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
