一个XSL来统治它们

时间:2015-02-26 09:21:52

标签: xml xslt

我正在构建一个单独的XSL样式表来将一些XML文件(每个都有不同的根目录)转换为一组div来进行样式设置,但是我遇到了在第一个之后定义的任何模板的问题,我知道我我做了一些愚蠢/根本错误的事情,但我无法弄清楚它是什么,所以任何建议都会受到赞赏。

我很确定之前已经问过但经过几个小时的搜索后我找不到结果。

XML#1:

<domain:create xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd">
  <domain:name>exampledomain.gtld</domain:name>
  <domain:period unit="y">1</domain:period>
  <domain:ns>
    <domain:hostAttr>
      <domain:hostName>ns1.exampledomain.gtld</domain:hostName>
      <domain:hostAddr ip="v4">x.x.x.x</domain:hostAddr> 
      <domain:hostAddr ip="v4">y.y.y.y</domain:hostAddr> 
      <domain:hostAddr ip="v6">ff02::1</domain:hostAddr> 
    </domain:hostAttr>
    <domain:hostAttr>
      <domain:hostName>ns1.otherdomain.gtld</domain:hostName> 
    </domain:hostAttr>
  </domain:ns>
  <domain:registrant>RegistrantID</domain:registrant>
  <domain:contact type="admin">AdminID</domain:contact>
  <domain:contact type="tech">TechID</domain:contact>
  <domain:contact type="billing">BillingID</domain:contact>
  <domain:contact type="reseller">ResellerID</domain:contact>
  <domain:authInfo>
    <domain:pw>TransferPassword</domain:pw>
  </domain:authInfo>
</domain:create>

XML#2

<domain:update xmlns="urn:ietf:params:xml:ns:epp-1.0" xmlns:domain="urn:ietf:params:xml:ns:domain-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd">
  <domain:name>exampledomain.gtld</domain:name>
  <domain:add>
    <domain:ns>
      <domain:hostAttr>
        <domain:hostName>ns1.exampledomain.gtld</domain:hostName>
        <domain:hostAddr ip="v4">1.1.1.1</domain:hostAddr>
      </domain:hostAttr>
    </domain:ns>
    <domain:contact type="tech">NewTechID</domain:contact>
    <domain:status s="clientHold">Payment overdue.</domain:status>
  </domain:add>
  <domain:rem>
    <domain:ns>
      <domain:hostAttr>
        <domain:hostName>ns1.otherdomain.gtld</domain:hostName>
      </domain:hostAttr>
    </domain:ns>
    <domain:status s="clientTransferProhibited"/>
  </domain:rem>
  <domain:chg>          
    <domain:registrant>NewRegistrantID</domain:registrant>
    <domain:authInfo>
      <domain:pw>NewPassword</domain:pw>
    </domain:authInfo>
  </domain:chg>
</domain:update>

XSL:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:domain="urn:ietf:params:xml:ns:domain-1.0">

<xsl:variable name="vLower" select="'abcdefghijklmnopqrstuvwxyz'"/>

<xsl:variable name="vUpper" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="domain:update">
  <div class="action">Domain Update: '<xsl:value-of select="domain:name"/>'</div>
    <div class="attributes">
      <xsl:for-each select="domain:ns/domain:hostAttr">
        <div class="hostname">Nameserver: <xsl:value-of select="domain:hostName"/>
          <xsl:for-each select="domain:hostAddr">
            <div>
              <xsl:attribute name="class"><xsl:value-of select="@ip"/>_address</xsl:attribute>
              IP<xsl:value-of select="@ip"/> Glue: <xsl:value-of select="."/>
            </div>
          </xsl:for-each>
        </div>  
      </xsl:for-each>
    </div>
    <div class="contacts">
      <div class="contact_registrant">Registrant: <xsl:value-of select="domain:registrant"/></div>
      <xsl:for-each select="domain:contact">
        <div>  
          <xsl:attribute name="class">contact_<xsl:value-of select="@type"/></xsl:attribute>
          <xsl:value-of select="concat(translate(substring(@type,1,1), $vLower, $vUpper), substring(@type, 2), substring('', 1 div not(position()=last())))"/>: <xsl:value-of select="."/>
        </div>
      </xsl:for-each>
    </div>
    <div class="password">
