将XSLT样式表应用于XML文件时,没有任何内容出现

时间:2015-01-19 18:12:49

标签: xml xslt

我正在开发一个用于学习XSLT语言的简单教育项目,但是当我尝试将样式表应用于XML文件时,转换会返回一个空白的HTML页面,您认为链接代码中的错误后来? (使用XMLSpear作为编辑器)

这是xml代码

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TEI SYSTEM "teilite.dtd">
<?xml-stylesheet type="text/xsl" href="stile.xsl"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
    <teiHeader>
        <fileDesc>
            <titleStmt>
                <title>Ettore Fieramosca o la disfida di Barletta : racconto</title>
                <respStmt>
                    <resp>Conversione TEI P5 a cura di</resp>
                    <name>V. Caproni</name>
                </respStmt>
            </titleStmt>
            <publicationStmt>
                <publisher>Exercise Press</publisher>
                <date>20-10-2014</date>
            </publicationStmt>
            <sourceDesc>
                <bibl>
                    <title>title</title>
                    <author>author</author>
                    <publisher>publisher</publisher>
                    <date>1856</date>
                    <from>title of the book</from>
                    <licence>link to the licence</licence>
                </bibl>
            </sourceDesc>
        </fileDesc>
        <encodingDesc>
            <styleDefDecl scheme="css"/>
            <tagsDecl>
                <rendition xml:id="blue">color: blue;</rendition>
                <rendition xml:id="red">color: red;</rendition> 
            </tagsDecl>
        </encodingDesc> 
    </teiHeader>
    <text>
       <front>
          <p>author name</p>
            <p>title</p>
       </front>
        <epigraph>
           <p>epigraph n1</p>
        </epigraph>
        <epigraph>
           epigraph n2
        </epigraph>
        <body>
           <div type="Capitolo" xml:id="cap1">
              <h2>Capitolo I</h2>
            <p rendition="#blue">
        sometext
        </p>
    </div>
</body>
</text>
</TEI>

这是xls代码

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0"
  xmlns:tei="http://www.tei-c.org/ns/1.0"
  xmlns="http://www.w3.org/1999/xhtml">
<xsl:output method="html" indent="yes" omit-xml-declaration="yes"/>

<xsl:template match="tei:TEI">
  <html>
   <head>
    <title>Ettore Fieramosca o La Disfida di Barletta</title>
    <link href="stile.css" rel="stylesheet" type="text/css"/>
   </head>
<body>
   <xsl:apply-templates/>
   </body>
  </html>
</xsl:template>

<xsl:template match="tei:teiHeader">
  <br/>
  <h1>Informazioni sul documento</h1>
  <br/>
  <xsl:apply-templates/>
 </xsl:template>


<xsl:template match="tei:front">
    <br/>
    <h1>Frontespizio e prefazione</h1> <br/>
<xsl:apply-templates/>
</xsl:template>

 <xsl:template match="tei:front">
<br/>
<h1>Frontespizio e prefazione</h1> <br/>
<xsl:apply-templates/>
</xsl:template>


</xsl:stylesheet>

EDIT 内置浏览器或firefox或chrome

中均未显示任何内容

编辑2 根据内置的xsl和xml验证器,文档都是格式良好的

1 个答案:

答案 0 :(得分:1)

正如评论中所讨论的,源XML中存在DTD导致了这种失败。为了通过XSLT转换XML,通常不需要DTD,所以除非有特定的理由,否则你可以将它从XML中删除。

最有可能的是,DTD与XML不在同一文件夹中,当浏览器尝试加载它时,它就不存在,所以浏览器根本就拒绝处理XML。