X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FCGI%2FMaypole.pm;h=67cbf92f1c08e34325e1c767b5ffb845393632ff;hb=21e814818fb4a6e59e4615c2dd1320016a9dc6f8;hp=88995ef0401e84d18030bca8a56ddf840b3fb323;hpb=848b997e719a53b09936a570527c0f3b9366709b;p=maypole.git diff --git a/lib/CGI/Maypole.pm b/lib/CGI/Maypole.pm index 88995ef..67cbf92 100644 --- a/lib/CGI/Maypole.pm +++ b/lib/CGI/Maypole.pm @@ -6,45 +6,51 @@ use warnings; our $VERSION = "0.3"; sub run { - my $self = shift; - return $self->handler(); + my $self = shift; + return $self->handler(); } sub get_request { - require CGI::Simple; - shift->{cgi} = CGI::Simple->new(); + require CGI::Simple; + shift->{cgi} = CGI::Simple->new(); } sub parse_location { - my $self = shift; - $self->{path} = $self->{cgi}->url(-absolute=>1, -path_info=>1); - my $loc = $self->{cgi}->url(-absolute=>1); - no warnings 'uninitialized'; - $self->{path} =~ s/^($loc)?\///; - $self->parse_path; - $self->parse_args; + my $self = shift; + $self->{path} = $self->{cgi}->url( -absolute => 1, -path_info => 1 ); + my $loc = $self->{cgi}->url( -absolute => 1 ); + no warnings 'uninitialized'; + $self->{path} =~ s/^($loc)?\///; + $self->parse_path; + $self->parse_args; } sub parse_args { - my $self = shift; - $self->{params} = { $self->{cgi}->Vars }; - $self->{query} = { $self->{cgi}->Vars }; + my $self = shift; + my (%vars) = $self->{cgi}->Vars; + while ( my ( $key, $value ) = each %vars ) { + my @values = split "\0", $value; + $vars{$key} = @values == 1 ? $values[0] : \@values; + } + $self->{params} = {%vars}; + $self->{query} = {%vars}; } sub send_output { - my $r = shift; - print $r->{cgi}->header(-type => $r->{content_type}, - -content_length => length $r->{output}, - ); - print $r->{output}; + my $r = shift; + print $r->{cgi}->header( + -type => $r->{content_type}, + -charset => $r->{document_encoding}, + -content_length => length $r->{output}, + ); + print $r->{output}; } sub get_template_root { - my $r = shift; - $r->{cgi}->document_root . "/". $r->{cgi}->url(-relative=>1); + my $r = shift; + $r->{cgi}->document_root . "/" . $r->{cgi}->url( -relative => 1 ); } - 1; =head1 NAME @@ -56,8 +62,8 @@ CGI::Maypole - CGI-based front-end to Maypole package BeerDB; use base 'CGI::Maypole; BeerDB->setup("dbi:mysql:beerdb"); - BeerDB->config->{uri_base} = "http://your.site/cgi-bin/beer.cgi/"; - BeerDB->config->{display_tables} = [qw[beer brewery pub style]]; + BeerDB->config->uri_base("http://your.site/cgi-bin/beer.cgi/"); + BeerDB->config->display_tables([qw[beer brewery pub style]]); # Now set up your database: # has-a relationships # untaint columns