Skip to content

Commit

Permalink
Fix dependency tree generation using new file locations.
Browse files Browse the repository at this point in the history
Previously, the xsl file did not manage the change to using
the xsd directory location.  Now it does.
  • Loading branch information
mbjones committed Aug 19, 2018
1 parent 4973656 commit c76944b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildDependencyTable.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
</xsl:variable>
<td align="center">

<xsl:for-each select="document($modFile)//xs:import">
<xsl:for-each select="document(concat('xsd/', $modFile))//xs:import">

<xsl:variable name="importedDoc">
<xsl:value-of select="substring-before(./@schemaLocation, '.')"/>
Expand Down

0 comments on commit c76944b

Please sign in to comment.