diff options
author | Padraig O'Briain <padraigo@src.gnome.org> | 2002-08-15 12:29:37 +0000 |
---|---|---|
committer | Padraig O'Briain <padraigo@src.gnome.org> | 2002-08-15 12:29:37 +0000 |
commit | e5686905b4c9ace96bc065d893000dfa1d7af259 (patch) | |
tree | c699452f0c3540b1516cbc133f6373c60028a77d /src | |
parent | 4a933f6bef63f6cc5031c3499f17d938351e7c7c (diff) | |
download | yelp-e5686905b4c9ace96bc065d893000dfa1d7af259.tar.gz |
help-converters/man/gnome-man2html.c: Remove setting of BGCOLOR when
* help-converters/info/main.c:
help-converters/man/gnome-man2html.c:
Remove setting of BGCOLOR when writing HTML body tag.
(bug #90655)
Diffstat (limited to 'src')
-rw-r--r-- | src/info2html/main.c | 4 | ||||
-rw-r--r-- | src/man2html/yelp-man2html.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/info2html/main.c b/src/info2html/main.c index 26b2497e..9fafcb72 100644 --- a/src/info2html/main.c +++ b/src/info2html/main.c @@ -150,7 +150,7 @@ main(int argc, const char **argv) } if(i >= ndirs) { printf ("<HTML><HEAD><TITLE>Document not found</TITLE>\n" - "</HEAD><BODY BGCOLOR=\"#FFFFFF\">The info document \"%s\" could not be found. It may have been removed from your system.\n" + "</HEAD><BODY>The info document \"%s\" could not be found. It may have been removed from your system.\n" "</BODY></HTML>\n", args[0]); return 2; } @@ -216,7 +216,7 @@ main(int argc, const char **argv) work_line_number = 0; /* hack, just send to stdout for now */ - fprintf(stdout, "<HTML><BODY BGCOLOR=\"#ffffff\">\n"); + fprintf(stdout, "<HTML><BODY>\n"); /* big loop to identify sections of info files */ /* NEW PLAN - format on the fly */ diff --git a/src/man2html/yelp-man2html.c b/src/man2html/yelp-man2html.c index 876614a3..c305773a 100644 --- a/src/man2html/yelp-man2html.c +++ b/src/man2html/yelp-man2html.c @@ -2581,7 +2581,7 @@ static char out_html("<HTML><HEAD><TITLE>" "Manpage of "); out_html(wordlist[0]); - out_html("</TITLE>\n</HEAD><BODY BGCOLOR=\"#ffffff\">" + out_html("</TITLE>\n</HEAD><BODY>" "\n<H1>"); out_html(wordlist[0]); out_html("</H1>\nSection: "); |