Makefile framework to pull the DocBook tutorials in to the web site.
index.sgml came from doc/en_US.ISO_8859-1/tutorials/, and is the last web site specific file to come out of the doc/ repository. They are now separated. Makefile is best termed a "gross hack". This will be removed as soon as the docs are spirited away on to their own web site.
This commit is contained in:
parent
b4be7a34cb
commit
eb6593059c
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=5407
2 changed files with 80 additions and 0 deletions
en/tutorials
13
en/tutorials/Makefile
Normal file
13
en/tutorials/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
#
|
||||
# $Id: Makefile,v 1.1 1999-08-19 20:49:29 nik Exp $
|
||||
#
|
||||
# Build the FreeBSD tutorials/articles outside of the www tree, and then
|
||||
# install them in to the right place.
|
||||
|
||||
DOCS = index.sgml
|
||||
|
||||
all afterinstall clean: index.html
|
||||
(cd ../../../doc/en_US.ISO_8859-1/articles; make 'FORMATS=html html-split' 'DESTDIR=${DESTDIR}/data/tutorials/$${.CURDIR:T}' ${.TARGET:S/afterinstall/install/})
|
||||
(cd ../../../doc/en_US.ISO_8859-1/books/fdp-primer; make 'FORMATS=html html-split' DESTDIR=${DESTDIR}/data/tutorials/docproj-primer ${.TARGET:S/afterinstall/install/})
|
||||
|
||||
.include "../web.mk"
|
67
en/tutorials/index.sgml
Normal file
67
en/tutorials/index.sgml
Normal file
|
@ -0,0 +1,67 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$Date: 1999-08-19 20:49:29 $">
|
||||
<!ENTITY title "FreeBSD Tutorials">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
]>
|
||||
<!-- $Id: index.sgml,v 1.1 1999-08-19 20:49:29 nik Exp $ -->
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<p>Here lie assorted documents on various aspects of FreeBSD,
|
||||
FreeBSD software, and hardware. If you have comments or
|
||||
would like to contribute a document, please contact us at
|
||||
<a href="mailto:freebsd-doc@FreeBSD.ORG">freebsd-doc@FreeBSD.org</a>.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="news-users/index.html">For People New to Both FreeBSD
|
||||
<em>and</em> Unix</a></li>
|
||||
|
||||
<li><a href="mh/index.html">An introduction to the MH mail software</a></li>
|
||||
|
||||
<li><a href="programming-tools/index.html">A User's Guide to FreeBSD Programming
|
||||
Tools</a></li>
|
||||
|
||||
<!-- Not yet converted to DocBook. Will be very shortly
|
||||
<li><a href="ddwg/ddwg.html">Writing device drivers for FreeBSD</a>
|
||||
(<a href="ddwg/ddwg.ps">postscript</a>,
|
||||
<a href="ddwg/ddwg-html.tar.gz">gzipd tar file</a>)</li>
|
||||
|
||||
<li><a href="ppp/ppp.html">Pedantic PPP primer - IP Aliasing</a>
|
||||
(<a href="ppp/ppp.ps">postscript</a>,
|
||||
<a href="ppp/ppp-html.tar.gz">gzipd tar file</a>)</li>
|
||||
|
||||
-->
|
||||
|
||||
<li><a href="multi-os/index.html">Using FreeBSD with other operating systems</a></li>
|
||||
|
||||
<li><a href="fonts/fonts.html">Fonts and FreeBSD</a></li>
|
||||
|
||||
<li><a href="http://www.cypher.net/~black/ipalias.html">IP Aliasing</a></li>
|
||||
<li><a href="http://www.nothing-going-on.demon.co.uk/FreeBSD/make-world/make-world.html">Upgrading FreeBSD from source (using <b><tt>make world</tt></b>)</a></li>
|
||||
<li><a href="diskformat/diskformat.html">Formatting Media For Use With FreeBSD
|
||||
2.2-RELEASE</a></li>
|
||||
|
||||
<li><a href="http://www.users.globalnet.co.uk/~markov/ntfs_install.html">Installing the FreeBSD NTFS (NT Filesystem) driver</a></li>
|
||||
|
||||
<li><a href="http://www.freebsd.org/~rpratt/227/">FreeBSD 2.2.7 Installation Details for Newbies</a>
|
||||
|
||||
<li><a href="&base;/tutorials/docproj-primer/">FreeBSD Documentation
|
||||
Project Primer</a> (many small HTML files)</li>
|
||||
|
||||
<li><a href="&base;/tutorials/docproj-primer/book.html">FreeBSD
|
||||
Documentation Project Primer</a> (one large HTML file)</li>
|
||||
|
||||
<li><a href="&base;/tutorials/diskless-x/index.html">Using FreeBSD as
|
||||
a diskless X server</a></li>
|
||||
|
||||
<li><a href="&base;/tutorials/formatting-media/index.html">Formatting
|
||||
media (disks, cartridges, etc) on FreeBSD</a>
|
||||
</ul>
|
||||
|
||||
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in a new issue