home mail me! syndication

overthinkings

of Ruben Daniels

Getting Xpath/XSLT support into Safari

How to use it

So, after telling you a little bit on how to create such a parser, you might be interested in how to use the ones I described. For the Xpath processor it’s just one line of code:

var nodeset = XPath.selectNodes(
"//j:teleport/node()|text()", xmlContextNode);

I created the XSLT parser to have the exact same API as the XSLTProcessor object from Mozilla. So you can do this:

var xsltProcessor = new XSLTProcessor();
xsltProcessor.importStylesheet(xslDoc);
d = document.implementation.createDocument("", "", null);
f = xsltProcessor.transformToFragment(this, d);

You can download the code here. Or see a example here.


[Update 25 feb 2007]
I’ve answered some questions concerning this article in this article

Pages: 1 2 3

30 Comments »

  Ajaxian » XPath/XSLT support in Safari wrote @ February 24th, 2007 at 1:51 am

[…] Ruben Daniels was on a mission to create XPath and XSLT support that works on Safari. […]

  Dean Edwards wrote @ February 24th, 2007 at 7:57 pm

Very good work. Did you know that later versions of Safari support XPath? It seems to be pretty buggy so maybe you will need this library for a while. Once again, great work!

  Edward Kepler wrote @ February 25th, 2007 at 3:24 am

This is extactly what I am looking for. Great Work. How can I help on your mission to get full XSLT support for all browsers.

  Ruben wrote @ February 25th, 2007 at 12:24 pm

Hi Dean, I know there is support in the later versions of Safari, but when I tried it, it was so buggy that it couldn’t be used in production. So this lib is usefull for that for now :). And IE will not have Xpath support for the HTMLDocument for a long time, which is where this lib comes in handy as well.

  Francisco wrote @ February 26th, 2007 at 10:57 pm

Have you seen the Formfaces (www.formfaces.com) implementation of XPath, it is used heavily for its XForms implementation

  attila szabo wrote @ February 28th, 2007 at 8:03 am

Thank you very much. I was shocked when I discovered that Safari does not support XSLT transformations. I did not want to use a heavy library such as Sarissa, so I am happy that thery is a more lightweight alternative. I’ll definitely try your code and let you know if it works.

  XPath/XSLT support in Safari wrote @ March 1st, 2007 at 3:42 pm

[…] Ruben Daniels was on a mission to create XPath and XSLT support that works on Safari. […]

  attila szabo wrote @ March 3rd, 2007 at 6:29 pm

Unfortunately it does not work. I assume I use some XSLT elements in my template that the library does not implement. Thanks anyway.

  Darrell Esau wrote @ March 6th, 2007 at 8:22 pm

Just tried this in the latest webkit .. I immediately get undefined variable errors for “TAGNAME”. Looking in the XSLT.js, I see TAGNAME being used, but it’s never defined. Am I missing something?

  Ruben wrote @ March 6th, 2007 at 10:26 pm

Hi Darrel,

It was missing:

TAGNAME = IS_IE ? “baseName” : “localName”;

I’ve just uploaded a new version. You can also add this to the XSLT.js file.

Thanks for letting me know.

Ruben

  alektraunic wrote @ March 7th, 2007 at 8:19 pm

could you post a more robust example of the XSLT? I’ve spent the last two days attempting to replicate via DOM tree crawling what I did in client-side XSLT just so someone can see my site in Safari.

Finding your solution i breathed a sigh of relief. I attempted to plug in this solution to my code but so far i have been unable to make any progress.

  Matt wrote @ April 20th, 2007 at 12:35 am

Hey, great job on this code. When I replace my normal XSLTProcessor(); in my code , I get a Kernel not defined error in firefox through the error console, it seems like it cannot perform the getObject function referenced in the .js Any ideas?

  Johann wrote @ May 17th, 2007 at 7:42 pm

Great idea, but I tried out XSLT via iframes and that worked as well.

I wrote about adding support for Safari via iframes to my xslt.js script.

  Dan wrote @ June 7th, 2007 at 1:08 pm

You’re doing great Ruben.

  doug wrote @ June 7th, 2007 at 8:02 pm

I also was shocked to find current versions of safari don’t support xslt transformations from js. I am hopeful that your solution will work for me. Unfortunately, I am also getting the Kernel undefined error that Matt mentions above. I have not been able to find any reference for resolving the Kernel reference. I am running macosx 10.4.9 and safari 2.0.4. Any ideas?

  Ruben wrote @ June 7th, 2007 at 10:25 pm

