Re: [xsl] transforming XSLT files to use XSLT3 features

Subject: Re: [xsl] transforming XSLT files to use XSLT3 features
From: "Dimitre Novatchev dnovatchev@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 11 Feb 2023 19:25:24 -0000
On Sat, Feb 11, 2023 at 3:34 AM Chris Papademetrious
christopher.papademetrious@xxxxxxxxxxxx <
xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx> wrote:

>  For some reason, I donbt feel inclined to write an XPath grammar parser
> in XSLT. But still, some low-hanging fruit can be obtained.
>
>
>
> -----
> Chris Papademetrious
>
> Tech Writer, Implementation Group
>
> (610) 628-9718 home office
>
> (570) 460-6078 cell
>

XPath 2.0 parser written in XSLT exists since 2007 as part of FXSL. It uses
the YACC LR-1 parser generator and post=processes its output to produce as
an XML file the parsing tables for the XPath grammar. It is easy to extend
the grammar to that of XPath3. The parser that uses these LR-1 parsing
table is a simple XSLT function and contains around 200 lines of code:

https://github.com/dnovatchev/FXSL-XSLT2/blob/master/newWork/func-lrParse.xsl


See:

https://github.com/dnovatchev/FXSL-XSLT2/blob/master/newWork/XPathParse1.xsl
https://github.com/dnovatchev/FXSL-XSLT2/blob/master/newWork/XPATH-Grammar.y
https://github.com/dnovatchev/FXSL-XSLT2/blob/master/newWork/XPATH-ParseTable
s.xml

 ------
Cheers,
Dimitre Novatchev
---------------------------------------
Truly great madness cannot be achieved without significant intelligence.
---------------------------------------
To invent, you need a good imagination and a pile of junk
-------------------------------------
Never fight an inanimate object
-------------------------------------
To avoid situations in which you might make mistakes may be the
biggest mistake of all
------------------------------------
Quality means doing it right when no one is looking.
-------------------------------------
You've achieved success in your field when you don't know whether what
you're doing is work or play
-------------------------------------
To achieve the impossible dream, try going to sleep.
-------------------------------------
Facts do not cease to exist because they are ignored.
-------------------------------------
Typing monkeys will write all Shakespeare's works in 200yrs.Will they write
all patents, too? :)
-------------------------------------
Sanity is madness put to good use.
-------------------------------------
I finally figured out the only reason to be alive is to enjoy it.

Current Thread