Randy Smith | 26 Aug 2005 17:17
Picon

vuser-ng INSTALL,1.1,1.2

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

Modified Files:
	INSTALL 
Log Message:
Add comments about using PERL5LIB when setting PREFIX to something odd.

Index: INSTALL
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/INSTALL,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** INSTALL	1 Jun 2005 15:36:26 -0000	1.1
--- INSTALL	26 Aug 2005 15:17:34 -0000	1.2
***************
*** 28,29 ****
--- 28,37 ----

  The install script will create lib, share and sbin directories in PREFIX.
+ 
+ If you install in a PREFIX that is not included in perl's default library
+ paths, you will need to set PERL5LIB to include the new directory. For
+ example, if you set PREFIX=/opt, you might add this to your .profile (or
+ /etc/profile).
+ 
+ 	export PERL5LIB=/opt/lib/perl5/site_perl/
+ 

(Continue reading)

Randy Smith | 26 Aug 2005 17:29
Picon

vuser-ng soapclient.pl,1.5,NONE

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

Removed Files:
	soapclient.pl 
Log Message:
Remove obsolete soapclient.pl

--- soapclient.pl DELETED ---

-------------------------------------------------------
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 | 26 Aug 2005 18:09
Picon

vuser-ng/lib/VUser/email authlib.pm,1.1,1.2

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

Modified Files:
	authlib.pm 
Log Message:
Fix case issue with a couple of options

Index: authlib.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/email/authlib.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** authlib.pm	27 Jun 2005 20:57:47 -0000	1.1
--- authlib.pm	26 Aug 2005 16:09:43 -0000	1.2
***************
*** 66,71 ****
      $sql .= ", ". $self->cfg( 'uid_field' ) ." = " . $self->{_dbh}->quote($self->cfg('daemon_uid'));
      $sql .= ", ". $self->cfg( 'gid_field' ) ." = " . $self->{_dbh}->quote($self->cfg('daemon_gid'));
!     $sql .= ", ". $self->cfg( 'crypt_pwfield' ) ." = " . $self->{_dbh}->quote(crypt($password,
$password)) if $self->cfg('CRYPT_PWFIELD');
!     $sql .= ", ". $self->cfg( 'clear_pwfield' ) ." = " . $self->{_dbh}->quote($password) if $self->cfg('CLEAR_PWFIELD');
      $sql .= ", ". $self->cfg( 'home_field' ) ." = " . $self->{_dbh}->quote("$userdir");
      $sql .= ", ". $self->cfg( 'name_field' ) ." = " . $self->{_dbh}->quote($name);
--- 66,71 ----
      $sql .= ", ". $self->cfg( 'uid_field' ) ." = " . $self->{_dbh}->quote($self->cfg('daemon_uid'));
      $sql .= ", ". $self->cfg( 'gid_field' ) ." = " . $self->{_dbh}->quote($self->cfg('daemon_gid'));
!     $sql .= ", ". $self->cfg( 'crypt_pwfield' ) ." = " . $self->{_dbh}->quote(crypt($password,
$password)) if $self->cfg('crypt_pwfield');
(Continue reading)

Randy Smith | 26 Aug 2005 18:11
Picon

vuser-ng MANIFEST,1.9,1.10

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

Modified Files:
	MANIFEST 
Log Message:
Remove soapclient.pl from MANIFEST

Index: MANIFEST
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/MANIFEST,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** MANIFEST	28 Jun 2005 02:50:04 -0000	1.9
--- MANIFEST	26 Aug 2005 16:11:02 -0000	1.10
***************
*** 35,39 ****
  META.yml
  README
- soapclient.pl
  sbin/vsoapc
  sbin/vsoapd
--- 35,38 ----

-------------------------------------------------------
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
(Continue reading)

Randy Smith | 26 Aug 2005 18:21
Picon

vuser-ng/lib/VUser CORE.pm,1.18,1.19

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

Modified Files:
	CORE.pm 
Log Message:
Fix error with Version

Index: CORE.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/CORE.pm,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** CORE.pm	2 Jul 2005 21:04:04 -0000	1.18
--- CORE.pm	26 Aug 2005 16:21:26 -0000	1.19
***************
*** 58,63 ****
      my $opts = shift;