Many people have requested for a working example of the XSLT lib. I’ve updated the XSLT implementation with several more tags as well as in a joined effort with Sarissa and Sarissa users created a working demo. For now you can download that here: http://developer.javeline.net/downloads.php

  Scott Mahoney wrote @ June 12th, 2007 at 4:26 pm

Ruben,
I would love to switch to your JS implementation, it would make our lives so much simpler. I need to have a few more features built out before I do. Are you planning on adding support for: xsl:key, xsl:variable, xsl:call-template, and xsl:sort in an upcoming version?

Scott

  Ruben wrote @ June 12th, 2007 at 6:15 pm

Hi Scott,

Actually those are in progress. Jean-Sebastien Baklouti is working on this right now. You can join the Javeline contributor mailinglist if you’d like to follow the progress. Go to http://developer.javeline.net/mailinglists.php to subscribe yourself.

Ruben

  Kelly wrote @ October 27th, 2007 at 2:41 am

Just to add some criticism… I looked into using this script but I was turned off by your browser detection. Its so web 1.0. Last I knew object detection was the way to go.

http://www.quirksmode.org/js/support.html

  Ruben wrote @ November 7th, 2007 at 9:41 am

Hi Kelly,

I know what you mean. The library now works together with Sarissa which, I think, does do that correctly. Javeline PlatForm still has some browser detection stuff in there. It is a todo item to fix that. Thanks for your suggestion.

Ruben

  Richard Hundt wrote @ November 28th, 2007 at 1:50 am

Hi Ruben,

Thanks for this… but I’ve found a bug in bootstrapping the outer template while running the example_on_xml (the one which matches “/” and then xsl:apply-templates select=”/Drive”).

Actually there’s another buglet which breaks on Konqueror and it involves the assumption that only HTML element nodes can have a ’style’ attribute (in getChildNode()) but I’ve fixed that in my copy.

The first bug is a bit more of a problem, though. If you have a look at the output in that example you should see that you’re missing the top level “Boot Disk C:” and the “My Documents” child is pushed down.

I’d appreciate any help you can give me in tracking that down - I don’t mind fixing it myself, but I thought maybe you’ve got an idea already where I should be looking, and I’m finding it really time consuming tracing through the code.

Thanks again.

Richard

  Ruben wrote @ November 28th, 2007 at 11:20 am

Hi Richard,

I’ve found the bug and the solution. In the first if of appyt-templates it should be

if(t){
this.parseChildren(t == this.templates[”/”] ? context.ownerDocument : context, t[0], t[1], result);
}

if you could give me the changes you made I can incorporate them in a new package.

Thanks,
Ruben

  David Dawnay wrote @ January 11th, 2008 at 3:36 pm

Just came across your solution and it works like a charm. I had previously banged my head repeatedly for a day trying various xpath solutions and libraries and managed to create a short and elegant solution that worked in both Firefox and IE, but alas not Safari.

Anyway, thanks a lot for sharing this.

David

  Toru ŽYamaguchi wrote @ January 14th, 2008 at 7:08 am

Hi, Theare is existed yet another xpath implementation by JavaScript.

http://coderepos.org/share/wiki/JavaScript-XPath/

This library is written by amachang who is known famous JavaScript hacker in Japan.
It is so faster than another js-xpath library. Please try it!
Thanks.

  Roll Your Own iPhone WordPress Theme - Matthew Botos wrote @ January 17th, 2008 at 2:33 am

[…] XPath implementation for Javascript manipulation of the DOM, but there’s a very compact XPath and XSLT library for Safari. The CSS and Javascript is all open, so feel free to have a […]

  Sumit wrote @ January 19th, 2008 at 1:56 am

Thanks for writing the XSLT wrapper. This link http://www.javeline.net/uploads/xslt-xpath-safari-full.zip is dead one (404). Like some others, I’m also getting Kernel not found error, looks like some file is missing. Can you please repost your code?

  Ruben wrote @ February 14th, 2008 at 8:20 am

Hi Sumit,

Please visit http://developer.javeline.net/downloads.php for the latest version. I edited above posts as well.

Kind Regards,

Ruben Daniels

  Henrik wrote @ March 8th, 2008 at 7:03 pm

I’am working on an “Full” XPath version 1.0 implementation in pure JavaScript. And it’s only 10K minified. Try it out llamalab.com/js/xpath/

  Sébastien wrote @ June 18th, 2008 at 7:24 pm

