3 # Copyright 2000-2002 Katipo Communications
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 2 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.
22 detail-biblio-search.pl - script to show an authority in MARC format
30 This script needs an authid
32 It shows the authority in a (nice) MARC format depending on authority MARC
43 use C4
::AuthoritiesMarc
;
56 my $dbh=C4
::Context
->dbh;
58 my $authid = $query->param('authid');
59 my $index = $query->param('index');
60 my $authtypecode = &GetAuthTypeCode
($authid);
61 my $tagslib = &GetTagsLabels
(1,$authtypecode);
63 my $record =GetAuthority
($authid);
65 my ($template, $loggedinuser, $cookie)
66 = get_template_and_user
({template_name
=> "authorities/detail-biblio-search.tmpl",
70 flagsrequired
=> {catalogue
=> 1},
76 # loop through each tab 0 through 9
77 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
78 # loop through each tag
79 my @fields = $record->fields();
80 foreach my $field (@fields) {
82 # if tag <10, there's no subfield, use the "@" trick
83 if ($field->tag()<10) {
84 # next if ($tagslib->{$field->tag()}->{'@'}->{tab} ne $tabloop);
85 next if ($tagslib->{$field->tag()}->{'@'}->{hidden
});
87 $subfield_data{marc_lib
}=$tagslib->{$field->tag()}->{'@'}->{lib
};
88 $subfield_data{marc_value
}=$field->data();
89 $subfield_data{marc_subfield
}='@';
90 $subfield_data{marc_tag
}=$field->tag();
91 push(@subfields_data, \
%subfield_data);
93 my @subf=$field->subfields;
94 # loop through each subfield
95 for my $i (0..$#subf) {
96 $subf[$i][0] = "@" unless defined $subf[$i][0];
97 # next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab} ne $tabloop);
98 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden
});
100 $subfield_data{marc_lib
}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib
};
101 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl
}) {
102 $subfield_data{marc_value
}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
104 $subfield_data{marc_value
}=$subf[$i][1];
106 $subfield_data{marc_subfield
}=$subf[$i][0];
107 $subfield_data{marc_tag
}=$field->tag();
108 push(@subfields_data, \
%subfield_data);
111 if ($#subfields_data>=0) {
113 $tag_data{tag
}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib
};
114 $tag_data{subfield
} = \
@subfields_data;
115 push (@loop_data, \
%tag_data);
118 $template->param("0XX" =>\
@loop_data);
120 my $authtypes = getauthtypes
;
122 foreach my $thisauthtype (keys %$authtypes) {
123 my %row =(value
=> $thisauthtype,
124 selected
=> $thisauthtype eq $authtypecode,
125 authtypetext
=> $authtypes->{$thisauthtype}{'authtypetext'},
127 push @authtypesloop, \
%row;
130 $template->param(authid
=> $authid,
131 authtypesloop
=> \
@authtypesloop, index => $index,
133 output_html_with_http_headers
$query, $cookie, $template->output;