Date: Wed, 8 May 2013 09:27:58 +0000 (UTC) From: Gabor Kovesdan <gabor@FreeBSD.org> To: doc-committers@freebsd.org, svn-doc-projects@freebsd.org Subject: svn commit: r41564 - projects/xml-tools/share/xsl Message-ID: <201305080927.r489Rw7M033780@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gabor Date: Wed May 8 09:27:58 2013 New Revision: 41564 URL: http://svnweb.freebsd.org/changeset/doc/41564 Log: - Fix rendering of the last modified text. - We have our own complete CSS file so do not generate one with XSLT Modified: projects/xml-tools/share/xsl/freebsd-xhtml-common.xsl Modified: projects/xml-tools/share/xsl/freebsd-xhtml-common.xsl ============================================================================== --- projects/xml-tools/share/xsl/freebsd-xhtml-common.xsl Wed May 8 01:35:31 2013 (r41563) +++ projects/xml-tools/share/xsl/freebsd-xhtml-common.xsl Wed May 8 09:27:58 2013 (r41564) @@ -25,6 +25,7 @@ <xsl:param name="admon.style"/> <xsl:param name="make.year.ranges" select="1"/> <xsl:param name="make.single.year.ranges" select="1"/> + <xsl:param name="docbook.css.source" select="''"/> <xsl:param name="make.valid.html" select="1"/> <xsl:param name="html.cleanup" select="1"/> @@ -272,14 +273,13 @@ <xsl:with-param name="key" select="'on'"/> </xsl:call-template> <xsl:call-template name="gentext.space"/> - Last modified on <xsl:value-of select="$pubdate"/> + <xsl:value-of select="$pubdate"/> <xsl:if test="$committer"> <xsl:call-template name="gentext.space"/> - <xsl:value-of select="$committer"/> - <xsl:call-template name="gentext.space"/> <xsl:call-template name="gentext"> <xsl:with-param name="key" select="'by'"/> </xsl:call-template> + <xsl:value-of select="$committer"/> </xsl:if> <xsl:text>.</xsl:text> </xsl:template>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305080927.r489Rw7M033780>