This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Bug in the xhtml/chunk xsl-stylesheet title anchor


I'm still hunting through to see if there was something I'd done
wrong, but on using the docbook-xsl-1.60.1 through xsltproc I get
a title page with the markup as follows:

   <div>
   <h1 class="title">
   <a id="UserGuide"/>Sportwire II: SportPage User Guide
   </h1>
   </div>

ie, it is missing the closing </a> after the title string

My wrapper XSL is short and seems valid -- it goes as follows:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                xmlns:fo="http://www.w3.org/1999/XSL/Format";
                xmlns:mml="http://www.w3.org/1998/Math/MathML";
                version="1.0"
                xmlns="http://www.w3.org/TR/xhtml1/transitional";
                exclude-result-prefixes="#default">

  <xsl:import 
    href="file:///usr/share/sgml/docbook/xsl-stylesheets/xhtml/chunk.xsl"
    />

<!-- xsl:strip-space elements="*"/ -->

<xsl:param name="html.stylesheet">../css/sportwire.css</xsl:param>
<xsl:param name="html.stylesheet.type">text/css</xsl:param>
<xsl:param name="using.chunker">1</xsl:param>

<xsl:param name="section.autolabel">0</xsl:param>
<xsl:param name="show.revisionflag">1</xsl:param>

<xsl:param name="admon.graphics">1</xsl:param>
<xsl:param name="admon.graphics.path">../images/</xsl:param>
<xsl:param name="admon.graphics.extension">.gif</xsl:param>

<xsl:param name="alignment">justify</xsl:param>
<xsl:param name="author.othername.in.middle" select="1"/>

<xsl:param name="graphic.default.extension">.png</xsl:param>

</xsl:stylesheet>


-- 
Gary Lawrence Murphy - garym at teledyn dot com - TeleDynamics Communications
   - blog: http://www.teledyn.com/mt/ - biz: http://teledyn.com/ -
  "Computers are useless. They can only give you answers." (Picasso)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]