维护嵌套元素的分组方法 XSLT 2.0 - 分离多余的

Posted

技术标签:

【中文标题】维护嵌套元素的分组方法 XSLT 2.0 - 分离多余的【英文标题】:Grouping method to maintain nested elements XSLT 2.0 - separating the excess 【发布时间】:2011-08-08 03:48:35 【问题描述】:

我将项目符号项目分组并将它们作为项目符号项目的第二个列表嵌入到某些列表元素中。我可以将项目分组,但我的递归模板正在选择从我在文档中的当前位置到最后的所有内容。我需要为我的嵌套列表设置一个终点。

我的输出如下所示:

<ul>
    <li>First Bullet:<ul>
         <li>Sub-bullet 1: info for sub-bullet
                                            1</li>
         <li>Sub-bullet 2: info for sub-bullet
                                            2</li>
         <li>Sub-bullet 3: info for sub-bullet
                                            3</li>
         <li>Sub-bullet 4: info for sub-bullet
                                                4</li>
         <li>Sub-bullet 5: info for sub-bullet
                                            5</li>
         <li>Sub-bullet 6: info for sub-bullet
                                            6</li>
        </ul>
    </li>

    <li>Second Bullet:<ul>
         <li>Sub-bullet 5: info for sub-bullet
                                            5</li>
         <li>Sub-bullet 6: info for sub-bullet
                                            6</li>
        </ul>
    </li>
</ul>

但它应该看起来像这样(在第一个 li 下没有子项目符号 5 和 6):

<ul>
    <li>First Bullet:<ul>
         <li>Sub-bullet 1: info for sub-bullet
                                            1</li>
         <li>Sub-bullet 2: info for sub-bullet
                                            2</li>
         <li>Sub-bullet 3: info for sub-bullet
                                            3</li>
         <li>Sub-bullet 4: info for sub-bullet
                                                4</li>
        </ul>
    </li>

    <li>Second Bullet:<ul>
         <li>Sub-bullet 5: info for sub-bullet
                                            5</li>
         <li>Sub-bullet 6: info for sub-bullet
                                            6</li>
        </ul>
    </li>
</ul>

我不确定如何在 XSLT 中正确地对子项目符号进行分组以使它们处于正确的位置。

这是我的来源:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<office:document-content xmlns:dom="http://www.w3.org/2001/xml-events"
  xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
  xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
  xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0"
  xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
  xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0"
  xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
  xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
  xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
  xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0">
  <office:body>
    <office:presentation>
      <draw:page draw:name="Slide1" draw:style-name="a1271"
        draw:master-page-name="Master1-Layout3-cust-Bullet"
        presentation:presentation-page-layout-name="Master1-PPL3">
        <draw:frame draw:id="id109" presentation:style-name="a1039"
                    draw:name="Content Placeholder 1" svg:x="0.31258in" svg:y="1.29095in"
                    svg: svg: presentation:class="outline"
                    presentation:placeholder="false">
                    <draw:text-box>
                        <text:list text:style-name="a1012">
                            <text:list-item>
                                <text:p text:style-name="a1011" text:class-names=""
                                    text:cond-style-name=""><text:span text:style-name="a1010"
                                        text:class-names="">First Bullet:</text:span></text:p>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1015">
                            <text:list-item>
                                <text:list text:style-name="a1015">
                                    <text:list-item>
                                        <text:p text:style-name="a1014" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1013" text:class-names=""
                                                >Sub-bullet 1: info for sub-bullet
                                            1</text:span></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1018">
                            <text:list-item>
                                <text:list text:style-name="a1018">
                                    <text:list-item>
                                        <text:p text:style-name="a1017" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1016" text:class-names=""
                                                >Sub-bullet 2: info for sub-bullet
                                            2</text:span></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1021">
                            <text:list-item>
                                <text:list text:style-name="a1021">
                                    <text:list-item>
                                        <text:p text:style-name="a1020" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1019" text:class-names=""
                                                >Sub-bullet 3: info for sub-bullet
                                            3</text:span></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1025">
                            <text:list-item>
                                <text:list text:style-name="a1025">
                                    <text:list-item>
                                        <text:p text:style-name="a1024" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1022" text:class-names=""
                                                >Sub-bullet 4: info for sub-bullet
                                                4</text:span><text:span text:style-name="a1023"
                                                text:class-names=""/></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1029">
                            <text:list-item>
                                <text:p text:style-name="a1028" text:class-names=""
                                    text:cond-style-name=""><text:span text:style-name="a1026"
                                        text:class-names="">Second Bullet:</text:span><text:span
                                        text:style-name="a1027" text:class-names=""/></text:p>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1032">
                            <text:list-item>
                                <text:list text:style-name="a1032">
                                    <text:list-item>
                                        <text:p text:style-name="a1031" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1030" text:class-names=""
                                                >Sub-bullet 5: info for sub-bullet
                                            5</text:span></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1035">
                            <text:list-item>
                                <text:list text:style-name="a1035">
                                    <text:list-item>
                                        <text:p text:style-name="a1034" text:class-names=""
                                            text:cond-style-name=""><text:span
                                                text:style-name="a1033" text:class-names=""
                                                >Sub-bullet 6: info for sub-bullet
                                            6</text:span></text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                    </draw:text-box>
                    <svg:desc/>
                </draw:frame>
      </draw:page>
    </office:presentation>
  </office:body>
