summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@imendio.com>2003-08-12 07:26:27 +0000
committerMikael Hallendal <hallski@src.gnome.org>2003-08-12 07:26:27 +0000
commit6f007a56aa4427af88b8318f126235993c81113c (patch)
tree9c42b66afccb125216bdd34ad0ee406aa3528133
parent08e6c0e780766b212ba55250cb5b373ff484fe33 (diff)
downloadyelp-6f007a56aa4427af88b8318f126235993c81113c.tar.gz
- Replace image for one with transparent background.
2003-08-12 Mikael Hallendal <micke@imendio.com> * data/images/bcg.png: - Replace image for one with transparent background. * src/yelp-view-toc.c: - Remove the spacer padding image - Both these should finally fix bug #89838. Patches from Shaun McCance.
-rw-r--r--ChangeLog8
-rwxr-xr-xdata/images/bcg.pngbin6579 -> 15304 bytes
-rw-r--r--src/yelp-view-toc.c24
3 files changed, 15 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 9324443c..ae2cb1df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2003-08-12 Mikael Hallendal <micke@imendio.com>
+
+ * data/images/bcg.png:
+ - Replace image for one with transparent background.
+ * src/yelp-view-toc.c:
+ - Remove the spacer padding image
+ - Both these should finally fix bug #89838. Patches from Shaun McCance.
+
2003-07-30 John Fleck <jfleck@inkstain.net>
* src/info2html/html.c
diff --git a/data/images/bcg.png b/data/images/bcg.png
index c901dfa7..4faf8e5a 100755
--- a/data/images/bcg.png
+++ b/data/images/bcg.png
Binary files differ
diff --git a/src/yelp-view-toc.c b/src/yelp-view-toc.c
index e3c6a1cb..fe085267 100644
--- a/src/yelp-view-toc.c
+++ b/src/yelp-view-toc.c
@@ -392,8 +392,7 @@ toc_man_emit (YelpViewTOC *view, GNode *first)
} while ((node = node->next) != NULL);
if (sub_started) {
- yelp_html_printf (priv->html_view,
- "<img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" height=\"10\">\n");
+ yelp_html_printf (priv->html_view, "<br>\n");
}
if (got_a_leaf) {
@@ -692,15 +691,11 @@ toc_page_start (YelpViewTOC *view, const gchar *title, const gchar *heading)
"border=\"10\" topmargin=\"0\" leftmargin=\"0\">\n<br><br>"
"<table width=\"100%%\" border=\"0\" cellpadding=\"4\" cellspacing=\"0\">\n"
"<tr valign=\"top\">\n"
- "<td width=\"75\">\n"
- "<img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" width=\"75\" height=\"1\">\n"
- "</td>\n"
+ "<td width=\"75\"></td>\n"
"<td colspan=\"2\"><h1>%s</h1></td>\n"
"</tr>\n"
"<tr valign=\"top\">\n"
- "<td width=\"75\">\n"
- "<img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" width=\"75\" height=\"1\">\n"
- "</td>\n",
+ "<td width=\"75\"></td>\n",
title,
heading);
}
@@ -719,15 +714,11 @@ toc_page_end (YelpViewTOC *view)
yelp_html_printf (priv->html_view,
"<tr>\n"
- "<td width=\"75\">\n"
- "<img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" width=\"75\" height=\"1\">\n"
- "</td>\n"
- "<td colspan=\"2\">\n"
- "<img src=\"file:" IMAGEDIR "/empty.png\" height=\"200\">\n"
- "</td>\n"
+ "<td width=\"75\"></td>\n"
+ "<td colspan=\"2\"></td>\n"
"<td></td></tr>\n"
"<tr valign=\"top\">\n"
- "<td width=\"75\"><img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" width=\"75\" height=\"1\"></td>\n"
+ "<td width=\"75\"></td>\n"
"</tr>\n"
"</table></body></html>\n",
str_gnome_is,
@@ -794,8 +785,7 @@ toc_scrollkeeper (YelpViewTOC *view, GNode *root)
}
if (sub_started) {
- yelp_html_printf (priv->html_view,
- "</ul><br><img alt=\"\" src=\"file:" IMAGEDIR "/empty.png\" height=\"10\"><br>\n");
+ yelp_html_printf (priv->html_view, "<br>\n");
}
if (got_a_leaf) {