X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lib%2FCGI%2FMaypole.pm;h=88abc3cebf7218ed1f8c419937834ca04c96d5bd;hb=271fd90b8a1b9f843853601a75a1334407ff87c4;hp=b937d8279a6774e58edf5f99ae0aa1c2fd1ed804;hpb=9b27a09c3eefdad91ae3da125ea5dc71d08ed662;p=maypole.git diff --git a/lib/CGI/Maypole.pm b/lib/CGI/Maypole.pm index b937d82..88abc3c 100644 --- a/lib/CGI/Maypole.pm +++ b/lib/CGI/Maypole.pm @@ -3,7 +3,9 @@ use base 'Maypole'; use strict; use warnings; -our $VERSION = "0.3"; +use CGI::Simple; + +our $VERSION = '2.05'; sub run { my $self = shift; @@ -11,7 +13,6 @@ sub run { } sub get_request { - require CGI::Simple; shift->{cgi} = CGI::Simple->new(); } @@ -20,6 +21,7 @@ sub parse_location { $self->{path} = $self->{cgi}->url( -absolute => 1, -path_info => 1 ); my $loc = $self->{cgi}->url( -absolute => 1 ); no warnings 'uninitialized'; + $self->{path} .= '/' if $self->{path} eq $loc; $self->{path} =~ s/^($loc)?\///; $self->parse_path; $self->parse_args; @@ -30,7 +32,7 @@ sub parse_args { my (%vars) = $self->{cgi}->Vars; while ( my ( $key, $value ) = each %vars ) { my @values = split "\0", $value; - $vars{$key} = @values == 1 ? $values[0] : \@values; + $vars{$key} = @values <= 1 ? $values[0] : \@values; } $self->{params} = {%vars}; $self->{query} = {%vars}; @@ -38,10 +40,15 @@ sub parse_args { sub send_output { my $r = shift; + my %processed = map { "-".$_,$r->{extra_headers}{$_} } + keys %{$r->{extra_headers}}; print $r->{cgi}->header( -type => $r->{content_type}, - -charset => $r->{document_encoding}, - -content_length => length $r->{output}, + -charset => $r->{document_encoding}, + -content_length => do { use bytes; length $r->{output} }, + %processed + ? %processed + : {} ); print $r->{output}; } @@ -60,10 +67,11 @@ CGI::Maypole - CGI-based front-end to Maypole =head1 SYNOPSIS package BeerDB; - use base 'CGI::Maypole; + 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]]); + BeerDB->config->template_root("/var/www/beerdb/"); # Now set up your database: # has-a relationships # untaint columns @@ -71,17 +79,49 @@ CGI::Maypole - CGI-based front-end to Maypole 1; ## example beer.cgi: - + #!/usr/bin/perl -w use strict; use BeerDB; BeerDB->run(); +Now to access the beer database, type this URL into your browser: +http://your.site/cgi-bin/beer.cgi/frontpage + =head1 DESCRIPTION This is a handler for Maypole which will use the CGI instead of Apache's C 1.x. This handler can also be used for Apache 2.0. +=head1 METHODS + +=over + +=item run + +Call this from your CGI script to start the Maypole application. + +=back + +=head1 Implementation + +This class overrides a set of methods in the base Maypole class to provide it's +functionality. See L for these: + +=over + +=item get_request + +=item get_template_root + +=item parse_args + +=item parse_location + +=item send_output + +=back + =head1 AUTHORS Dave Ranney C