[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

jump-toline errors




Well, this is what I get for adding too many changes at once.  You might really want to wat a few more days for me to test on my own boxes some more, but at least this should fix the jump-to-line problem you were seeing in the most recent version.  The problem was that I didn't add the new $linkpop variable into the array in RankHits to match what webglimpse.cgi is now passing it...

===================================================================
RCS file: /disk2/cvs/wg2/lib/RankHits.pm,v
retrieving revision 1.6
diff -r1.6 RankHits.pm

291c292
< 	my ($file, $link, $title, $date, $line, $string);
---
> 	my ($file, $link, $linkpop, $title, $date, $line, $string);
305c306
<                 ($file,$link,$title,$date,$line,$string) = @{$lineref};
---
>                 ($file,$link,$linkpop,$title,$date,$line,$string) = @{$lineref};
307c308
<                 ($file,$link,$title,$date,$string) = @{$lineref};
---
>                 ($file,$link,$linkpop,$title,$date,$string) = @{$lineref};
328a330,332
> 
> 	# Just use link popularity as counted by makenh
> 	$LinkPop = $linkpop;


====================================================================

Thanks again for all the testing & fixes!

--G