Bugzilla – Attachment 41129 Details for
Bug 14592
Fix encoding in data exports
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14592 Export data bad encoding
Bug-14592-Export-data-bad-encoding.patch (text/plain), 1.15 KB, created by
Frédéric Demians
on 2015-07-23 07:51:52 UTC
(
hide
)
Description:
Bug 14592 Export data bad encoding
Filename:
MIME Type:
Creator:
Frédéric Demians
Created:
2015-07-23 07:51:52 UTC
Size:
1.15 KB
patch
obsolete
>From b6049dd7c7152e892104ba75896c034f8dc57071 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Demians?= <f.demians@tamil.fr> >Date: Thu, 23 Jul 2015 09:47:15 +0200 >Subject: [PATCH] Bug 14592 Export data bad encoding > >Tools > Export data produces a file badly encoded, when marc/xml file >format is chosen. It works with CSV. > >To test: > >1. Tools > Export data >2. Choose a limited interval of biblionumber >3. Export in marc/xml/csv. >4. Check files exported at 3: csv file is ok. marc/xml files are > corrupted, ie badly encoded. >5. Apply the patch >6. Repeat steps 3&4, and confirm that all file formats are valid. >--- > tools/export.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/tools/export.pl b/tools/export.pl >index f63e2c4..2191b02 100755 >--- a/tools/export.pl >+++ b/tools/export.pl >@@ -166,7 +166,8 @@ if ( $op eq "export" ) { > > binmode STDOUT, ':encoding(UTF-8)' > if $filename =~ m/\.gz$/ >- or $filename =~ m/\.bz2$/; >+ or $filename =~ m/\.bz2$/ >+ or $output_format ne 'csv'; > > if ( $filename =~ m/\.gz$/ ) { > $mimetype = 'application/x-gzip'; >-- >2.4.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 14592
:
41129
|
41465
|
41514