Re: [xsl] Generating SVG of an XML diagram

Subject: Re: [xsl] Generating SVG of an XML diagram
From: "Kevin Grover" <kevin@xxxxxxxxxxxxxxx>
Date: Thu, 5 Apr 2007 17:37:32 -0700
You might look into GraphViz (AT&T) (http://www.graphviz.org/).  You
can create a dependency graph (in a text file) and then convert it to
SVG (including many others) with

dot -Tsvg -o outfile.svg infile.dot

The JDepend Java package (http://clarkware.com/software/JDepend.html)
has an XSLT file that converts it's XML generated file to DOT format
for conversion to SVG (using dot).

It's a very easy format to master. And, very powerful.

Good luck.

- ko

Hope this helps.

On 4/5/07, Sato_Alex@xxxxxxx <Sato_Alex@xxxxxxx> wrote:
All:

I'd like to generate an SVG from an XML structure that shows the
parent-child relationships of that XML structure.

Does anyone have any examples?

thx--alex

Current Thread