On Thursday 24 July 2003 04:55 am, J�rg Walter wrote: > Am Wednesday, 23. July 2003 21:21, schrieb Brian Acton: > > I suspect that there's a way to easily make it work via some > > configuration trick. Maybe symlinks -- I tried that though and couldn't > > get it to work -- or an Apache directive that I don't know about. But I > > guess I'll be using LibXSLT for now at least. > > You should do so anyways - LibXSLT is far more complete and faster. When > you begin to try EXSLT extensions, LibXSLT is a real winner.
Just the EXSLT common:node-set() function alone is worth having LibXSLT for... I mean its all well and good to use <xsl:copy-of select="document(...)"/> but it becomes a MUCH more useful function when you can do things like <xsl:apply-templates select="common:node-set($mydocument)"/> and do pull processing on imported chunks. That lets your library of chunks be a lot more generic since you now don't have to 'take it or leave it' when you import, you can filter in just particular parts of an external document. :o). -- Tod Harter Giant Electronic Brain http://www.giantelectronicbrain.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
