Как сгруппировать разные элементы в одном элементе - PullRequest
0 голосов
/ 03 сентября 2018

verse выводит элементы класса в одну группу элементов разделения на элементы verse, как показано в следующем формате

Мой код XML:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE topic
  PUBLIC>
<topic id="topic_31" xml:lang="en-US" outputclass="Back-Matter">
  <title>Back-Matter</title>
  <body>
    <p outputclass="E-Head">E-Head</p>
    <p outputclass="F-Head">F-Head</p>
    <p outputclass="Body-Text">Body-Text (Tx)</p>
    <p outputclass="Body-Text-ContinuedTxc">Body-Text-Continued</p>
    <p outputclass="Verse1">Verse1 (Vrs1)</p>
    <p outputclass="Verse1-indent1">Verse1-indent1 (Vrs1-i1)</p>
    <p outputclass="Verse1-indent2">Verse1-indent2 (Vrs1-i2)</p>
    <p outputclass="Verse1-indent3">Verse1-indent3 (Vrs1-i3)</p>
    <p outputclass="Verse2Vrs2">Verse2 (Vrs2)</p>
    <p outputclass="Verse2-indent1Vrs2-i1">Verse2-indent1 (Vrs2-i1)</p>
    <p outputclass="Verse2-indent2Vrs2-i2">Verse2-indent2 (Vrs2-i2)</p>
    <p outputclass="Verse2-indent3Vrs2-i3">Verse2-indent3 (Vrs2-i3)</p>
    <p outputclass="QuotationQuo">Quotation (Quo)</p>
    <p outputclass="Extract1Ext1">Extract1 (Ext1)</p>
    <p outputclass="Extract2Ext2">Extract2 (Ext2)</p>
    <p outputclass="E-Head">E-Head</p>
    <p outputclass="F-Head">F-Head</p>
    <p outputclass="Body-Text">Body-Text (Tx)</p>
    <p outputclass="Body-Text-ContinuedTxc">Body-Text-Continued</p>
    <p outputclass="Verse1">Verse1 (Vrs1)</p>
    <p outputclass="Verse1-indent1">Verse1-indent1 (Vrs1-i1)</p>
    <p outputclass="Verse1-indent2">Verse1-indent2 (Vrs1-i2)</p>
    <p outputclass="Verse1-indent3">Verse1-indent3 (Vrs1-i3)</p>
    <p outputclass="Verse2Vrs2">Verse2 (Vrs2)</p>
    <p outputclass="Verse2-indent1Vrs2-i1">Verse2-indent1 (Vrs2-i1)</p>
    <p outputclass="Verse2-indent2Vrs2-i2">Verse2-indent2 (Vrs2-i2)</p>
    <p outputclass="Verse2-indent3Vrs2-i3">Verse2-indent3 (Vrs2-i3)</p>
    <p outputclass="QuotationQuo">Quotation (Quo)</p>
    <p outputclass="Extract1Ext1">Extract1 (Ext1)</p>
    <p outputclass="Extract2Ext2">Extract2 (Ext2)</p>
    </body>
</topic>

Нужен вывод как любой, где «verse» используется в выходном классе, мы хотим, чтобы конец корневого элемента div заканчивался после завершения комбинации элементов verse, как показано ниже:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xml:lang="en-us" lang="en">
<head>
<title>Styles</title>
</head>
<body class="Back-Matter" id="topic_31">
<section>
<h6 class="E-Head">E-Head</h6>
<section>
<h6 class="F-Head">F-Head</h6>
<section>
<p class="Body-Text">Body-Text</p>
<p class="Body-Text-Continued">Body-Text-Continued</p>
<div class="verse_group">
<p class="Verse1">Verse1</p>
<p class="Verse1-indent1">Verse1-indent1</p>
<p class="Verse1-indent2">Verse1-indent2</p>
<p class="Verse1-indent3">Verse1-indent3</p>
<p class="Verse2">Verse2</p>
<p class="Verse2-indent1">Verse2-indent1</p>
<p class="Verse2-indent2">Verse2-indent2</p>
<p class="Verse2-indent3">Verse2-indent3</p>
</div>
<p class="Quotation">Quotation</p>
<p class="Extract1">Extract1</p>
<p class="Extract2">Extract2</p>
</section>
</section>
<h6 class="E-Head">E-Head</h6>
<section>
<h6 class="F-Head">F-Head</h6>
<section>
<p class="Body-Text">Body-Text</p>
<p class="Body-Text-Continued">Body-Text-Continued</p>
<div class="verse_group">
<p class="Verse1">Verse1</p>
<p class="Verse1-indent1">Verse1-indent1</p>
<p class="Verse1-indent2">Verse1-indent2</p>
<p class="Verse1-indent3">Verse1-indent3</p>
<p class="Verse2">Verse2</p>
<p class="Verse2-indent1">Verse2-indent1</p>
<p class="Verse2-indent2">Verse2-indent2</p>
<p class="Verse2-indent3">Verse2-indent3</p>
</div>
<p class="Quotation">Quotation</p>
<p class="Extract1">Extract1</p>
<p class="Extract2">Extract2</p>
</section>
</section>
</section>
</body>
</html>

