You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Chris Maloney <co...@chrismaloney.com> on 2005/05/05 04:56:41 UTC

Annotating the sitemap

Is there any standard (or non-standard, for that matter) way of 
annotating (i.e.
adding markup documentation) to my sitemap?  A lot of XML schema that I
know of allow you to mix in elements of other namespaces into the document.
Then, if a particular processor doesn't recognize the element, it just 
ignores it.
I'd like to do, for example:

<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0"
             xmlns:cfm='http://www.chrismaloney.com/OSO-SWGroup'>
. . . .
<map:match pattern='**/some/thing'>
  <cfm:note>This pipeline is REALLY COOL!</cfm:note>
</map:match>
. . . .


When I try this, I get an error
org.apache.avalon.framework.configuration.ConfigurationException: 
Invalid namespace.

If not, is there any way to request this as a feature?



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


Re: Annotating the sitemap

Posted by Bertrand Delacretaz <bd...@apache.org>.
Le 5 mai 05, à 04:56, Chris Maloney a écrit :
> ...If not, is there any way to request this as a feature?..

There's a pending patch in the bugzilla pipeline to implement this:
http://issues.apache.org/bugzilla/show_bug.cgi?id=25352

But I'm afraid no one had time to integrate it yet.

-Bertrand