I have some XML documents which, grossly simplified, can be described as:
<someobject id="mykey">
<relatedobject id="hiskey"/>
<relatedobject id="herkey"/>
</someobject>
<someobject ...
What would be a simple way to produce a diagram of this, showing the objects placed nicely in 2D space, with lines between them?
I'm very comfortable with XSLT and Xpath, but would prefer a solution that doesn't require writing a program from scratch. Making a few command line calls to Saxon then a graph generating prog would be ok. Bonus points for anything that can be done totally using online hosted tools. Extra bonus points for a live (eg javascript), interactive diagram.
