|
Boost-Commit : |
From: daniel_james_at_[hidden]
Date: 2008-07-25 20:01:03
Author: danieljames
Date: 2008-07-25 20:01:02 EDT (Fri, 25 Jul 2008)
New Revision: 47821
URL: http://svn.boost.org/trac/boost/changeset/47821
Log:
Merged revisions 47820 via svnmerge from
https://svn.boost.org/svn/boost/trunk
........
r47820 | danieljames | 2008-07-26 00:52:12 +0100 (Sat, 26 Jul 2008) | 1 line
Escape the ampersand properly.
........
Properties modified:
branches/release/ (props changed)
Text files modified:
branches/release/tools/boostbook/xsl/chunk-common.xsl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: branches/release/tools/boostbook/xsl/chunk-common.xsl
==============================================================================
--- branches/release/tools/boostbook/xsl/chunk-common.xsl (original)
+++ branches/release/tools/boostbook/xsl/chunk-common.xsl 2008-07-25 20:01:02 EDT (Fri, 25 Jul 2008)
@@ -28,7 +28,7 @@
<xsl:choose>
<xsl:when test="not($recursive)">
<!-- translate dots into directory separators, and replace illegal file path characters with underscores -->
- <xsl:value-of select="translate(normalize-space(translate($basename, '.<>\:*?"|,()!+=&', '/ ' )), ' ', '_')"/>
+ <xsl:value-of select="translate(normalize-space(translate($basename, '.<>\:*?"|,()!+=&', '/ ' )), ' ', '_')"/>
<xsl:value-of select="$html.ext"/>
</xsl:when>
<xsl:otherwise>
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk