XSLT を使用して、ある XML から別の XML に変換しています。フォーラムで提供された回答を適用することで、目的の出力のすべての要件を達成できますが、唯一の問題は、出力のns0
2 つの場所に 1 つの余分なプレフィックスが自動的に追加され、名前空間xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"
がすべてのノードの先頭に追加されることです。 .
入力ファイル
<?xml version="1.0" encoding="UTF-8"?>
<manifest identifier="eXescorm_quiz4823c6301f3d3afc1c1f"
xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2"
xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1 imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">
<resources>
<resource identifier="RES22" type="webcontent" href="index.html">
<file href="index.html"/>
<file href="common.js"/>
</resource>
</resources>
</manifest>
望ましい出力:
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"
identifier="eXeorm_sample4823c6301f29a89a4c1f"
xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2"
xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemalocation="http://www.imsproject.org/xsd/imscp_v1p1 imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd">
<resources>
<resource identifier="RES22" type="webcontent" href="index.html" adlcp:scormtype="sco">
<file href="index.html"/>
<file href="common.js"/>
<file href="new1.js"/>
<file href="new2.js"/>
</resource>
</resources>
</manifest>
私の XSLT:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:ims="http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
exclude-result-prefixes="xsl ims adlcp xsi">
<xsl:output method="xml" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/*">
<xsl:element name="{name()}" namespace="{namespace-uri()}">
<xsl:copy-of select="namespace::*[name()]"/>
<xsl:apply-templates select="@*"/>
<xsl:attribute name="xsi:schemaLocation">
<xsl:value-of select=
"'http://www.imsproject.org/xsd/imscp_v1p1 imscp_v1p1.xsd http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd'"
/>
</xsl:attribute>
<xsl:apply-templates select="node()"/>
</xsl:element>
</xsl:template>
<xsl:template match="ims:resource" xmlns="http://www.imsglobal.org/xsd/imscp_v1p1">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:attribute name="adlcp:scormtype">sco</xsl:attribute>
<xsl:apply-templates select="node()"/>
<file href="new1.js"/>
<file href="new2.js"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
私が得る出力: 代わりに
<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1">
私は得る
<ns0:manifest xmlns:ns0="http://www.imsglobal.org/xsd/imscp_v1p1" >
の代わりに
<resources>
私は得る
<resources xmlns="http://www.imsglobal.org/xsd/imscp_v1p1">`
(そして、このxmlnsは他のいくつかのノードの開始にも追加されます)、残りのものはすべて問題ありません。
ありがとう!