</office:document-content>

这是我的样式表:

<xsl:stylesheet
    version="2.0"
    xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
    xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
    xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
    xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
    xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
    xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
    xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
    xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
    xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
    xmlns:math="http://www.w3.org/1998/Math/MathML"
    xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0"
    xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
    xmlns:dom="http://www.w3.org/2001/xml-events"
    xmlns:xforms="http://www.w3.org/2002/xforms"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0"
    office:class="text"
    office:version="1.0"
    exclude-result-prefixes="#all">
    <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>

<xsl:template match="draw:frame">
<ul>
 <xsl:for-each-group select="draw:text-box/text:list" group-starting-with="text:list-item">
  <xsl:for-each select="current-group()">

        <xsl:apply-templates select="text:list-item[not(text:list)]"/>

    </xsl:for-each>
</xsl:for-each-group> 
</ul>
</xsl:template>

<xsl:template match="draw:text-box/text:list/text:list-item/text:list/text:list-item/text:p">
<li><xsl:value-of select="."/></li>
</xsl:template>


<xsl:template match="draw:text-box/text:list/text:list-item/text:p">
<li><xsl:value-of select="."/>
    <!-- Check for nested list -->
    <xsl:if test="../../following-sibling::text:list[text:list-item/text:list]">

            <xsl:for-each select="current-group()">
            <xsl:apply-templates select="text:list-item/text:p"/>
            </xsl:for-each>

            </xsl:for-each-group>
    </ul>
    </xsl:if>
</li>
</xsl:template>


</xsl:stylesheet>

关于如何在 2.0 中完成此任务的任何建议?我试图创建一些计数变量,但在当前组上下文之外建立端点还没有任何运气。我知道必须有一种明显(而且更优雅)的方式来完成这项工作。

【问题讨论】:

好问题,+1。请参阅我的答案以获得完整、简短且简单的解决方案:) 【参考方案1】:

