patch to fix marc21 leader
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26
27 use C4::Search;
28 use C4::Output;
29
30 =head1
31
32 plugin_parameters : other parameters added when the plugin is called by the dopop function
33
34 =cut
35 # find today's date
36 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
37 $year = substr($year,1,2);
38 $mon +=1;
39 my $date = "$year-$mon-$mday";
40 my $res  = "";
41 if (length($mon)==1) {
42         $mon='0'.$mon;
43 }
44 if (length($mday)==1) {
45         $mday='0'.$mday;
46 }
47 my $dateentered = "$year$mon$mday";
48 sub plugin_parameters {
49 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
50 return "";
51 }
52
53 sub plugin_javascript {
54 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
55 my $function_name= $field_number;
56 my $res="
57 <script>
58 function Focus$function_name(subfield_managed) {
59 return 1;
60 }
61
62 function Blur$function_name(subfield_managed) {
63         return 1;
64 }
65
66 function Clic$function_name(i) {
67         defaultvalue=document.getElementById(\"$field_number\").value;
68         newin=window.open(\"plugin_launcher.pl?plugin_name=marc21_field_008_authorities.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
69
70 }
71 </script>
72 ";
73
74 return ($function_name,$res);
75 }
76 sub plugin {
77 my ($input) = @_;
78         my $index= $input->param('index');
79         my $result= $input->param('result');
80
81
82         my $dbh = C4::Context->dbh;
83
84 my ($template, $loggedinuser, $cookie)
85     = get_template_and_user({template_name => "value_builder/marc21_field_008_authorities.tmpl",
86                              query => $input,
87                              type => "intranet",
88                              authnotrequired => 0,
89                              flagsrequired => {editcatalogue => 1},
90                              debug => 1,
91                              });
92 #       $result = "      t        xxu           00  0 eng d" unless $result;
93         $result = "      t        xxu||||| |||| 00| 0 eng d" unless $result;
94         my $f6 = substr($result,6,1);
95         my $f710 = substr($result,7,4);
96         my $f1114 = substr($result,11,4);
97         my $f1517 = substr($result,15,3);
98         my $f1821 = substr($result,18,4);
99         my $f22 = substr($result,22,1);
100         my $f23 = substr($result,23,1);
101         my $f2427 = substr($result,24,4);
102         my $f28 = substr($result,28,1);
103         my $f29 = substr($result,29,1);
104         my $f30 = substr($result,30,1);
105         my $f31 = substr($result,31,1);
106         my $f33 = substr($result,33,1);
107         my $f34 = substr($result,34,1);
108         my $f3537 = substr($result,35,3);
109         my $f38 = substr($result,38,1);
110         my $f39 = substr($result,39,1);
111
112         $template->param(                               index => $index,
113                                                         dateentered => $dateentered,
114                                                         f6 => $f6,
115                                                         "f6$f6" => $f6,
116                                                         f710 => $f710,
117                                                         f1114 => $f1114,
118                                                         f1517 => $f1517,
119                                                         f1821 => $f1821,
120                                                         f22 => $f22,
121                                                         "f22$f22" => $f22,
122                                                         f23 => $f23,
123                                                         "f23$f23" => $f23,
124                                                         f2427 => $f2427,
125                                                         "f24$f2427" => $f2427,
126                                                         f28 => $f28,
127                                                         "f28$f28" => $f28,
128                                                         f29 => $f29,
129                                                         "f29$f29" => $f29,
130                                                         f30 => $f30,
131                                                         "f230$f30" => $f30,
132                                                         f31 => $f31,
133                                                         "f31$f31" => $f31,
134                                                         f33 => $f33,
135                                                         "f33$f33" => $f33,
136                                                         f34 => $f34,
137                                                         "f34$f34" => $f34,
138                                                         f3537 => $f3537,
139                                                         f38 => $f38,
140                                                         "f38$f38" => $f38,
141                                                         f39 => $f39,
142                                                         "f39$f39" => $f39,
143                                         );
144         output_html_with_http_headers $input, $cookie, $template->output;
145 }
146
147 1;