XSLT匹配和命名空间

时间:2017-09-28 20:52:23

标签: xml xslt namespaces

我正在尝试使用XSLT进行转换。

如果我从XSLT&中删除命名空间信息。 XML,它运行正常,但我无法使用它来处理命名空间信息。

以下是失败的XSLT的样子:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                              xmlns:dc="http://purl.org/dc/elements/1.1/"
                              xmlns:dcterms="http://purl.org/dc/terms/">

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


<xsl:template match="dc">
  <record>
    <xsl:apply-templates select="dcterms:title"/>
    <xsl:apply-templates select="dcterms:type"/>
  </record>
</xsl:template>

<xsl:template match="dcterms:title">
  <xsl:element name="dcterms:title"><xsl:value-of select="."/></xsl:element>
</xsl:template>

<xsl:template match="dcterms:type">
  <xsl:element name="dcterms:type"><xsl:value-of select="."/></xsl:element>
</xsl:template>


</xsl:stylesheet>

以下是它正在运行的XML:

<?xml version="1.0" encoding="UTF-8"?>

<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd">
  <responseDate>2015-10-11T00:35:52Z</responseDate>
  <ListRecords>
    <record>
      <metadata>
        <dc xmlns="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:oai-pmh="http://www.openarchives.org/OAI/2.0/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:oai_qdc="http://worldcat.org/xmlschemas/qdc-1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd http://worldcat.org/xmlschemas/qdc-1.0/ http://worldcat.org/xmlschemas/qdc/1.0/qdc-1.0.xsd http://purl.org/net/oclcterms http://worldcat.org/xmlschemas/oclcterms/1.4/oclcterms-1.4.xsd">
          <edm:dataProvider>Some University</edm:dataProvider>
          <edm:rights>https://library.someplace.edu/statements/rights</edm:rights>
          <dcterms:title>This is a title</dcterms:title>
          <dcterms:type>Image</dcterms:type>
          <dcterms:creator>This is a creator</dcterms:creator>
          <dc:date>1981-07-17</dc:date>
          <dc:format/>
          <dc:format/>
        </dc>
      </metadata>
    </record>
    <record>
      <metadata>
        <dc xmlns="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:oai-pmh="http://www.openarchives.org/OAI/2.0/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:oai_qdc="http://worldcat.org/xmlschemas/qdc-1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd http://worldcat.org/xmlschemas/qdc-1.0/ http://worldcat.org/xmlschemas/qdc/1.0/qdc-1.0.xsd http://purl.org/net/oclcterms http://worldcat.org/xmlschemas/oclcterms/1.4/oclcterms-1.4.xsd">
          <edm:dataProvider>Some University</edm:dataProvider>
          <edm:rights>https://library.someplace.edu/statements/rights</edm:rights>
          <dcterms:title>This is another title</dcterms:title>
          <dcterms:type>Image</dcterms:type>
          <dcterms:creator>This is a creator</dcterms:creator>
          <dc:date>1981-07-24</dc:date>
          <dc:format/>
          <dc:format/>
        </dc>
      </metadata>
    </record>
  </ListRecords>
</OAI-PMH>

失败的输出如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<full xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/"/>

这就是我希望得到的:

<?xml version="1.0" encoding="UTF-8"?>
<full>
  <record>
    <title>This is a title</title>
    <type>Image</type>
  </record>
  <record>
    <title>This is another title</title>
    <type>Image</type>
  </record>
</full>

缺少“记录”元素清楚地表明“dc”没有匹配,但我不确定我需要做些什么才能匹配这些元素。

如果重要的话,我在CentOS盒子上使用Saxon。

Saxon抛出消息“找不到CatalogManager.properties”,无论它是否失败(使用支持命名空间的代码)还是工作(使用无命名空间的代码)。我怀疑这与我迄今为止在网上看到的情况无关,但不能发誓。

我假设这很简单,但作为一个新的XSLT用户使用的XML文档充满了命名空间(超过我上面的示例中列出的内容)我对意大利面的命名空间感到有些困惑创建

1 个答案:

答案 0 :(得分:0)

预期的输出可以非常简单地通过以下方式实现:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:oai="http://www.openarchives.org/OAI/2.0/"
xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
xmlns:dcterms="http://purl.org/dc/terms/"
exclude-result-prefixes="oai oai_dc dcterms">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/oai:OAI-PMH">
    <full>
        <xsl:for-each select="oai:ListRecords/oai:record">
            <record>
                <title>
                    <xsl:value-of select="oai:metadata/oai_dc:dc/dcterms:title" />
                </title>
                <type>
                    <xsl:value-of select="oai:metadata/oai_dc:dc/dcterms:type" />
                </type>
            </record>
        </xsl:for-each>     
    </full>
</xsl:template>

</xsl:stylesheet>