here is a small piece of code I wanted to share with you guys. I wanted to jump from mint to a whois tool to check the ip number and get more detailed infos (about the location for example).
So I modified the function generateInfoRow in mint.php at line 2907 as follows:
if ( preg_match("/^[0-9]{2,3}[.]{1,1}[0-9]{2,3}[.]{1,1}[0-9]{2,3}[.]{1,1}[0-9]{2,3}$/", $content) ) $html .=’ ‘<tr><th>”.$label.”</th><td>”.”<a style="color:white" href="http://whois.domaintools.com/’.$content.’" else $html .= ”<tr><th>”.$label.”</th><td>”.$content.”</td></tr>”;
this way the ip numbers in the crushes pane become clickable and point to whois.domaintools.com.
hope this can be usueful. It sure is to me…