计算主题号,哪里出错了?

时间:2016-12-07 07:12:50

标签: xslt

我想为每个主题标题生成编号。

有1个Ditamap具有以下结构

<map>
  <chapter>
     <topicref href="ditafile1#topic1">
     <topicref href="ditafile1#topic2">
     <topicref href="ditafile1#topic3">
     and so forth
  </chapter>

  <chapter>
     <topicref href="ditafile2#topic2-1>
     <topicref href="ditafile2#topic2-2>
     and so forth
  </chapter>
</map>

2相同结构的Dita文件

Dita文件1:

<topic>
      <topic>
          <title>Introduction</title>
      </topic>
      <topic id="topic1>
          <title>Number 1</title>
      </topic>
      <topic id="topic2>
          <title>Number 2</title>
      </topic>
  </topic>

Dita文件2

<topic>
      <topic id="topic2-1">
          <title>Number 2-1</title>
      </topic>
      <topic>
          <title></title>
      </topic>
      <topic id="topic2-2">
          <title>Number 2-2</title>
      </topic>
  </topic>

预期结果:

1.1 Number 1

// 1.1基于匹配的id和href生成

1.2 Number 2

// 1.2基于匹配的id和href生成

2.1号码2-1

2.2号码2-2


如您所见,订单不是结构化的。我需要调用ditamap,基于ditamap结构,比较dita主题id和ditamap href#,如果匹配编号标题。

以下是我的代码

<主题/主题/标题中的

<xsl:template match="topic/topic/title">
   <xsl:for-each select="map">
       <xsl:number count="chapter" format="1. "/>

       <xsl:for-each select="document(@href)/chapter/topicref">
           <xsl:number count="chapter|topicref" level="multiple" format="1.1. "></xsl:number>

        // if dita map href matches topic id {
           <h2>
        <xsl:value-of select="."/> <xsl:value-of select="text()"/>
           </h2>             
         }
       </xsl:for-each>           
   </xsl:for-each>

</xsl:template>

谢谢。

1 个答案:

答案 0 :(得分:0)

为了澄清前提条件,我制作了以下地图和主题文件。

[test.ditamap]

<?xml version="1.0" encoding="UTF-8"?>
<map>
    <chapter>
        <topicref href="ditafile1.xml#topic1"/>
        <topicref href="ditafile1.xml#topic2"/>
        <topicref href="ditafile1.xml#topic3"/>
        <!-- and so forth -->
    </chapter>

    <chapter>
        <topicref href="ditafile2.xml#topic2-1"/>
        <topicref href="ditafile2.xml#topic2-2"/>
        <!-- and so forth -->
    </chapter>
</map>

[ditafile1.xml]

<?xml version="1.0" encoding="UTF-8"?>
<topic id="topic0">
    <title/>
    <topic>
        <title>Introduction</title>
    </topic>
    <topic id="topic1">
        <title>Number 1</title>
    </topic>
    <topic id="topic2">
        <title>Number 2</title>
    </topic>
    <topic id="topic3">
        <title>Number 3</title>
    </topic>
</topic>

[ditafile2.xml]

<?xml version="1.0" encoding="UTF-8"?>
<topic>
    <title/>
    <topic id="topic2-1">
        <title>Number 2-1</title>
    </topic>
    <topic>
        <title></title>
    </topic>
    <topic id="topic2-2">
        <title>Number 2-2</title>
    </topic>
</topic>

输入test.ditamap和输出文本的样式表。

[convert.xsl]

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    exclude-result-prefixes="xs"
    version="2.0">

    <xsl:output method="text"/>

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

    <xsl:template match="topicref[@href]">
        <xsl:variable name="href" as="xs:string" select="string(@href)"/>
        <xsl:variable name="topicFile" as="xs:string" select="substring-before($href,'#')"/>
        <xsl:variable name="id" as="xs:string" select="substring-after($href,'#')"/>
        <xsl:variable name="levelStr" as="xs:string">
            <xsl:number level="multiple" count="chapter|topicref" format="1.1"/>
        </xsl:variable>
        <xsl:variable name="title" as="text()*">
            <xsl:apply-templates select="document(concat(string(resolve-uri('.', static-base-uri())),$topicFile))//topic[string(@id) eq $id]/title"/>
        </xsl:variable>
        <xsl:value-of select="$levelStr"/>
        <xsl:text> </xsl:text>
        <xsl:value-of select="$title"/>
        <xsl:text>&#x0A;</xsl:text>
    </xsl:template>

</xsl:stylesheet>

注意:所有数据文件和样式表都存在于同一文件夹中

[输出结果]

1.1 Number 1
1.2 Number 2
1.3 Number 3
2.1 Number 2-1
2.2 Number 2-2

但是,不应以这种方式处理DITA地图和主题。应使用DITA-OT处理它们。