#=============================================================================== # This just dumps out the results object. # Need to use a query string to do anything interesting # # $Id: TemplateDumper.pm,v 1.1.1.1 2002/09/20 19:47:30 adcroft Exp $ # #=============================================================================== package TemplateDumper; use strict; use Data::Dumper; sub show_template { my ( $class, $template_params, $results ) = @_; $Data::Dumper::Quotekeys = 0; print "Content-Type: text/plain\n\n", Dumper $template_params, Dumper $results; } 1;