tags:

views:

179

answers:

1

Does someone know a tool, that can extract the code structure from undocumented xsl files?

I know there is XSLTdoc, which can extract documentation elements from xsl files to build html reference pages. But for undocumented xsl files, XSLTdoc's output is rather useless.

Doxygen is able to produce valuable output even if the code is not documented. Does there exist a comparable tool for xsl?

The best I found so far is depgraph, this little stylesheet produces a dependency graph for includes and imports.

What I am looking for is a call-graph generator for xsl templates.

+1  A: 

I find Oxygen XML Editor very useful for everything XML / XSL / XSD related; it can generate XML structure from both XSL and XSD and have a good attempt at building XSL and XSD from an XML document. It isn't free however but a trial is available.

Steve