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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to