Author: tlsa
Date: Thu Apr 12 07:34:33 2012
New Revision: 13852
URL:
http://source.netsurf-browser.org?rev=13852&view=rev
Log:
Make more readable and fix use double quotes for href attribute value.
Modified:
trunk/netsurf/content/fetchers/about.c
Modified: trunk/netsurf/content/fetchers/about.c
URL:
http://source.netsurf-browser.org/trunk/netsurf/content/fetchers/about.c?...
==============================================================================
--- trunk/netsurf/content/fetchers/about.c (original)
+++ trunk/netsurf/content/fetchers/about.c Thu Apr 12 07:34:33 2012
@@ -241,18 +241,28 @@
/* image cache entry table */
slen = snprintf(buffer, sizeof buffer,
"<table class=\"imagecachelist\">\n"
- "<tr><th>Entry</th>"
+ "<tr>"
+ "<th>Entry</th>"
"<th>Content Key</th>"
"<th>Redraw Count</th>"
"<th>Conversion Count</th>"
"<th>Last Redraw</th>"
"<th>Bitmap Age</th>"
"<th>Bitmap Size</th>"
- "<th>Source URL</th></tr>\n");
+ "<th>Source URL</th>"
+ "</tr>\n");
do {
res = image_cache_snentryf(buffer + slen, sizeof buffer - slen,
cent_loop,
- "<tr><td>%e</td><td>%k</td><td>%r</td><td>%c</td><td>%a</td><td>%g</td><td>%s</td><td><a
href='%U'>%U</a></td></tr>\n");
+ "<tr><td>%e</td>"
+ "<td>%k</td>"
+ "<td>%r</td>"
+ "<td>%c</td>"
+ "<td>%a</td>"
+ "<td>%g</td>"
+ "<td>%s</td>"
+ "<td><a href=\"%U\">%U</a></td>"
+ "</tr>\n");
if (res <= 0)
break; /* last option */