Changeset 808

Show
Ignore:
Timestamp:
08/30/07 15:07:26 (1 year ago)
Author:
kindlund
Message:

sva: merging branch using tags svn+ssh://kindlund@www.honeyclient.org/home/svn/honeyclient/honeyclient/tags/exp/UP1-kindlund-dynamic_updates and svn+ssh://kindlund@www.honeyclient.org/home/svn/honeyclient/honeyclient/trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 0.98 
     400.99 
    4141 
    4242=head1 SYNOPSIS 
     
    7979 
    8080    # Set our package version. 
    81     $VERSION = 0.98
     81    $VERSION = 0.99
    8282 
    8383    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::Agent::Driver version 0.98
     40This documentation refers to HoneyClient::Agent::Driver version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    120120 
    121121    # Set our package version. 
    122     $VERSION = 0.98
     122    $VERSION = 0.99
    123123 
    124124    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser.pm

    r791 r808  
    4040=head1 VERSION 
    4141 
    42 This documentation refers to HoneyClient::Agent::Driver::Browser version 0.98
     42This documentation refers to HoneyClient::Agent::Driver::Browser version 0.99
    4343 
    4444=head1 SYNOPSIS 
     
    161161 
    162162    # Set our package version. 
    163     $VERSION = 0.98
     163    $VERSION = 0.99
    164164 
    165165    # Define inherited modules. 
     
    11041104     
    11051105    # Check our internal relative links counter. 
    1106     if ($self->_remaining_number_of_relative_links_to_visit == 1) { 
     1106    if (($self->_remaining_number_of_relative_links_to_visit == 0) || 
     1107        ($self->_remaining_number_of_relative_links_to_visit == 1)) { 
    11071108 
    11081109        # XXX: Do we need this message in here? 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/FF.pm

    r791 r808  
    4141=head1 VERSION 
    4242 
    43 This documentation refers to HoneyClient::Agent::Driver::Browser::FF version 0.98
     43This documentation refers to HoneyClient::Agent::Driver::Browser::FF version 0.99
    4444 
    4545=head1 SYNOPSIS 
     
    160160 
    161161    # Set our package version. 
    162     $VERSION = 0.98
     162    $VERSION = 0.99
    163163 
    164164    # Define inherited modules. 
     
    461461    # Sanity check. 
    462462    if (!defined($status)) { 
    463         $LOG->error("Error: Unable to spawn a new browser - " . $^E . "."); 
    464         Carp::croak "Error: Unable to spawn a new browser - " . $^E . ".\n"; 
     463        $LOG->error("Error: Unable to execute '" . $processExec . "'"); 
     464        Carp::croak "Error: Unable to execute '" . $processExec . "'\n"; 
    465465    } 
    466466 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Driver/Browser/IE.pm

    r791 r808  
    4141=head1 VERSION 
    4242 
    43 This documentation refers to HoneyClient::Agent::Driver::Browser::IE version 0.98
     43This documentation refers to HoneyClient::Agent::Driver::Browser::IE version 0.99
    4444 
    4545=head1 SYNOPSIS 
     
    160160 
    161161    # Set our package version. 
    162     $VERSION = 0.98
     162    $VERSION = 0.99
    163163 
    164164    # Define inherited modules. 
     
    438438    # Sanity check. 
    439439    if (!defined($status)) { 
    440         $LOG->error("Error: Unable to spawn a new browser - " . $^E . "."); 
    441         Carp::croak "Error: Unable to spawn a new browser - " . $^E . ".\n"; 
     440        $LOG->error("Error: Unable to execute '" . $processExec . "'"); 
     441        Carp::croak "Error: Unable to execute '" . $processExec . "'\n"; 
    442442    } 
    443443 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::Agent::Integrity version 0.98
     40This documentation refers to HoneyClient::Agent::Integrity version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    198198 
    199199    # Set our package version. 
    200     $VERSION = 0.98
     200    $VERSION = 0.99
    201201 
    202202    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Filesystem.pm

    r791 r808  
    3737=head1 VERSION 
    3838 
    39 This documentation refers to HoneyClient::Agent::Integrity::Filesystem version 0.98
     39This documentation refers to HoneyClient::Agent::Integrity::Filesystem version 0.99
    4040 
    4141=head1 SYNOPSIS 
     
    145145 
    146146    # Set our package version. 
    147     $VERSION = 0.98
     147    $VERSION = 0.99
    148148 
    149149    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::Agent::Integrity::Registry version 0.98
     40This documentation refers to HoneyClient::Agent::Integrity::Registry version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    142142 
    143143    # Set our package version. 
    144     $VERSION = 0.98
     144    $VERSION = 0.99
    145145 
    146146    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.pm

    r791 r808  
    5555=head1 VERSION 
    5656 
    57 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.98
     57This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.99
    5858 
    5959=head1 SYNOPSIS 
     
    133133 
    134134    # Set our package version. 
    135     $VERSION = 0.98
     135    $VERSION = 0.99
    136136 
    137137    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Agent/Integrity/Registry/Parser.yp

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.98
     40This documentation refers to HoneyClient::Agent::Integrity::Registry::Parser version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    116116 
    117117    # Set our package version. 
    118     $VERSION = 0.98
     118    $VERSION = 0.99
    119119 
    120120    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/DB.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::DB version 0.98
     40This documentation refers to HoneyClient::DB version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    356356    our @EXPORT = qw(); 
    357357    our @EXPORT_OK; 
    358     our $VERSION = 0.98
     358    our $VERSION = 0.99
    359359 
    360360    my $database_version;     #  = $dbh->get_info(  18 ); # SQL_DBMS_VER 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager.pm

    r791 r808  
    3636=head1 VERSION 
    3737 
    38 This documentation refers to HoneyClient::Manager version 0.98
     38This documentation refers to HoneyClient::Manager version 0.99
    3939 
    4040=head1 SYNOPSIS 
     
    7373 
    7474    # Set our package version. 
    75     $VERSION = 0.98
     75    $VERSION = 0.99
    7676 
    7777    @ISA = qw(Exporter); 
     
    170170    # Include DB Utility Library 
    171171    # TODO: Include unit tests. 
    172     use HoneyClient::DB::Fingerprint; 
     172    require HoneyClient::DB::Fingerprint; 
    173173} 
    174174 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/FW.pm

    r791 r808  
    4141=head1 VERSION 
    4242 
    43 This documentation refers to HoneyClient::Manager::FW version 0.98
     43This documentation refers to HoneyClient::Manager::FW version 0.99
    4444 
    4545=head1 SYNOPSIS 
     
    315315 
    316316    # Set our package version. 
    317     $VERSION = 0.98
     317    $VERSION = 0.99
    318318 
    319319    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM.pm

    r791 r808  
    3939=head1 VERSION 
    4040 
    41 This documentation refers to HoneyClient::Manager:VM version 0.98
     41This documentation refers to HoneyClient::Manager:VM version 0.99
    4242 
    4343=head1 SYNOPSIS 
     
    320320 
    321321    # Set our package version. 
    322     $VERSION = 0.98
     322    $VERSION = 0.99
    323323 
    324324    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Manager/VM/Clone.pm

    r791 r808  
    3838=head1 VERSION 
    3939 
    40 This documentation refers to HoneyClient::Manager::VM::Clone version 0.98
     40This documentation refers to HoneyClient::Manager::VM::Clone version 0.99
    4141 
    4242=head1 SYNOPSIS 
     
    125125 
    126126    # Set our package version. 
    127     $VERSION = 0.98
     127    $VERSION = 0.99
    128128 
    129129    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/Config.pm

    r791 r808  
    3737=head1 VERSION 
    3838 
    39 This documentation refers to HoneyClient::Util::Config version 0.98
     39This documentation refers to HoneyClient::Util::Config version 0.99
    4040 
    4141=head1 SYNOPSIS 
     
    9696 
    9797    # Set our package version. 
    98     $VERSION = 0.98
     98    $VERSION = 0.99
    9999 
    100100    @ISA = qw(Exporter); 
  • honeyclient/branches/exp/kindlund-dynamic_updates/lib/HoneyClient/Util/SOAP.pm

    r791 r808  
    3737=head1 VERSION 
    3838 
    39 This documentation refers to HoneyClient::Util::SOAP version 0.98
     39This documentation refers to HoneyClient::Util::SOAP version 0.99
    4040 
    4141=head1 SYNOPSIS 
     
    130130 
    131131    # Set our package version. 
    132     $VERSION = 0.98
     132    $VERSION = 0.99
    133133 
    134134    @ISA = qw(Exporter);