Commit the hardware notes for 4.4-RELEASE to the Web tree, with

appropriate infrastructure changes and pointers from the appropriate
places.  (With RELNOTESng, the hardware notes are no longer duplicated
in the release notes; they're a separate document.)

Suggested by:	Jed Clear <clear@alum.mit.edu>
This commit is contained in:
Bruce A. Mah 2001-10-21 23:21:27 +00:00
parent 928e56f349
commit 3c690effe0
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=11002
8 changed files with 13006 additions and 8 deletions

View file

@ -1,4 +1,4 @@
<!-- $FreeBSD: www/en/includes.sgml,v 1.44 2001/06/25 16:21:54 nik Exp $ -->
<!-- $FreeBSD: www/en/includes.sgml,v 1.45 2001/09/19 18:14:43 jkh Exp $ -->
<!--
Base is the absolute URL for the given page, minus the actual page
part. It should either be specified as a fully qualified URL, or
@ -77,6 +77,7 @@ src="&base;/gifs/bar.gif" alt="Navigation Bar" width="565" height="33" border="0
<!ENTITY u.rel.notes '&base;/releases/&rel.current;R/notes.html'>
<!ENTITY u.rel.announce '&base;/releases/&rel.current;R/announce.html'>
<!ENTITY u.rel.errata '&base;/releases/&rel.current;R/errata.html'>
<!ENTITY u.rel.hardware '&base;/releases/&rel.current;R/hardware.html'>
<!-- macro for webbuild paper -->

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!-- $FreeBSD: www/en/includes.xsl,v 1.2 2001/08/07 01:54:40 kuriyama Exp $ -->
<!-- $FreeBSD: www/en/includes.xsl,v 1.3 2001/09/19 19:07:58 jkh Exp $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
@ -86,5 +86,7 @@
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/announce.html</xsl:variable>
<xsl:variable name="u.rel.errata">
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/errata.html</xsl:variable>
<xsl:variable name="u.rel.hardware">
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/hardware.html</xsl:variable>
</xsl:stylesheet>

View file

@ -1,4 +1,4 @@
<!-- $FreeBSD: www/en/index.xsl,v 1.10 2001/10/18 01:30:38 grog Exp $ -->
<!-- $FreeBSD: www/en/index.xsl,v 1.11 2001/10/20 04:39:51 jkh Exp $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
@ -6,7 +6,7 @@
<xsl:import href="news/includes.xsl"/>
<xsl:variable name="base" select="'.'"/>
<xsl:variable name="date" select="'$FreeBSD: www/en/index.xsl,v 1.10 2001/10/18 01:30:38 grog Exp $'"/>
<xsl:variable name="date" select="'$FreeBSD: www/en/index.xsl,v 1.11 2001/10/20 04:39:51 jkh Exp $'"/>
<xsl:variable name="title" select="'The FreeBSD Project'"/>
<xsl:output type="html" encoding="iso-8859-1"
@ -315,6 +315,7 @@
<small>&#183; <a href="{$u.rel.announce}">Announcement</a><br/>
&#183; <a href="{$base}/doc/en_US.ISO8859-1/books/handbook/install.html">Installation Guide</a><br/>
&#183; <a href="{$u.rel.notes}">Release Notes</a><br/>
&#183; <a href="{$u.rel.hardware}">Hardware Notes</a><br/>
&#183; <a href="{$u.rel.errata}">Errata</a></small></p>
<p><font size="+1" color="#990000"><b>Project News</b></font><br/>

View file

@ -1,4 +1,4 @@
# $FreeBSD: www/en/releases/4.4R/Makefile,v 1.3 2001/09/20 00:15:00 bmah Exp $
# $FreeBSD: www/en/releases/4.4R/Makefile,v 1.4 2001/09/20 16:48:56 bmah Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
@ -7,10 +7,12 @@
.include "../Makefile.inc"
.endif
DOCS= announce.sgml notes.sgml
DOCS= announce.sgml hardware.sgml notes.sgml
DATA= docbook.css
DATA+= errata.html
DATA+= hardware-alpha.html
DATA+= hardware-i386.html
DATA+= relnotes-alpha.html
DATA+= relnotes-i386.html

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,26 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" [
<!ENTITY base CDATA "../..">
<!ENTITY date "$FreeBSD$">
<!ENTITY title "FreeBSD 4.4 Hardware Notes">
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
]>
<html>
&header;
<p>The hardware notes for FreeBSD are customized for different
platforms, as some of the changes made to FreeBSD apply only to
specific processor architectures.</p>
<p>Hardware notes for FreeBSD 4.4 are available for the following
platforms:</p>
<ul>
<li><a href="hardware-i386.html">i386</a></li>
<li><a href="hardware-alpha.html">Alpha</a></li>
</ul>
<p>A list of all platforms currently under development can be found
on the <a href="../../platforms/index.html">Supported
Platforms</a> page.</p>
</html>

View file

@ -1,10 +1,10 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$FreeBSD: www/en/releases/index.sgml,v 1.61 2001/09/19 08:20:45 jkh Exp $">
<!ENTITY date "$FreeBSD: www/en/releases/index.sgml,v 1.62 2001/09/19 18:14:43 jkh Exp $">
<!ENTITY title "Release Information">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- $FreeBSD: www/en/releases/index.sgml,v 1.61 2001/09/19 08:20:45 jkh Exp $ -->
<!-- $FreeBSD: www/en/releases/index.sgml,v 1.62 2001/09/19 18:14:43 jkh Exp $ -->
<html>
&header;
@ -20,6 +20,7 @@ the <A HREF="&base;/news/newsflash.html">Newsflash</A> page.</em></p>
<em>
<a href="&u.rel.announce;">Announcement</a> :
<a href="&u.rel.notes;">Release Notes</a> :
<a href="&u.rel.hardware;">Hardware Notes</a> :
<a href="&u.rel.errata;">Errata</a>
</em></p>