Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
None
-
Operating System: All
Platform: All
-
32633
Description
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" =
;
"string" = "foo";
"list" =
(
"value1",
"value2",
"value3"
);
"nested" =
{
"map" =
;
"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