Mercurial > ecos-v2_0-branch
changeset 475:5d3c69a21b47
* sgml/makemakefile: Try to shorten generated entity names.
* sgml/doclist: add terminating LF.
| author | jlarmour |
|---|---|
| date | Fri, 03 Jan 2003 23:42:20 +0000 |
| parents | f0d9ca957f47 |
| children | 27c8b9bbe227 |
| files | doc/ChangeLog doc/sgml/doclist doc/sgml/makemakefile |
| diffstat | 3 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-03 Jonathan Larmour <jifl@eCosCentric.com> + + * sgml/makemakefile: Try to shorten generated entity names. + * sgml/doclist: add terminating LF. + 2002-12-22 Nick Garnett <nickg@ecoscentric.com> * sgml/doclist: Added HTTPD package documentation.
--- a/doc/sgml/doclist +++ b/doc/sgml/doclist @@ -21,4 +21,4 @@ net/ns/dns/current/doc/dns.sgml net/httpd/current/doc/httpd.sgml net/ftpclient/current/doc/ftpclient.sgml services/crc/current/doc/crc.sgml -services/cpuload/current/doc/cpuload.sgml \ No newline at end of file +services/cpuload/current/doc/cpuload.sgml
--- a/doc/sgml/makemakefile +++ b/doc/sgml/makemakefile @@ -182,7 +182,7 @@ EOF for i in `cat doclist`; do line="`echo $i | sed 's/#.*//;'`" if (test ! -z $line); then - entityi="`echo $i | sed 's@/@-@g; s@\.@-@g; s@_@-@g'`" + entityi="`echo $i | sed 's@/@-@g; s@\.@-@g; s@_@-@g; s@-current-doc@@g; s@-current@@g'`" # special kludge if [ "`basename $i`" != "tcpip-manpages.sgml" ]; then echo "&$entityi;" >> ecos.sgml
