<?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=File_IMC</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/14969" />

     </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/14969">
      <title>File_IMC: Feature/Change Request 14969 [Analyzed] Property groups not supported</title>
      <link>http://pear.php.net/bugs/14969</link>
      <content:encoded><![CDATA[<pre>File_IMC Feature/Change Request
Reported by andreww
2008-11-07T12:45:57+00:00
PHP: 5.2.6 OS: Windows Package Version: 

Description:
------------
Parser fails to parse the VCard correclty if name property is prefixed with a group.

Test script:
---------------
// Excerpt from PHPUnit test
$familyName = &quot;FamilyName&quot;;
        $givenName = &quot;GivenName&quot;;
        $additionalNames = &quot;Additional Names&quot;;
        $prefix = &quot;Prefix.&quot;;
        $suffix = &quot;Suffix&quot;;
        $name = &quot;A.N&quot;;
        
        $vcard = &quot;BEGIN:VCARD\n\r&quot; . 
                $name . &quot;:&quot; . 
                    $familyName . &quot;;&quot; . 
                    $givenName . &quot;;&quot; . 
                    $additionalNames . &quot;;&quot; .  
                    $prefix . &quot;;&quot; .
                    $suffix . &quot;\n\r&quot; .
                &quot;END:VCARD&quot;;        
        
        $parser = new Contact_Vcard_Parse(); 
        $ret = $parser-&gt;fromText( $vcard );
        
        $values = $ret[0][$name][0]['value'];
        
        $this-&gt;assertEquals( $familyName, $values[0][0] );
        $this-&gt;assertEquals( $givenName, $values[1][0] );
        $this-&gt;assertEquals( $additionalNames, $values[2][0] );
        $this-&gt;assertEquals( $prefix, $values[3][0] );
        $this-&gt;assertEquals( $suffix, $values[4][0] );


Expected result:
----------------
Assertions pass.

Actual result:
--------------
There was 1 failure:

1) testPropertyGroups(ContactVcardParseTest)
Failed asserting that two strings are equal.
expected string &lt;FamilyName&gt;
difference      &lt;          ??????????????????????????????????????????&gt;
got string      &lt;FamilyName;GivenName;Additional Names;Prefix.;Suffix&gt;
Z:\repos\php\tests\ContactVcardParseTest.php:40
Z:\repos\php\tests\ContactVcardParseTest.php:90
Z:\repos\php\tests\ContactVcardParseTest.php:100</pre>]]></content:encoded>
      <description><![CDATA[<pre>File_IMC Feature/Change Request
Reported by andreww
2008-11-07T12:45:57+00:00
PHP: 5.2.6 OS: Windows Package Version: 

Description:
------------
Parser fails to parse the VCard correclty if name property is prefixed with a group.

Test script:
---------------
// Excerpt from PHPUnit test
$familyName = &quot;FamilyName&quot;;
        $givenName = &quot;GivenName&quot;;
        $additionalNames = &quot;Additional Names&quot;;
        $prefix = &quot;Prefix.&quot;;
        $suffix = &quot;Suffix&quot;;
        $name = &quot;A.N&quot;;
        
        $vcard = &quot;BEGIN:VCARD\n\r&quot; . 
                $name . &quot;:&quot; . 
                    $familyName . &quot;;&quot; . 
                    $givenName . &quot;;&quot; . 
                    $additionalNames . &quot;;&quot; .  
                    $prefix . &quot;;&quot; .
                    $suffix . &quot;\n\r&quot; .
                &quot;END:VCARD&quot;;        
        
        $parser = new Contact_Vcard_Parse(); 
        $ret = $parser-&gt;fromText( $vcard );
        
        $values = $ret[0][$name][0]['value'];
        
        $this-&gt;assertEquals( $familyName, $values[0][0] );
        $this-&gt;assertEquals( $givenName, $values[1][0] );
        $this-&gt;assertEquals( $additionalNames, $values[2][0] );
        $this-&gt;assertEquals( $prefix, $values[3][0] );
        $this-&gt;assertEquals( $suffix, $values[4][0] );


Expected result:
----------------
Assertions pass.

Actual result:
--------------
There was 1 failure:

1) testPropertyGroups(ContactVcardParseTest)
Failed asserting that two strings are equal.
expected string &lt;FamilyName&gt;
difference      &lt;          ??????????????????????????????????????????&gt;
got string      &lt;FamilyName;GivenName;Additional Names;Prefix.;Suffix&gt;
Z:\repos\php\tests\ContactVcardParseTest.php:40
Z:\repos\php\tests\ContactVcardParseTest.php:90
Z:\repos\php\tests\ContactVcardParseTest.php:100</pre>]]></description>
      <dc:date>2011-03-20T01:54:21+00:00</dc:date>
      <dc:creator>awhitehouse &amp;#x64;&amp;#111;&amp;#x74; esq &amp;#x61;&amp;#116; googlemail &amp;#x64;&amp;#111;&amp;#x74; com</dc:creator>
      <dc:subject>File_IMC Feature/Change Request</dc:subject>
    </item>
</rdf:RDF>
