Description
Jonathan Druart
2018-02-12 16:57:25 UTC
I guess it's the consequence of the push of patches related to bug 2505 Created attachment 71484 [details] [review] Bug 20185: Remove warnings from aqplan.pl Created attachment 71497 [details] [review] Bug 20185: Remove warnings from stats.print.pl This needs a full rewrite! Sounds like there are no more. (In reply to Jonathan Druart from comment #1) > I guess it's the consequence of the push of patches related to bug 2505 And people changing strict/warnings, or some combination thereof, into Modern::Perl, without checking? I did comment in a warning fashion on bug 20000 comment #2. Running the following to confirm comment #4: for i in `find . -type f -name "*.p[lm]"`; do perl -wc $i; done After getting Catmandu stuff better installed, and hacking softlinks in the path to VerboseWarnings.pm and TmplTokenizer.pm, most problems go away. These two patches are fine. However, what about the horrors of files with multiple packages: C4/Barcodes.pm and OpenILS/QueryParser.pm? Comment on attachment 71484 [details] [review] Bug 20185: Remove warnings from aqplan.pl Review of attachment 71484 [details] [review]: ----------------------------------------------------------------- ::: admin/aqplan.pl @@ +36,4 @@ > use C4::Debug; > use Koha::Acquisition::Currencies; > > +our $input = new CGI; If we are already tweaking the line, why not the new syntax? CGI->new? (In reply to M. Tompsett from comment #6) > Running the following to confirm comment #4: > for i in `find . -type f -name "*.p[lm]"`; do perl -wc $i; done or simply `find . -name "*.pl" -exec perl -wc {} \;` yes. (In reply to M. Tompsett from comment #7) > After getting Catmandu stuff better installed, and hacking softlinks in the > path to VerboseWarnings.pm and TmplTokenizer.pm, most problems go away. > These two patches are fine. However, what about the horrors of files with > multiple packages: C4/Barcodes.pm and OpenILS/QueryParser.pm? The rewrite of these modules is for somewhere else (and somebody else :)) (In reply to M. Tompsett from comment #8) > If we are already tweaking the line, why not the new syntax? CGI->new? Feel free to open a bug report to replace all the occurrence of "new CGI" if you think it is useful/major. The variable scoping problem is critical under plack. Created attachment 71561 [details] [review] Bug 20185: Remove warnings from aqplan.pl Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Created attachment 71562 [details] [review] Bug 20185: Remove warnings from stats.print.pl This needs a full rewrite! Signed-off-by: Mark Tompsett <mtompset@hotmail.com> git grep 'stats.print.pl' returns nothing and when run from a shell it dies with Undefined subroutine &main::getcredits called at reports/stats.print.pl line 126. Is this script still used ? The last occurence of stats.print.pl was removed by commit ca4b23e929b2636054263cab35f50a07dc8a02e4 Author: Chris Cormack <crc@liblime.com> AuthorDate: Mon Jan 7 20:42:36 2008 -0600 Commit: Joshua Ferraro <jmf@liblime.com> CommitDate: Mon Jan 7 20:49:16 2008 -0600 Work in progress, working on the til reconciliation report More patches to come Signed-off-by: Joshua Ferraro <jmf@liblime.com> I will open a new report to remove this script. Created attachment 71708 [details] [review] Bug 20185: Remove warnings from aqplan.pl Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Created attachment 71709 [details] [review] Bug 20185: Remove warnings from stats.print.pl This needs a full rewrite! Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Passed QA. Script removal in bug 20225 Pushed to master for 18.05, thanks to everybody involved! |