bugfixes (various), handling utf-8 without guessencoding (as suggested by joshua...
[koha.git] / cataloguing / value_builder / marc21_field_040c.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 require Exporter;
23 use C4::AuthoritiesMarc;
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use CGI;
28 use C4::Search;
29 use MARC::Record;
30 use C4::Koha;
31
32
33 =head1
34
35 plugin_parameters : other parameters added when the plugin is called by the dopop function
36
37 =cut
38 sub plugin_parameters {
39 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
40 return "";
41 }
42
43 =head1
44
45 plugin_javascript : the javascript function called when the user enters the subfield.
46 contain 3 javascript functions :
47 * one called when the field is entered (OnFocus). Named FocusXXX
48 * one called when the field is leaved (onBlur). Named BlurXXX
49 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
50
51 returns :
52 * XXX
53 * a variable containing the 3 scripts.
54 the 3 scripts are inserted after the <input> in the html code
55
56 =cut
57 sub plugin_javascript {
58 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
59 my $function_name= "003".(int(rand(100000))+1);
60
61 # find today's date
62 my $org = C4::Context->preference('MARCOrgCode');
63 my $res  = "
64 <script>
65 function Blur$function_name(index) {
66 //need this?
67 }
68
69 function Focus$function_name(subfield_managed) {
70         for (i=0 ; i<document.f.field_value.length ; i++) {
71                 if (document.f.tag[i].value == '040' && document.f.subfield[i].value == 'c') {
72                         document.f.field_value[i].value = '$org';
73                 }
74         }
75 return 0;
76 }
77
78 function Clic$function_name(subfield_managed) {
79 }
80 </script>
81 ";
82 return ($function_name,$res);
83 }
84
85 =head1
86
87 plugin : the true value_builded. The screen that is open in the popup window.
88
89 =cut
90
91 sub plugin {
92 my ($input) = @_;
93 return "";
94 }
95
96 1;