Changeset 766

Show
Ignore:
Timestamp:
07/25/07 22:46:00 (1 year ago)
Author:
kindlund
Message:

Converted \t's to 4 spaces.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/LICENSE

    r13 r766  
    1            GNU GENERAL PUBLIC LICENSE 
    2               Version 2, June 1991 
     1            GNU GENERAL PUBLIC LICENSE 
     2               Version 2, June 1991 
    33 
    44 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 
     
    77 of this license document, but changing it is not allowed. 
    88 
    9                Preamble 
     9                Preamble 
    1010 
    1111  The licenses for most software are designed to take away your 
     
    5757modification follow. 
    5858 
    59            GNU GENERAL PUBLIC LICENSE 
     59            GNU GENERAL PUBLIC LICENSE 
    6060   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 
    6161 
     
    256256of promoting the sharing and reuse of software generally. 
    257257 
    258                NO WARRANTY 
     258                NO WARRANTY 
    259259 
    260260  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 
     
    278278POSSIBILITY OF SUCH DAMAGES. 
    279279 
    280             END OF TERMS AND CONDITIONS 
     280             END OF TERMS AND CONDITIONS 
  • honeyclient/trunk/etc/honeyclient.xml

    r754 r766  
    458458        <!-- HoneyClient::Manager::VM Options --> 
    459459        <VM> 
    460             <!-- TODO: Need to include logic to use this variable. --> 
    461460            <master_vm_config description="The full absolute path to the VM configuration file on the host system that will be used by all subsequent cloned VMs."> 
    462461                /vm/master-vms/Agent.Master-23/winXPPro.cfg 
  • honeyclient/trunk/lib/HoneyClient/Agent/Driver/ActiveContent/Flash.pm

    r690 r766  
    237237    } 
    238238 
    239    # Strip out all control characters and place each line as 
    240    # separate entry in an array. 
    241    my @bytecode = split(/[[:cntrl:]]+/, $code); 
     239    # Strip out all control characters and place each line as 
     240    # separate entry in an array. 
     241    my @bytecode = split(/[[:cntrl:]]+/, $code); 
    242242 
    243243    # Parse out lines that contain the getURL method (exclude any 
  • honeyclient/trunk/lib/HoneyClient/Agent/Driver/Browser/FF.pm

    r751 r766  
    155155BEGIN { 
    156156 
    157    # Defines which functions can be called externally. 
    158    require Exporter; 
    159    our ( @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION ); 
    160  
    161    # Set our package version. 
    162    $VERSION = 0.97; 
    163  
    164    # Define inherited modules. 
    165    use HoneyClient::Agent::Driver::Browser; 
    166  
    167    @ISA = qw(Exporter HoneyClient::Agent::Driver::Browser); 
    168  
    169    # Symbols to export automatically 
    170    # Note: Since this module is object-oriented, we do *NOT* export 
    171    # any functions other than "new" to call statically.  Each function 
    172    # for this module *must* be called as a method from a unique 
    173    # object instance. 
    174    @EXPORT = qw(); 
    175  
    176    # Items to export into callers namespace by default. Note: do not export 
    177    # names by default without a very good reason. Use EXPORT_OK instead. 
    178    # Do not simply export all your public functions/methods/constants. 
    179  
    180    # This allows declaration use HoneyClient::Agent::Driver::Browser::FF ':all'; 
    181    # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK 
    182    # will save memory. 
    183  
    184    # Note: Since this module is object-oriented, we do *NOT* export 
    185    # any functions other than "new" to call statically.  Each function 
    186    # for this module *must* be called as a method from a unique 
    187    # object instance. 
    188    %EXPORT_TAGS = ( 'all' => [qw()], ); 
    189  
    190    # Symbols to autoexport (when qw(:all) tag is used) 
    191    @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); 
    192  
    193    $SIG{PIPE} = 'IGNORE';    # Do not exit on broken pipes. 
     157    # Defines which functions can be called externally. 
     158    require Exporter; 
     159    our ( @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION ); 
     160 
     161    # Set our package version. 
     162    $VERSION = 0.97; 
     163 
     164    # Define inherited modules. 
     165    use HoneyClient::Agent::Driver::Browser; 
     166 
     167    @ISA = qw(Exporter HoneyClient::Agent::Driver::Browser); 
     168 
     169    # Symbols to export automatically 
     170    # Note: Since this module is object-oriented, we do *NOT* export 
     171    # any functions other than "new" to call statically.  Each function 
     172    # for this module *must* be called as a method from a unique 
     173    # object instance. 
     174    @EXPORT = qw(); 
     175 
     176    # Items to export into callers namespace by default. Note: do not export 
     177    # names by default without a very good reason. Use EXPORT_OK instead. 
     178    # Do not simply export all your public functions/methods/constants. 
     179 
     180    # This allows declaration use HoneyClient::Agent::Driver::Browser::FF ':all'; 
     181    # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK 
     182    # will save memory. 
     183 
     184    # Note: Since this module is object-oriented, we do *NOT* export 
     185    # any functions other than "new" to call statically.  Each function 
     186    # for this module *must* be called as a method from a unique 
     187    # object instance. 
     188    %EXPORT_TAGS = ( 'all' => [qw()], ); 
     189 
     190    # Symbols to autoexport (when qw(:all) tag is used) 
     191    @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); 
     192 
     193    $SIG{PIPE} = 'IGNORE';    # Do not exit on broken pipes. 
    194194} 
    195195our ( @EXPORT_OK, $VERSION ); 
     
    412412 
    413413    # Extract arguments. 
    414    my ($self, %args) = @_; 
     414    my ($self, %args) = @_; 
    415415 
    416416    # Sanity check: Make sure we've been fed an object. 
     
    432432    } 
    433433 
    434    # Drive the generic browser before opening with FF 
    435    $self = $self->SUPER::drive(%args); 
     434    # Drive the generic browser before opening with FF 
     435    $self = $self->SUPER::drive(%args); 
    436436     
    437437    # Sanity check: Make sure our next URL is defined. 
  • honeyclient/trunk/lib/HoneyClient/Agent/Driver/Browser/IE.pm

    r751 r766  
    155155BEGIN { 
    156156 
    157    # Defines which functions can be called externally. 
    158    require Exporter; 
    159    our ( @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION ); 
    160  
    161    # Set our package version. 
    162    $VERSION = 0.97; 
    163  
    164    # Define inherited modules. 
    165    use HoneyClient::Agent::Driver::Browser; 
    166  
    167    @ISA = qw(Exporter HoneyClient::Agent::Driver::Browser); 
    168  
    169    # Symbols to export automatically 
    170    # Note: Since this module is object-oriented, we do *NOT* export 
    171    # any functions other than "new" to call statically.  Each function 
    172    # for this module *must* be called as a method from a unique 
    173    # object instance. 
    174    @EXPORT = qw(); 
    175  
    176    # Items to export into callers namespace by default. Note: do not export 
    177    # names by default without a very good reason. Use EXPORT_OK instead. 
    178    # Do not simply export all your public functions/methods/constants. 
    179  
    180    # This allows declaration use HoneyClient::Agent::Driver::Browser::IE ':all'; 
    181    # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK 
    182    # will save memory. 
    183  
    184    # Note: Since this module is object-oriented, we do *NOT* export 
    185    # any functions other than "new" to call statically.  Each function 
    186    # for this module *must* be called as a method from a unique 
    187    # object instance. 
    188    %EXPORT_TAGS = ( 'all' => [qw()], ); 
    189  
    190    # Symbols to autoexport (when qw(:all) tag is used) 
    191    @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); 
    192  
    193    $SIG{PIPE} = 'IGNORE';    # Do not exit on broken pipes. 
     157    # Defines which functions can be called externally. 
     158    require Exporter; 
     159    our ( @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION ); 
     160 
     161    # Set our package version. 
     162    $VERSION = 0.97; 
     163 
     164    # Define inherited modules. 
     165    use HoneyClient::Agent::Driver::Browser; 
     166 
     167    @ISA = qw(Exporter HoneyClient::Agent::Driver::Browser); 
     168 
     169    # Symbols to export automatically 
     170    # Note: Since this module is object-oriented, we do *NOT* export 
     171    # any functions other than "new" to call statically.  Each function 
     172    # for this module *must* be called as a method from a unique 
     173    # object instance. 
     174    @EXPORT = qw(); 
     175 
     176    # Items to export into callers namespace by default. Note: do not export 
     177    # names by default without a very good reason. Use EXPORT_OK instead. 
     178    # Do not simply export all your public functions/methods/constants. 
     179 
     180    # This allows declaration use HoneyClient::Agent::Driver::Browser::IE ':all'; 
     181    # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK 
     182    # will save memory. 
     183 
     184    # Note: Since this module is object-oriented, we do *NOT* export 
     185    # any functions other than "new" to call statically.  Each function 
     186    # for this module *must* be called as a method from a unique 
     187    # object instance. 
     188    %EXPORT_TAGS = ( 'all' => [qw()], ); 
     189 
     190    # Symbols to autoexport (when qw(:all) tag is used) 
     191    @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); 
     192 
     193    $SIG{PIPE} = 'IGNORE';    # Do not exit on broken pipes. 
    194194} 
    195195our ( @EXPORT_OK, $VERSION ); 
     
    389389 
    390390    # Extract arguments. 
    391    my ($self, %args) = @_; 
     391    my ($self, %args) = @_; 
    392392 
    393393    # Sanity check: Make sure we've been fed an object. 
     
    409409    } 
    410410 
    411    # Drive the generic browser before opening with IE 
    412    $self = $self->SUPER::drive(%args); 
     411    # Drive the generic browser before opening with IE 
     412    $self = $self->SUPER::drive(%args); 
    413413     
    414414    # Sanity check: Make sure our next URL is defined.