DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32633>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32633

           Summary: [configuration] Support the OpenStep property list
                    format
           Product: Commons
           Version: unspecified
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Configuration
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


This is a RFE to implement a configuration implementation supporting the
OpenStep property list format. This format is used in Mac OSX.

Example file:
{
        "map" = 
        {
                "key1" = "value1";
                "key2" = "value2";
                "key3" = "value3";
        };
        
        "string" = "foo";
        
        "list" = 
        (
                "value1",
                "value2",
                "value3"
        );
        
        "nested" = 
        {
                "map" = 
                {
                        "key1" = "value1";
                        "key2" = "value2";
                        "key3" = "value3";
                };
                
                "string" = "bar";
                
                "list" = 
                (
                        "value1",
                        "value2",
                        "value3"
                );
        };
}



References:
http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/Concepts/OldStylePListsConcept.html
http://www.gnustep.org/resources/documentation/Developer/Base/Reference/NSPropertyList.html

Java implementation:
http://zoe.nu/misc/SZProperties.tgz

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to