You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Anton Ivanov (JIRA)" <ji...@apache.org> on 2006/06/06 10:51:29 UTC

[jira] Created: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
------------------------------------------------------------------------------------------

         Key: HARMONY-563
         URL: http://issues.apache.org/jira/browse/HARMONY-563
     Project: Harmony
        Type: Bug

  Components: Classlib  
    Reporter: Anton Ivanov
    Priority: Minor


XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Posted by "Anton Ivanov (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-563?page=comments#action_12415358 ] 

Anton Ivanov commented on HARMONY-563:
--------------------------------------

Looks good. Thanks Tim.

> Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
> ------------------------------------------------------------------------------------------
>
>          Key: HARMONY-563
>          URL: http://issues.apache.org/jira/browse/HARMONY-563
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Anton Ivanov
>     Assignee: Tim Ellison
>     Priority: Minor
>  Attachments: InvalidPropertiesFormatException.java, properties.tests.for.xml.support.implemented.diff, properties.xml.support.implemented.diff
>
> XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-563?page=all ]
     
Tim Ellison closed HARMONY-563:
-------------------------------


Verified by Anton.


> Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
> ------------------------------------------------------------------------------------------
>
>          Key: HARMONY-563
>          URL: http://issues.apache.org/jira/browse/HARMONY-563
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Anton Ivanov
>     Assignee: Tim Ellison
>     Priority: Minor
>  Attachments: InvalidPropertiesFormatException.java, properties.tests.for.xml.support.implemented.diff, properties.xml.support.implemented.diff
>
> XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-563?page=all ]
     
Tim Ellison resolved HARMONY-563:
---------------------------------

    Resolution: Fixed

Thanks Anton.

Patch applied to LUNI module at repo revision r412383.

Looks like this introduces some new dependencies for the LUNI module which I will investigate and update teh manifest accordingly.

Please check that the patch was applied as you expected.


> Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
> ------------------------------------------------------------------------------------------
>
>          Key: HARMONY-563
>          URL: http://issues.apache.org/jira/browse/HARMONY-563
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Anton Ivanov
>     Assignee: Tim Ellison
>     Priority: Minor
>  Attachments: InvalidPropertiesFormatException.java, properties.tests.for.xml.support.implemented.diff, properties.xml.support.implemented.diff
>
> XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Posted by "Anton Ivanov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-563?page=all ]

Anton Ivanov updated HARMONY-563:
---------------------------------

    Attachment: properties.xml.support.implemented.diff
                properties.tests.for.xml.support.implemented.diff
                InvalidPropertiesFormatException.java

Here are patch for java.util.Properties, patch for tests and InvalidPropertiesFormatException class implementation.
Methods storeToXML(InputStream, String), loadFromXML(InputStream) are implemented, storeToXML(InputStream, String, String) is implemeted but encoding parameter is not supported.

class java.nio.charset.Charset needs to be implemented in Harmony for support of String encoding parameter of method storeToXML(InputStream, String, String), UTF-8 is used as default encoding and encoding parameter is ignored. 

> Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
> ------------------------------------------------------------------------------------------
>
>          Key: HARMONY-563
>          URL: http://issues.apache.org/jira/browse/HARMONY-563
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Anton Ivanov
>     Priority: Minor
>  Attachments: InvalidPropertiesFormatException.java, properties.tests.for.xml.support.implemented.diff, properties.xml.support.implemented.diff
>
> XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (HARMONY-563) Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.

Posted by "Tim Ellison (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-563?page=all ]

Tim Ellison reassigned HARMONY-563:
-----------------------------------

    Assign To: Tim Ellison

> Java 5 Enhancement: java.util.Properties should implement methods loadFromXML, storeToXML.
> ------------------------------------------------------------------------------------------
>
>          Key: HARMONY-563
>          URL: http://issues.apache.org/jira/browse/HARMONY-563
>      Project: Harmony
>         Type: Bug

>   Components: Classlib
>     Reporter: Anton Ivanov
>     Assignee: Tim Ellison
>     Priority: Minor
>  Attachments: InvalidPropertiesFormatException.java, properties.tests.for.xml.support.implemented.diff, properties.xml.support.implemented.diff
>
> XML support is not implemented in java.util.Properties: Java 1.5 methods loadFromXML, storeToXML.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira