通过Xslt修改由热量生成的WXS文件

时间:2015-07-22 13:28:21

标签: xml xslt wix

我正在通过xslt编辑directory.wxs中所有.config文件的组件。

1)到达子元素(文件)

后,我无法转到父元素(组件)

2)它覆盖了所有属性,而不是附加到原始属性。

我的xslt文件

        <?xml version="1.0" encoding="utf-8"?>
        <xsl:stylesheet version="1.0" 
                    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                    xmlns:msxsl="urn:schemas-microsoft-com:xslt" 
                    exclude-result-prefixes="msxsl" 
                    xmlns:wix="http://schemas.microsoft.com/wix/2006/wi"
                    xmlns:my="my:my">

          <xsl:output method="xml" indent="no"/>

          <xsl:strip-space elements="*"/>

          <xsl:template match="@*|node()">
            <xsl:copy>
              <xsl:apply-templates select="@*|node()"/>
            </xsl:copy>
          </xsl:template>

          <xsl:template match='/wix:Wix/wix:Fragment/wix:DirectoryRef/wix:Directory/wix:Directory/wix:Component/wix:File[@Source="SourceDir\Debug\settings.xml"]'>
            <xsl:copy>
                    <xsl:apply-templates select=".." mode="backout"/>
                    <xsl:attribute name="Permanent">
                        <xsl:text>yes</xsl:text>
                    </xsl:attribute>
                </xsl:copy>
          </xsl:template>

        </xsl:stylesheet>

input.wxs

<?xml version="1.0" encoding="utf-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
            <DirectoryRef Id="INSTALLFOLDER">
                <Directory Id="dirEF46C7404B50F3071431995F0F04741E" Name="bin">
                        <Component Id="cmp1B2A20D6C7B8EEB0F3E75C2D993AAC13" Guid="1346D980-EE76-4E6D-BA63-F1F0BB5A860D">
                            <File Id="fil46D415998FC8ECAB7106CB3185135601" KeyPath="yes" Source="SourceDir\Debug\settings.xml" />
                        </Component>
                    </Directory>
                </Directory>
            </DirectoryRef>
        </Fragment>

的Output.xml

<?xml version="1.0" encoding="utf-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
            <DirectoryRef Id="INSTALLFOLDER">
                <Directory Id="dirEF46C7404B50F3071431995F0F04741E" Name="bin">
                        <Component Id="cmp1B2A20D6C7B8EEB0F3E75C2D993AAC13" Guid="1346D980-EE76-4E6D-BA63-F1F0BB5A860D">
                            <File Permanent="yes" />
                        </Component>
                    </Directory>
                </Directory>
            </DirectoryRef>
        </Fragment>

requiredoutput.xml

<?xml version="1.0" encoding="utf-8"?>
    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
        <Fragment>
            <DirectoryRef Id="INSTALLFOLDER">
                <Directory Id="dirEF46C7404B50F3071431995F0F04741E" Name="bin">
                        <Component Id="cmp1B2A20D6C7B8EEB0F3E75C2D993AAC13" Guid="1346D980-EE76-4E6D-BA63-F1F0BB5A860D" Permanent="yes" >
                            <File Id="fil46D415998FC8ECAB7106CB3185135601" KeyPath="yes" Source="SourceDir\Debug\settings.xml" />
                        </Component>
                    </Directory>
                </Directory>
            </DirectoryRef>
        </Fragment>

1 个答案:

答案 0 :(得分:3)

以这种方式尝试:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<!-- identity transform -->
<xsl:template match="@*|node()">
    <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

<xsl:template match="wix:File[@Source='SourceDir\Debug\settings.xml']">
    <xsl:copy>
        <xsl:attribute name="Permanent">yes</xsl:attribute>
        <xsl:copy-of select="@*"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>
  

到达孩子后我无法转到父元素(组件)   元件(文件)

我认为没有必要这样做。如果您想修改父级,只需添加与Component匹配的模板,然后在到达孩子之前执行即可。

另请注意,您的样式表尝试使用File将模板应用于mode="backout"的父级 - 但它在此模式下不包含模板。

在任何情况下,您的预期输出都不会显示父Component的变化,因此这都是理论上的。

编辑:

回复您编辑过的问题以及下面评论中的说明:

  

我想在组件中添加相应子项的属性   (文件元素)满足条件   的源=&#34; SourceDir \调试\的settings.xml&#34;

将第二个模板更改为:

<xsl:template match="wix:Component[wix:File/@Source='SourceDir\Debug\settings.xml']">
    <xsl:copy>
        <xsl:attribute name="Permanent">yes</xsl:attribute>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>