← Prev in month ← Prev in thread

DOCBOOK-APPS: Missing CDATA sections

From
fyl2xp1 <>
Date
2002-07-11T14:15:11+00:00
ID
000801c228e5$5abf6630$0f11bc93@htrtttt
Thread
DOCBOOK-APPS: Missing CDATA sections
If I process this file:

 

<?xml version="1.0"?>
<!DOCTYPE article 
PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
"c:/docbook/docbkx412/docbookx.dtd">
<article>
  
<sect1><title>Error Prone</title>
<![CDATA[
Im going 
to dissapear!
]]>
  <para>
    Yes that's 
right ladies and gentlemen, CDATA is gone!
  </para>
  
</sect1>
</article>

 

 with 
/docbook-xsl-1.52.2/profiling/profile.xsl using xsltproc

it generates

 

<?xml version="1.0"?>
<!DOCTYPE article 
PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.0/docbookx.dtd">
<article>
  
<sect1><title>Error Prone</title>

 

Im going to dissapear!

 

  <para>
    Yes 
that's right ladies and gentlemen, CDATA is gone!
  
</para>
  </sect1>
</article>

 

which is not even valid XML, why is CDATA going 
missing, is this an xsltproc or

style-sheet issue?

 

AM
← Prev in month ← Prev in thread