2

XSLT を使用して、ドキュメント セットの目次として使用される XML ファイルを、Excel で区切ることができる形式に変換しています。たとえば、Excel で開くと、区切りバージョンは次のようになります。

+-----------+---------------+------+-----------+---------------------+
|URL        |Title          |Depth |Level 1    |Level 2              |
+-----------+---------------+------+-----------+---------------------+
|dogs.html  |Dogs are cool  |2     |Animals    |Domesticated Animals |
+-----------+---------------+------+-----------+---------------------+

この部分は既に解決済みなので、以下にサンプル コードを示します。

私の問題は、各レベルの列ヘッダーを上部に挿入したいということです。現在、これは手動で行っていますが、さまざまなレベルの複数のドキュメント セットで変換を使用したいと考えています。

私の質問は、レベルの最大数 (つまり、どのノードが最も多くの祖先を持つか) を見つけて、その数の列ヘッダーを作成するにはどうすればよいかということです。

サンプル XML は次のとおりです。

<contents Url="toc_animals.html" Title="Animals">
<contents Url="toc_apes.html" Title="Apes">
    <contents Url="chimps.html" Title="Some Stuff About Chimps" />
</contents>
<contents Url="toc_cats" Title="Cats">
    <contents Url="hairless_cats.html" Title="OMG Where Did the Hair Go?"/>
    <contents Url="wild_cats.html" Title="These Things Frighten Me"/>
</contents>
<contents Url="toc_dogs.html" Title="Dogs">
    <contents Url="toc_snorty_dogs.html" Title="Snorty Dogs">
        <contents Url="boston_terriers.html" Title="Boston Terriers" />
        <contents Url="french_bull_dogs.html" Title="Frenchies" />
    </contents>
</contents>
</contents>

XSLT は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="no"/>

<!-- This variable sets the delimiter symbol that Excel will use to seperate the cells -->
<xsl:variable name="delimiter">@</xsl:variable>

<xsl:template match="contents">

    <!-- Prints the URL -->
    <xsl:value-of select="@Url"/>
    <xsl:copy-of select="$delimiter" />

    <!-- Prints the title -->
    <xsl:apply-templates select="@Title"/>
    <xsl:copy-of select="$delimiter" />

    <!-- Prints the depth--i.e., the number of categories, sub-categories, etc. -->
    <xsl:value-of select="count(ancestor::*[@Title])"/>
    <xsl:copy-of select="$delimiter" />

    <!-- Sets up the categories --> 
    <xsl:for-each select="ancestor::*[@Title]">
        <xsl:apply-templates select="@Title"/>
        <xsl:if test="position() != last()">
            <xsl:copy-of select="$delimiter" />
        </xsl:if>
    </xsl:for-each>
    <xsl:text>&#xA;</xsl:text>
</xsl:template>

<xsl:template match="/">

    <!-- Creates the column headings manually -->
    <xsl:text>URL</xsl:text>
    <xsl:copy-of select="$delimiter" />
    <xsl:text>Title</xsl:text>
    <xsl:copy-of select="$delimiter" />
    <xsl:text>Depth</xsl:text>
    <xsl:copy-of select="$delimiter" />
    <xsl:text>Level 1</xsl:text>
    <xsl:copy-of select="$delimiter" />
    <xsl:text>Level 2</xsl:text>
    <xsl:copy-of select="$delimiter" />
    <xsl:text>&#xA;</xsl:text>

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

</xsl:stylesheet>
4

1 に答える 1