--- NEWS 2001/05/11 22:04:53 1.3 +++ NEWS 2001/09/04 23:11:56 1.5 @@ -1,3 +1,11 @@ +New in version 1.3: + +- new blue template -- use logo with white background with it, + enter following lines in infos.txt to activate it: + template=../PLies/blue + cssStandard=../PLies/css/blue.css +- check for open/close tag matches in each slide + New in version 1.2: - title slide template (if you use only title [

] and sub-title [

] on @@ -7,34 +15,5 @@ Requiraments: -- Text::FastTemplate > 0.9 or apply following patch to version 0.9: +- Text::FastTemplate >= 0.91 (version 0.9 will *NOT* work with pack!) ---- FastTemplate.pm.0.9 Fri May 11 23:56:18 2001 -+++ FastTemplate.pm Fri May 11 23:57:36 2001 -@@ -7,7 +7,7 @@ - use Carp; - use File::Basename qw/ dirname /; - --$VERSION = '0.9'; -+$VERSION = '0.91'; - - # template tokens / block types - use constant BASIC => 0; -@@ -507,7 +507,7 @@ - } - elsif ( $blocks->[$block_index]->[BLOCK_TYPE] == IF ) - { -- ( my $expression= $macro ) =~ s/##(\w+)##/\$$1/g; -+ ( my $expression= $macro ) =~ s/##(\w+)##/\${$1}/g; - push @block_code, - sprintf( "\tif ( %s ) {\n", $expression), - $self->_generate_block_code( $block_index, $blocks, $template), -@@ -535,7 +535,7 @@ - else - { - $b =~ s/([@\$"\\])/\\$1/g; -- $b =~ s/##(\w+?)##/\$$1/g; -+ $b =~ s/##(\w+?)##/\${$1}/g; - push @block_code, "\t\t\"$b\\n\"" . ( ref $z || ( $i == $#$code ) ? ";\n" : ".\n" ); - } - };