You should declare do : <map:pipeline> <map:match pattern="*.css"> <map:read src="{1}.css" mime-type="text/css"/> </map:match> </map:pipeline>
then :
<map:pipeline>
<map:match pattern="book">
<map:generate src="book.xml"/>
<map:transform src="book.xsl">
<map:parameter name="css-stylesheet" value="cocoon:/book.css"/> --> I'm not really sure value attribute can get a cocoon protocol, but why not.
</map:transform>
<map:serialize/>
</map:match>
</map:pipeline>
In the xsl document :
<xsl:param name="css-stylesheet" select="book.css"/> --> I'm not sure this is working because if you want to call an URL, you should use the document() fonction like this. document('host:8080/book.css").
<xsl:param name="html.stylesheet.type">text/css</xsl:param>
Lionel
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]