xsl:使用cdata-section-elements输出,不会将目标cdata-section-element封装在CDATA标记中

时间:2011-05-09 10:06:20

标签: orbeon

我在尝试:

            <!-- Arrive at the target XQuery -->
    <p:processor name="oxf:xslt">
        <p:input name="config">
            <xsl:stylesheet version="2.0">
                <xsl:output method="xml" version="1.0"
encoding="iso-8859-1" indent="yes" cdata-section-elements="text"/>
                <xsl:template match="/">
                    <xsl:variable name="apps" select="doc('input:instance')//APPLICATION"/>                         
                    <jaxrx:query>
                        <text>
xquery version "1.0";

declare namespace fn="http://www.w3.org/2005/xpath-functions";

let $dataSet := <xsl:value-of select="doc('input:request')/request/parameters/parameter[name='dataSet']/value" />
let $databaseName := <xsl:value-of select="/Configuration/XMLDB/Name/text()" />
let $applicationID := <xsl:value-of select="doc('input:request')/request/parameters/parameter[name='applicationID']/value" />

let $finalURL := fn:concat($databaseName, "/",$dataSet)
let $applicationsModified := '<xsl:copy-of select="$apps"/>'
                            <!-- disable-output-escaping not supported by Orbeon xslt processor
(: let $applicationsModified := '<xsl:text disable-output-escaping="yes">
                                <![CDATA[<]]>
                            </xsl:text>
                            <xsl:text disable-output-escaping="yes">![CDATA[</xsl:text>
                            <xsl:copy-of select="$apps"/>
                            <xsl:text>]]</xsl:text>
                            <xsl:text disable-output-escaping="yes">
                                <![CDATA[>]]></xsl:text>' :) -->
for $all in fn:collection($finalURL)
    for $anApp in $all/APPLICATION[APPLICATION_ID=$applicationID]
return 
(
replace node $anApp with $applicationsModified
)
                        </text>
                    </jaxrx:query>
                </xsl:template>
            </xsl:stylesheet>
        </p:input>
        <p:input name="data" href="#configuration"/>
        <p:input name="request" href="#request"/>
        <p:input name="instance" href="#instance"/>
        <p:output name="data" id="TargetXQuery"/>
    </p:processor>

希望产生像

这样的结果
<jaxrx:query><text><![CDATA[text of xquery with embedded xml]]></text></jaxrx:query>

但是文本(元素名称)元素的文本内容不会封装在CDATA部分中。任何指针为什么?

我也尝试过设置cdata-section-elements =“jaxrx:text”而不是cdata-section-elements =“text”,但我还是得到了

<text>text of xquery with embedded xml</text>

,所以在CDATA部分没有封装......

1 个答案:

答案 0 :(得分:2)

CDATA部分不会在管道中保留原样。但是,保留了等效的XML InfoSet。因此,例如,如果您使用CDATA部分转义&符号:

<![CDATA[&]]>

当这通过管道时,你最终可能会以不同的方式转义&符号,如:

 &amp;

如果您需要将XQuery作为文本嵌入XML元素中,请随意在管道中编写如下内容:

<jaxrx:query><text><![CDATA[text of xquery with embedded xml]]></text></jaxrx:query>

如果使用“debug”属性输出,则不会看到CDATA,但会正确转义XQuery。