2012-07-17 4 views

답변

0

아마도 Altova의 SchemaAgent 같은 도구가 도움이 될 것이다.

또는 XSLT에 자신 만의 불량 분석기를 작성하십시오. 같은 뭔가 : 당신에게 파일을 제공

<xsl:variable name="docs" select="collection('.?select=*.xsd')"/> 

<xsl:function name="f:uses" as="document-node()*"/> 
    <xsl:param name="schema" as="document-node()"/> 
    <xsl:sequence select="for $h in $schema/*/(xs:include/xs:import/xs:redefine) 
         return doc(@href)"/> 
</xsl:function> 

직접 사용하고,이 함수의 재귀 응용 프로그램은 당신에게 간접적으로 사용되는 파일을 제공 할 것입니다.