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