#!/usr/bin/perl -w use strict; use CGI::Pretty qw(:standard); use CGI::Carp qw(fatalsToBrowser); my %webobj = ( 'template' => param('template'), 'minscale' => param('minscale') ); print header, start_html; print< Web Object
Template
Minscale
#
## start web object
WEB
  TEMPLATE "$webobj{'template'}"
  MINSCALE $webobj{'minscale'}
END
# end web object
#
WEBOBJ print end_html;