Local recources and XSLT
Posted: Thu Jan 10, 2013 8:06 pm
I've used Visual Studio for editing / debugging XSLTs but found Oxygen more friendly.
But I cannot use local resources via importing them to XSLT using Oxygen:
Oxygen throw next error:
E [Saxon6.5.5] Malformed URL C:\Inetpub\wwwroot\wss\VirtualDirectories\80\Settings\StandardBlaBlaBlaXSLTFile.xslt(base file:/C:/Work/Test.xslt) - unknown protocol: c
It works fine when I put StandardBlaBlaBlaXSLTFile.xslt file to my C:/Work folder (near to tested Test.xslt) and include it via:
But this way is not acceptable for me.
Is there any way to include local XSLT resources to Project (or globally to any XSLT that will be edited in Oxygen)?
But I cannot use local resources via importing them to XSLT using Oxygen:
Code: Select all
<xsl:import href="C:\Inetpub\wwwroot\wss\VirtualDirectories\80\Settings\StandardBlaBlaBlaXSLTFile.xslt"/>
E [Saxon6.5.5] Malformed URL C:\Inetpub\wwwroot\wss\VirtualDirectories\80\Settings\StandardBlaBlaBlaXSLTFile.xslt(base file:/C:/Work/Test.xslt) - unknown protocol: c
It works fine when I put StandardBlaBlaBlaXSLTFile.xslt file to my C:/Work folder (near to tested Test.xslt) and include it via:
Code: Select all
<xsl:import href="StandardBlaBlaBlaXSLTFile.xslt"/>
Is there any way to include local XSLT resources to Project (or globally to any XSLT that will be edited in Oxygen)?