X-Git-Url: http://erislabs.net/gitweb/?p=libwww-opensearch-perl.git;a=blobdiff_plain;f=lib%2FWWW%2FOpenSearch%2FUrl.pm;h=7c04b821b08cdd3bc09edd01372309dbfc6042ed;hp=320c1f4cd3654cb99a99e0e6d8f0abcda2a97a1f;hb=a075f6895864bf1851d0526b64ca2e4b5ba118da;hpb=e6583e346fb587eda90892a92b7f34be0a940900 diff --git a/lib/WWW/OpenSearch/Url.pm b/lib/WWW/OpenSearch/Url.pm index 320c1f4..7c04b82 100644 --- a/lib/WWW/OpenSearch/Url.pm +++ b/lib/WWW/OpenSearch/Url.pm @@ -61,32 +61,32 @@ it under the same terms as Perl itself. =cut sub new { - my( $class, %options ) = @_; - + my ( $class, %options ) = @_; + $options{ method } ||= 'GET'; $options{ template } = URI::Template->new( $options{ template } ); - + my $self = $class->SUPER::new( \%options ); return $self; } sub prepare_query { - my( $self, $params ) = @_; + my ( $self, $params ) = @_; my $tmpl = $self->template; - - for( qw( startIndex startPage ) ) { + + for ( qw( startIndex startPage ) ) { $params->{ $_ } = 1 if !defined $params->{ $_ }; } - $params->{ language } ||= '*'; + $params->{ language } ||= '*'; $params->{ outputEncoding } ||= 'UTF-8'; - $params->{ inputEncoding } ||= 'UTF-8'; - + $params->{ inputEncoding } ||= 'UTF-8'; + # fill the uri template my $url = $tmpl->process( %$params ); # attempt to handle POST - if( $self->method eq 'post' ) { + if ( $self->method eq 'post' ) { my $post = $self->params; for my $key ( keys %$post ) { $post->{ $key } =~ s/{(.+)}/$params->{ $1 } || ''/eg; @@ -94,7 +94,7 @@ sub prepare_query { return $url, [ %$post ]; } - + return $url; }