$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: eric_at_[hidden]
Date: 2008-07-29 17:48:12
Author: eric_niebler
Date: 2008-07-29 17:48:11 EDT (Tue, 29 Jul 2008)
New Revision: 47872
URL: http://svn.boost.org/trac/boost/changeset/47872
Log:
use relative paths when loading external xml entities to make win32 xsltproc happy
Text files modified: 
   trunk/tools/boostbook/xsl/doxygen/collect.xsl |     8 ++------                                
   1 files changed, 2 insertions(+), 6 deletions(-)
Modified: trunk/tools/boostbook/xsl/doxygen/collect.xsl
==============================================================================
--- trunk/tools/boostbook/xsl/doxygen/collect.xsl	(original)
+++ trunk/tools/boostbook/xsl/doxygen/collect.xsl	2008-07-29 17:48:11 EDT (Tue, 29 Jul 2008)
@@ -9,8 +9,6 @@
 <xsl:stylesheet        xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
   <xsl:output method="xml" version="1.0" indent="yes" standalone="yes" />
  
-  <xsl:param name="doxygen.xml.path">./</xsl:param>
- 
   <xsl:template match="/">
     <doxygen>
       <xsl:attribute name="version">
@@ -37,8 +35,7 @@
           </xsl:choose>
         </xsl:variable>
         <xsl:if test="$id">
-          <xsl:copy-of select="document( concat($doxygen.xml.path, '/',
-                               $id, '.xml' ) )/doxygen/*" />
+          <xsl:copy-of select="document( concat( $id, '.xml' ), / )/doxygen/*" />
         </xsl:if>
       </xsl:for-each>
       <xsl:for-each select="doxygenindex/compound">
@@ -53,8 +50,7 @@
           </xsl:choose>
         </xsl:variable>
         <xsl:if test="$id">
-          <xsl:copy-of select="document( concat($doxygen.xml.path, '/',
-                               $id, '.xml' ) )/doxygen/*" />
+          <xsl:copy-of select="document( concat($id, '.xml'), /)/doxygen/*" />
         </xsl:if>
       </xsl:for-each>
     </doxygen>