!     print ("Version: "0.1.0"\n");
!     return "0.1.0";
  }

--- 58,63 ----
      my $opts = shift;

!     print ("Version: $VERSION\n");
!     return $VERSION;
  }
(Continue reading)

Randy Smith | 26 Aug 2005 18:50
Picon

vuser-ng/lib/VUser CORE.pm,1.20,1.21

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

Modified Files:
	CORE.pm 
Log Message:
Replace unload()

Index: CORE.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/CORE.pm,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** CORE.pm	26 Aug 2005 16:48:43 -0000	1.20
--- CORE.pm	26 Aug 2005 16:50:17 -0000	1.21
***************
*** 158,161 ****
--- 158,163 ----
  }

+ sub unload { };
+ 
  1;

-------------------------------------------------------
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
(Continue reading)

Randy Smith | 26 Aug 2005 18:48
Picon

vuser-ng MANIFEST,1.10,1.11

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

Modified Files:
	MANIFEST 
Log Message:
Move Batch mode to it's own extension

Index: MANIFEST
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/MANIFEST,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** MANIFEST	26 Aug 2005 16:11:02 -0000	1.10
--- MANIFEST	26 Aug 2005 16:48:43 -0000	1.11
***************
*** 14,17 ****
--- 14,18 ----
  lib/VUser/bind.pm
  lib/VUser/bind/namedparser.pm
+ lib/VUser/Batch.pm
  lib/VUser/CORE.pm
  lib/VUser/Extension.pm

-------------------------------------------------------
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
(Continue reading)

Randy Smith | 26 Aug 2005 18:48
Picon

vuser-ng/lib/VUser Batch.pm,NONE,1.1 CORE.pm,1.19,1.20

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

Modified Files:
	CORE.pm 
Added Files:
	Batch.pm 
Log Message:
Move Batch mode to it's own extension

Index: CORE.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/CORE.pm,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** CORE.pm	26 Aug 2005 16:21:26 -0000	1.19
--- CORE.pm	26 Aug 2005 16:48:43 -0000	1.20
***************
*** 156,267 ****
      $eh->register_action('version', '');
      $eh->register_task('version', '', \&version);
- 
-     # Batch
-     $eh->register_keyword('batch', 'Run in batch mode.');
-     $eh->register_action('batch', '*', '');
-     $eh->register_option('batch', '*', 'flag', '=s', 0, 'touch this file when finished with the batch.');
-     $eh->register_task('batch', '*', \&batch_mode); 
- }
- 
(Continue reading)

Randy Smith | 26 Aug 2005 18:57
Picon

vuser-ng vuser.conf.dist,NONE,1.1 MANIFEST,1.11,1.12

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

Modified Files:
	MANIFEST 
Added Files:
	vuser.conf.dist 
Log Message:
Add sample config file

--- NEW FILE: vuser.conf.dist ---
[vuser]
# Enable debugging

# Space delimited list of extensions to load
# extensions = asterisk courier
extensions =

Index: MANIFEST
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/MANIFEST,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** MANIFEST	26 Aug 2005 16:48:43 -0000	1.11
--- MANIFEST	26 Aug 2005 16:57:34 -0000	1.12
***************
*** 39,40 ****
--- 39,41 ----
  sbin/vsoapd
(Continue reading)

Randy Smith | 26 Aug 2005 19:02
Picon

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

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

Modified Files:
	ACL.pm ResultSet.pm 
Log Message:
Fix perldoc errors

Index: ResultSet.pm
===================================================================
RCS file: /cvsroot/vuser/vuser-ng/lib/VUser/ResultSet.pm,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ResultSet.pm	27 Jun 2005 17:26:44 -0000	1.3
--- ResultSet.pm	26 Aug 2005 17:02:09 -0000	1.4
***************
*** 277,281 ****
   order_by($meta->name, asc|des); sets the sort order for results*()

! == Accumulator interface (do later)
   reset(); reset current pointer to the beginning of the list

--- 277,282 ----
   order_by($meta->name, asc|des); sets the sort order for results*()

! =head2 Accumulator interface (do later)
! 
   reset(); reset current pointer to the beginning of the list

(Continue reading)


Gmane