
pgollucci at p6m7g8
Jun 9, 2005, 1:59 PM
Post #2 of 2
(1885 views)
Permalink
|
|
Re: Syntax of UPLOAD function in Apache::TestRequest
[In reply to]
|
|
William McKee wrote: >I've come across what I think is a syntax error in the documentation of >Apache::TestRequest which I'd like to get a second opinion on. Here's >how the POD says to use the function: > > my $res = UPLOAD $uri, \@args, filename => $filename; > > $pass = \@args from above sub UPLOAD { my($url, $pass, $keep) = prepare(@_); sub prepare { my $url = shift; ........ ### \@_ = [$pass, $keep] because of the shift my($pass, $keep) = Apache::TestConfig::filter_args(\@_, \%wanted_args); sub filter_args { my($args, $wanted_args) = @_; ### $args = $pass or your \@args my @filter = @$args; ## this might be killing you... whats a Data::Dumper::Dumper \@args of your input args above if (ref($filter[0])) { push @pass, shift @filter; } hth -- END --------------------------------------------------------- What doesn't kill us, can only make us stronger. Nothing is impossible. Philip M. Gollucci (pgollucci [at] p6m7g8) 301.254.5198 Consultant / http://p6m7g8.net/Resume/resume.shtml Senior Developer / Liquidity Services, Inc. http://www.liquidityservicesinc.com --------------------------------------------------------------------- To unsubscribe, e-mail: docs-dev-unsubscribe [at] perl For additional commands, e-mail: docs-dev-help [at] perl
|