使用XSLT在XML中着色唯一元素

时间:2010-06-16 14:37:34

标签: html css xml xslt unique-key

我目前有一个XML文档,它基本上由人们之间的几个对话组成,就像IM对话一样。

我的每个对话都显示了我到目前为止的想法,除了我希望每个名称都是唯一的颜色以便于阅读。

我是如何使用CSS将XML转换为HTML的。我想为此使用XPath和XSL 1.0:

XML

<wtfwhispers xmlns="http://wtfwhispers.kicks-ass.org" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
      xsi:schemaLocation="http://wtfwhispers.kicks-ass.org wtfwhispers.xsd">
  <conversation uuid="Diedrick">
    <datePosted>2010-05-30</datePosted>
    <description>What a great description</description>
    <dialog>
      <dialogDate>2009-12-22</dialogDate>
      <whisper>
        <whisperTime>03:55:00</whisperTime>
        <speaker>Stubbymush</speaker>
        <babble>i said something here</babble>
      </whisper>
      <whisper>
        <whisperTime>03:56:00</whisperTime>
        <speaker>Jaymes</speaker>
        <babble>what did you say?</babble>
      </whisper>
      <whisper>
        <whisperTime>03:56:00</whisperTime>
        <speaker>Stubbymush</speaker>
        <babble>i said something here!</babble>
      </whisper>
      ...
      <whisper>
        <whisperTime>03:57:00</whisperTime>
        <speaker>Stubbymush</speaker>
        <babble>gawd ur dumb</babble>
      </whisper>
    </dialog>
  </conversation>

</wtfwhispers>

理想情况下,我想要的是为第一个发言者输出<p class="speaker one">,为第二个发言人输出<p class="speaker two">,依此类推。

我试图使用和Meunchian方法找到我有多少独特的扬声器,但我有什么不工作:

...
<xsl:key name="speakerList" match="wtf:whisper" use="wtf:speaker" />

    <xsl:template match="/">
        <html lang="en">
        <body>
        <p>
            <xsl:value-of select="count( key( 'speakerList', wtf:speaker ) )" />
        </p>
        </body>
        </html>
    </xsl:template> 
...

当我输入'Jaymes'或'Stubbymush'时,我会得到说话者说话的正确次数,但不会说出总会话中有多少人。

提前致谢,如果您对简单方法有任何建议,因为我过于复杂,请告知。

1 个答案:

答案 0 :(得分:1)

此转化

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:w="http://wtfwhispers.kicks-ass.org"
 >
 <xsl:output method="text"/>

 <xsl:key name="kSpeakerByVal" match="w:speaker" use="."/>

 <xsl:template match="/">
  <xsl:value-of select=
   "count(
          /*/*/*/w:whisper/w:speaker
                       [generate-id()
                       =
                        generate-id(key('kSpeakerByVal',.)[1])
                        ]
          )
   "/>
 </xsl:template>
</xsl:stylesheet>

应用于提供的XML文档时,会产生正确的发言人数

2