cmlenz 2003/07/14 09:42:01
Modified: documentation/docs/skins/jakarta.apache.org/stylesheets
document2html.xsl
documentation build.xml
Log:
Pass the absolute path to the cvs changelog to the stylesheet, so that it can be
found
Revision Changes Path
1.45 +2 -2
jakarta-cactus/documentation/docs/skins/jakarta.apache.org/stylesheets/document2html.xsl
Index: document2html.xsl
===================================================================
RCS file:
/home/cvs/jakarta-cactus/documentation/docs/skins/jakarta.apache.org/stylesheets/document2html.xsl,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- document2html.xsl 12 Jul 2003 21:29:16 -0000 1.44
+++ document2html.xsl 14 Jul 2003 16:42:00 -0000 1.45
@@ -768,7 +768,7 @@
<xsl:template match="cvschangelog">
<xsl:variable name="changelog"
- select="document(concat($xdocdir,'/',$cvslogfile))/changelog"/>
+ select="document($cvslogfile)/changelog"/>
<xsl:choose>
<xsl:when test="$changelog/entry">
<div class="tabular">
1.54 +4 -2 jakarta-cactus/documentation/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-cactus/documentation/build.xml,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- build.xml 30 Jun 2003 16:22:10 -0000 1.53
+++ build.xml 14 Jul 2003 16:42:00 -0000 1.54
@@ -197,6 +197,8 @@
<target name="doc.generate" depends="doc.prepare,doc.cvschangelog">
+ <property name="cvslog.file"
+ location="${target.xdoc.dir}/cvslog/cvslog.xml"/>
<property name="sitemap.file" location="${doc.xdoc.dir}/sitemap.xml"/>
<basename property="xdoc.dir.name" file="${target.xdoc.dir}"/>
@@ -235,7 +237,7 @@
<!-- Location of the sitemap.xml file relative to xdocdir -->
<param name="sitemapFile" expression="${sitemap.file}"/>
<!-- Location of the cvslog.xml file relative to xdocdir -->
- <param name="cvslogfile" expression="cvslog/cvslog.xml"/>
+ <param name="cvslogfile" expression="${cvslog.file}"/>
</style>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]