From 7c3ddf16758cafd766078b698476e456cd6bd6ff Mon Sep 17 00:00:00 2001 From: Christopher Hall Date: Tue, 7 Dec 2010 14:32:27 +1300 Subject: [PATCH] forgot to account for fullstop in pattern --- installer/html-template-to-template-toolkit.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/installer/html-template-to-template-toolkit.pl b/installer/html-template-to-template-toolkit.pl index 7cc2dbe172..6f3b53eff1 100755 --- a/installer/html-template-to-template-toolkit.pl +++ b/installer/html-template-to-template-toolkit.pl @@ -155,11 +155,11 @@ foreach my $file (@template_files) { $input_tmpl =~ s/\seq\s/ == /ig; $input_tmpl =~ s/HTML/html/ig; $input_tmpl =~ s/URL/url/ig; - $input_tmpl =~ s/\w*__first__/loop.first/ig; - $input_tmpl =~ s/\w*__last__/loop.last/ig; - $input_tmpl =~ s/\w*__odd__/loop.odd/ig; - $input_tmpl =~ s/\w*__even__/loop.even/ig; - $input_tmpl =~ s/\w*__counter__/loop.count/ig; #loop.count gives the range (0..max) whereas loop.index gives the range (1..max+1), __counter__ is unknown + $input_tmpl =~ s/\w*\.__first__/loop.first/ig; + $input_tmpl =~ s/\w*\.__last__/loop.last/ig; + $input_tmpl =~ s/\w*\.__odd__/loop.odd/ig; + $input_tmpl =~ s/\w*\.__even__/loop.even/ig; + $input_tmpl =~ s/\w*\.__counter__/loop.count/ig; #loop.count gives the range (0..max) whereas loop.index gives the range (1..max+1), __counter__ is unknown #hack to get around lack of javascript filter $input_tmpl =~ s/\|JS/|replace("'", "\\'") |replace('"', '\\"') |replace('\\n', '\\\\n') |replace('\\r', '\\\\r')/ig; -- 2.11.0