Added infrastructure to link html files it the wiki. Added sample link in bootdisk.xml

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5596 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Bruce Dubbs 2006-01-26 16:14:43 +00:00
parent 9d2986a99d
commit d53eb0e859
4 changed files with 19 additions and 2 deletions

View File

@ -58,8 +58,10 @@ nochunks:
$(BASEDIR)/$(NOCHUNKS_OUTPUT)
pdf:
xsltproc --xinclude --nonet --stringparam profile.condition pdf \
--output blfs-pdf.xml stylesheets/blfs-profile.xsl index.xml
xsltproc --xinclude --nonet --output blfs.fo \
stylesheets/blfs-pdf.xsl index.xml
stylesheets/blfs-pdf.xsl blfs-pdf.xml
sed -i -e "s/inherit/all/" blfs.fo
fop.sh blfs.fo blfs.pdf
$(INSTALL) -d $(BASEDIR)pdf
@ -90,6 +92,11 @@ dump-commands:
validate:
xmllint --noout --nonet --xinclude --postvalid index.xml
validate-pdf:
xsltproc --xinclude --nonet --stringparam profile.condition pdf \
--output blfs-pdf.xml stylesheets/blfs-profile.xsl index.xml
xmllint --noout --nonet --postvalid blfs-pdf.xml
blfs-patch-list:
@echo "Generating blfs-patch-list..."
xsltproc --xinclude --nonet \

View File

@ -25,6 +25,8 @@
<!ENTITY blfs-bootscripts-version "20060101">
<!ENTITY blfs-bootscripts-download "&downloads-root;/blfs-bootscripts-&blfs-bootscripts-version;.tar.bz2">
<!ENTITY blfs-wiki "http://wiki/linuxfromscratch.org/blfs/wiki">
<!-- Part II -->
<!-- Chapter 3 -->
<!ENTITY autofs-version "4.1.4">

View File

@ -85,6 +85,8 @@
system consists of formatting the drive, adding <application>GRUB</application>
as well as the Linux kernel and supporting files.</para>
<para condition="html" role="usernotes">User Notes:
<ulink url='&blfs-wiki;/CreatingaCustomBootDevice'/></para>
</sect2>
</sect1>

View File

@ -436,3 +436,9 @@ p.updated {
tt.systemitem {
font-style: italic;
}
p.usernotes {
font-size: small;
font-weight: bold;
font-style: italic;
}