From: Nigel Metheringham Date: Mon, 9 Nov 2009 16:12:37 +0000 (+0000) Subject: I think this sets up the paths appropriately - probably need to use the OS-Fixups... X-Git-Tag: exim-4_70_RC4 X-Git-Url: https://git.exim.org/exim.git/commitdiff_plain/8127b38f56ed11c265e8ef5b3b65ec1c88421286 I think this sets up the paths appropriately - probably need to use the OS-Fixups in a more sophisticated fashion. References: #904 --- diff --git a/doc/doc-docbook/MyStyle-chunk-html.xsl b/doc/doc-docbook/MyStyle-chunk-html.xsl index c323a72bf..4b8691e42 100644 --- a/doc/doc-docbook/MyStyle-chunk-html.xsl +++ b/doc/doc-docbook/MyStyle-chunk-html.xsl @@ -1,4 +1,4 @@ - + - + diff --git a/doc/doc-docbook/OS-Fixups b/doc/doc-docbook/OS-Fixups index f9c1d987f..415a611f5 100755 --- a/doc/doc-docbook/OS-Fixups +++ b/doc/doc-docbook/OS-Fixups @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# $Cambridge: exim/doc/doc-docbook/OS-Fixups,v 1.1 2009/10/16 10:36:52 nm4 Exp $ +# $Cambridge: exim/doc/doc-docbook/OS-Fixups,v 1.2 2009/11/09 16:12:37 nm4 Exp $ use strict; # Script to hack around using absolute paths in xsl:import with fixups. @@ -17,6 +17,16 @@ s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"} {"/usr/local/share/xml/docbook/4.2/docbookx.dtd"}; } +sub filter_darwin +{ +# NB - this uses the Mac Ports installations +s{"/usr/share/sgml/docbook/xsl-stylesheets-1.70.1/} + {"/opt/local/share/xsl/docbook-xsl/}; +s{"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"} + {"/opt/local/share/xml/docbook/4.2/docbookx.dtd"}; +} + + # Define OS filters above. my $os_filter;