Hi,

I am trying to get my pages valid and eliminated all problems except one:

There were several xmlns-attributes in the code which are not allowed for 
example according to the wc3 validator. I got rid of most of them (removing all 
declaration which were not used in the xml-files), but there are constantly 
some xmlns-declarations occuring in form-fields:

<form xmlns:xi="http://www.w3.org/2001/XInclude"; 
xmlns:jx="http://apache.org/cocoon/templates/jx/1.0"; action="FOO.continue" 
method="POST">

Any idea how to get rid of these? These attributes are used in the root-tag, 
but not in the form tag itself. They only appear when using html or xhtml 
serializer, not when using a xml serializer.


Another problem occurs when switching to xhtml-serializer. There are some tags 
which are closed in the source files, but when serialized these are missing the 
closing part:

Source:
  <link rel="SHORTCUT ICON" href="favicon.ico"/>
  <link href="{$contextPath}/styles/main.css" type="text/css" 
"rel="stylesheet"/>

Serialized:
        <link rel="SHORTCUT ICON" href="favicon.ico">
        <link href="{$contextPath}/styles/main.css" type="text/css" 
rel="stylesheet">

When using the xml serializer everything is well-formed, but not using the 
xhtml serializer. Why?

Regards,
Daniel Süpke


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to