On 12.Nov.2002 -- 01:43 PM, Robert S?semann wrote:
> Hey,
> 
> who can help to solve the following problem?
> 
> In my relational db I have a column with XHTML fragments and want to bring
> it into my cocoon pipline the following way.
> 
> DB ROW CONTENT:
> ...<P>foobar</P><B>....
> 
> GENERATOR:
> XSP that extracts this rows value by
> ...
> <TXT>
> <esql:get-string column="i.text"/>
> </TXT>
> 
> TRANSFORMER:
> XSL that tries to obtain this:
> ...
> <TD>
>         <xsl:value-of select="TEXT/."/>
> </TD>
> 
> THE RESULT THAT I WANT:
> ...
> <TD>
>         ...<P>foobar</P><B>....
> </TD>
> 
> WHAT I GET INSTEAD:
> ...
> <TD>
>         &lt;P&gt;.... <--- only escaped text
> </TD>
> ...
> 
> I also tried to use <esql:get-xml column="i.text"/> and <xsl:text
> disable-output-escaping="yes">. But without success. Whats wrong???

With esql:get-string it is included as text, hence the escaped
<,>. With esql:get-xml it is included as XML (i.e. sax-events). For
this it needs to be valid XML (i.e. exactly one root element, all
namespaces declared).

        Chris.
-- 
C h r i s t i a n       H a u l
[EMAIL PROTECTED]
    fingerprint: 99B0 1D9D 7919 644A 4837  7D73 FEF9 6856 335A 9E08

---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

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

Reply via email to