# HTML generating routines
#
# Author: Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2004-11-26
+# Last modified: 2005-04-22
#
use strict;
use vars qw(@EXPORT);
-use CGI qw(header);
-use Tool;
+use CGI qw(header
+ escape);
-use HTML::Entities;
use Template;
+use Tool;
### Export ###
#
# Params: 1. Error message
# 2. Display a link to this path at the bottom of the page (optional)
+# Please use the unencoded form of the string!
# 3. Hash reference: Template variables (optional)
#
# Return: Formatted message (Scalar Reference)
my $tpl = new Template;
$tpl->read_file($tpl_error);
- $tpl->fillin("ERROR",$message);
- $tpl->fillin("BACK",$path);
- $tpl->fillin("SCRIPT",encode_entities($ENV{'SCRIPT_NAME'}));
+ $tpl->fillin('ERROR',$message);
+ $tpl->fillin('BACK',$path);
+ $tpl->fillin('BACK_URL',escape($path));
+ $tpl->fillin('SCRIPT',encode_html($ENV{'SCRIPT_NAME'}));
- $tpl->parse_if_block("dir",defined $path);
+ $tpl->parse_if_block('dir',defined $path);
- if(ref($vars) eq "HASH")
+ if(ref($vars) eq 'HASH')
{
while(my ($key,$value) = each(%$vars))
{
}
}
- my $output = header(-type => "text/html");
+ my $output = header(-type => 'text/html');
$output .= $tpl->get_template;
return \$output;