This will work a lot better if you generate xhtml and serializing to xml
in all your intermediate steps. Only convert to html at the end of the
main pipeline (if you really require html at all).
[EMAIL PROTECTED] wrote:
Hello,
I alread posted this question in the user list and got no reply. So maybe
it's better to post the question here.
I modeled a cocoon form (based on the registration example in the docs)
which I would like to incoperate into a classic web site layout (header,
footer etc).
When I have done all the cform transformations the form is already in html.
<map:generate type="jx" src="registration_template.xml"/>
<map:transform type="browser-update"/>
<map:transform type="i18n"/>
<map:transform src="forms-samples-styling.xsl"/>
<map:serialize type="html"/>
So it does already contain the <body> and <head> tags. Now I would like to
include the cform in a larger HTML document. But the problem is the cform is
already html so would have to write an XSLT Transformation which transforms
the HTML to another HTML document. This is clearly not a clean solution. I
can't possible put the website layout into the cform template file this
would contradict the whole seperation on concerns concept.
So what is the right approach in this case?
Cheers,
Pete