Randy Smith | 2 Sep 2005 18:03
Picon

extensions - New directory

Update of /cvsroot/vuser/extensions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16448/extensions

Log Message:
Directory /cvsroot/vuser/extensions added to the repository

-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
Randy Smith | 2 Sep 2005 18:04
Picon

CVSROOT modules,1.3,1.4

Update of /cvsroot/vuser/CVSROOT
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16849/CVSROOT

Modified Files:
	modules 
Log Message:
add extensions module for "non-core" extensions that may still be useful to others

Index: modules
===================================================================
RCS file: /cvsroot/vuser/CVSROOT/modules,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** modules	23 Dec 2004 16:14:33 -0000	1.3
--- modules	2 Sep 2005 16:04:13 -0000	1.4
***************
*** 28,29 ****
--- 28,30 ----
  vuser vuser
  vuser-ng vuser-ng
+ extensions extensions

-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
Randy Smith | 6 Sep 2005 17:43
Picon

vuser-ng/sbin vsoapc,1.4,1.5 vsoapd,1.5,1.6 vuser,1.3,1.4

Update of /cvsroot/vuser/vuser-ng/sbin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19161/sbin

Modified Files:
	vsoapc vsoapd vuser 
Log Message:
Add $Bin/../vuser to lib paths

Index: vsoapc
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/sbin/vsoapc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** vsoapc	2 Jul 2005 20:19:09 -0000	1.4
--- vsoapc	6 Sep 2005 15:43:53 -0000	1.5
***************
*** 34,37 ****
--- 34,38 ----
  		     "$FindBin::Bin/..",
                       "$FindBin::Bin/vuser",
+                      "$FindBin::Bin/../vuser",
                       "$FindBin::Bin/../etc/vuser"
                       );

Index: vuser
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/sbin/vuser,v
retrieving revision 1.3
retrieving revision 1.4
(Continue reading)

Randy Smith | 6 Sep 2005 21:35
Picon

vuser-ng/lib/VUser ResultSet.pm,1.4,1.5

Update of /cvsroot/vuser/vuser-ng/lib/VUser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19127/lib/VUser

Modified Files:
	ResultSet.pm 
Log Message:
Sort by first element by default

Index: ResultSet.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/ResultSet.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ResultSet.pm	26 Aug 2005 17:02:09 -0000	1.4
--- ResultSet.pm	6 Sep 2005 19:35:40 -0000	1.5
***************
*** 63,66 ****
--- 63,68 ----
      my $sort_order = $options{sort_order} || $self->{sort_order};

+     $order_by = $self->{meta}[0]->name unless defined $order_by;
+ 
      $order_by = undef if not defined $self->{colmap}{$order_by};
      $sort_order = 'asc' if ($sort_order ne 'asc' or $sort_order ne 'des');

-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
(Continue reading)

Randy Smith | 6 Sep 2005 21:37
Picon

vuser-ng/sbin vuser,1.4,1.5

Update of /cvsroot/vuser/vuser-ng/sbin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19483/sbin

Modified Files:
	vuser 
Log Message:
Add config option to vuser to show a retirned result set

Index: vuser
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/sbin/vuser,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** vuser	6 Sep 2005 15:43:53 -0000	1.4
--- vuser	6 Sep 2005 19:37:07 -0000	1.5
***************
*** 14,17 ****
--- 14,21 ----
  use Config::IniFiles;

+ use VUser::ResultSet;
+ use VUser::Meta;
+ use VUser::ExtLib qw(strip_ws check_bool);
+ 
  our $REVISION = (split (' ', '$Revision$'))[1];
  our $VERSION = '0.1.0';
***************
*** 72,79 ****

(Continue reading)

Randy Smith | 10 Sep 2005 00:53
Picon

vuser-ng/lib/VUser ExtHandler.pm,1.31,1.32

Update of /cvsroot/vuser/vuser-ng/lib/VUser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27270/lib/VUser

Modified Files:
	ExtHandler.pm 
