You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Ines Robbers <ml...@comprehend.de> on 2003/04/06 18:07:32 UTC

Problem with bonebreaker example on cocooncenter.de solved

Hi,

The other day I mentioned that the bonebreaker example on
http://www.cocooncenter.de/cc/documents/resources/navigation/index.html
is not working under Cocoon 2.1.
Well, just in case someone is trying it out and wondering why it doesn't
work:

org.apache.cocoon.matching.WildcardURIMatcherFactory is deprecated and
replaced by WildcardURIMatcher - code factories should no longer be
used.

So in the bonebreaker subsitemap under components simply replace  

<map:matchers default="wildcard"> 
<map:matcher name="wildcard"
src="org.apache.cocoon.matching.WildcardURIMatcherFactory"/>
</map:matchers> 

with 

<map:matchers default="wildcard">
<map:matcher name="wildcard" 
src="org.apache.cocoon.matching.WildcardURIMatcher"/>
</map:matchers> 

and it works fine.

Happy Sunday!

Ines 



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