4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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
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.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #use warnings; FIXME - Bug 2505
31 =head2 plugin_parameters
33 Other parameters added when the plugin is called by the dopop function
37 sub plugin_parameters
{
38 my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
42 sub plugin_javascript
{
43 my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
45 <script type='text/javascript'>
46 function Focus$field_number() {
50 function Blur$field_number() {
54 function Clic$field_number(i) {
57 defaultvalue = document.getElementById(i).value;
59 alert('error when getting '+i);
62 window.open(\"/cgi-bin/koha/cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_100.pl&index=\"+i+\"&result=\"+defaultvalue,\"unimarc_field_100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
67 return ( $field_number, $res );
72 return "space" if $char eq " ";
73 return "dblspace" if $char eq " ";
74 return "pipe" if $char eq "|";
80 my $index = $input->param('index');
81 my $result = $input->param('result');
83 my $dbh = C4
::Context
->dbh;
85 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
86 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
88 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
90 template_name
=> "cataloguing/value_builder/unimarc_field_100.tmpl",
94 flagsrequired
=> { editcatalogue
=> '*' },
98 $result = " d u y0".$defaultlanguage."y50 ba" unless $result;
99 my $f1 = substr( $result, 0, 8 );
101 my @today = Date
::Calc
::Today
();
102 $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
104 my $f2 = substr( $result, 8, 1 ); $f2 = wrapper
( $f2 ) if $f2;
105 my $f3 = substr( $result, 9, 4 );
106 $f3='' if $f3 eq ' '; # empty publication year if only spaces, otherwise it's hard to fill the field
107 my $f4 = substr( $result, 13, 4 );
108 $f4='' if $f4 eq ' ';
109 my $f5 = substr( $result, 17, 1 ); $f5 = wrapper
( $f5 ) if $f5;
110 my $f6 = substr( $result, 18, 1 ); $f6 = wrapper
( $f6 ) if $f6;
111 my $f7 = substr( $result, 19, 1 ); $f7 = wrapper
( $f7 ) if $f7;
112 my $f8 = substr( $result, 20, 1 );
113 my $f9 = substr( $result, 21, 1 );
114 my $f10 = substr( $result, 22, 3 );
115 my $f11 = substr( $result, 25, 1 );
116 my $f12 = substr( $result, 26, 2 );
117 my $f13 = substr( $result, 28, 2 );
118 my $f14 = substr( $result, 30, 4 );
119 my $f15 = substr( $result, 34, 2 ); $f15 = wrapper
( $f15 ) if $f15;
139 output_html_with_http_headers
$input, $cookie, $template->output;