[Refdb-cvs] CVS: refdb/xsl/refdb/docbk-refdb-xsl/docbk-xhtml docbk-refdb-xhtml.xsl.in,1.3,1.4
Status: Beta
Brought to you by:
mhoenicka
|
From: Markus H. <mho...@us...> - 2004-03-11 19:20:36
|
Update of /cvsroot/refdb/refdb/xsl/refdb/docbk-refdb-xsl/docbk-xhtml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31805 Modified Files: docbk-refdb-xhtml.xsl.in Log Message: added default namespace; removed p elements in favour of the div elements; fixed ADVST typo Index: docbk-refdb-xhtml.xsl.in =================================================================== RCS file: /cvsroot/refdb/refdb/xsl/refdb/docbk-refdb-xsl/docbk-xhtml/docbk-refdb-xhtml.xsl.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -U2 -r1.3 -r1.4 --- docbk-refdb-xhtml.xsl.in 19 Sep 2003 22:51:23 -0000 1.3 +++ docbk-refdb-xhtml.xsl.in 11 Mar 2004 18:53:46 -0000 1.4 @@ -9,5 +9,5 @@ --> -<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version="1.0"> +<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version="1.0" xmlns="http://www.w3.org/1999/xhtml"> <!-- the original DocBook stylesheets for HTML --> @@ -32,5 +32,6 @@ <xsl:call-template name="bibliography.titlepage"/> <xsl:for-each select="bibliomixed"> - <p><xsl:apply-templates select="." mode="refdb"/></p> + <!-- <p><xsl:apply-templates select="." mode="refdb"/></p> --> + <xsl:apply-templates select="." mode="refdb"/> </xsl:for-each> <xsl:call-template name="process.footnotes"/> @@ -73,5 +74,5 @@ <xsl:when test="$reftype='ADVS'"> <xsl:call-template name="refdb-literal"> - <xsl:with-param name="style" select="$ADVSTURLSTYLE"/> + <xsl:with-param name="style" select="$ADVSURLSTYLE"/> <xsl:with-param name="string"> <xsl:value-of select="."/> |