Attached is a small one line patch, that should address the issue raised
in this email a few months ago:

http://sourceforge.net/mailarchive/message.php?msg_id=4006305

It adds the TITLE attribute to the node icons (seen in the cluster view)
so new browsers, like mozilla, that correctly ignore the ALT attribute
will still show the hostname tooltips.

~Jason


-- 
/------------------------------------------------------------------\
|  Jason A. Smith                          Email:  [EMAIL PROTECTED] |
|  Atlas Computing Facility, Bldg. 510M    Phone:  (631)344-4226   |
|  Brookhaven National Lab, P.O. Box 5000  Fax:    (631)344-7616   |
|  Upton, NY 11973-5000                                            |
\------------------------------------------------------------------/
diff -uNr ganglia-webfrontend-2.5.3-php.patch/functions.php ganglia-webfrontend-2.5.3/functions.php
--- ganglia-webfrontend-2.5.3-dist/functions.php	Wed Mar 26 13:10:43 2003
+++ ganglia-webfrontend-2.5.3/functions.php	Fri Apr 18 11:00:48 2003
@@ -265,7 +265,7 @@
    $cluster_url = rawurlencode($cluster);
    $host_url = rawurlencode($host);
    $str = "<A HREF=\"./?c=$cluster_url&h=$host_url&$get_metric_string\">";
-   $str.= "<IMG SRC=\"$image\" HEIGHT=\"60\" WIDTH=\"30\" ALT=\"$host\" BORDER=\"0\"></A>";
+   $str.= "<IMG SRC=\"$image\" HEIGHT=\"60\" WIDTH=\"30\" ALT=\"$host\" TITLE=\"$host\" BORDER=\"0\"></A>";
    return $str;
 }
 

Reply via email to