Bugzilla – Attachment 5826 Details for
Bug 5616
UTF-8 problem in Card View
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Follow up patch
patch.txt (text/plain), 1.24 KB, created by
Marcel de Rooy
on 2011-10-10 13:00:26 UTC
(
hide
)
Description:
Follow up patch
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2011-10-10 13:00:26 UTC
Size:
1.24 KB
patch
obsolete
>From 636d82a13212f581d84a533e253e1c9b1d667296 Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 10 Oct 2011 13:04:34 +0200 >Subject: [PATCH] 5616 Follow up patch >Content-Type: text/plain; charset="utf-8" > >Decode data from xslt only if needed. >Add instruction to use UTF8 in html header. >--- > catalogue/showmarc.pl | 7 +++---- > 1 files changed, 3 insertions(+), 4 deletions(-) > >diff --git a/catalogue/showmarc.pl b/catalogue/showmarc.pl >index bd557e9..b51b380 100755 >--- a/catalogue/showmarc.pl >+++ b/catalogue/showmarc.pl >@@ -28,6 +28,7 @@ use strict; > # standard or CPAN modules used > use CGI qw(:standard); > use DBI; >+use Encode; > > # Koha modules used > use C4::Context; >@@ -75,10 +76,8 @@ my $style_doc = $parser->parse_file($xslfile); > my $stylesheet = $xslt->parse_stylesheet($style_doc); > my $results = $stylesheet->transform($source); > my $newxmlrecord = $stylesheet->output_string($results); >-#warn $newxmlrecord; >-print "Content-type: text/html\n\n"; >-utf8::encode($newxmlrecord); >-print $newxmlrecord; >+$newxmlrecord=Encode::decode_utf8($newxmlrecord) unless utf8::is_utf8($newxmlrecord); #decode only if not in perl internal format >+print $input->header(-charset => 'UTF-8'), $newxmlrecord; > > } else { > >-- >1.6.0.6 >
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 5616
:
2987
|
3074
|
5826
|
5853
|
5866
|
5958
|
6203
|
6204