3 # $Id: showmarc.pl,v 1.1.2.1 2007/06/18 21:57:23 rangi Exp $
6 # Koha library project www.koha-community.org
8 # Licensed under the GPL
10 # Copyright 2007 Liblime
12 # This file is part of Koha.
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License along
24 # with Koha; if not, write to the Free Software Foundation, Inc.,
25 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 # standard or CPAN modules used
44 my $biblionumber = $input->param('id');
45 $biblionumber = int($biblionumber);
46 my $importid= $input->param('importid');
47 my $view= $input->param('viewas') || 'marc';
51 my ($marc) = GetImportRecordMarc
($importid);
52 $record = MARC
::Record
->new_from_usmarc($marc);
55 $record =GetMarcBiblio
($biblionumber);
58 if ($view eq 'card' || $view eq 'html') {
59 my $xmlrecord= $importid?
$record->as_xml(): GetXmlBiblio
($biblionumber);
61 my $themelang = '/' . C4
::Context
->preference("opacthemes") . '/' . C4
::Templates
::_current_language
();
64 $xslfile = C4
::Context
->config('opachtdocs').$themelang."/xslt/compact.xsl";
67 $xslfile = C4
::Context
->config('opachtdocs').$themelang."/xslt/MARC21slim2OPACMARCdetail.xsl";
69 my $parser = XML
::LibXML
->new();
70 my $xslt = XML
::LibXSLT
->new();
71 my $source = $parser->parse_string($xmlrecord);
72 my $style_doc = $parser->parse_file($xslfile);
73 my $stylesheet = $xslt->parse_stylesheet($style_doc);
74 my $results = $stylesheet->transform($source);
75 my $newxmlrecord = $stylesheet->output_string($results);
76 print $input->header(-charset
=> 'UTF-8'), Encode
::encode_utf8
($newxmlrecord);
79 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
80 template_name
=> "opac-showmarc.tmpl",
83 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
86 $template->param( MARC_FORMATTED
=> $record->as_formatted );
87 output_html_with_http_headers
$input, $cookie, $template->output;