Do your implementation support namespace ?
I would like to try to include your XPath lib into my XForms engine.
But somes features are required. Please contact me if we can colaborate.

  Ruben wrote @ June 18th, 2008 at 8:28 pm

I think it does actually. It’s not properly done, but if you user “ns:blah” in your query, it will find elements in the ns namespace. You won’t be able to select based on a url though. Cool that you are working on an XForms engine. Javeline PlatForm has implemented XForms as well. (http://developer.javeline.net). I understand why you need a library like this for an XForms implementation: the custom model functions are quite hard to add to the c++ xpath implementation, I haven’t found a real solution for this. Would be cool if you could give me some pointers on your ideas for this. We might be able to collaborate on it.

Your comment

HTML-Tags:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>

cheap propecia pill buying cialis discount cialis buy cialis internet buy generic cialis online cheap accutane no prescription cialis us online propecia cheapest cialis price accutane for sale buy viagra overnight delivery no rx levitra order levitra on internet levitra without rx buy cialis no prescription required cialis no prescription cheapest levitra cialis bangkok buy propecia overnight delivery accutane malaysia buy accutane on internet viagra in malaysia discount propecia no rx discount accutane without prescription discount viagra overnight delivery find discount cialis online cheapest viagra accutane sales propecia malaysia buy no rx cialis free levitra propecia pills low cost viagra online pharmacy viagra find cheap cialis levitra australia levitra in australia overnight levitra viagra free delivery buy cheapest cialis on line cialis buy order cialis without prescription viagra buy accutane sale overnight propecia order levitra without prescription lowest price accutane cheapest cialis levitra uk levitra free delivery no prescription accutane cheap viagra from usa accutane online pharmacy order discount cialis online viagra tablets cost propecia levitra price cheap accutane from canada accutane from canada find accutane online accutane pills lowest price cialis find accutane no prescription required order viagra on internet cheap propecia from canada lowest price for accutane viagra without a prescription cheap cialis from uk buy levitra in canada find viagra overnight accutane cheap levitra from canada cost of propecia cheap cialis internet find propecia online buy levitra generic levitra tablet cialis cheap price accutane vendors cost accutane discount levitra levitra no rx required buy discount cialis online sale cialis cialis cost propecia without rx accutane without a prescription accutane online online pharmacy cialis propecia bangkok levitra no online prescription cheap levitra no prescription buy propecia without prescription order cialis on internet buy cialis in canada buy viagra online accutane pharmacy online compare accutane prices online find propecia on internet propecia pill generic cialis cialis generic buy discount levitra free accutane buy viagra generic cheap cialis pill propecia drug cialis without a prescription purchase cialis without prescription cheap levitra online overnight cialis pharmacy cialis buy accutane from india find cialis online viagra in us order accutane from us viagra discount levitra online cialis cheap drug buy levitra on line discount viagra find no rx propecia accutane order levitra prescription accutane uk cheap accutane on internet compare levitra prices generic viagra online cialis pills cheap cialis in canada no rx propecia approved levitra pharmacy compare cialis prices order cheap accutane online propecia uk buy cheapest accutane on line order levitra no prescription required order propecia from canada buy viagra on internet order discount levitra propecia canada where to order levitra viagra no rx required drug viagra buy levitra from india buy accutane lowest price levitra in malaysia cheapest levitra online viagra cheap drug cheap levitra from usa levitra in uk cheap levitra on internet no prescription propecia order discount levitra online purchase cialis overnight delivery cheap price propecia cialis free delivery cheapest generic viagra cheap cialis no rx find discount levitra online buy no rx levitra find discount propecia generic levitra buy levitra on internet propecia cheap drug cheap levitra no rx accutane medication compare levitra prices online buy propecia buy accutane us order viagra no prescription required find no rx accutane find propecia propecia no rx viagra overnight buy cheap propecia online cialis from canada buy levitra online purchase propecia overnight delivery buy propecia online cheap accutane pill cheap viagra accutane without rx buy viagra without prescription order propecia without prescription buying accutane cheapest propecia price cialis cheapest price levitra overnight shipping viagra online pharmacy pharmacy levitra find discount levitra propecia online pharmacy cheapest generic accutane purchase accutane without prescription cialis no rx propecia side effects cialis buy online discount cialis online accutane in bangkok buy cheap cialis online order generic viagra order propecia from us accutane india buy propecia us tablet propecia find cheap accutane order accutane on internet cheap propecia find discount viagra levitra in us order levitra order discount viagra buying viagra online buy propecia from canada accutane buy drug viagra canada no rx cialis cheap propecia from usa order levitra online buy viagra us certified propecia accutane cheapest price approved accutane pharmacy cheap viagra without prescription buy cheap levitra internet find accutane buy viagra from india buy cheapest levitra on line propecia from canada low cost propecia cheap cialis in uk buy cialis no rx order accutane in us propecia cheapest price cheapest levitra price cheap viagra in canada buying generic viagra buy viagra no rx propecia rx buy cialis from us propecia buy online discount accutane viagra no prescription buy propecia in us buy levitra buy accutane generic purchase viagra without prescription order cheap cialis viagra pills cheap accutane pharmacy buy cialis from canada propecia in malaysia propecia overnight shipping accutane overnight buying cialis online cheap propecia from uk cialis purchase viagra sales cheap accutane in canada buy accutane online cialis no rx required accutane approved propecia us cialis pill propecia india accutane in malaysia cheap price viagra propecia prescription buy accutane on line propecia sales levitra generic accutane for order cheap viagra online order levitra overnight delivery find cheap propecia online buying levitra cialis sales buy generic accutane buy viagra online cheap order cialis no prescription required buying generic cialis viagra drug buy viagra lowest price viagra price approved propecia pharmacy cheap cialis pharmacy cheap viagra no rx find no rx cialis order cheap propecia cheap levitra in usa cialis without prescription buy cheapest propecia on line where to order viagra accutane cost order propecia cheap online accutane drug cheapest cialis online buy generic cialis cialis for order cialis prescription find cheap propecia compare cialis prices online propecia cost cheap cialis tablet purchase levitra discount propecia overnight delivery cialis india viagra australia accutane cheap drug discount viagra online cheap viagra tablet accutane australia propecia in bangkok buy cheap levitra cialis price buy generic levitra online buy cheapest cialis online levitra cost order levitra from canada viagra pharmacy online viagra without prescription viagra in uk find viagra no prescription required buy generic accutane online propecia pharmacy viagra online buy discount levitra online cialis online pharmacy viagra generic buy cialis lowest price cost of cialis find cialis levitra online drug propecia cialis tablet buy cialis low price propecia vendors cheapest generic cialis cheap propecia in usa discount propecia buy generic viagra online buying generic levitra online accutane buy levitra from canada order propecia overnight delivery best price propecia order accutane no rx cialis side effects order viagra without prescription cheap propecia on internet propecia free delivery tablet viagra levitra pills find cheap viagra buy accutane from us viagra medication buying propecia cialis from india buy cheap cialis buy accutane buy cheap levitra online find no rx levitra buy cheapest viagra on line low cost accutane propecia in us order accutane overnight delivery buy levitra lowest price approved cialis pharmacy purchase cialis online discount cialis overnight delivery buy levitra no rx order no rx levitra online pharmacy accutane discount viagra without prescription accutane no rx required cheap accutane without prescription cialis information cialis overnight fda approved cialis propecia without prescription order levitra in canada buy discount propecia fda approved viagra cheap price cialis lowest price for levitra cialis in bangkok purchase cialis discount levitra no rx cheapest generic levitra lowest price for propecia propecia buy drug cheap cialis no prescription cheap viagra from uk no rx accutane buy levitra us certified levitra cialis order generic propecia find cialis no prescription required buy viagra in us buy cialis us certified cialis levitra overnight delivery levitra without prescription buy cialis on internet fda approved levitra cost viagra viagra pill buy discount viagra online cheap levitra tablet best price for propecia buy discount viagra compare viagra prices online generic levitra cheap accutane side effects cialis order find propecia without prescription levitra accutane overnight shipping find cheap accutane online buy generic levitra levitra vendors buy viagra from us buy cheap viagra online order viagra no prescription buy cialis on line propecia online without prescription cheapest generic levitra online levitra from india cost of levitra cheap propecia overnight delivery viagra overnight shipping cheap accutane internet purchase propecia no rx find levitra viagra cost levitra no rx find cheap levitra online accutane price cheap accutane tablet best price cialis order generic levitra best price viagra levitra canada viagra cheapest price drug cialis viagra approved sale viagra cheap accutane no rx cheapest viagra price cheapest accutane generic cialis online cialis no online prescription find cheap viagra online cheap levitra internet buy no rx accutane