xsl-list
[Top] [All Lists]

[xsl] RandomList.xsl from FXSL-xslt2

2009-10-02 04:24:36
Hi List

I'm trying to get RandomList.xsl from FXSL-xslt2 working.

The test file provided by FXSL, testRandomList2.xsl, works well for
shuffling a deck of cards. But the order of the 52 cards is always the
same.

<xsl:stylesheet version="2.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
 xmlns:f="http://fxsl.sf.net/";
 exclude-result-prefixes="f">

 <xsl:import href="../f/randomList.xsl"/>

  <!-- Can be applied on any source xml document (ignored) -->
  <xsl:output omit-xml-declaration="yes" indent="yes"/>

  <xsl:template match="/">
    <list>
            <xsl:call-template name="randomizeList">
              <xsl:with-param name="pList" select="1  to 52"/>
            </xsl:call-template>
    </list>
  </xsl:template>

</xsl:stylesheet>

How can I shuffle a deck of cards many times, getting a new order
almost all the time? I guess I need to change the "Global Randomizing
constants" in random.xsl. But how can this be done in  a way that just
works each time I run the testRandomList2.xsl  example?

Cheers,
Jesper Tverskov

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--