我是一个XSL新手,并且很难理解语法。 我想要实现的是从xml及其引用的节点中删除一个节点。这个xml是通过运行Hotdirectory构建的,这是一个随WIX Installer提供的工具。 所以文件中的所有内容都是动态创建的。我所知道的关于该文件的一件事是我要删除引用文件的名称。
这是示例XML:
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="InstallFolder">
<Component Id="cmpAEC985F4FAA50E51011E84E93A32F283" Guid="{3574FFF9-F47D-4A3F-A975-64D76546068A}">
<File Id="fil9C01928D57F128482FD2A78A209FBF95" KeyPath="yes" Source="$(var.SourcePath)\AppSettings.config" />
</Component>
<Component Id="cmp10AE81284551BB54849628AE519965C7" Guid="{CF245728-B329-454E-A305-BE33FC818572}">
<File Id="fil3F1ECB9AAE6412D0FDF9577B44764BA9" KeyPath="yes" Source="$(var.SourcePath)\CsvHelper.dll" />
</Component>
<Component Id="cmp596F6F97E366DDB8E0770EC1550C6CB5" Guid="{D8E5EF9E-CB20-4C40-BD02-D79364EC6518}">
<File Id="filE48072B3494220F703E4B206DF9D2664" KeyPath="yes" Source="$(var.SourcePath)\CsvHelper.pdb" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="FileComponents">
<ComponentRef Id="cmpAEC985F4FAA50E51011E84E93A32F283" />
<ComponentRef Id="cmp10AE81284551BB54849628AE519965C7" />
<ComponentRef Id="cmp596F6F97E366DDB8E0770EC1550C6CB5" />
</ComponentGroup>
</Fragment>
</Wix>
这是我的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">
<xsl:output method="xml" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="wix:Component[contains(wix:File/@Source,'CsvHelper.pdb')]"/>
</xsl:stylesheet>
这是我从中得到的。
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="InstallFolder">
<Component Id="cmpAEC985F4FAA50E51011E84E93A32F283" Guid="{3574FFF9-F47D-4A3F-A975-64D76546068A}">
<File Id="fil9C01928D57F128482FD2A78A209FBF95" KeyPath="yes" Source="$(var.SourcePath)\AppSettings.config"/>
</Component>
<Component Id="cmp10AE81284551BB54849628AE519965C7" Guid="{CF245728-B329-454E-A305-BE33FC818572}">
<File Id="fil3F1ECB9AAE6412D0FDF9577B44764BA9" KeyPath="yes" Source="$(var.SourcePath)\CsvHelper.dll"/>
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="FileComponents">
<ComponentRef Id="cmpAEC985F4FAA50E51011E84E93A32F283"/>
<ComponentRef Id="cmp10AE81284551BB54849628AE519965C7"/>
<ComponentRef Id="cmp596F6F97E366DDB8E0770EC1550C6CB5"/>
</ComponentGroup>
</Fragment>
</Wix>
但我还想删除 ComponentRef 引用已删除的组件。 谁能告诉我怎么做?
PS:我试图创建一个包含Component ID的变量(因为我不知道这个,并且不能把它放到我的XSLT文件中)。但后来我无法访问CompenentGroup并删除ComponentRef。
答案 0 :(得分:1)
将要删除的组件的ID
存储在变量中。然后,您可以在需要找到某个component
的任何地方引用它。你正确地猜到这可能是解决方案。这是你如何做到的。
我在身份转换模板中添加了第二个例外(即模板),删除了上述component reference
。
<?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">
<xsl:output method="xml" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes"/>
<xsl:variable name="del-id" select="//wix:Component[contains(wix:File/@Source,'CsvHelper.pdb')]/@Id"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="wix:Component[@Id=$del-id]"/>
<xsl:template match="wix:ComponentRef[@Id=$del-id]"/>
</xsl:stylesheet>
编辑:这是另一种在模板匹配中不使用变量的解决方案。但是它有点长了。
<?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">
<xsl:output method="xml" indent="yes" />
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes"/>
<xsl:variable name="del-id" select="//wix:Component[contains(wix:File/@Source,'CsvHelper.pdb')]/@Id"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="wix:ComponentGroup">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:for-each select="wix:ComponentRef">
<xsl:choose>
<xsl:when test="@Id=$del-id"/>
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:copy>
</xsl:template>
<xsl:template match="wix:DirectoryRef">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:for-each select="wix:Component">
<xsl:choose>
<xsl:when test="@Id=$del-id"/>
<xsl:otherwise>
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
<xsl:for-each select="wix:Directory">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>