Bugzilla – Attachment 179381 Details for
Bug 39353
Tidy - Do not empty template files
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39353: Prevent tidy.pl to empty template files
Bug-39353-Prevent-tidypl-to-empty-template-files.patch (text/plain), 2.98 KB, created by
Jonathan Druart
on 2025-03-17 10:18:07 UTC
(
hide
)
Description:
Bug 39353: Prevent tidy.pl to empty template files
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-03-17 10:18:07 UTC
Size:
2.98 KB
patch
obsolete
>From c446c4fff28345950bf1ae12e9394ed90ccb7a4c Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 17 Mar 2025 11:00:39 +0100 >Subject: [PATCH] Bug 39353: Prevent tidy.pl to empty template files > >In ktd context: >if host's node_modules ktd has been generated prior to bug 38644, the template-toolkit's >prettier plugin is not there and prettier will empty the file. > >It seems to be a prettier bug, and the following behaviour is confusing: > >From the host: >% yarn run prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt >yarn run v1.22.22 >$ prettier koha-tmpl/intranet-tmpl/prog/en/modules/test.tt >[error] Cannot find module '@koha-community/prettier-plugin-template-toolkit' >[error] Require stack: >[error] - /home/jonathan/workspace/koha/node_modules/prettier/index.js >[error] - /home/jonathan/workspace/koha/node_modules/prettier/cli.js >[error] - /home/jonathan/workspace/koha/node_modules/prettier/bin-prettier.js >error Command failed with exit code 1. >info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command. > >=> The file is not modified > >Within ktd: >$ yarn run prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt >yarn run v1.22.22 >$ prettier --write koha-tmpl/intranet-tmpl/prog/en/modules/test.tt >koha-tmpl/intranet-tmpl/prog/en/modules/test.tt 6ms >Done in 0.39s. > >=> No error, and the file is emptied! > >It seems that the plugin is found by prettier but not used (?) >--- > misc/devel/tidy.pl | 15 ++++++++------- > 1 file changed, 8 insertions(+), 7 deletions(-) > >diff --git a/misc/devel/tidy.pl b/misc/devel/tidy.pl >index 57692eba57e..9a0213d8f3b 100755 >--- a/misc/devel/tidy.pl >+++ b/misc/devel/tidy.pl >@@ -184,13 +184,9 @@ sub tidy_tt { > my ( $success, $error_message, $full_buf, $stdout_buf, $stderr_buf ); > > my ( $file_fh, $file ); # Keep this scope for $file_fh, or the file will be deleted after the following block >- if ($no_write) { >- $file_fh = File::Temp->new( CLEANUP => 1, SUFFIX => '.tt', DIR => '.' ); >- $file = $file_fh->filename; >- write_file( $file, read_file($original_file) ); >- } else { >- $file = $original_file; >- } >+ $file_fh = File::Temp->new( CLEANUP => 1, SUFFIX => '.tt', DIR => '.' ); >+ $file = $file_fh->filename; >+ write_file( $file, read_file($original_file) ); > > for my $pass ( 1 .. 2 ) { > ( $success, $error_message, $full_buf, $stdout_buf, $stderr_buf ) = >@@ -207,8 +203,13 @@ sub tidy_tt { > $content =~ s#\n*( *)</script>\n*#\n$1</script>\n#g; > $content =~ s#(\[%\s*SWITCH[^\]]*\]\n)\n#$1#g; > >+ unless ($content) { >+ return ( 0, "Something went wrong, Prettier generated an empty file.", [], [], [] ); >+ } > if ( $no_write && $pass == 2 ) { > print $content; >+ } elsif ( $pass == 2 ) { >+ write_file( $original_file, $content ); > } else { > write_file( $file, $content ); > } >-- >2.34.1
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 39353
:
179381
|
179386
|
179387
|
179480
|
179481