xsl-list
[Top] [All Lists]

RE: [xsl] Creating List with xsl:function

2006-11-18 01:59:46
You might find the Saxon error messages more helpful:

Error at xsl:sequence on line 7 of file:/c:/temp/test.xsl:
  XPST0003: XPath syntax error at char 26 on line 7 in {('1', 'a', 'i', 'A',
'I') coun...}:
    Unexpected token "<function>(" beyond end of expression

Error at ol on line 11 of file:/c:/temp/test.xsl:
  XPST0003: XPath syntax error at char 6 on line 11 in
{enum{$ACM:list-format(.}:
    expected "<name>", found "<function>("

The first is because you've omitted the "[" at the start of the predicate.

The second is because you've got an unwarranted "$" before your function
call.

Michael Kay
http://www.saxonica.com/

 

-----Original Message-----
From: Philip Vallone [mailto:philip(_dot_)vallone(_at_)verizon(_dot_)net] 
Sent: 18 November 2006 01:16
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Creating List with xsl:function

Thank you for the help. Here is what I have so far:

      <xsl:function name="ACM:list-format" as="xs:string">
              <xsl:param name="node" as="node()"/>
              <xsl:sequence select="('1', 'a', 'i', 'A', 'I')
count($node/ancestor::ACM:Para) mod 5 + 1] "/>
      </xsl:function>
      <xsl:template match="ACM:list">
              <xsl:for-each select="ACM:Para">
                      <ol class="enum{$ACM:list-format(.)}">
                              <xsl:apply-templates select="."/>
                      </ol>
              </xsl:for-each>
      </xsl:template>

Now I am getting the following error message:

Invalid XPath 2.0 expression Unexpected token - "(.)"

Any ideas?

Thanks,

Phil





--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>
--~--