This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix SGML docs and nested packages


Deeply nested packages can cause long entity names in ecos.sgml. This gives us more breathing space.

Jifl
--
eCosCentric http://www.eCosCentric.com/ <info@eCosCentric.com>
--[ "You can complain because roses have thorns, or you ]--
--[ can rejoice because thorns have roses." -Lincoln ]-- Opinions==mine
Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/doc/ChangeLog,v
retrieving revision 1.9
diff -u -5 -p -r1.9 ChangeLog
--- ChangeLog	22 Dec 2002 11:18:53 -0000	1.9
+++ ChangeLog	3 Jan 2003 23:40:29 -0000
@@ -1,5 +1,10 @@
+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.
 
 	* sgml/.cvsignore: Added files generated during PDF build.
Index: sgml/makemakefile
===================================================================
RCS file: /cvs/ecos/ecos/doc/sgml/makemakefile,v
retrieving revision 1.5
diff -u -5 -p -r1.5 makemakefile
--- sgml/makemakefile	29 Oct 2002 08:19:21 -0000	1.5
+++ sgml/makemakefile	3 Jan 2003 23:40:29 -0000
@@ -180,11 +180,11 @@ holder or other party has been advised o
 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
    fi
   fi
Index: sgml/doclist
===================================================================
RCS file: /cvs/ecos/ecos/doc/sgml/doclist,v
retrieving revision 1.4
diff -u -5 -p -r1.4 doclist
--- sgml/doclist	22 Dec 2002 11:18:55 -0000	1.4
+++ sgml/doclist	3 Jan 2003 23:40:29 -0000
@@ -19,6 +19,6 @@ io/eth/current/doc/ethdrv.sgml
 net/snmp/agent/current/doc/snmp.sgml
 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]