Re: Nature of this list

2011-04-26 Thread Raymond Wan
2011/4/25 Jenda Krynicky : > From: Raymond Wan >> After reading this, what came to mind is the problem of sexual and >> power harassment in the workplace, and maybe extending to other types >> of prejudices but maybe that is a stretch?  Often, the person being >> accused might start with, "I was j

how to test all files in array exist in the tar using Archive::Tar

2011-04-26 Thread Agnello George
I got a to go to check whether the files in @somefiles exist in $filltar my $fultar = 'something.tgz" @somefiles = qw(xsl/photos_videos.xsl xsl/research.xsl xsl/reviews.xsl xsl/sendemail.xsl xsl/slideshow.xsl xsl/slideshow_details.xsl ); $tar->add_files(@allfiles_excluded); $tar->write

Re: Nature of this list

2011-04-26 Thread Jenda Krynicky
From: Raymond Wan > 2011/4/25 Jenda Krynicky : > > From: Raymond Wan > >> After reading this, what came to mind is the problem of sexual and > >> power harassment in the workplace, and maybe extending to other types > >> of prejudices but maybe that is a stretch?  Often, the person being > >> acc

Need help to develop a log file in Perl

2011-04-26 Thread Khabza Mkhize
I have different Web based scripts when they run update SQL Data Base. Now I need to audit every update sql in my database and store all logs to data file. I dont mind about size of a file since I will create different file foreach item Audited. I will be writing to a file username, date/time, item

Re: Direct access of individual method documentation in a module

2011-04-26 Thread heyi xiao
Hello Jim and John, The information you provided is very helpful! Thanks a lot! One related question here. Sometimes I would like to check the source code of a particular method. But it can sometimes be hard to tell where a particular method is implemented due to the object-oriented programming a

Re: how to test all files in array exist in the tar using Archive::Tar

2011-04-26 Thread Jim Gibson
At 6:04 PM +0530 4/26/11, Agnello George wrote: I got a to go to check whether the files in @somefiles exist in $filltar $filltar or $fultar? my $fultar = 'something.tgz" @somefiles = qw(xsl/photos_videos.xsl xsl/research.xsl xsl/reviews.xsl xsl/sendemail.xsl xsl/slideshow.xsl xsl/slid

Re: Need help to develop a log file in Perl

2011-04-26 Thread Jim Gibson
At 4:49 PM +0200 4/26/11, Khabza Mkhize wrote: I have different Web based scripts when they run update SQL Data Base. Now I need to audit every update sql in my database and store all logs to data file. I dont mind about size of a file since I will create different file foreach item Audited. I wi

Re: Direct access of individual method documentation in a module

2011-04-26 Thread Jim Gibson
At 8:12 AM -0700 4/26/11, heyi xiao wrote: Hello Jim and John, The information you provided is very helpful! Thanks a lot! One related question here. Sometimes I would like to check the source code of a particular method. But it can sometimes be hard to tell where a particular method is impleme

Re: how to test all files in array exist in the tar using Archive::Tar

2011-04-26 Thread Agnello George
On Tue, Apr 26, 2011 at 9:04 PM, Jim Gibson wrote: > At 6:04 PM +0530 4/26/11, Agnello George wrote: >> >> I got a  to go to check whether  the files in  @somefiles  exist  in >> $filltar > > $filltar or $fultar? > >> my $fultar = 'something.tgz" >> >> @somefiles  = qw(xsl/photos_videos.xsl >> xsl

Re: Need help to develop a log file in Perl

2011-04-26 Thread Bob goolsby
Mornin' -- You might check Log::Log4perl on CPAN. It will most likely do what you want might out of the box (the Easy Mode) and will make your life a lot easier by taking care of such 'trivia' as time-stamps, severity-levels, etc. B On Tue, Apr 26, 2011 at 7:49 AM, Khabza Mkhize wrote: > I