This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

xmlns problem with xhtml


Title: xmlns problem with xhtml

I use
        - SAXON 6.5.1  The complete version with win2k :
                "C:\j2sdk1.4.0\bin\java -jar saxon.jar ..."

        - Docbook XSL 1.50.0 (same with 1.49)

I have a problem with link in XHTML (single or chunked) :
        I get this <a xmlns:.0="" .0:href=""http://www.w3.org/" .0:target="_top" ...
        instead of <a href=""http://www.w3.org/" target="_top" ...

For now, I replace all the ".0:" by "" in all the files. Is there an other solution ?

Thanks



***  Simple example  XML  ***

<?xml version='1.0'?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" >

<book>
  <title>test bug 01</title>
  <chapter>
    <title>chapter 01</title>
    <para>A link in a para of the chapter : <ulink url="http://www.w3.org/">www.w3.org</ulink> WRONG.</para>
    <formalpara>
      <title>formalpara</title>
      <para>A link in a formalpara the chapter : <ulink url="http://www.w3.org/">www.w3.org</ulink> OK.</para>
    </formalpara>
  </chapter>
</book>


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]