4

我有一个 XSLT 样式表,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                  xmlns:XQHeaderFunc="java:com.sonicsw.xq.service.xform.HeaderExtension"
                  xmlns:saxon="http://saxon.sf.net/">

  <saxon:script language="java" implements-prefix="XQHeaderFunc" src="java:com.sonicsw.xq.service.xform.HeaderExtension" />

  <xsl:output indent="yes" omit-xml-declaration="yes"/>

  <xsl:template match="/">
    <xsl:variable name="processId" select="XQHeaderFunc:getProperty(XQHeaderFunc:new(),'processId',-1)" />
    <xsl:value-of select="XQHeaderFunc:setProperty(XQHeaderFunc:new(),'processId',string(@id),-1)"/>

    <root>
      <xsl:apply-templates />
    </root>

  </xsl:template>

  <!-- Other stuff -->

</xsl:stylesheet>

我想使用第二个 XSLT 样式表转换此样式表,以删除与 XQHeaderFunc 和 saxon 命名空间有关的任何内容。有没有办法我可以做到这一点?


我现在尝试了以下方法,它成功地处理了元素,但命名空间声明似乎不想消失。

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:XQHeaderFunc="java:com.sonicsw.xq.service.xform.HeaderExtension"
                xmlns:saxon="http://saxon.sf.net/"
                exclude-result-prefixes="XQHeaderFunc saxon">

  <xsl:param name="XQHeaderReplacement" />
  <xsl:variable name="apos">'</xsl:variable>

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

  <!-- Remove saxon script tag -->
  <xsl:template match="saxon:script" />

  <!-- Remove elements with setProperty calls -->
  <xsl:template match="*[starts-with(@select, 'XQHeaderFunc:setProperty')]" />

  <!-- Replace getProperty calls with replacement value-->
  <xsl:template match="@select[starts-with(., 'XQHeaderFunc:getProperty')]">
      <xsl:attribute name="select">
        <xsl:value-of select="concat($apos, $XQHeaderReplacement, $apos)"/>
      </xsl:attribute>
    </xsl:template>
</xsl:stylesheet>

输出:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0" 
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
                xmlns:XQHeaderFunc="java:com.sonicsw.xq.service.xform.HeaderExtension" 
                xmlns:saxon="http://saxon.sf.net/">

  <xsl:output indent="yes" omit-xml-declaration="yes" />

  <xsl:template match="/">
    <xsl:variable name="processId" select="''" />


    <root>
      <xsl:apply-templates />
    </root>

  </xsl:template>

  <!-- Other stuff -->

</xsl:stylesheet>
4

1 回答 1

12

我会补充

 exclude-result-prefixes="foo"

到你的

 <xsl:stylesheet>

元素。foo然后,如果可能,将省略命名空间声明,即如果该命名空间中没有要输出的元素或属性。

仅供参考,这条线的原因

<xsl:template match="xsl:stylesheet/@xmlns:foo" />`

抛出错误是因为xmlns:foo在输入文档中没有属性;这是一个伪属性。您的匹配模式要求匹配的是一个名为的属性,该属性foo位于与命名空间前缀相对应的命名空间中xmlns。由于您没有xmlns在样式表中声明命名空间前缀,因此您会收到错误“未定义前缀 xmlns”。

更新:

我从您发布的输出(和我自己的测试)中看到,exclude-result-prefixes在删除命名空间声明方面没有效果。

1)首先我会问为什么它很重要。它不会更改输出 XSLT 中任何内容的名称空间。您是否只是出于审美原因而试图将其删除?

2)查看XSLT 1.0 规范,在我看来<xsl:copy>没有注意exclude-result-prefixes

实例化 xsl:copy 元素会创建当前节点的副本。当前节点的命名空间节点也会自动复制...

AFAICT,只有文字结果元素会省略基于exclude-result-prefixes.

在此基础上,我会尝试<xsl:copy>在您的身份模板(用于元素)中替换为它的<xsl:element name="{name()}">变体或变体。然后,您将需要一个单独的非元素节点标识模板。

我用以下两个模板替换了您的身份模板:

<!-- Copy elements -->
<xsl:template match="*" priority="-1">
   <xsl:element name="{name()}">
      <xsl:apply-templates select="node()|@*"/>
   </xsl:element>
</xsl:template>

<!-- Copy all other nodes -->
<xsl:template match="node()|@*" priority="-2">
   <xsl:copy />      
</xsl:template>

这给出了我认为是所需的输出,没有多余的 ns 声明:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
   <xsl:output indent="yes" omit-xml-declaration="yes" />

   <xsl:template match="/">
      <xsl:variable name="processId" select="''" />
      <root>
         <xsl:apply-templates />
      </root>
   </xsl:template>

   <!-- Other stuff -->
</xsl:stylesheet>

(为了清楚起见,我调整了空格。)

于 2012-09-17T20:35:09.673 回答