I'm not sure if this is the proper place to post this, but here we go (please move if needed). I am trying to figure out how to build and retrieve lists from the xml file for plugins. My friend and I looked through the ElementTree.py file and tried several of the commands we found there, but none seemed to work..we kept getting errors such as this: "Error loading plugin: XmlConfigParser instance has no attribute 'findall'".
What are we doing wrong? Is it possible to get lists from an xml file for b3 plugins, and if so how do we do it? Here is an example xml file that we are testing:
<configuration plugin="test">
<settings name="tags">
<set name="tag">pRo]</set>
<set name="tag">pRo}</set>
<set name="tag">pRo)</set>
</settings>
</configuration>
We want all of the variables ("pRo]", "pRo}", etc) in the "tags" section to be made into a list/sequence so we can iterate through them using a
for or
while loop. Any ideas? Thanks for the help.
Brendan "NinjaNife" West