Hi Derek,
yes you can do that by adding the following configuration parameter:
<omit-xml-declaration>yes</omit-xml-declaration>
which would make it:
<map:serializer name="xhtml"
src="org.apache.cocoon.serialization.XMLSerializer"
mime-type="text/html"
logger="sitemap.serializer.xhtml"
pool-max="64"
>
<doctype-public>-//W3C//DTD XHTML 1.0 Strict//EN</doctype-public>
<doctype-system>http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</doctype-system>
<encoding>UTF-8</encoding>
<omit-xml-declaration>yes</omit-xml-declaration>
</map:serializer>
Regards,
Reijn
Derek Hohls wrote:
Thanks Niels
Just one problem is that this nows adds:
<?xml version="1.0" encoding="UTF-8"?>
at the top - any way to avoid this?
Thanks
Derek
Niels van Kampenhout <[EMAIL PROTECTED]> 2006/10/11 03:13 PM
Hi,
Derek Hohls wrote:
Using Cocoon 2.1.7.... I need to serve up a "plain" XHTML page with:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
at the top - Cocoon replaces this and serves the page with a:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
header.
You can configure this in your XHTML serializer declaration:
<map:serializer name="xhtml"
src="org.apache.cocoon.serialization.XMLSerializer"
mime-type="text/html"
logger="sitemap.serializer.xhtml"
pool-max="64"
>
<doctype-public>-//W3C//DTD XHTML 1.0
Strict//EN</doctype-public>
<doctype-system><A
href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtdhttp://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</doctype-system>
<encoding>UTF-8</encoding>
</map:serializer>
See [1] for more info.
Regards,
Niels
[1] http://cocoon.apache.org/2.1/userdocs/xhtml-serializer.html
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]