You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cordova.apache.org by "Dan Ardelean (Created) (JIRA)" <ji...@apache.org> on 2012/01/19 12:42:53 UTC

[jira] [Created] (CB-189) Found contacts still not parsed correctly

Found contacts still not parsed correctly
-----------------------------------------

                 Key: CB-189
                 URL: https://issues.apache.org/jira/browse/CB-189
             Project: Apache Callback
          Issue Type: Bug
          Components: WP7
    Affects Versions: 1.3.0
         Environment: All Emulator and Phone
            Reporter: Dan Ardelean
            Assignee: Jesse MacFadyen


The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.

For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse

The method is bugged:
 private string FormatJSONAddresses(Contact con)
        {
            string retVal = "";
            foreach (ContactAddress address in con.Addresses)
            {
                retVal += "\"" + address.ToString() + "\",";
            }
            return retVal.TrimEnd(',');
        }
The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.

The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (CB-189) Found contacts still not parsed correctly

Posted by "Jesse MacFadyen (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jesse MacFadyen updated CB-189:
-------------------------------

    Fix Version/s: 1.6.0
    
> Found contacts still not parsed correctly
> -----------------------------------------
>
>                 Key: CB-189
>                 URL: https://issues.apache.org/jira/browse/CB-189
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: WP7
>    Affects Versions: 1.3.0
>         Environment: All Emulator and Phone
>            Reporter: Dan Ardelean
>            Assignee: Jesse MacFadyen
>              Labels: bug, contacts
>             Fix For: 1.5.0, 1.6.0
>
>
> The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.
> For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse
> The method is bugged:
>  private string FormatJSONAddresses(Contact con)
>         {
>             string retVal = "";
>             foreach (ContactAddress address in con.Addresses)
>             {
>                 retVal += "\"" + address.ToString() + "\",";
>             }
>             return retVal.TrimEnd(',');
>         }
> The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.
> The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (CB-189) Found contacts still not parsed correctly

Posted by "Simon MacDonald (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Simon MacDonald updated CB-189:
-------------------------------

    Fix Version/s:     (was: 1.5.0)
    
> Found contacts still not parsed correctly
> -----------------------------------------
>
>                 Key: CB-189
>                 URL: https://issues.apache.org/jira/browse/CB-189
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: WP7
>    Affects Versions: 1.3.0
>         Environment: All Emulator and Phone
>            Reporter: Dan Ardelean
>            Assignee: Jesse MacFadyen
>              Labels: bug, contacts
>             Fix For: 1.6.0
>
>
> The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.
> For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse
> The method is bugged:
>  private string FormatJSONAddresses(Contact con)
>         {
>             string retVal = "";
>             foreach (ContactAddress address in con.Addresses)
>             {
>                 retVal += "\"" + address.ToString() + "\",";
>             }
>             return retVal.TrimEnd(',');
>         }
> The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.
> The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (CB-189) Found contacts still not parsed correctly

Posted by "Jesse MacFadyen (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jesse MacFadyen updated CB-189:
-------------------------------

    Fix Version/s: 1.5.0
    
> Found contacts still not parsed correctly
> -----------------------------------------
>
>                 Key: CB-189
>                 URL: https://issues.apache.org/jira/browse/CB-189
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: WP7
>    Affects Versions: 1.3.0
>         Environment: All Emulator and Phone
>            Reporter: Dan Ardelean
>            Assignee: Jesse MacFadyen
>              Labels: bug, contacts
>             Fix For: 1.5.0
>
>
> The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.
> For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse
> The method is bugged:
>  private string FormatJSONAddresses(Contact con)
>         {
>             string retVal = "";
>             foreach (ContactAddress address in con.Addresses)
>             {
>                 retVal += "\"" + address.ToString() + "\",";
>             }
>             return retVal.TrimEnd(',');
>         }
> The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.
> The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (CB-189) Found contacts still not parsed correctly

Posted by "Jesse MacFadyen (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jesse MacFadyen updated CB-189:
-------------------------------

    Fix Version/s:     (was: 1.6.0)
                   1.7.0
    
> Found contacts still not parsed correctly
> -----------------------------------------
>
>                 Key: CB-189
>                 URL: https://issues.apache.org/jira/browse/CB-189
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: WP7
>    Affects Versions: 1.3.0
>         Environment: All Emulator and Phone
>            Reporter: Dan Ardelean
>            Assignee: Jesse MacFadyen
>              Labels: bug, contacts
>             Fix For: 1.7.0
>
>
> The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.
> For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse
> The method is bugged:
>  private string FormatJSONAddresses(Contact con)
>         {
>             string retVal = "";
>             foreach (ContactAddress address in con.Addresses)
>             {
>                 retVal += "\"" + address.ToString() + "\",";
>             }
>             return retVal.TrimEnd(',');
>         }
> The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.
> The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (CB-189) Found contacts still not parsed correctly

Posted by "Filip Maj (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CB-189?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Filip Maj resolved CB-189.
--------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 1.7.0)
                   1.6.1
         Assignee: Filip Maj  (was: Jesse MacFadyen)

I think this is the same issue as CB-452. Cannot reproduce in 1.6.1 so marked as resolved.
                
> Found contacts still not parsed correctly
> -----------------------------------------
>
>                 Key: CB-189
>                 URL: https://issues.apache.org/jira/browse/CB-189
>             Project: Apache Callback
>          Issue Type: Bug
>          Components: WP7
>    Affects Versions: 1.3.0
>         Environment: All Emulator and Phone
>            Reporter: Dan Ardelean
>            Assignee: Filip Maj
>              Labels: bug, contacts
>             Fix For: 1.6.1
>
>
> The fix that was uploaded to the Contacts part still doesn't resolve the issue of correctly parsing contact data. Now the name looks like it is parsed correctly but there are still bugs.
> For the phone part from the message result you won't see if it is work, home as it has only the phone numbers inside the [] . On the address part it's even worse
> The method is bugged:
>  private string FormatJSONAddresses(Contact con)
>         {
>             string retVal = "";
>             foreach (ContactAddress address in con.Addresses)
>             {
>                 retVal += "\"" + address.ToString() + "\",";
>             }
>             return retVal.TrimEnd(',');
>         }
> The ToString() it won't return the real address but the type of the variable in string so Microsoft.Phone.UserData.ContactAddress.
> The whole return of the contact seems in the wrong format

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira