BIG COMMIT: minimal fix to authorities search
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
1
2 #!/usr/bin/perl
3
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
36 # find today's date
37 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); 
38
39 $year +=1900; $mon +=1;
40 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
41 sub plugin_parameters {
42         my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
43         return "";
44 }
45
46 sub plugin_javascript {
47         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
48         my $function_name= $field_number;
49         my $res="
50 <script type=\"text/javascript\">
51 //<![CDATA[
52
53 function Focus$function_name(subfield_managed) {
54     document.getElementById(\"$field_number\").value='$dateentered' + 't        xxu||||| |||| 00| 0 eng d';
55     return 1;
56 }
57
58 function Blur$function_name(subfield_managed) {
59         return 1;
60 }
61
62 function Clic$function_name(i) {
63         defaultvalue=document.getElementById(\"$field_number\").value;
64         newin=window.open(\"plugin_launcher.pl?plugin_name=marc21_field_008.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
65
66 }
67 //]]>
68 </script>
69 ";
70
71         return ($function_name,$res);
72 }
73 sub plugin {
74         my ($input) = @_;
75         my $index= $input->param('index');
76         my $result= $input->param('result');
77
78
79         my $dbh = C4::Context->dbh;
80
81         my ($template, $loggedinuser, $cookie)
82     = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008.tmpl",
83                              query => $input,
84                              type => "intranet",
85                              authnotrequired => 0,
86                              flagsrequired => {editcatalogue => 1},
87                              debug => 1,
88                              });
89 #       $result = "      t        xxu           00  0 eng d" unless $result;
90         $result = "$dateentered"."t        xxu||||| |||| 00| 0 eng d" unless $result;
91         my $f1 = substr($result,0,6);
92         my $f6 = substr($result,6,1);
93         my $f710 = substr($result,7,4);
94         my $f1114 = substr($result,11,4);
95         my $f1517 = substr($result,15,3);
96         my $f1821 = substr($result,18,4);
97         my $f22 = substr($result,22,1);
98         my $f23 = substr($result,23,1);
99         my $f2427 = substr($result,24,4);
100         my $f28 = substr($result,28,1);
101         my $f29 = substr($result,29,1);
102         my $f30 = substr($result,30,1);
103         my $f31 = substr($result,31,1);
104         my $f33 = substr($result,33,1);
105         my $f34 = substr($result,34,1);
106         my $f3537 = substr($result,35,3);
107         my $f38 = substr($result,38,1);
108         my $f39 = substr($result,39,1);
109
110 if ((!$f1) ||($f1 =~ m/ /)){
111         $f1=$dateentered;
112 }
113
114         $template->param(                               index => $index,
115                                                         f1 => $f1,
116                                                         f6 => $f6,
117                                                         "f6$f6" => $f6,
118                                                         f710 => $f710,
119                                                         f1114 => $f1114,
120                                                         f1517 => $f1517,
121                                                         f1821 => $f1821,
122                                                         f22 => $f22,
123                                                         "f22$f22" => $f22,
124                                                         f23 => $f23,
125                                                         "f23$f23" => $f23,
126                                                         f2427 => $f2427,
127                                                         "f24$f2427" => $f2427,
128                                                         f28 => $f28,
129                                                         "f28$f28" => $f28,
130                                                         f29 => $f29,
131                                                         "f29$f29" => $f29,
132                                                         f30 => $f30,
133                                                         "f230$f30" => $f30,
134                                                         f31 => $f31,
135                                                         "f31$f31" => $f31,
136                                                         f33 => $f33,
137                                                         "f33$f33" => $f33,
138                                                         f34 => $f34,
139                                                         "f34$f34" => $f34,
140                                                         f3537 => $f3537,
141                                                         f38 => $f38,
142                                                         "f38$f38" => $f38,
143                                                         f39 => $f39,
144                                                         "f39$f39" => $f39,
145                                         );
146         output_html_with_http_headers $input, $cookie, $template->output;
147 }
148
149 1;