Log Message:
Change default priority to a constant for easier changing and reference from other places.

Index: ExtHandler.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/ExtHandler.pm,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** ExtHandler.pm	2 Jul 2005 21:04:04 -0000	1.31
--- ExtHandler.pm	9 Sep 2005 22:53:44 -0000	1.32
***************
*** 17,20 ****
--- 17,22 ----
  #use Regexp::Common qw /number RE_ALL/;

+ sub DEFAULT_PRIORITY { 10; }
+ 
  sub new
  {
***************
*** 241,245 ****
      }

!     $priority = 10 unless defined $priority; # Default priority is 10.
(Continue reading)

Randy Smith | 12 Sep 2005 19:17
Picon

vuser-ng/lib/VUser ExtHandler.pm,1.32,1.33

Update of /cvsroot/vuser/vuser-ng/lib/VUser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19306/lib/VUser

Modified Files:
	ExtHandler.pm 
Log Message:
- Fix minor issue with priority handling in ExtHandler
- Fix bug in vuser where the debug setting in vuser.conf was not used.

Index: ExtHandler.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/ExtHandler.pm,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** ExtHandler.pm	9 Sep 2005 22:53:44 -0000	1.32
--- ExtHandler.pm	12 Sep 2005 17:17:23 -0000	1.33
***************
*** 243,247 ****
      }

!     $priority = DEFAULT_PRIORITY unless defined $priority; # Default priority is 10.
      if (defined $self->{keywords}{$keyword}{$action}{tasks}[$priority]) {
  	push  <at> {$self->{keywords}{$keyword}{$action}{tasks}[$priority]}, $handler;
--- 243,254 ----
      }

!     # Default priority is 10.
!     $priority = DEFAULT_PRIORITY unless defined $priority;
!     if ($priority =~ /^[+-]\s*\d+/) {
(Continue reading)

Randy Smith | 12 Sep 2005 19:17
Picon

vuser-ng/sbin vuser,1.5,1.6

Update of /cvsroot/vuser/vuser-ng/sbin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19306/sbin

Modified Files:
	vuser 
Log Message:
- Fix minor issue with priority handling in ExtHandler
- Fix bug in vuser where the debug setting in vuser.conf was not used.

Index: vuser
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/sbin/vuser,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** vuser	6 Sep 2005 19:37:07 -0000	1.5
--- vuser	12 Sep 2005 17:17:23 -0000	1.6
***************
*** 61,64 ****
--- 61,66 ----
  tie %cfg, 'Config::IniFiles', (-file => $config_file);

+ $DEBUG = check_bool $cfg{'vuser'}{'debug'};
+ 
  my $eh = new VUser::ExtHandler (\%cfg);

-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
(Continue reading)

Randy Smith | 15 Sep 2005 19:05
Picon

vuser-ng/lib/VUser Meta.pm,1.2,1.3 ResultSet.pm,1.5,1.6

Update of /cvsroot/vuser/vuser-ng/lib/VUser
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22647/lib/VUser

Modified Files:
	Meta.pm ResultSet.pm 
Log Message:
Documentation updates

Index: ResultSet.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/ResultSet.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ResultSet.pm	6 Sep 2005 19:35:40 -0000	1.5
--- ResultSet.pm	15 Sep 2005 17:05:18 -0000	1.6
***************
*** 300,303 ****
--- 300,308 ----
   add_data({meta1->name => value1, meta2->name => value2, ...})

+ =head1 BUGS
+ 
+ There are currently no checks to verify that the data added with add_data()
+ matches the data type specified with add_meta().
+ 
  =head1 AUTHOR

Index: Meta.pm
===================================================================
(Continue reading)

Randy Smith | 16 Sep 2005 23:04
Picon

VUser-Install - New directory

Update of /cvsroot/vuser/VUser-Install
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16682/VUser-Install

Log Message:
Directory /cvsroot/vuser/VUser-Install added to the repository

-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42" plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php

Gmane