X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/b4a18168323d91c911689ae9a9cddb2b7ab51997..59507c0a5e5507868ebf6db407219da3f17c8ed9:/modules/Output.pm?ds=sidebyside diff --git a/modules/Output.pm b/modules/Output.pm index 9ef361c..c9b6525 100644 --- a/modules/Output.pm +++ b/modules/Output.pm @@ -1,3 +1,4 @@ + package Output; # @@ -6,7 +7,15 @@ package Output; # HTML generating routines # # Author: Patrick Canterino -# Last modified: 2005-04-22 +# Last modified: 2005-05-10 +# +# Copyright (C) 1999-2000 Roland Bluethgen, Frank Schoenmann +# Copyright (C) 2003-2009 Patrick Canterino +# All Rights Reserved. +# +# This file can be distributed and/or modified under the terms of +# of the Artistic License 1.0 (see also the LICENSE file found at +# the top level of the Dev-Editor distribution). # use strict; @@ -60,9 +69,10 @@ sub error($;$$) $tpl->read_file($tpl_error); $tpl->fillin('ERROR',$message); - $tpl->fillin('BACK',$path); - $tpl->fillin('BACK_URL',escape($path)); - $tpl->fillin('SCRIPT',encode_html($ENV{'SCRIPT_NAME'})); + + $tpl->set_var('BACK',encode_html($path)); + $tpl->set_var('BACK_URL',escape($path)); + $tpl->set_var('SCRIPT',encode_html($ENV{'SCRIPT_NAME'})); $tpl->parse_if_block('dir',defined $path); @@ -70,10 +80,12 @@ sub error($;$$) { while(my ($key,$value) = each(%$vars)) { - $tpl->fillin($key,$value); + $tpl->set_var($key,$value); } } + $tpl->parse; + my $output = header(-type => 'text/html'); $output .= $tpl->get_template;