有一个根本不需要 XSLT 2.0 的简短、简单且容易的解决方案:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"
 exclude-result-prefixes="text"
 >
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

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

 <xsl:template match="text:list-item[not(text:list)]">
  <li><xsl:apply-templates/></li>
 </xsl:template>

 <xsl:template match=
  "text()[not(ancestor::text:list-item)]"/>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<office:document-content xmlns:dom="http://www.w3.org/2001/xml-events"
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0"
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0"
xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0"
xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0"
xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0"
xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0"
xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0"
xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0"   xmlns:xlink="http://www.w3.org/1999/xlink"   xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0">
    <office:body>
        <office:presentation>
            <draw:page draw:name="Slide1" draw:style-name="a1271"         draw:master-page-name="Master1-Layout3-cust-Bullet"         presentation:presentation-page-layout-name="Master1-PPL3">
                <draw:frame draw:id="id109" presentation:style-name="a1039"                     draw:name="Content Placeholder 1" svg:x="0.31258in" svg:y="1.29095in"                     svg: svg: presentation:class="outline"                     presentation:placeholder="false">
                    <draw:text-box>
                        <text:list text:style-name="a1012">
                            <text:list-item>
                                <text:p text:style-name="a1011" text:class-names=""                                     text:cond-style-name="">
                                    <text:span text:style-name="a1010"                                         text:class-names="">First Bullet:</text:span>
                                </text:p>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1015">
                            <text:list-item>
                                <text:list text:style-name="a1015">
                                    <text:list-item>
                                        <text:p text:style-name="a1014" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1013" text:class-names=""                                                 >Sub-bullet 1: info for sub-bullet                                             1</text:span>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1018">
                            <text:list-item>
                                <text:list text:style-name="a1018">
                                    <text:list-item>
                                        <text:p text:style-name="a1017" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1016" text:class-names=""                                                 >Sub-bullet 2: info for sub-bullet                                             2</text:span>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1021">
                            <text:list-item>
                                <text:list text:style-name="a1021">
                                    <text:list-item>
                                        <text:p text:style-name="a1020" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1019" text:class-names=""                                                 >Sub-bullet 3: info for sub-bullet                                             3</text:span>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1025">
                            <text:list-item>
                                <text:list text:style-name="a1025">
                                    <text:list-item>
                                        <text:p text:style-name="a1024" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1022" text:class-names=""                                                 >Sub-bullet 4: info for sub-bullet                                                 4</text:span>
                                            <text:span text:style-name="a1023"                                                 text:class-names=""/>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1029">
                            <text:list-item>
                                <text:p text:style-name="a1028" text:class-names=""                                     text:cond-style-name="">
                                    <text:span text:style-name="a1026"                                         text:class-names="">Second Bullet:</text:span>
                                    <text:span                                         text:style-name="a1027" text:class-names=""/>
                                </text:p>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1032">
                            <text:list-item>
                                <text:list text:style-name="a1032">
                                    <text:list-item>
                                        <text:p text:style-name="a1031" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1030" text:class-names=""                                                 >Sub-bullet 5: info for sub-bullet                                             5</text:span>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                        <text:list text:style-name="a1035">
                            <text:list-item>
                                <text:list text:style-name="a1035">
                                    <text:list-item>
                                        <text:p text:style-name="a1034" text:class-names=""                                             text:cond-style-name="">
                                            <text:span                                                 text:style-name="a1033" text:class-names=""                                                 >Sub-bullet 6: info for sub-bullet                                             6</text:span>
                                        </text:p>
                                    </text:list-item>
                                </text:list>
                            </text:list-item>
                        </text:list>
                    </draw:text-box>
                    <svg:desc/>
                </draw:frame>
            </draw:page>
        </office:presentation>
    </office:body>
</office:document-content>

产生想要的正确结果

<ul>
   <li>First Bullet:</li>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 1: info for sub-bullet                                             1</li>
   </ul>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 2: info for sub-bullet                                             2</li>
   </ul>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 3: info for sub-bullet                                             3</li>
   </ul>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 4: info for sub-bullet                                                 4</li>
   </ul>
</ul>
<ul>
   <li>Second Bullet:</li>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 5: info for sub-bullet                                             5</li>
   </ul>
</ul>
<ul>
   <ul>
      <li>Sub-bullet 6: info for sub-bullet                                             6</li>
   </ul>
</ul>

浏览器显示为

第一颗子弹: 子项目符号 1:子项目符号 1 的信息 子项目符号 2:子项目符号 2 的信息 子项目符号 3:子项目符号 3 的信息 子项目符号 4:子项目符号 4 的信息 第二个要点: 子项目符号 5:子项目符号 5 的信息 子项目符号 6:子项目符号 6 的信息

【讨论】:

感谢您的回答。有没有办法让ul标签嵌入到一级li中?您的解决方案适用于 html,但我的内容具有不允许这样做的验证规则。所以我只能在 li 标签的第一级使用&lt;ul&gt;&lt;li&gt;First Bullet:&lt;ul&gt;...sub-bullets...&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;。如果这不能在第一次完成,也许我可以构建第二个样式表以某种方式组织适当的嵌套结构。抱歉回复晚了,我出去度假了。 @unknown_varmit:很抱歉,您的 XML 文档非常复杂,我无法在这上面花费大量时间。如果您可以提供最简单的示例,它没有多余的元素并且不需要持续的水平滚动,那么就有可能做一些事情。这项任务可能一点也不难,但是这里的困难来自奇怪的 XML 文档。处理它的最佳方法是闭上眼睛。【参考方案2】:

您需要一个与文本列表匹配的模板;这将输出

标签。

【讨论】:

以上是关于维护嵌套元素的分组方法 XSLT 2.0 - 分离多余的的主要内容,如果未能解决你的问题,请参考以下文章

xslt 1.0中的嵌套分组

使用 XSLT muenchian-grouping 进行嵌套分组

如何在封闭元素下组织(分组)节点 - XSLT

XSLT / Muenchian 分组:如何从组中选择具有某些子元素的元素?

当输入文件上的字段为空时,XSLT 2.0 如何跳过写入元素

使用 XSLT 程序对具有逗号分隔值的 XML 元素进行分组