adding back CDATA for validation
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 use C4::Search;
27 use C4::Output;
28
29 =head1
30
31 plugin_parameters : other parameters added when the plugin is called by the dopop function
32
33 =cut
34 # find today's date
35 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
36 $year = substr($year,1,2);
37 $mon +=1;
38 my $date = "$year-$mon-$mday";
39 my $res  = "";
40 if (length($mon)==1) {
41         $mon='0'.$mon;
42 }
43 if (length($mday)==1) {
44         $mday='0'.$mday;
45 }
46 my $dateentered = "$year$mon$mday";
47 sub plugin_parameters {
48 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
49 return "";
50 }
51
52 sub plugin_javascript {
53 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
54 my $function_name= $field_number;
55 my $res="
56 <script type=\"text/javascript\">
57 //<![CDATA[
58
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.getElementById(\"$field_number\").value;
69         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');
70
71 }
72 //]]>
73 </script>
74 ";
75
76 return ($function_name,$res);
77 }
78 sub plugin {
79 my ($input) = @_;
80         my $index= $input->param('index');
81         my $result= $input->param('result');
82
83
84         my $dbh = C4::Context->dbh;
85
86 my ($template, $loggedinuser, $cookie)
87     = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008_authorities.tmpl",
88                              query => $input,
89                              type => "intranet",
90                              authnotrequired => 0,
91                              flagsrequired => {editcatalogue => 1},
92                              debug => 1,
93                              });
94 #       $result = "      t        xxu           00  0 eng d" unless $result;
95         $result = "      t        xxu||||| |||| 00| 0 eng d" unless $result;
96         my $f6 = substr($result,6,1);
97         my $f710 = substr($result,7,4);
98         my $f1114 = substr($result,11,4);
99         my $f1517 = substr($result,15,3);
100         my $f1821 = substr($result,18,4);
101         my $f22 = substr($result,22,1);
102         my $f23 = substr($result,23,1);
103         my $f2427 = substr($result,24,4);
104         my $f28 = substr($result,28,1);
105         my $f29 = substr($result,29,1);
106         my $f30 = substr($result,30,1);
107         my $f31 = substr($result,31,1);
108         my $f33 = substr($result,33,1);
109         my $f34 = substr($result,34,1);
110         my $f3537 = substr($result,35,3);
111         my $f38 = substr($result,38,1);
112         my $f39 = substr($result,39,1);
113
114         $template->param(                               index => $index,
115                                                         dateentered => $dateentered,
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;