Changeset 66

Show
Ignore:
Timestamp:
12/01/06 11:20:37 (2 years ago)
Author:
stephenson
Message:

Testing Browser.pm

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/stephenson-link_scoring/lib/HoneyClient/Agent/Driver/Browser.pm

    r65 r66  
    955955    my @good_words = split /,/, $self->goodwords; 
    956956    my @bad_words = split /,/, $self->badwords; 
    957     print "good words: [@good_words]\n"; 
    958     print "bad words: [@bad_words]\n"; 
    959957 
    960958    # Use LWP::UserAgent to get the desired $args{'url'} and associated content 
     
    1000998    # and we will not perform any of the following code 
    1001999    if ($content) { 
     1000        print "Calling scorelinks\n"; 
    10021001        %scored_links = _scoreLinks($base, @good_words, $content, @bad_words); 
    10031002    } 
     
    12691268    my $url; 
    12701269    open(FILEH,">>link_scores.txt") || die("Cannot Open File"); 
     1270 
     1271    print "Inside score function: [@good] [@bad]\n"; 
    12711272 
    12721273    if (!$content) {