diff options
| author | Bruce A. Mah <bmah@FreeBSD.org> | 2002-11-08 18:01:31 +0000 |
|---|---|---|
| committer | Bruce A. Mah <bmah@FreeBSD.org> | 2002-11-08 18:01:31 +0000 |
| commit | 4afbdabf500ccd90520d8bc21bf3ee40cfcf5345 (patch) | |
| tree | 47a7c33a81184d4ffa3f5aa0f8e76cbc8ba337c1 | |
| parent | fd750dbd4c19a0f1a8a4168785f27095e9fa6403 (diff) | |
Notes
4 files changed, 89 insertions, 0 deletions
diff --git a/release/doc/en_US.ISO8859-1/installation/ia64/Makefile b/release/doc/en_US.ISO8859-1/installation/ia64/Makefile new file mode 100644 index 000000000000..36f855e86d97 --- /dev/null +++ b/release/doc/en_US.ISO8859-1/installation/ia64/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +RELN_ROOT?= ${.CURDIR}/../../.. + +DOC?= article +FORMATS?= html +INSTALL_COMPRESSED?= gz +INSTALL_ONLY_COMPRESSED?= + +# SGML content +SRCS+= article.sgml +SRCS+= ../common/artheader.sgml +SRCS+= ../common/abstract.sgml +SRCS+= ../common/install.sgml +SRCS+= ../common/layout.sgml +SRCS+= ../common/trouble.sgml +SRCS+= ../common/upgrade.sgml + +.include "${RELN_ROOT}/share/mk/doc.relnotes.mk" +.include "${DOC_PREFIX}/share/mk/doc.project.mk" diff --git a/release/doc/en_US.ISO8859-1/installation/ia64/article.sgml b/release/doc/en_US.ISO8859-1/installation/ia64/article.sgml new file mode 100644 index 000000000000..5380b9326a8d --- /dev/null +++ b/release/doc/en_US.ISO8859-1/installation/ia64/article.sgml @@ -0,0 +1,28 @@ +<!-- $FreeBSD$ --> + +<!DOCTYPE article PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [ +<!ENTITY % man PUBLIC "-//FreeBSD//ENTITIES DocBook Manual Page Entities//EN"> +%man; +<!ENTITY % authors PUBLIC "-//FreeBSD//ENTITIES DocBook Author Entities//EN"> +%authors; +<!ENTITY % mlists PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//EN"> +%mlists; +<!ENTITY % release PUBLIC "-//FreeBSD//ENTITIES Release Specification//EN"> +%release; +<!ENTITY % sections SYSTEM "../common/install.ent"> %sections; + +<!-- Architecture-specific customization --> + +<!ENTITY arch "ia64"> +<!ENTITY arch.print "IA-64"> + +]> + +<article> +&artheader; +&abstract; +§.install; +§.layout; +§.upgrade; +§.trouble; +</article> diff --git a/release/doc/en_US.ISO8859-1/relnotes/ia64/Makefile b/release/doc/en_US.ISO8859-1/relnotes/ia64/Makefile new file mode 100644 index 000000000000..f548b33ede17 --- /dev/null +++ b/release/doc/en_US.ISO8859-1/relnotes/ia64/Makefile @@ -0,0 +1,18 @@ +# $FreeBSD$ + +RELN_ROOT?= ${.CURDIR}/../../.. + +DOC?= article +FORMATS?= html +INSTALL_COMPRESSED?= gz +INSTALL_ONLY_COMPRESSED?= + +JADEFLAGS+= -V %generate-article-toc% + +# SGML content +SRCS+= article.sgml +SRCS+= ../common/relnotes.ent +SRCS+= ../common/new.sgml + +.include "${RELN_ROOT}/share/mk/doc.relnotes.mk" +.include "${DOC_PREFIX}/share/mk/doc.project.mk" diff --git a/release/doc/en_US.ISO8859-1/relnotes/ia64/article.sgml b/release/doc/en_US.ISO8859-1/relnotes/ia64/article.sgml new file mode 100644 index 000000000000..b7403a4289a0 --- /dev/null +++ b/release/doc/en_US.ISO8859-1/relnotes/ia64/article.sgml @@ -0,0 +1,23 @@ +<!-- $FreeBSD$ --> + +<!DOCTYPE article PUBLIC "-//FreeBSD//DTD DocBook V4.1-Based Extension//EN" [ +<!ENTITY % man PUBLIC "-//FreeBSD//ENTITIES DocBook Manual Page Entities//EN"> +%man; +<!ENTITY % authors PUBLIC "-//FreeBSD//ENTITIES DocBook Author Entities//EN"> +%authors; +<!ENTITY % mlists PUBLIC "-//FreeBSD//ENTITIES DocBook Mailing List Entities//EN"> +%mlists; +<!ENTITY % release PUBLIC "-//FreeBSD//ENTITIES Release Specification//EN"> +%release; +<!ENTITY % sections SYSTEM "../common/relnotes.ent"> %sections; + +<!-- Architecture-specific customization --> + +<!ENTITY arch "ia64"> +<!ENTITY arch.print "IA-64"> + +]> + +<article> + &art; +</article> |
