mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Support for Incarna v1.1, Customizable API Keys
- Support CAK keys and their spinoffs - Add support for the Employment History data available in CharacterInfo.xml.aspx - Add a Gargoyle flag to disable backend processing when needed - Clean up a few inconsistancies with how the models are handled
This commit is contained in:
@@ -34,6 +34,10 @@ def basic_xml_parse(nodes):
|
||||
values[node.attributes['name'].value] = rset
|
||||
else:
|
||||
values[node.tagName] = basic_xml_parse(node.childNodes)
|
||||
if node.attributes.keys():
|
||||
for e in node.attributes.keys():
|
||||
values[node.tagName][e] = node.attributes[e].value
|
||||
|
||||
|
||||
return values
|
||||
|
||||
|
||||
Reference in New Issue
Block a user