I am trying to understand the settings.xml a little bit and using config.load for a file like:
Code
<?xml version="1.1" ?> <settings> <global> <param>true</param> <anotherparam>false</anotherparam> <items> <item>Some Item</item> <item>Another Item</item> </items> </global> </settings>
When loaded into the addon, the items table only has one value. I assume this is because it is using the xml element name "item" as the key, so duplicates are being overwritten. Is this the case, and is there anyway to using non-unique element names? Wouldn't be a big deal to use <item1>...<itemN> tags, but was curious. Thanks!