Changeset 66
- Timestamp:
- 12/01/06 11:20:37 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/stephenson-link_scoring/lib/HoneyClient/Agent/Driver/Browser.pm
r65 r66 955 955 my @good_words = split /,/, $self->goodwords; 956 956 my @bad_words = split /,/, $self->badwords; 957 print "good words: [@good_words]\n";958 print "bad words: [@bad_words]\n";959 957 960 958 # Use LWP::UserAgent to get the desired $args{'url'} and associated content … … 1000 998 # and we will not perform any of the following code 1001 999 if ($content) { 1000 print "Calling scorelinks\n"; 1002 1001 %scored_links = _scoreLinks($base, @good_words, $content, @bad_words); 1003 1002 } … … 1269 1268 my $url; 1270 1269 open(FILEH,">>link_scores.txt") || die("Cannot Open File"); 1270 1271 print "Inside score function: [@good] [@bad]\n"; 1271 1272 1272 1273 if (!$content) {
