have docbook generated html files be straight ascii
authorLee <ler762@users.sourceforge.net>
Tue, 23 Oct 2018 05:31:00 +0000 (01:31 -0400)
committerLee <ler762@users.sourceforge.net>
Tue, 23 Oct 2018 05:31:00 +0000 (01:31 -0400)
commitad45fb4e5bb7b48f422268cb20b37439d2ad8796
tree3ef2fd9897551e69498e934ee577c77854147f62
parentb079d015ebcc9f7e91c79b70ab4139ef6990cc47
have docbook generated html files be straight ascii

Dealing with a mixture of ISO-8859 and UTF-8 files is.. problematic.
To keep the number of issues down, keep everything in ASCII as much
as possible.

We have two docbook stylesheet sections - 'html' for generated
html files where the output is supposed to be plain 7-bit ASCII
and 'print' for generated text files where the output is
latin1/ISO-8859

So the makefile has two docbook calls
  $(DB)     for generating html ascii output
  $(DB_TXT) for generating latin1 text output (eg AUTHORS)

and two w3m calls
  $(W3M_DUMP)      for reading docbook output and creating ASCII output
  $(W3M_DUMP_UTF8) for reading docbook output and creating UTF-8 output
GNUmakefile.in