<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/release/doc/share/mk/doc.relnotes.mk, branch release/7.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2008-02-24T05:45:17+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2008-02-24T05:45:17+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a9c219fa3cec18ef9f30edec6fa106bf0e2d423d'/>
<id>a9c219fa3cec18ef9f30edec6fa106bf0e2d423d</id>
<content type='text'>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_7_0_0_RELEASE'.

This commit was manufactured to restore the state of the 7.0-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for auto-generating hardware notes entries in a</title>
<updated>2007-02-16T02:10:12+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2007-02-16T02:10:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=aebd3138602f6720eef5dd6298b6939ea02494d5'/>
<id>aebd3138602f6720eef5dd6298b6939ea02494d5</id>
<content type='text'>
manner consistent with the new MI-style hardware notes document.

man2hwnotes.pl now defaults to generating entities for the MI-style
hardware notes (i.e. hardware/article.sgml).  A new -c
option causes it to generate entities for the older MD-style
hardware notes (i.e. hardware/common/dev.sgml).

The Makefile infrastructure supplies the -c option to man2hwnotes.pl
now unless the HWNOTES_MI Makefile variable is defined, so
compatiblity is preserved for hardware notes translations that
aren't converted to the new organization yet.  As translations
convert, they should define HWNOTES_MI in their hardware/Makefile.
When all the relevant translations catch up, the compatibility goop
in share/mk/doc.relnotes.mk and share/sgml/Makefile can be removed.

Thanks go to simon@ for help with the backwards compatiblity
mechanism.

Tested with:	en_US.ISO8859-1, zh_CN.GB2312
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
manner consistent with the new MI-style hardware notes document.

man2hwnotes.pl now defaults to generating entities for the MI-style
hardware notes (i.e. hardware/article.sgml).  A new -c
option causes it to generate entities for the older MD-style
hardware notes (i.e. hardware/common/dev.sgml).

The Makefile infrastructure supplies the -c option to man2hwnotes.pl
now unless the HWNOTES_MI Makefile variable is defined, so
compatiblity is preserved for hardware notes translations that
aren't converted to the new organization yet.  As translations
convert, they should define HWNOTES_MI in their hardware/Makefile.
When all the relevant translations catch up, the compatibility goop
in share/mk/doc.relnotes.mk and share/sgml/Makefile can be removed.

Thanks go to simon@ for help with the backwards compatiblity
mechanism.

Tested with:	en_US.ISO8859-1, zh_CN.GB2312
</pre>
</div>
</content>
</entry>
<entry>
<title>- Add an -o option to specify the output file.</title>
<updated>2004-08-08T09:23:49+00:00</updated>
<author>
<name>Hiroki Sato</name>
<email>hrs@FreeBSD.org</email>
</author>
<published>2004-08-08T09:23:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=293283dc5b62c76baf5435783c5f97b931c335f2'/>
<id>293283dc5b62c76baf5435783c5f97b931c335f2</id>
<content type='text'>
- Make "die()" more verbose.
- Do not put extra blank lines into the output file.
- Normalize text by using numeric entities because
  some characters such as "'" can break the generated SGML.

Reviewed by:	simon
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Make "die()" more verbose.
- Do not put extra blank lines into the output file.
- Normalize text by using numeric entities because
  some characters such as "'" can break the generated SGML.

Reviewed by:	simon
</pre>
</div>
</content>
</entry>
<entry>
<title>Auto generate the device listings in the Hardware Notes based on</title>
<updated>2004-08-03T22:12:45+00:00</updated>
<author>
<name>Simon L. B. Nielsen</name>
<email>simon@FreeBSD.org</email>
</author>
<published>2004-08-03T22:12:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4e702f5b140c8ab63afe07df4dd882310fc639be'/>
<id>4e702f5b140c8ab63afe07df4dd882310fc639be</id>
<content type='text'>
manual pages, to avoid duplicating work between the Hardware Notes and
manual pages.

Each text line in the output from the manual page parser is generated
as a SGML entity, making it possible for translators to only translate
lines which actually contains English text (this neat idea came from
hrs).

To determine which drivers are usable on which architectures the
dev.archlist.txt file is used to explicitly list this.  It it an
imperfect solution, but the best I have been able to come up with for
now.

This commit converts most of the devices which has a section 4 manual
page with a HARDWARE section to be the new auto generated format.

Reviewed in principle by:	ru, hrs, trhodes
Good ideas for improvements:	hrs
No objections:			-doc, re
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
manual pages, to avoid duplicating work between the Hardware Notes and
manual pages.

Each text line in the output from the manual page parser is generated
as a SGML entity, making it possible for translators to only translate
lines which actually contains English text (this neat idea came from
hrs).

