Hi
I am eager to try out Clojure for my new web site. But for that I need
XSLT support, like I used to have on Common Lisp (Xuriella XSLT) and
also XPath support (like Plexippus XPath).
I saw the saxon wrapper among the Clojure libraries but in its docs I
couldn't find how they define user extensions. I wonder if Clojure has
a library or some support for that now.
To illustrate what I need is when you create your xsl page you should
be able to define your extensions in lisp so that you can use it like
this:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                xmlns:func="http://www.yourwebsite.com/func";>
...................................
<xsl:value-of select="func:my-lisp-function($some-parameter)"/>
..................................
</xsl:stylesheet>

Where my-lisp-function is the user defined extension in the "http://
www.yourwebsite.com/func" namespace.
Thank you,
Andrei

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to