You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by "Messing, Elad" <el...@eml-d.villa-bosch.de> on 2005/10/10 17:41:33 UTC

Cannot understand caching of pipeline

Hello All
	I have this pipeline :

    <map:pipeline>
      <map:match pattern="platform_stylesheets/*.xsl">
      	<map:select type="browser">
      		<map:when test="explorer">
      			<map:read
src="stylesheets/template/{1}.pc.xsl"></map:read>
      		</map:when>
      		<map:when test="palm_new">
      			<map:read
src="stylesheets/template/{1}.blazer_411.xsl"></map:read>
	      	</map:when>
			<map:when test="pocketexplorer">
				<map:read
src="stylesheets/template/{1}.pocket_explorer.xsl"></map:read>
			</map:when>
			<map:when test="mozilla5">
				<map:read
src="stylesheets/template/{1}.pc.xsl"></map:read>
			</map:when>
		</map:select>
      </map:match>      
    </map:pipeline>	

	When I browse with my I Explorer and request for
"platform_stylesheets/custom.xsl" I get the "custom.pc.xsl".
	Good.

	Than- Without restarting the server - I browse with my Palm and
request for "platform_stylesheets/custom.xsl" again.
	Instead of getting "custom.blazer_411.xsl" I get the (cached ??
) "custom.pc.xsl" ...

	Why is this ?? 

	Thank you !


Elad

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@cocoon.apache.org
For additional commands, e-mail: users-help@cocoon.apache.org