МОЙ шаблон Xslt Код для шаблона topic.p:

<xsl:template match="*[contains(@class, ' topic/p ')]" name="topic.p">
<xsl:variable name="topicatt"><xsl:value-of select="@outputclass" /></xsl:variable>
<xsl:choose>
      <xsl:when test="descendant::*[contains(@class, ' topic/pre ')] or
        descendant::*[contains(@class, ' topic/ul ')] or
        descendant::*[contains(@class, ' topic/sl ')] or
        descendant::*[contains(@class, ' topic/ol ')] or
        descendant::*[contains(@class, ' topic/lq ')] or
        descendant::*[contains(@class, ' topic/dl ')] or
        descendant::*[contains(@class, ' topic/note ')] or
        descendant::*[contains(@class, ' topic/lines ')] or
        descendant::*[contains(@class, ' topic/fig ')] or
        descendant::*[contains(@class, ' topic/table ')] or
        descendant::*[contains(@class, ' topic/simpletable ')]">
        <div class="p">
          <xsl:call-template name="commonattributes"/>
          <xsl:call-template name="setid"/>
          <xsl:apply-templates/>
        </div>
      </xsl:when>
      <xsl:when test="$topicatt = 'E-Head'">
        <h6 class="E-Head"><xsl:apply-templates/></h6>
      </xsl:when>
      <xsl:when test="$topicatt = 'F-Head'">
        <h6 class="F-Head"><xsl:apply-templates/></h6>
      </xsl:when>
     <xsl:otherwise>
        <xsl:call-template name="output_p_element"/>
      </xsl:otherwise>
    </xsl:choose>
    <xsl:value-of select="$newline"/>
  </xsl:template>

  <xsl:template name="output_p_element">
    <p>
      <xsl:call-template name="commonattributes"/>
      <xsl:call-template name="setid"/>
      <xsl:if test="contains(@outputclass, 'EntryIdx')">
        <xsl:call-template name="set_index_entry_class"/>
      </xsl:if>
      <xsl:apply-templates/>
    </p>
  </xsl:template>

Добавление элементов выходного класса verse в элемент div.

Пожалуйста, предложите.

1 Ответ

0 голосов
/ 03 сентября 2018

Если ваша единственная задача заключается в переносе смежных элементов p со строкой Verse в элементе outputclass, то это пример из учебника (см. Пример «Группировка чередующихся последовательностей элементов» в https://www.w3.org/TR/xslt20/#grouping-examples например) использования XSLT 2/3 for-each-group group-adjacent:

  <xsl:template match="body">
      <xsl:copy>
          <xsl:for-each-group select="*" group-adjacent="starts-with(@outputclass, 'Verse')">
              <xsl:choose>
                  <xsl:when test="current-grouping-key()">
                      <div class="verse_group">
                          <xsl:apply-templates select="current-group()"/>
                      </div>
                  </xsl:when>
                  <xsl:otherwise>
                      <xsl:apply-templates select="current-group()"/>
                  </xsl:otherwise>
              </xsl:choose>
          </xsl:for-each-group>
      </xsl:copy> 
  </xsl:template>

Полный пример на https://xsltfiddle.liberty -development.net / jyH9rMK .

Вы, похоже, тоже хотите вложить содержимое, я подозреваю, что это делается с for-each-group group-starting-with="*[@outputclass = 'E-Head']", вложенным с другим для другого F-Head, а затем вложенным внутрь с помощью group-adjacent (где все вложенные группировки работают на current-group() вместо полного выбора * или p, конечно) может решить эту проблему, но было бы лучше разделить это на разные вопросы.

...