3 # Copyright 2007 Liblime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 # standard or CPAN modules used
37 my $biblionumber = $input->param('id');
38 $biblionumber = int($biblionumber);
39 my $importid= $input->param('importid');
40 my $view= $input->param('viewas') || 'marc';
44 my ($marc) = GetImportRecordMarc
($importid);
45 $record = MARC
::Record
->new_from_usmarc($marc);
48 $record =GetMarcBiblio
($biblionumber);
51 print $input->redirect("/cgi-bin/koha/errors/404.pl");
55 if ($view eq 'card' || $view eq 'html') {
56 my $xml = $importid ?
$record->as_xml(): GetXmlBiblio
($biblionumber);
57 my $xsl = $view eq 'card' ?
'compact.xsl' : 'plainMARC.xsl';
58 my $htdocs = C4
::Context
->config('opachtdocs');
59 my ($theme, $lang) = C4
::Templates
::themelanguage
($htdocs, $xsl, 'opac', $input);
60 $xsl = "$htdocs/$theme/$lang/xslt/$xsl";
61 print $input->header(-charset
=> 'UTF-8'),
62 Encode
::encode_utf8
(C4
::XSLT
::engine
->transform($xml, $xsl));
65 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
66 template_name
=> "opac-showmarc.tt",
69 authnotrequired
=> ( C4
::Context
->preference("OpacPublic") ?
1 : 0 ),
72 $template->param( MARC_FORMATTED
=> $record->as_formatted );
73 output_html_with_http_headers
$input, $cookie, $template->output;