BIND 10 master, updated. dfd3f41f975a491ae9f49df3c1ff8d276e99df7e [master] fix xsltproc --stringparam html.stylesheet usage

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Oct 31 12:40:43 UTC 2013


The branch, master has been updated
       via  dfd3f41f975a491ae9f49df3c1ff8d276e99df7e (commit)
      from  d2f1cc6e6d1d29b33f8885cc2e7b2c1e46d62456 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit dfd3f41f975a491ae9f49df3c1ff8d276e99df7e
Author: Jeremy C. Reed <jreed at isc.org>
Date:   Thu Oct 31 07:37:18 2013 -0500

    [master] fix xsltproc --stringparam html.stylesheet usage
    
    This is to set the location of the css stylesheet.
    Previously it pointed to a path in the source directory.
    By default, this was "./" so was okay as a location via HTTP.
    But when built using a different source directory, then
    the full source directory ended up as a reference on the webpage
    so then style's didn't work.
    
    I briefly discussed this on jabber yesterday but didn't get an okay.
    It is a minor fix, so committing per my discretion.

-----------------------------------------------------------------------

Summary of changes:
 doc/guide/Makefile.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/doc/guide/Makefile.am b/doc/guide/Makefile.am
index 8f3aaaf..3bffa1a 100644
--- a/doc/guide/Makefile.am
+++ b/doc/guide/Makefile.am
@@ -17,7 +17,7 @@ bind10-guide.html: bind10-guide.xml
 		-o $@ \
 		--stringparam section.autolabel 1 \
 		--stringparam section.label.includes.component.label 1 \
-		--stringparam html.stylesheet $(srcdir)/bind10-guide.css \
+		--stringparam html.stylesheet bind10-guide.css \
 		http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl \
 		$(srcdir)/bind10-guide.xml
 
@@ -28,7 +28,7 @@ bind10-messages.html: bind10-messages.xml
 	@XSLTPROC@ --novalid --xinclude --nonet \
 		--path $(top_builddir)/doc \
 		-o $@ \
-		--stringparam html.stylesheet $(srcdir)/bind10-guide.css \
+		--stringparam html.stylesheet bind10-guide.css \
 		http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl \
 		bind10-messages.xml
 



More information about the bind10-changes mailing list