On 11.05.2007 16:54, ypomonh wrote:
I have a simple pipelineQ<map:pipeline> <map:match pattern="patternA"> <map:generate src="cocoon:/patternB"/> <map:transform src="style.xsl"><map:parameter name="someParam" value="cocoon:/patternC"/></map:transform> <map:serialize type="xml"/> </map:match> </map:pipeline> and I want to handle the parameter "someParam" in my style.xsl: <xsl:variable name="myVariable"> <xsl:value-of select="someParam/nodeA"/> </xsl:variable> but it returns empty.What is the correct way to access a parameter passed to an XSL transformation from within the XSL stylesheet..?
You are only injecting a string, not the content of the pipeline cocoon:/patternC. Have a look on IncludeTransformer.
Joerg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
