Bugzilla – Attachment 27053 Details for
Bug 12076
xt/tt_valid.t can miss an invalid construct
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 12076: better detect an untranslatable template construct
PASSED-QA-Bug-12076-better-detect-an-untranslatabl.patch (text/plain), 1.77 KB, created by
Katrin Fischer
on 2014-04-12 16:04:43 UTC
(
hide
)
Description:
[PASSED QA] Bug 12076: better detect an untranslatable template construct
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2014-04-12 16:04:43 UTC
Size:
1.77 KB
patch
obsolete
>From b0ed284b54d16cec611e28590a73be136aa49e67 Mon Sep 17 00:00:00 2001 >From: Galen Charlton <gmc@esilibrary.com> >Date: Fri, 11 Apr 2014 18:49:07 +0000 >Subject: [PATCH] [PASSED QA] Bug 12076: better detect an untranslatable > template construct > >Per bug 6458, template constructs of the form > ><li [% IF (foo) %]selected="selected"[% END %]... > >are forbidden as they can cause problems with translated templates. >However, the tt_valid.t test currently doesn't catch the variation >where '-' is used to suppress extra whitespace: > ><li [%- IF (foo) -%]selected="selected"[%- END -%]... > >This patch corrects the issue. > >To test: > >[1] Temporarily add the following line to a template file: > ><li [%- IF a -%]a="a"[%- END -%] /> > >[2] Run prove -v xt/tt_valid.t. Note that no error is reported. >[3] Apply the patch, and rerun the tt_valid.t test. This time, > an error should be reported. > >Signed-off-by: Galen Charlton <gmc@esilibrary.com> >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> > >Works well, detects the forbidden pattern >No koha-qa errors. > >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >Works as described, passes all tests and QA script. >--- > xt/tt_valid.t | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/xt/tt_valid.t b/xt/tt_valid.t >index f71085e..e33b760 100755 >--- a/xt/tt_valid.t >+++ b/xt/tt_valid.t >@@ -38,7 +38,7 @@ my @files_with_directive_in_tag = do { > while ( my $token = $parser->next_token ) { > my $attr = $token->{_attr}; > next unless $attr; >- push @lines, $token->{_lc} if $attr->{'[%'}; >+ push @lines, $token->{_lc} if $attr->{'[%'} or $attr->{'[%-'}; > } > ($dir) = $dir =~ /koha-tmpl\/(.*)$/; > push @files, { name => "$dir/$name", lines => \@lines } if @lines; >-- >1.8.3.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12076
:
27041
|
27043
| 27053