X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=catalogue%2Fshowmarc.pl;h=28d43e4381337fe5a595a2a714274343043dd68c;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=1c453c4d13ca8699f4fd3c5d666213338267a58d;hpb=bc9cb5b47828f9920a9485ca2c97cc292bbb30dd;p=koha_fer diff --git a/catalogue/showmarc.pl b/catalogue/showmarc.pl index 1c453c4d13..28d43e4381 100755 --- a/catalogue/showmarc.pl +++ b/catalogue/showmarc.pl @@ -9,7 +9,7 @@ # # Koha is free software; you can redistribute it and/or modify it under the # terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later +# Foundation; either version 3 of the License, or (at your option) any later # version. # # Koha is distributed in the hope that it will be useful, but WITHOUT ANY @@ -34,8 +34,7 @@ use C4::Output; use C4::Auth; use C4::Biblio; use C4::ImportBatch; -use XML::LibXSLT; -use XML::LibXML; +use C4::XSLT (); my $input= new CGI; my $biblionumber= $input->param('id'); @@ -50,19 +49,20 @@ if ($importid) { else { $record =GetMarcBiblio($biblionumber); } +if(!ref $record) { + print $input->redirect("/cgi-bin/koha/errors/404.pl"); + exit; +} if($view eq 'card') { - my $themelang = '/' . C4::Context->preference("opacthemes") . '/' . C4::Templates::_current_language(); + my $themelang = '/' . C4::Languages::getlanguage($input); my $xmlrecord= $importid? $record->as_xml(): GetXmlBiblio($biblionumber); my $xslfile = - C4::Context->config('intrahtdocs') . $themelang . "/xslt/compact.xsl"; - my $parser = XML::LibXML->new(); - my $xslt = XML::LibXSLT->new(); - my $source = $parser->parse_string($xmlrecord); - 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); + C4::Context->config('intrahtdocs') . '/prog' . $themelang . "/xslt/compact.xsl"; + if ( ! -f $xslfile && $themelang ne '/en' ) { + $xslfile=~s#$themelang#/en#; + } + my $newxmlrecord = C4::XSLT::engine->transform($xmlrecord, $xslfile); print $input->header(-charset => 'UTF-8'), Encode::encode_utf8($newxmlrecord); } else {