MI-DPLA / combine

Combine /kämˌbīn/ - Metadata Aggregator Platform
MIT License
26 stars 11 forks source link

xml2kvp: attributes of parents only applied to first child #359

Closed ghukill closed 5 years ago

ghukill commented 5 years ago

Given the following XML:

    <pattern type="striped">
        <application>streets</application>
        <dizzying>true</dizzying>
    </pattern>

The attribute type is only applied to first child:

 'root___pattern___@type=striped___application': 'streets',
 'root___pattern___dizzying': 'true',

Where it should be:

 'root___pattern___@type=striped___application': 'streets',
 'root___pattern___@type=striped___dizzying': 'true',
ghukill commented 5 years ago

Fixed.