> Then it really sounds like HTMLSerializer problem. Could you also try to
reproduce this with simple pipeline (generator and > serializer only, no
need for transformer), with simple (couple of lines should do it) XML? Then,
submit it as a bug to the > BugZilla.
>
> Thanks,
> Vadim
Same result with a simple pipeline :
<map:match pattern="project/test-html">
<map:generate src="test/test-html.xml"/>
<map:serialize type="html"/> <!-- using
org.apache.cocoon.serialization.HTMLSerializer -->
</map:match>
Here is the content of test-html.xml :
<?xml version="1.0" encoding="iso-8859-1"?>
<html>
<head>
</head>
<body>
<a name="r�el"></a>
<table>
<tr>
<td>
r�el
</td>
</tr>
</table>
<form>
<input type="button" value="r�el"></input>
</form>
</body>
</html>
And here is the result :
<html>
<head>
<META http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
</head>
<body>
<a name="r%C3%A9el"></a>
<table>
<tr>
<td>
réel
</td>
</tr>
</table>
<form>
<input type="button" value="réel">
</form>
</body>
</html>
I'm going to submit it to the BugZilla.
Matthieu
---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>