RE: Insecure dependency in glob ... with -T switch

2005-01-16 Thread David Gilden
I thought this would do it, but I am at stopping point: #!/usr/bin/perl -wT my @filesToRemove = map {$_ =~ /^(\w[\w.-]*)/} <*>; Still getting : Insecure dependency in glob while running with -T switch What can I do still have this functionally and satisfy 'tainting' Thanks, Dave tel: 817-

Insecure dependency in glob while running with -T switch

2005-01-16 Thread David Gilden
Last question here, #!/usr/bin/perl -wT Snip ... my @filesToRemove = <*>; The line above is causing: Insecure dependency in glob while running with -T switch What can I do still have this functionally and satisfy 'tainting' Thanks, Dave tel: 817-741-2327 fax: 972-916-3451 (kora

SWITCH / CASE statements

2005-01-16 Thread David Gilden
Quick question here for the PERL gurus! What should be the order for these two statements? exit; last switch; i.e is this correct? Thanks!! Dave -- Ft. Worth __CODE__ SWITCH: { if ($action =~ /Update/) { print redirect("./import_clean_csv.php");

Re: print $q->p(with CSS)

2005-01-16 Thread Ovid
Hi David, > Is it possible to get CGI.pm to print class="myclass">text... Yes. If the first argument is a hashref, it will use the name/value pairs as tag attributes. print $q->p({class=>"myclass"}, "text..."); > I also need to print out the one these as well: > > > but it has

print $q->p(with CSS)

2005-01-16 Thread David Gilden
Happy New year out there, Is it possible to get CGI.pm to print text... I also need to print out the one these as well: but it has to be in the of the starting HTML? -- and I would like it before the and after the Is any of this possible and would be the correct syntax for this? Belo

RE: Extracting links.

2005-01-16 Thread Charles K. Clarkson
Sara <[EMAIL PROTECTED]> wrote: : I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine : with Active State Perl 5.0.6 Kindly help. : While Randy already addressed using HTML::LinkExtractor to retrieve links, you should also hop over to ActiveS

Re: Extracting links.

2005-01-16 Thread Randy W. Sims
Sara wrote: I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine with Active State Perl 5.0.6 Kindly help. # CODE START my @array = qq| http://www.mydomain.com";>http://www.mydomain.com/images/logo2.gif";> |; #ex

Extracting links.

2005-01-16 Thread Sara
I am trying to extract links along with HTML tags from a list, but it's not working on my XP machine with Active State Perl 5.0.6 Kindly help. # CODE START my @array = qq| http://www.mydomain.com";>http://www.mydomain.com/images/logo2.gif";> |; #extract LINK