FYI, my default sitemap has:
<map:serializer logger="sitemap.serializer.xml" mime-type="text/xml" name="xml" src="org.apache.cocoon.serialization.XMLSerializer"/>
and
<map:serializer logger="sitemap.serializer.exml" mime-type="text/xml" name="exml" src="org.apache.cocoon.components.serializers.XMLSerializer">
<encoding>UTF-8</encoding>
</map:serializer>
In a simple test, say the hello-world block, changing the serializer from "xml" to "exml" makes the tabs serialize like you'd expect.
I'll peek around in the top one to see if I can figure out what's going on.
.micah
Torsten Curdt wrote:
We have these two serializers
./src/java/org/apache/cocoon/serialization/XMLSerializer.java
./src/blocks/serializers/java/org/apache/cocoon/components/serializers/XMLSerializer.java
The first one uses the javax TransformerHandler, the second one is a cocoon implementation.
Sorry, for pointing you to the cocoon.xconf usually they are specified inside the sitemap.
<map:serializers default="html"> <map:serializer mime-type="text/xml" name="xml" src="org.apache.cocoon.serialization.XMLSerializer"/>
...but for me it seems like we are still using the old one as a default...
cheers -- Torsten
