Re: [sword-devel] namespaces in xsl

2012-07-26 Thread Daniel Owens
Thank you all for your help. It came down to getting my xpath expressions correctly prefixed, which took some digging. I will post the results soon. Daniel On 07/26/2012 05:00 PM, David Troidl wrote: Here's the root element of an OSIS document: xsi:schemaLocation="http://www.bibletechnologies

Re: [sword-devel] namespaces in xsl

2012-07-26 Thread David Troidl
Here's the root element of an OSIS document: xsi:schemaLocation="http://www.bibletechnologies.net/2003/OSIS/namespace http://www.bibletechnologies.net/osisCore.2.1.1.xsd"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns="http://www.bibletechnologies.net/2003/OSIS/namespace";> And

Re: [sword-devel] namespaces in xsl

2012-07-26 Thread Matěj Cepl
On 26/07/12 22:26, Daniel Owens wrote: I am writing a stylesheet to display Abbott-Smith's Manual Greek Lexicon of the New Testament from Github where I will post releases. I have no idea how to get the namespace declaration right in the xsl file. I have googled and tried several solutions, but s

Re: [sword-devel] namespaces in xsl

2012-07-26 Thread Greg Hellings
Oy, I've run into fun with namespaces before as well on XSL documents. Going by the seat of my pants here, but I think my solution had to be two step. First, I would declare xmlns:tei="http://www.crosswire.org/2008/TEIOSIS/namespace"; in the XSL document. Secondly, I would alter my matches statem