From: Linus Torvalds Date: Thu, 1 Sep 2011 18:22:05 +0000 (-0700) Subject: xml parsing: start traversing properties too X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=da4edbcce81a9a90e414bc6281183df154019b0c;hp=da4edbcce81a9a90e414bc6281183df154019b0c;p=ext%2Fsubsurface.git xml parsing: start traversing properties too This requires us to change the way we match things up, because now we can have things like dives.dive.sample.event.time and dives.dive.sample.time and they are different things (that "sample.event.time" is a 'time' property of the 'event'). Now, this is always going to be ambiguous, since our linearized name of the xml doesn't really care whether it's a xml node "child" or a "property", but quite frankly, I don't care. XML just isn't worth the pain. In fact, maybe this ambiguity can end up being a good thing. We will parse these two different lines of XML the same way: 10.8 and the attribute approach seems to be the nicer one. Maybe I'll use that for the output format. Signed-off-by: Linus Torvalds ---