xsl-list
[Top] [All Lists]

Re: [xsl] How can I achieve correct tail-recursion ?

2010-01-07 10:17:58
You may try to avoid tracing numbers in template parameters.
If your numbering depends on one level of nesting (doc/children) then
you may use context position to derive the numbers.
If numbers depend on multilevel nesting then something like
 count(preceding::*) + count(ancestor-or-self::*) - 1
can be used to get numbers.

Thanks, thought of that but I can't : line and page number depends
only from page size (chosen by the user) and is completely independant
from the position of the phrase, the title or the list currently
beeing processed.

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

<Prev in Thread] Current Thread [Next in Thread>