</xsl:template>

<xsl:template match="domain:create">
  <div class="action">Domain Create: '<xsl:value-of select="domain:name"/>' for a period of <xsl:value-of select="domain:period"/> <xsl:value-of select="domain:period/@unit"/></div>
    <div class="attributes">
      <xsl:for-each select="domain:ns/domain:hostAttr">
        <div class="hostname">Nameserver: <xsl:value-of select="domain:hostName"/>
          <xsl:for-each select="domain:hostAddr">
            <div>
              <xsl:attribute name="class"><xsl:value-of select="@ip"/>_address</xsl:attribute>
              IP<xsl:value-of select="@ip"/> Glue: <xsl:value-of select="."/>
            </div>
          </xsl:for-each>
        </div>  
      </xsl:for-each>
    </div>
    <div class="contacts">
      <div class="contact_registrant">Registrant: <xsl:value-of select="domain:registrant"/></div>
      <xsl:for-each select="domain:contact">
        <div>
          <xsl:attribute name="class">contact_<xsl:value-of select="@type"/></xsl:attribute>
          <xsl:value-of select="concat(translate(substring(@type,1,1), $vLower, $vUpper), substring(@type, 2), substring('', 1 div not(position()=last())))"/>: <xsl:value-of select="."/>
        </div>
      </xsl:for-each>
    </div>
    <div class="password">
</xsl:template>



</xsl:stylesheet>

使用XML#1产生:

exampledomain.gtld 1 ns1.exampledomain.gtld x.x.x.x y.y.y.y ff02::1 ns1.otherdomain.gtld RegistrantID AdminID TechID BillingID ResellerID TransferPassword

但是使用XML#2会产生(如预期的那样):

Domain Update: 'exampledomain.gtld'
Registrant:

如果我交换指定的模板,那么它可以正常工作。

愚蠢更新 我省略了</div>

的结束<div class="Password">标记

2 个答案:

答案 0 :(得分:0)

此时我失去了你:

<xsl:template match="/">
  <xsl:choose>
    <xsl:when test="name() = 'domain:update'">
      <xsl:call-template name="domain_update"/>
    </xsl:when>
    <xsl:otherwise test="name() = 'domain:create'">
      <xsl:call-template name="domain_create"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:template>

您位于根节点/的上下文中。此节点没有名称,因此测试:

<xsl:when test="name() = 'domain:update'">

永远不会返回true。也许你应该尝试:

<xsl:template match="/*">

代替。

另一件事是<xsl:otherwise>不能拥有test属性。如果要执行其他测试,则需要使用其他<xsl:when>标记。如果所有测试都返回false,请使用<xsl:otherwise>指定默认结果。

另请注意,您可以只使用匹配domain:create的模板和匹配domain:update的另一个模板来代替此详细分支。那么简单:

<xsl:template match="/">
    <xsl:apply-templates/>
</xsl:template>

会为你做这份工作。而且你甚至不必在样式表中写这个,因为内置的模板规则就是这样做的。


重要提示:

我没有进入您命名模板的内容,但我怀疑他们也需要彻底修改。但这对于一个问题来说太过分了。

答案 1 :(得分:0)

“/”是指文档节点,它是最外层元素节点的父节点。文档节点是未命名的,因此name()返回一个空字符串,因此测试“name()='domain:update'”失败,你总是落入“其他”分支。

无论如何,这是一个糟糕的测试。通过对name()函数的结果进行字符串比较,仅当源文档使用此特定名称空间前缀时才匹配。你不应该关心使用什么前缀。

使用XSLT以及使用XSLT的方式会更好,并且匹配模板规则。像这样:

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="domain:update">
  ...
</xsl:template>

<xsl:template match="domain:create">
  ...
</xsl:template>