To determine which drivers are usable on which architectures the
dev.archlist.txt file is used to explicitly list this.  It it an
imperfect solution, but the best I have been able to come up with for
now.

This commit converts most of the devices which has a section 4 manual
page with a HARDWARE section to be the new auto generated format.

Reviewed in principle by:	ru, hrs, trhodes
Good ideas for improvements:	hrs
No objections:			-doc, re
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide a way to keep out old ("historic") release notes from bloating</title>
<updated>2002-06-20T21:19:49+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2002-06-20T21:19:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=d0e8afbf5a6a5bc0226a2db52b719ac49fead983'/>
<id>d0e8afbf5a6a5bc0226a2db52b719ac49fead983</id>
<content type='text'>
the size of the rendered release notes.  By default, any element with
a role="historic" attribute won't get rendered in the output unless
the INCLUDE_HISTORIC Makefile variable is defined.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the size of the rendered release notes.  By default, any element with
a role="historic" attribute won't get rendered in the output unless
the INCLUDE_HISTORIC Makefile variable is defined.
</pre>
</div>
</content>
</entry>
<entry>
<title>Language-dependent catalogs for RELNOTESng should override</title>
<updated>2001-07-17T00:46:10+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2001-07-17T00:46:10+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7d2c37712bb96abb46d4256231127e07aba0724e'/>
<id>7d2c37712bb96abb46d4256231127e07aba0724e</id>
<content type='text'>
the language-independent catalog.

Tested by:	Alex Kapranoff &lt;kapr@acm.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the language-independent catalog.

Tested by:	Alex Kapranoff &lt;kapr@acm.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Better support for multi-lingual release documentation.  We now support</title>
<updated>2001-07-09T16:01:38+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2001-07-09T16:01:38+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=a2ddea9863553e285b65baaec74db14ebd6fb53b'/>
<id>a2ddea9863553e285b65baaec74db14ebd6fb53b</id>
<content type='text'>
language-dependant SGML catalogs (in ${LANG_CODE}/share/sgml) and also
use a default.dsl stylesheet similar to what the rest of the DocProj
documents use.

Requested by:	hrs, Alex Kapranoff &lt;kapr@acm.org&gt;
Reviewed by:	hrs, dd
MFC after:	2 days
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
language-dependant SGML catalogs (in ${LANG_CODE}/share/sgml) and also
use a default.dsl stylesheet similar to what the rest of the DocProj
documents use.

Requested by:	hrs, Alex Kapranoff &lt;kapr@acm.org&gt;
Reviewed by:	hrs, dd
MFC after:	2 days
</pre>
</div>
</content>
</entry>
<entry>
<title>Back out 1.6-&gt;1.7 change; this wasn't supposed to get committed.</title>
<updated>2001-07-04T17:53:48+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2001-07-04T17:53:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=0f8d184704523cd400b08fefba98c37cb1f64ff1'/>
<id>0f8d184704523cd400b08fefba98c37cb1f64ff1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>New release notes:  lpd(8) -c and -w, lpc(8) tclean, whois(1) recursive</title>
<updated>2001-07-04T17:52:46+00:00</updated>
<author>
<name>Bruce A. Mah</name>
<email>bmah@FreeBSD.org</email>
</author>
<published>2001-07-04T17:52:46+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=43ac759d7cc96107962e4e368e3f31bac3fb0836'/>
<id>43ac759d7cc96107962e4e368e3f31bac3fb0836</id>
<content type='text'>
lookups, moused(8) -a, binutils 2.11.2.

MFCs noted:  IPv6 update.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
lookups, moused(8) -a, binutils 2.11.2.

MFCs noted:  IPv6 update.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the way the value of DESTDIR is determined for the release</title>
<updated>2001-06-21T20:43:43+00:00</updated>
<author>
<name>Dima Dorfman</name>
<email>dd@FreeBSD.org</email>
</author>
<published>2001-06-21T20:43:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=7450e0624939102d98422a12cc6507ac0fb76565'/>
<id>7450e0624939102d98422a12cc6507ac0fb76565</id>
<content type='text'>
notes build. Instead of having doc.relnotes.mk make a guess, hardcode
quite a bit (but as little as possible) in Makefile.inc's sprinkled
strategicly throughout the tree.  This has the advantage of actually
working properly (which is a Good Thing(tm)), and the disadvantages of
more files in the repository and more hardcoded paths (which are both
Bad Things(tm)).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
notes build. Instead of having doc.relnotes.mk make a guess, hardcode
quite a bit (but as little as possible) in Makefile.inc's sprinkled
strategicly throughout the tree.  This has the advantage of actually
working properly (which is a Good Thing(tm)), and the disadvantages of
more files in the repository and more hardcoded paths (which are both
Bad Things(tm)).
</pre>
</div>
</content>
</entry>
</feed>
