Package: visitors Version: 0.7-1 Severity: wishlist Tags: patch a patch to add a title="number" attribute to the table cells on the combined maps
-- System Information: Debian Release: 4.0 APT prefers testing APT policy: (500, 'testing'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.19.1 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Versions of packages visitors depends on: ii libc6 2.3.6.ds1-13 GNU C Library: Shared libraries Versions of packages visitors recommends: ii graphviz 2.8-2.4 rich set of graph drawing tools -- no debconf information
--- visitors.c 2006-03-30 17:31:49.000000000 +0200 +++ visitors.c.new 2007-03-17 12:42:10.000000000 +0100 @@ -2279,7 +2279,7 @@ r = (0xAA*val)/max; g = (0xBB*val)/max; b = (0xFF*val)/max; - fprintf(fp, "<td style=\"background-color: #%02X%02X%02X;\"> </td>\n", r, g, b); + fprintf(fp, "<td style=\"background-color: #%02X%02X%02X;\" title=\"%d\"> </td>\n", r, g, b, val); } fprintf(fp, "</tr>\n"); }

