将xsl嵌入到XML文件中 [英] Embed xsl into an XML file

查看:189
本文介绍了将xsl嵌入到XML文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将xsl嵌入到XML文件中。这样做的原因是创建一个可以移动到不同计算机的单个文件,这将防止需要移动xsl文件。

I'm trying to embed an xsl into a XML file. The reason for doing this is to create a single file that could be moved to different computers, this would prevent the need to move the xsl file.

xsl文件正在创建一个表并从xml中获取测试步骤以及它是通过还是失败,非常简单。

问题我我认为,xsl具有javascript,并且在IE中加载xml时会显示它。

The xsl file is creating a table and grabbing a test step from the xml and whether it passed or failed, pretty simple.
The issue I'm having, I think, is that the xsl has javascript and its being displayed when the xml is loaded in IE.

当我用IE加载xml文件时,javascript显示在表格上方,在表格下方显示xml。

When I load the xml file with IE, the javascript is displayed above the table and below the table the xml is displayed.

以下是我的文件布局:

<!DOCTYPE doc [
<!ATTLIST xsl:stylesheet
  id    ID  #REQUIRED>
]>

<doc>    

<xsl:stylesheet id="4.1.0" 
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" 
    xmlns:user="http://www.ni.com/TestStand" 
    xmlns:vb_user="http://www.ni.com/TestStand/" >

<xsl:template match="xsl:stylesheet" />
     <xsl:text disable-output-escaping="yes">

    <msxsl:script language="vbscript" implements-prefix="vb_user">
        option explicit
        'This function will return the localized decimal point for a decimal number
        Function GetLocalizedDecimalPoint ()
            dim lDecPoint
            lDecPoint = Mid(CStr(1.1),2,1)
            GetLocalizedDecimalPoint = lDecPoint
        End Function
    </msxsl:script>
    <msxsl:script language="javascript" implements-prefix="user"><![CDATA[
        // This style sheet will not show tables instead of graphs for arrays of values if 
        // 1. TSGraph control is not installed on the machine
        // 2. Using the stylesheet in windows XP SP2. Security settings prevent stylesheets from creatign the GraphControl using scripting. 
        //     Refer to the TestStand Readme for more information.

//more javascript functions
//code to build table and insert data from the xml

</xsl:stylesheet>

<Reports>
<Report Type='UUT' Title='UUT Report' Link='-1-2008-12-3-10-46-52-713' UUTResult='Failed' StepCount='51'>

// rest of xml

</Report>

</Reports>
</doc>


推荐答案

虽然W3C XSLT规范支持将XSLT样式表 嵌入到XML文档中,但似乎IE和Firefox不支持这一点。

Although the W3C XSLT Spec supports embedding an XSLT stylesheet into an XML document, it seems that IE and Firefox do not support this.

更新:根据Robert Niestroj的评论,多年后,在2014年10月,这项工作在FireFox 33中。

UPDATE: As per the comment by Robert Niestroj, years later, in Oct. 2014, this works in FireFox 33.

但是,还有一个很好的选择:将XML文档嵌入到XSLT样式表中

以下是一个示例。

包含嵌入式XML文档的XSLT样式表


<?xml-stylesheet type="text/xsl" href="myEmbedded.xml"?>
<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes"/>
    <xsl:variable name="vEmbDoc">
        <doc>
            <head></head>
            <body>
                <para id="foo">Hello I am foo</para>
            </body>
        </doc>
    </xsl:variable>
    <xsl:template match="para">
      <h1><xsl:value-of select="."/></h1>
    </xsl:template>
    <xsl:template match="xsl:template"/>
</xsl:stylesheet>

当在IE中打开tis文件时,浏览器会显示想要的结果:

When tis file is opened in IE, the wanted result is displayed by the browser:

请注意,有必要包含忽略大多数XSLT指令的模板(在这种情况下,我们忽略任何< xsl:template> ,只是没有模板体。

Do note, that it is necessary to include templates that ignore most of the XSLT instructions (in this case we are ignoring any <xsl:template> by simply having no template body.

这篇关于将xsl嵌入到XML文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