View | Details | Raw Unified | Return to bug 6465
Collapse All | Expand All

(-)a/cataloguing/value_builder/unimarc_field_100.pl (-5 / +13 lines)
Lines 67-72 sub plugin_javascript { Link Here
67
    return ( $field_number, $res );
67
    return ( $field_number, $res );
68
}
68
}
69
69
70
sub wrapper {
71
    my ($char) = @_;
72
    return "space" if $char eq " ";
73
    return "dblspace" if $char eq "  ";
74
    return "pipe" if $char eq "|";
75
    return $char;
76
}
77
70
sub plugin {
78
sub plugin {
71
    my ($input) = @_;
79
    my ($input) = @_;
72
    my $index  = $input->param('index');
80
    my $index  = $input->param('index');
Lines 90-103 sub plugin { Link Here
90
        my @today = Date::Calc::Today();
98
        my @today = Date::Calc::Today();
91
        $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
99
        $f1 = $today[0] . sprintf('%02s',$today[1]) . sprintf('%02s',$today[2]);
92
    }
100
    }
93
    my $f2  = substr( $result, 8,  1 );
101
    my $f2  = wrapper( substr( $result, 8,  1 ) );
94
    my $f3  = substr( $result, 9,  4 );
102
    my $f3  = substr( $result, 9,  4 );
95
    $f3='' if $f3 eq '    '; # empty publication year if only spaces, otherwise it's hard to fill the field
103
    $f3='' if $f3 eq '    '; # empty publication year if only spaces, otherwise it's hard to fill the field
96
    my $f4  = substr( $result, 13, 4 );
104
    my $f4  = substr( $result, 13, 4 );
97
    $f4='' if $f4 eq '    ';
105
    $f4='' if $f4 eq '    ';
98
    my $f5  = substr( $result, 17, 1 );
106
    my $f5  = wrapper( substr( $result, 17, 1 ) );
99
    my $f6  = substr( $result, 18, 1 );
107
    my $f6  = wrapper( substr( $result, 18, 1 ) );
100
    my $f7  = substr( $result, 19, 1 );
108
    my $f7  = wrapper( substr( $result, 19, 1 ) );
101
    my $f8  = substr( $result, 20, 1 );
109
    my $f8  = substr( $result, 20, 1 );
102
    my $f9  = substr( $result, 21, 1 );
110
    my $f9  = substr( $result, 21, 1 );
103
    my $f10 = substr( $result, 22, 3 );
111
    my $f10 = substr( $result, 22, 3 );
Lines 105-111 sub plugin { Link Here
105
    my $f12 = substr( $result, 26, 2 );
113
    my $f12 = substr( $result, 26, 2 );
106
    my $f13 = substr( $result, 28, 2 );
114
    my $f13 = substr( $result, 28, 2 );
107
    my $f14 = substr( $result, 30, 4 );
115
    my $f14 = substr( $result, 30, 4 );
108
    my $f15 = substr( $result, 34, 2 );
116
    my $f15 = wrapper( substr( $result, 34, 2 ) );
109
117
110
    $template->param(
118
    $template->param(
111
        index     => $index,
119
        index     => $index,
(-)a/cataloguing/value_builder/unimarc_field_105.pl (-15 / +22 lines)
Lines 63-68 sub plugin_javascript { Link Here
63
    return ($field_number,$res);
63
    return ($field_number,$res);
64
}
64
}
65
65
66
sub wrapper {
67
    my ($char) = @_;
68
    return "space" if $char eq " ";
69
    return "pipe" if $char eq "|";
70
    return $char;
71
}
72
66
sub plugin {
73
sub plugin {
67
    my ($input) = @_;
74
    my ($input) = @_;
68
    my $index= $input->param('index');
75
    my $index= $input->param('index');
Lines 79-99 sub plugin { Link Here
79
			     flagsrequired => {editcatalogue => '*'},
86
			     flagsrequired => {editcatalogue => '*'},
80
			     debug => 1,
87
			     debug => 1,
81
			     });
88
			     });
82
 	my $f1 = substr($result,0,1);
89
 	my $f1 = wrapper( substr($result,0,1) );
83
 	my $f2 = substr($result,1,1);
90
 	my $f2 = wrapper( substr($result,1,1) );
84
 	my $f3 = substr($result,2,1);
91
 	my $f3 = wrapper( substr($result,2,1) );
85
 	my $f4 = substr($result,3,1);
92
 	my $f4 = wrapper( substr($result,3,1) );
86
93
87
	my $f5 = substr($result,4,1);
94
	my $f5 = wrapper( substr($result,4,1) );
88
	my $f6 = substr($result,5,1);
95
	my $f6 = wrapper( substr($result,5,1) );
89
	my $f7 = substr($result,6,1);
96
	my $f7 = wrapper( substr($result,6,1) );
90
	my $f8 = substr($result,7,1);
97
	my $f8 = wrapper( substr($result,7,1) );
91
98
92
	my $f9  = substr($result,8,1);
99
	my $f9  = wrapper( substr($result,8,1) );
93
	my $f10 = substr($result,9,1);
100
	my $f10 = wrapper( substr($result,9,1) );
94
        my $f11 = substr($result,10,1);
101
        my $f11 = wrapper( substr($result,10,1) );
95
        my $f12 = substr($result,11,1);
102
        my $f12 = wrapper( substr($result,11,1) );
96
        my $f13 = substr($result,12,1);
103
        my $f13 = wrapper( substr($result,12,1) );
97
104
98
	$template->param(index => $index,
105
	$template->param(index => $index,
99
                        "f1$f1" => 1,
106
                        "f1$f1" => 1,
(-)a/cataloguing/value_builder/unimarc_field_110.pl (-9 / +17 lines)
Lines 62-67 sub plugin_javascript { Link Here
62
62
63
    return ($field_number,$res);
63
    return ($field_number,$res);
64
}
64
}
65
66
sub wrapper {
67
    my ($char) = @_;
68
    return "space" if $char eq " ";
69
    return "pipe" if $char eq "|";
70
    return $char;
71
}
72
65
sub plugin {
73
sub plugin {
66
my ($input) = @_;
74
my ($input) = @_;
67
	my $index= $input->param('index');
75
	my $index= $input->param('index');
Lines 76-90 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
84
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
85
			     debug => 1,
78
			     });
86
			     });
79
 	my $f1 = substr($result,0,1);
87
 	my $f1 = wrapper( substr($result,0,1) );
80
 	my $f2 = substr($result,1,1);
88
 	my $f2 = wrapper( substr($result,1,1) );
81
 	my $f3 = substr($result,2,1);
89
 	my $f3 = wrapper( substr($result,2,1) );
82
 	my $f4 = substr($result,3,1);
90
 	my $f4 = wrapper( substr($result,3,1) );
83
 	my $f5 = substr($result,4,3);
91
 	my $f5 = substr($result,4,3) );
84
 	my $f6 = substr($result,7,1);
92
 	my $f6 = wrapper( substr($result,7,1) );
85
 	my $f7 = substr($result,8,1);
93
 	my $f7 = wrapper( substr($result,8,1) );
86
 	my $f8 = substr($result,9,1);
94
 	my $f8 = wrapper( substr($result,9,1) );
87
 	my $f9 = substr($result,10,1);
95
 	my $f9 = wrapper( substr($result,10,1) );
88
96
89
	$template->param(index => $index,
97
	$template->param(index => $index,
90
                        "f1$f1" => 1,
98
                        "f1$f1" => 1,
(-)a/cataloguing/value_builder/unimarc_field_115a.pl (-17 / +24 lines)
Lines 69-74 sub plugin_javascript { Link Here
69
    return ( $field_number, $res );
69
    return ( $field_number, $res );
70
}
70
}
71
71
72
sub wrapper {
73
    my ($char) = @_;
74
    return "space" if $char eq " ";
75
    return "pipe" if $char eq "|";
76
    return $char;
77
}
78
72
sub plugin {
79
sub plugin {
73
    my ($input) = @_;
80
    my ($input) = @_;
74
    my $index   = $input->param('index');
81
    my $index   = $input->param('index');
Lines 86-109 sub plugin { Link Here
86
            debug           => 1,
93
            debug           => 1,
87
        }
94
        }
88
    );
95
    );
89
    my $f1  = substr( $result, 0,  1 );
96
    my $f1  = wrapper( substr( $result, 0,  1 ) );
90
    my $f2  = substr( $result, 1,  3 );
97
    my $f2  = substr( $result, 1,  3 );
91
    my $f3  = substr( $result, 4,  1 );
98
    my $f3  = wrapper( substr( $result, 4,  1 ) );
92
    my $f4  = substr( $result, 5,  1 );
99
    my $f4  = wrapper( substr( $result, 5,  1 ) );
93
    my $f5  = substr( $result, 6,  1 );
100
    my $f5  = wrapper( substr( $result, 6,  1 ) );
94
    my $f6  = substr( $result, 7,  1 );
101
    my $f6  = wrapper( substr( $result, 7,  1 ) );
95
    my $f7  = substr( $result, 8,  1 );
102
    my $f7  = wrapper( substr( $result, 8,  1 ) );
96
    my $f8  = substr( $result, 9,  1 );
103
    my $f8  = wrapper( substr( $result, 9,  1 ) );
97
    my $f9  = substr( $result, 10, 1 );
104
    my $f9  = wrapper( substr( $result, 10, 1 ) );
98
    my $f10 = substr( $result, 11, 1 );
105
    my $f10 = wrapper( substr( $result, 11, 1 ) );
99
    my $f11 = substr( $result, 12, 1 );
106
    my $f11 = wrapper( substr( $result, 12, 1 ) );
100
    my $f12 = substr( $result, 13, 1 );
107
    my $f12 = wrapper( substr( $result, 13, 1 ) );
101
    my $f13 = substr( $result, 14, 1 );
108
    my $f13 = wrapper( substr( $result, 14, 1 ) );
102
    my $f14 = substr( $result, 15, 1 );
109
    my $f14 = wrapper( substr( $result, 15, 1 ) );
103
    my $f15 = substr( $result, 16, 1 );
110
    my $f15 = wrapper( substr( $result, 16, 1 ) );
104
    my $f16 = substr( $result, 17, 1 );
111
    my $f16 = wrapper( substr( $result, 17, 1 ) );
105
    my $f17 = substr( $result, 18, 1 );
112
    my $f17 = wrapper( substr( $result, 18, 1 ) );
106
    my $f18 = substr( $result, 19, 1 );
113
    my $f18 = wrapper( substr( $result, 19, 1 ) );
107
114
108
    $template->param(
115
    $template->param(
109
        index     => $index,
116
        index     => $index,
(-)a/cataloguing/value_builder/unimarc_field_115b.pl (-9 / +16 lines)
Lines 63-68 function Clic$field_number() { Link Here
63
    return ( $field_number, $res );
63
    return ( $field_number, $res );
64
}
64
}
65
65
66
sub wrapper {
67
    my ($char) = @_;
68
    return "space" if $char eq " ";
69
    return "pipe" if $char eq "|";
70
    return $char;
71
}
72
66
sub plugin {
73
sub plugin {
67
    my ($input) = @_;
74
    my ($input) = @_;
68
    my $index   = $input->param('index');
75
    my $index   = $input->param('index');
Lines 80-94 sub plugin { Link Here
80
            debug           => 1,
87
            debug           => 1,
81
        }
88
        }
82
    );
89
    );
83
    my $f1  = substr( $result, 0,  1 );
90
    my $f1  = wrapper( substr( $result, 0,  1 ) );
84
    my $f2  = substr( $result, 1,  1 );
91
    my $f2  = wrapper( substr( $result, 1,  1 ) );
85
    my $f3  = substr( $result, 2,  1 );
92
    my $f3  = wrapper( substr( $result, 2,  1 ) );
86
    my $f4  = substr( $result, 3,  1 );
93
    my $f4  = wrapper( substr( $result, 3,  1 ) );
87
    my $f5  = substr( $result, 4,  1 );
94
    my $f5  = wrapper( substr( $result, 4,  1 ) );
88
    my $f6  = substr( $result, 5,  1 );
95
    my $f6  = wrapper( substr( $result, 5,  1 ) );
89
    my $f7  = substr( $result, 6,  1 );
96
    my $f7  = wrapper( substr( $result, 6,  1 ) );
90
    my $f8  = substr( $result, 7,  1 );
97
    my $f8  = wrapper( substr( $result, 7,  1 ) );
91
    my $f9  = substr( $result, 8,  1 );
98
    my $f9  = wrapper( substr( $result, 8,  1 ) );
92
    my $f10 = substr( $result, 9,  4 );
99
    my $f10 = substr( $result, 9,  4 );
93
    my $f11 = substr( $result, 13, 2 );
100
    my $f11 = substr( $result, 13, 2 );
94
101
(-)a/cataloguing/value_builder/unimarc_field_116.pl (-11 / +20 lines)
Lines 63-68 function Clic$field_number(i) { Link Here
63
    return ( $field_number, $res );
63
    return ( $field_number, $res );
64
}
64
}
65
65
66
sub wrapper {
67
    my ($char) = @_;
68
    return "space" if $char eq " ";
69
    return "dblspace" if $char eq "  ";
70
    return "pipe" if $char eq "|";
71
    return "dblpipe" if $char eq "||";
72
    return $char;
73
}
74
66
sub plugin {
75
sub plugin {
67
    my ($input) = @_;
76
    my ($input) = @_;
68
    my $index   = $input->param('index');
77
    my $index   = $input->param('index');
Lines 79-98 sub plugin { Link Here
79
            debug           => 1,
88
            debug           => 1,
80
        }
89
        }
81
    );
90
    );
82
    my $f1 = substr( $result, 0, 1 );
91
    my $f1 = wrapper( substr( $result, 0, 1 ) );
83
    my $f2 = substr( $result, 1, 1 );
92
    my $f2 = wrapper( substr( $result, 1, 1 ) );
84
    my $f3 = substr( $result, 2, 1 );
93
    my $f3 = wrapper( substr( $result, 2, 1 ) );
85
    my $f4 = substr( $result, 3, 1 );
94
    my $f4 = wrapper( substr( $result, 3, 1 ) );
86
95
87
    my $f5 = substr( $result, 4, 2 );
96
    my $f5 = wrapper( substr( $result, 4, 2 ) );
88
    my $f6 = substr( $result, 6, 2 );
97
    my $f6 = wrapper( substr( $result, 6, 2 ) );
89
    my $f7 = substr( $result, 8, 2 );
98
    my $f7 = wrapper( substr( $result, 8, 2 ) );
90
99
91
    my $f8  = substr( $result, 10, 2 );
100
    my $f8  = wrapper( substr( $result, 10, 2 ) );
92
    my $f9  = substr( $result, 12, 2 );
101
    my $f9  = wrapper( substr( $result, 12, 2 ) );
93
    my $f10 = substr( $result, 14, 2 );
102
    my $f10 = wrapper( substr( $result, 14, 2 ) );
94
103
95
    my $f11 = substr( $result, 16, 2 );
104
    my $f11 = wrapper( substr( $result, 16, 2 ) );
96
105
97
    $template->param(
106
    $template->param(
98
        index     => $index,
107
        index     => $index,
(-)a/cataloguing/value_builder/unimarc_field_117.pl (-5 / +15 lines)
Lines 62-67 function Clic$field_number(i) { Link Here
62
62
63
return ($field_number,$res);
63
return ($field_number,$res);
64
}
64
}
65
66
sub wrapper {
67
    my ($char) = @_;
68
    return "space" if $char eq " ";
69
    return "dblspace" if $char eq "  ";
70
    return "pipe" if $char eq "|";
71
    return "dblpipe" if $char eq "||";
72
    return $char;
73
}
74
65
sub plugin {
75
sub plugin {
66
my ($input) = @_;
76
my ($input) = @_;
67
	my $index= $input->param('index');
77
	my $index= $input->param('index');
Lines 76-87 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
86
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
87
			     debug => 1,
78
			     });
88
			     });
79
 	my $f1 = substr($result,0,2);
89
 	my $f1 = wrapper( substr($result,0,2) );
80
 	my $f2 = substr($result,2,2);
90
 	my $f2 = wrapper( substr($result,2,2) );
81
 	my $f3 = substr($result,4,2);
91
 	my $f3 = wrapper( substr($result,4,2) );
82
 	my $f4 = substr($result,6,2);
92
 	my $f4 = wrapper( substr($result,6,2) );
83
93
84
 	my $f5 = substr($result,8,1);
94
 	my $f5 = wrapper( substr($result,8,1) );
85
95
86
	$template->param(index => $index,
96
	$template->param(index => $index,
87
							"f1$f1" => 1,
97
							"f1$f1" => 1,
(-)a/cataloguing/value_builder/unimarc_field_120.pl (-6 / +15 lines)
Lines 63-68 function Clic$function_name(i) { Link Here
63
63
64
return ($function_name,$res);
64
return ($function_name,$res);
65
}
65
}
66
67
sub wrapper {
68
    my ($char) = @_;
69
    return "space" if $char eq " ";
70
    return "dblspace" if $char eq "  ";
71
    return "pipe" if $char eq "|";
72
    return $char;
73
}
74
66
sub plugin {
75
sub plugin {
67
my ($input) = @_;
76
my ($input) = @_;
68
	my $index= $input->param('index');
77
	my $index= $input->param('index');
Lines 82-94 my ($template, $loggedinuser, $cookie) Link Here
82
	my $f1 = substr($result,0,1);
91
	my $f1 = substr($result,0,1);
83
	my $f2 = substr($result,1,1);
92
	my $f2 = substr($result,1,1);
84
	my $f3 = substr($result,2,1);
93
	my $f3 = substr($result,2,1);
85
	my $f4 = substr($result,3,1);
94
	my $f4 = wrapper( substr($result,3,1) );
86
	my $f5 = substr($result,4,1);
95
	my $f5 = wrapper( substr($result,4,1) );
87
	my $f6 = substr($result,5,1);
96
	my $f6 = wrapper( substr($result,5,1) );
88
	my $f7 = substr($result,6,1);
97
	my $f7 = wrapper( substr($result,6,1) );
89
	my $f8 = substr($result,7,2);
98
	my $f8 = substr($result,7,2);
90
	my $f9 = substr($result,9,2);
99
	my $f9 = wrapper( substr($result,9,2) );
91
	my $f10 = substr($result,11,2);
100
	my $f10 = wrapper( substr($result,11,2) );
92
	$template->param(index => $index,
101
	$template->param(index => $index,
93
							"f1$f1" => 1,
102
							"f1$f1" => 1,
94
							"f2$f2" => 1,
103
							"f2$f2" => 1,
(-)a/cataloguing/value_builder/unimarc_field_121a.pl (-2 / +10 lines)
Lines 63-68 function Clic$function_name(i) { Link Here
63
63
64
return ($function_name,$res);
64
return ($function_name,$res);
65
}
65
}
66
67
sub wrapper {
68
    my ($char) = @_;
69
    return "space" if $char eq " ";
70
    return "pipe" if $char eq "|";
71
    return $char;
72
}
73
66
sub plugin {
74
sub plugin {
67
my ($input) = @_;
75
my ($input) = @_;
68
	my $index= $input->param('index');
76
	my $index= $input->param('index');
Lines 80-87 my ($template, $loggedinuser, $cookie) Link Here
80
			     debug => 1,
88
			     debug => 1,
81
			     });
89
			     });
82
	my $f1 = substr($result,0,1);
90
	my $f1 = substr($result,0,1);
83
	my $f2 = substr($result,1,1);
91
	my $f2 = wrapper( substr($result,1,1) );
84
	my $f3 = substr($result,2,1);
92
	my $f3 = wrapper( substr($result,2,1) );
85
	my $f4 = substr($result,3,2);
93
	my $f4 = substr($result,3,2);
86
	my $f5 = substr($result,5,1);
94
	my $f5 = substr($result,5,1);
87
	my $f6 = substr($result,6,1);
95
	my $f6 = substr($result,6,1);
(-)a/cataloguing/value_builder/unimarc_field_125b.pl (-1 / +9 lines)
Lines 60-65 function Clic$function_name(i) { Link Here
60
60
61
return ($function_name,$res);
61
return ($function_name,$res);
62
}
62
}
63
64
sub wrapper {
65
    my ($char) = @_;
66
    return "space" if $char eq " ";
67
    return "pipe" if $char eq "|";
68
    return $char;
69
}
70
63
sub plugin {
71
sub plugin {
64
my ($input) = @_;
72
my ($input) = @_;
65
	my $index= $input->param('index');
73
	my $index= $input->param('index');
Lines 76-82 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
84
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
85
			     debug => 1,
78
			     });
86
			     });
79
	my $f1 = substr($result,0,1);
87
	my $f1 = wrapper( substr($result,0,1) );
80
	$template->param(index => $index,
88
	$template->param(index => $index,
81
			 "f1$f1" => 1);
89
			 "f1$f1" => 1);
82
        output_html_with_http_headers $input, $cookie, $template->output;
90
        output_html_with_http_headers $input, $cookie, $template->output;
(-)a/cataloguing/value_builder/unimarc_field_126a.pl (-6 / +14 lines)
Lines 60-65 function Clic$function_name(i) { Link Here
60
60
61
return ($function_name,$res);
61
return ($function_name,$res);
62
}
62
}
63
64
sub wrapper {
65
    my ($char) = @_;
66
    return "space" if $char eq " ";
67
    return "pipe" if $char eq "|";
68
    return $char;
69
}
70
63
sub plugin {
71
sub plugin {
64
my ($input) = @_;
72
my ($input) = @_;
65
	my $index= $input->param('index');
73
	my $index= $input->param('index');
Lines 83-94 my ($template, $loggedinuser, $cookie) Link Here
83
	my $f5 = substr($result,4,1);
91
	my $f5 = substr($result,4,1);
84
	my $f6 = substr($result,5,1);
92
	my $f6 = substr($result,5,1);
85
	my $f7 = substr($result,6,1);
93
	my $f7 = substr($result,6,1);
86
	my $f8 = substr($result,7,1);
94
	my $f8 = wrapper( substr($result,7,1) );
87
	my $f9 = substr($result,8,1);
95
	my $f9 = wrapper( substr($result,8,1) );
88
	my $f10 = substr($result,9,1);
96
	my $f10 = wrapper( substr($result,9,1) );
89
	my $f11 = substr($result,10,1);
97
	my $f11 = wrapper( substr($result,10,1) );
90
	my $f12 = substr($result,11,1);
98
	my $f12 = wrapper( substr($result,11,1) );
91
	my $f13 = substr($result,12,1);
99
	my $f13 = wrapper( substr($result,12,1) );
92
	my $f14 = substr($result,13,1);
100
	my $f14 = substr($result,13,1);
93
	my $f15 = substr($result,14,1);
101
	my $f15 = substr($result,14,1);
94
	$template->param(index => $index,
102
	$template->param(index => $index,
(-)a/cataloguing/value_builder/unimarc_field_128b.pl (-1 / +8 lines)
Lines 60-65 function Clic$function_name(i) { Link Here
60
60
61
return ($function_name,$res);
61
return ($function_name,$res);
62
}
62
}
63
64
sub wrapper {
65
    my ($char) = @_;
66
    return "dblpipe" if $char eq "||";
67
    return $char;
68
}
69
63
sub plugin {
70
sub plugin {
64
my ($input) = @_;
71
my ($input) = @_;
65
	my $index= $input->param('index');
72
	my $index= $input->param('index');
Lines 76-82 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
83
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
84
			     debug => 1,
78
			     });
85
			     });
79
	my $f1 = substr($result,0,2);
86
	my $f1 = wrapper( substr($result,0,2) );
80
	$template->param(index => $index,
87
	$template->param(index => $index,
81
			 "f1$f1" => 1);
88
			 "f1$f1" => 1);
82
        output_html_with_http_headers $input, $cookie, $template->output;
89
        output_html_with_http_headers $input, $cookie, $template->output;
(-)a/cataloguing/value_builder/unimarc_field_130.pl (-1 / +9 lines)
Lines 61-66 function Clic$function_name(i) { Link Here
61
61
62
return ($function_name,$res);
62
return ($function_name,$res);
63
}
63
}
64
65
sub wrapper {
66
    my ($char) = @_;
67
    return "space" if $char eq " ";
68
    return "pipe" if $char eq "|";
69
    return $char;
70
}
71
64
sub plugin {
72
sub plugin {
65
my ($input) = @_;
73
my ($input) = @_;
66
	my $index= $input->param('index');
74
	my $index= $input->param('index');
Lines 79-85 my ($template, $loggedinuser, $cookie) Link Here
79
			     });
87
			     });
80
	my $f1 = substr($result,0,1);
88
	my $f1 = substr($result,0,1);
81
	my $f2 = substr($result,1,1);
89
	my $f2 = substr($result,1,1);
82
	my $f3 = substr($result,2,1);
90
	my $f3 = wrapper( substr($result,2,1) );
83
	my $f4 = substr($result,3,1);
91
	my $f4 = substr($result,3,1);
84
	my $f5 = substr($result,4,3);
92
	my $f5 = substr($result,4,3);
85
	my $f6 = substr($result,7,1);
93
	my $f6 = substr($result,7,1);
(-)a/cataloguing/value_builder/unimarc_field_135a.pl (-1 / +9 lines)
Lines 60-65 function Clic$function_name(i) { Link Here
60
60
61
return ($function_name,$res);
61
return ($function_name,$res);
62
}
62
}
63
64
sub wrapper {
65
    my ($char) = @_;
66
    return "space" if $char eq " ";
67
    return "pipe" if $char eq "|";
68
    return $char;
69
}
70
63
sub plugin {
71
sub plugin {
64
my ($input) = @_;
72
my ($input) = @_;
65
	my $index= $input->param('index');
73
	my $index= $input->param('index');
Lines 76-82 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
84
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
85
			     debug => 1,
78
			     });
86
			     });
79
	my $f1 = substr($result,0,1);
87
	my $f1 = wrapper( substr($result,0,1) );
80
	my $f2 = substr($result,1,1);
88
	my $f2 = substr($result,1,1);
81
	my $f3 = substr($result,2,1);
89
	my $f3 = substr($result,2,1);
82
	my $f4 = substr($result,3,1);
90
	my $f4 = substr($result,3,1);
(-)a/cataloguing/value_builder/unimarc_field_140.pl (-17 / +26 lines)
Lines 60-65 function Clic$function_name(i) { Link Here
60
60
61
return ($function_name,$res);
61
return ($function_name,$res);
62
}
62
}
63
64
sub wrapper {
65
    my ($char) = @_;
66
    return "space" if $char eq " ";
67
    return "dblspace" if $char eq "  ";
68
    return "pipe" if $char eq "|";
69
    return $char;
70
}
71
63
sub plugin {
72
sub plugin {
64
my ($input) = @_;
73
my ($input) = @_;
65
	my $index= $input->param('index');
74
	my $index= $input->param('index');
Lines 76-98 my ($template, $loggedinuser, $cookie) Link Here
76
			     flagsrequired => {editcatalogue => '*'},
85
			     flagsrequired => {editcatalogue => '*'},
77
			     debug => 1,
86
			     debug => 1,
78
			     });
87
			     });
79
	my $f1 = substr($result,0,1);
88
	my $f1 = wrapper( substr($result,0,1) );
80
	my $f2 = substr($result,1,1);
89
	my $f2 = wrapper( substr($result,1,1) );
81
	my $f3 = substr($result,2,1);
90
	my $f3 = wrapper( substr($result,2,1) );
82
	my $f4 = substr($result,3,1);
91
	my $f4 = wrapper( substr($result,3,1) );
83
	my $f5 = substr($result,4,1);
92
	my $f5 = wrapper( substr($result,4,1) );
84
	my $f6 = substr($result,5,1);
93
	my $f6 = wrapper( substr($result,5,1) );
85
	my $f7 = substr($result,6,1);
94
	my $f7 = wrapper( substr($result,6,1) );
86
	my $f8 = substr($result,7,1);
95
	my $f8 = wrapper( substr($result,7,1) );
87
	my $f9 = substr($result,8,1);
96
	my $f9 = wrapper( substr($result,8,1) );
88
	my $f10 = substr($result,9,2);
97
	my $f10 = wrapper( substr($result,9,2) );
89
	my $f11 = substr($result,11,2);
98
	my $f11 = wrapper( substr($result,11,2) );
90
	my $f12 = substr($result,13,2);
99
	my $f12 = wrapper( substr($result,13,2) );
91
	my $f13 = substr($result,15,2);
100
	my $f13 = wrapper( substr($result,15,2) );
92
	my $f14 = substr($result,17,2);
101
	my $f14 = wrapper( substr($result,17,2) );
93
	my $f15 = substr($result,19,1);
102
	my $f15 = wrapper( substr($result,19,1) );
94
	my $f16 = substr($result,20,1);
103
	my $f16 = wrapper( substr($result,20,1) );
95
	my $f17 = substr($result,21,1);
104
	my $f17 = wrapper( substr($result,21,1) );
96
	my $f18 = substr($result,22,1);
105
	my $f18 = substr($result,22,1);
97
	my $f19 = substr($result,23,1);
106
	my $f19 = substr($result,23,1);
98
	my $f20 = substr($result,24,1);
107
	my $f20 = substr($result,24,1);
(-)a/cataloguing/value_builder/unimarc_leader.pl (-6 / +13 lines)
Lines 66-71 function Clic$function_name(i) { Link Here
66
    return ( $function_name, $res );
66
    return ( $function_name, $res );
67
}
67
}
68
68
69
sub wrapper {
70
    my ($char) = @_;
71
    return "space" if $char eq " ";
72
    return "pipe" if $char eq "|";
73
    return $char;
74
}
75
69
sub plugin {
76
sub plugin {
70
    my ($input) = @_;
77
    my ($input) = @_;
71
    my $index   = $input->param('index');
78
    my $index   = $input->param('index');
Lines 83-95 sub plugin { Link Here
83
        }
90
        }
84
    );
91
    );
85
    $result = "     nam                 " unless $result;
92
    $result = "     nam                 " unless $result;
86
    my $f5  = substr( $result, 5,  1 );
93
    my $f5  = wrapper( substr( $result, 5,  1 ) );
87
    my $f6  = substr( $result, 6,  1 );
94
    my $f6  = wrapper( substr( $result, 6,  1 ) );
88
    my $f7  = substr( $result, 7,  1 );
95
    my $f7  = wrapper( substr( $result, 7,  1 ) );
89
    my $f8  = substr( $result, 8,  1 );
96
    my $f8  = wrapper( substr( $result, 8,  1 ) );
90
    my $f9  = substr( $result, 9,  1 );
97
    my $f9  = substr( $result, 9,  1 );
91
    my $f17 = substr( $result, 17, 1 );
98
    my $f17 = wrapper( substr( $result, 17, 1 ) );
92
    my $f18 = substr( $result, 18, 1 );
99
    my $f18 = wrapper( substr( $result, 18, 1 ) );
93
    my $f19 = substr( $result, 19, 1 );
100
    my $f19 = substr( $result, 19, 1 );
94
101
95
    $template->param(
102
    $template->param(
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_100.tt (-5 / +5 lines)
Lines 14-20 Link Here
14
        <td><label for="f2">Type of Publication Date: Publication Dates 1 and 2</label></td>
14
        <td><label for="f2">Type of Publication Date: Publication Dates 1 and 2</label></td>
15
        <td>
15
        <td>
16
            <select name="f2" id="f2" size="1">
16
            <select name="f2" id="f2" size="1">
17
            [% IF ( f2 ) %]
17
            [% IF ( f2space ) %]
18
                <option value=" " selected="selected">Non required value</option>
18
                <option value=" " selected="selected">Non required value</option>
19
            [% ELSE %]
19
            [% ELSE %]
20
                <option value=" ">Non required value</option>
20
                <option value=" ">Non required value</option>
Lines 494-500 languages and obsolete typography) Link Here
494
        <td>
494
        <td>
495
            <select name="f13" id="f13" size="1">
495
            <select name="f13" id="f13" size="1">
496
            
496
            
497
            [% IF ( f13 ) %]
497
            [% IF ( f13dblspace ) %]
498
                    <option value="  " selected="selected">non required value</option>
498
                    <option value="  " selected="selected">non required value</option>
499
            [% ELSE %]
499
            [% ELSE %]
500
                    <option value="  ">non required value</option>
500
                    <option value="  ">non required value</option>
Lines 578-587 languages and obsolete typography)</option> Link Here
578
    <td><label for="f15">Script of Title</label></td>
578
    <td><label for="f15">Script of Title</label></td>
579
    <td>
579
    <td>
580
    <select name="f15" id="f15" size="1">
580
    <select name="f15" id="f15" size="1">
581
            [% IF ( f15 ) %]
581
            [% IF ( f15dblspace ) %]
582
                    <option value=" " selected="selected">Non required value</option>
582
                    <option value="  " selected="selected">Non required value</option>
583
            [% ELSE %]
583
            [% ELSE %]
584
                    <option value=" ">Non required value</option>
584
                    <option value="  ">Non required value</option>
585
            [% END %]
585
            [% END %]
586
            
586
            
587
            [% IF ( f15ba ) %]
587
            [% IF ( f15ba ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_105.tt (-9 / +9 lines)
Lines 16-22 Link Here
16
            	           <option value="|">|- Filling character</option>
16
            	           <option value="|">|- Filling character</option>
17
                        [% END %]
17
                        [% END %]
18
            
18
            
19
			[% IF ( f1 ) %]
19
			[% IF ( f1space ) %]
20
				<option value=" " selected="selected">non required value</option>
20
				<option value=" " selected="selected">non required value</option>
21
			[% ELSE %]
21
			[% ELSE %]
22
				<option value=" ">non required value</option>
22
				<option value=" ">non required value</option>
Lines 114-120 Link Here
114
                            <option value="|">|- Filling character</option>
114
                            <option value="|">|- Filling character</option>
115
                        [% END %]
115
                        [% END %]
116
            
116
            
117
			[% IF ( f2 ) %]
117
			[% IF ( f2space ) %]
118
				<option value=" " selected="selected">non required value</option>
118
				<option value=" " selected="selected">non required value</option>
119
			[% ELSE %]
119
			[% ELSE %]
120
				<option value=" ">non required value</option>
120
				<option value=" ">non required value</option>
Lines 211-217 Link Here
211
                            <option value="|">|- Filling character</option>
211
                            <option value="|">|- Filling character</option>
212
                        [% END %]
212
                        [% END %]
213
            
213
            
214
			[% IF ( f3 ) %]
214
			[% IF ( f3space ) %]
215
				<option value=" " selected="selected">non required value</option>
215
				<option value=" " selected="selected">non required value</option>
216
			[% ELSE %]
216
			[% ELSE %]
217
				<option value=" ">non required value</option>
217
				<option value=" ">non required value</option>
Lines 307-313 Link Here
307
            	<option value="|">|- Filling character</option>
307
            	<option value="|">|- Filling character</option>
308
            [% END %]
308
            [% END %]
309
            
309
            
310
			[% IF ( f4 ) %]
310
			[% IF ( f4space ) %]
311
				<option value=" " selected="selected">non required value</option>
311
				<option value=" " selected="selected">non required value</option>
312
			[% ELSE %]
312
			[% ELSE %]
313
				<option value=" ">non required value</option>
313
				<option value=" ">non required value</option>
Lines 404-410 Link Here
404
                            <option value="|">|- Filling character</option>
404
                            <option value="|">|- Filling character</option>
405
                        [% END %]
405
                        [% END %]
406
            
406
            
407
			[% IF ( f5 ) %]
407
			[% IF ( f5space ) %]
408
				<option value=" " selected="selected">non required value</option>
408
				<option value=" " selected="selected">non required value</option>
409
			[% ELSE %]
409
			[% ELSE %]
410
				<option value=" ">non required value</option>
410
				<option value=" ">non required value</option>
Lines 542-548 Link Here
542
                            <option value="|">|- Filling character</option>
542
                            <option value="|">|- Filling character</option>
543
                        [% END %]
543
                        [% END %]
544
            
544
            
545
			[% IF ( f6 ) %]
545
			[% IF ( f6space ) %]
546
				<option value=" " selected="selected">non required value</option>
546
				<option value=" " selected="selected">non required value</option>
547
			[% ELSE %]
547
			[% ELSE %]
548
				<option value=" ">non required value</option>
548
				<option value=" ">non required value</option>
Lines 680-686 Link Here
680
                            <option value="|">|- Filling character</option>
680
                            <option value="|">|- Filling character</option>
681
                        [% END %]
681
                        [% END %]
682
            
682
            
683
			[% IF ( f7 ) %]
683
			[% IF ( f7space ) %]
684
				<option value=" " selected="selected">non required value</option>
684
				<option value=" " selected="selected">non required value</option>
685
			[% ELSE %]
685
			[% ELSE %]
686
				<option value=" ">non required value</option>
686
				<option value=" ">non required value</option>
Lines 817-823 Link Here
817
                            <option value="|">|- Filling character</option>
817
                            <option value="|">|- Filling character</option>
818
                        [% END %]
818
                        [% END %]
819
                        
819
                        
820
                        [% IF ( f8 ) %]
820
                        [% IF ( f8space ) %]
821
                            <option value=" " selected="selected">non required value</option>
821
                            <option value=" " selected="selected">non required value</option>
822
                        [% ELSE %]
822
                        [% ELSE %]
823
                            <option value=" ">non required value</option>
823
                            <option value=" ">non required value</option>
Lines 949-955 Link Here
949
        <td><label for="f9">Conference or meeting code:</label></td>
949
        <td><label for="f9">Conference or meeting code:</label></td>
950
                <td>
950
                <td>
951
                <select name="f9" id="f9" size="1">
951
                <select name="f9" id="f9" size="1">
952
               	[% IF ( f1pipe ) %]
952
               	[% IF ( f9pipe ) %]
953
            		<option value="|" selected="selected">|- Filling character</option>
953
            		<option value="|" selected="selected">|- Filling character</option>
954
	            [% ELSE %]
954
	            [% ELSE %]
955
    	        	<option value="|">|- Filling character</option>
955
    	        	<option value="|">|- Filling character</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_110.tt (-1 / +1 lines)
Lines 198-204 Link Here
198
                            <option value="|">|- Filling character</option>
198
                            <option value="|">|- Filling character</option>
199
                        [% END %]
199
                        [% END %]
200
            
200
            
201
                    [% IF ( f4 ) %]
201
                    [% IF ( f4space ) %]
202
                        <option value=" " selected="selected">non required value</option>
202
                        <option value=" " selected="selected">non required value</option>
203
                        [% ELSE %]
203
                        [% ELSE %]
204
                        <option value=" ">non required value</option>
204
                        <option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_115a.tt (-1 / +1 lines)
Lines 48-54 Link Here
48
		<td><label for="f3">Colour indicator</label></td>
48
		<td><label for="f3">Colour indicator</label></td>
49
		<td>
49
		<td>
50
	<select name="f3" id="f3" size="1">
50
	<select name="f3" id="f3" size="1">
51
			[% IF ( f1pipe ) %]
51
			[% IF ( f3pipe ) %]
52
				<option value="|" selected="selected">|- Filling character</option>
52
				<option value="|" selected="selected">|- Filling character</option>
53
			[% ELSE %]
53
			[% ELSE %]
54
				<option value="|">|- Filling character</option>
54
				<option value="|">|- Filling character</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_116.tt (-27 / +27 lines)
Lines 287-298 Link Here
287
		<td><label for="f5">Techniques (Drawings, Paintings) 1</label></td>
287
		<td><label for="f5">Techniques (Drawings, Paintings) 1</label></td>
288
		<td>
288
		<td>
289
			<select name="f5" id="f5" size="1">
289
			<select name="f5" id="f5" size="1">
290
			[% IF ( f5pipe ) %]
290
			[% IF ( f5dblpipe ) %]
291
                            <option value="|" selected="selected">|- Filling character</option>
291
                            <option value="||" selected="selected">|- Filling character</option>
292
                        [% ELSE %]
292
                        [% ELSE %]
293
                            <option value="|">|- Filling character</option>
293
                            <option value="||">||- Filling characters</option>
294
                        [% END %]
294
                        [% END %]
295
                        [% IF ( f5 ) %]
295
                        [% IF ( f5dblspace ) %]
296
                                <option value="  " selected="selected">non required value</option>
296
                                <option value="  " selected="selected">non required value</option>
297
                        [% ELSE %]
297
                        [% ELSE %]
298
                                <option value="  ">non required value</option>
298
                                <option value="  ">non required value</option>
Lines 484-495 Link Here
484
		<td><label for="f6">Techniques (Drawings, Paintings) 2</label></td>
484
		<td><label for="f6">Techniques (Drawings, Paintings) 2</label></td>
485
		<td>
485
		<td>
486
			<select name="f6" id="f6" size="1">
486
			<select name="f6" id="f6" size="1">
487
			[% IF ( f6pipe ) %]
487
			[% IF ( f6dblpipe ) %]
488
            	<option value="|" selected="selected">|- Filling character</option>
488
            	<option value="||" selected="selected">||- Filling characters</option>
489
            [% ELSE %]
489
            [% ELSE %]
490
            	<option value="|">|- Filling character</option>
490
            	<option value="||">||- Filling characters</option>
491
            [% END %]
491
            [% END %]
492
			[% IF ( f6 ) %]
492
			[% IF ( f6dblspace ) %]
493
				<option value="  " selected="selected">non required value</option>
493
				<option value="  " selected="selected">non required value</option>
494
			[% ELSE %]
494
			[% ELSE %]
495
				<option value="  ">non required value</option>
495
				<option value="  ">non required value</option>
Lines 685-696 Link Here
685
		<td><label for="f7">Techniques (Drawings, Paintings) 3</label></td>
685
		<td><label for="f7">Techniques (Drawings, Paintings) 3</label></td>
686
		<td>
686
		<td>
687
			<select name="f7" id="f7" size="1">
687
			<select name="f7" id="f7" size="1">
688
			[% IF ( f7pipe ) %]
688
			[% IF ( f7dblpipe ) %]
689
            	<option value="|" selected="selected">|- Filling character</option>
689
            	<option value="||" selected="selected">||- Filling characters</option>
690
            [% ELSE %]
690
            [% ELSE %]
691
            	<option value="|">|- Filling character</option>
691
            	<option value="||">||- Filling characters</option>
692
            [% END %]
692
            [% END %]
693
			[% IF ( f7 ) %]
693
			[% IF ( f7dblspace ) %]
694
				<option value="  " selected="selected">non required value</option>
694
				<option value="  " selected="selected">non required value</option>
695
			[% ELSE %]
695
			[% ELSE %]
696
				<option value="  ">non required value</option>
696
				<option value="  ">non required value</option>
Lines 889-900 Link Here
889
		<td><label for="f8">Technique (Prints) 1</label></td>
889
		<td><label for="f8">Technique (Prints) 1</label></td>
890
		<td>
890
		<td>
891
			<select name="f8" id="f8" size="1">
891
			<select name="f8" id="f8" size="1">
892
			[% IF ( f8pipe ) %]
892
			[% IF ( f8dblpipe ) %]
893
            	<option value="|" selected="selected">|- Filling character</option>
893
            	<option value="||" selected="selected">||- Filling characters</option>
894
            [% ELSE %]
894
            [% ELSE %]
895
            	<option value="|">|- Filling character</option>
895
            	<option value="||">||- Filling character</option>
896
            [% END %]
896
            [% END %]
897
                        [% IF ( f8 ) %]
897
                        [% IF ( f8dblspace ) %]
898
                                <option value="  " selected="selected">non required value</option>
898
                                <option value="  " selected="selected">non required value</option>
899
                        [% ELSE %]
899
                        [% ELSE %]
900
                                <option value="  ">non required value</option>
900
                                <option value="  ">non required value</option>
Lines 1082-1094 Link Here
1082
		<td><label for="f9">Technique (Prints) 2</label></td>
1082
		<td><label for="f9">Technique (Prints) 2</label></td>
1083
		<td>
1083
		<td>
1084
			<select name="f9" id="f9" size="1">
1084
			<select name="f9" id="f9" size="1">
1085
			[% IF ( f9pipe ) %]
1085
			[% IF ( f9dblpipe ) %]
1086
            	<option value="|" selected="selected">|- Filling character</option>
1086
            	<option value="||" selected="selected">||- Filling characters</option>
1087
            [% ELSE %]
1087
            [% ELSE %]
1088
            	<option value="|">|- Filling character</option>
1088
            	<option value="||">||- Filling characters</option>
1089
            [% END %]
1089
            [% END %]
1090
            
1090
            
1091
			[% IF ( f9 ) %]
1091
			[% IF ( f9dblspace ) %]
1092
				<option value="  " selected="selected">non required value</option>
1092
				<option value="  " selected="selected">non required value</option>
1093
			[% ELSE %]
1093
			[% ELSE %]
1094
				<option value="  ">non required value</option>
1094
				<option value="  ">non required value</option>
Lines 1278-1290 Link Here
1278
		<td><label for="f10">Technique (Prints) 3</label></td>
1278
		<td><label for="f10">Technique (Prints) 3</label></td>
1279
		<td>
1279
		<td>
1280
			<select name="f10" id="f10" size="1">
1280
			<select name="f10" id="f10" size="1">
1281
			[% IF ( f10pipe ) %]
1281
			[% IF ( f10dblpipe ) %]
1282
            	<option value="|" selected="selected">|- Filling character</option>
1282
            	<option value="||" selected="selected">||- Filling characters</option>
1283
            [% ELSE %]
1283
            [% ELSE %]
1284
            	<option value="|">|- Filling character</option>
1284
            	<option value="||">||- Filling characters</option>
1285
            [% END %]
1285
            [% END %]
1286
            
1286
            
1287
			[% IF ( f10 ) %]
1287
			[% IF ( f10dblspace ) %]
1288
				<option value="  " selected="selected">non required value</option>
1288
				<option value="  " selected="selected">non required value</option>
1289
			[% ELSE %]
1289
			[% ELSE %]
1290
				<option value="  ">non required value</option>
1290
				<option value="  ">non required value</option>
Lines 1472-1481 Link Here
1472
		<td><label for="f11">Functional Designation</label></td>
1472
		<td><label for="f11">Functional Designation</label></td>
1473
		<td>
1473
		<td>
1474
			<select name="f11" id="f11" size="1">
1474
			<select name="f11" id="f11" size="1">
1475
			[% IF ( f11pipe ) %]
1475
			[% IF ( f11dblpipe ) %]
1476
                            <option value="|" selected="selected">|- Filling character</option>
1476
                            <option value="||" selected="selected">||- Filling characters</option>
1477
                        [% ELSE %]
1477
                        [% ELSE %]
1478
                            <option value="|">|- Filling character</option>
1478
                            <option value="||">||- Filling characters</option>
1479
                        [% END %]
1479
                        [% END %]
1480
                        
1480
                        
1481
			[% IF ( f11aa ) %]
1481
			[% IF ( f11aa ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_117.tt (-15 / +15 lines)
Lines 10-19 Link Here
10
		<td><label for="f1">Specific Material Designation</label></td>
10
		<td><label for="f1">Specific Material Designation</label></td>
11
		<td>
11
		<td>
12
			<select name="f1" id="f1" size="1">
12
			<select name="f1" id="f1" size="1">
13
			[% IF ( f1pipe ) %]
13
			[% IF ( f1dblpipe ) %]
14
            	           <option value="|" selected="selected">|- Filling character</option>
14
            	           <option value="||" selected="selected">||- Filling characters</option>
15
                        [% ELSE %]
15
                        [% ELSE %]
16
                            <option value="|">|- Filling character</option>
16
                            <option value="||">||- Filling characters</option>
17
                        [% END %]
17
                        [% END %]
18
            
18
            
19
			[% IF ( f1aa ) %]
19
			[% IF ( f1aa ) %]
Lines 220-232 Link Here
220
		<td><label for="f2">Material 1</label></td>
220
		<td><label for="f2">Material 1</label></td>
221
		<td>
221
		<td>
222
			<select name="f2" id="f2" size="1">
222
			<select name="f2" id="f2" size="1">
223
			[% IF ( f2pipe ) %]
223
			[% IF ( f2dblpipe ) %]
224
                            <option value="|" selected="selected">|- Filling character</option>
224
                            <option value="||" selected="selected">||- Filling characters</option>
225
                        [% ELSE %]
225
                        [% ELSE %]
226
                            <option value="|">|- Filling character</option>
226
                            <option value="||">||- Filling characters</option>
227
                        [% END %]
227
                        [% END %]
228
            
228
            
229
			[% IF ( f2 ) %]
229
			[% IF ( f2dblspace ) %]
230
				<option value="  " selected="selected">non required value</option>
230
				<option value="  " selected="selected">non required value</option>
231
			[% ELSE %]
231
			[% ELSE %]
232
				<option value="  ">non required value</option>
232
				<option value="  ">non required value</option>
Lines 399-411 Link Here
399
		<td><label for="f3">Material 2</label></td>
399
		<td><label for="f3">Material 2</label></td>
400
		<td>
400
		<td>
401
			<select name="f3" id="f3" size="1">
401
			<select name="f3" id="f3" size="1">
402
			[% IF ( f3pipe ) %]
402
			[% IF ( f3dblpipe ) %]
403
                            <option value="|" selected="selected">|- Filling character</option>
403
                            <option value="||" selected="selected">||- Filling characters</option>
404
                        [% ELSE %]
404
                        [% ELSE %]
405
                            <option value="|">|- Filling character</option>
405
                            <option value="||">||- Filling characters</option>
406
                        [% END %]
406
                        [% END %]
407
            
407
            
408
			[% IF ( f3 ) %]
408
			[% IF ( f3dblspace ) %]
409
				<option value="  " selected="selected">non required value</option>
409
				<option value="  " selected="selected">non required value</option>
410
			[% ELSE %]
410
			[% ELSE %]
411
				<option value="  ">non required value</option>
411
				<option value="  ">non required value</option>
Lines 579-590 Link Here
579
		<td><label for="f4">Material 3</label></td>
579
		<td><label for="f4">Material 3</label></td>
580
		<td>
580
		<td>
581
			<select name="f4" id="f4" size="1">
581
			<select name="f4" id="f4" size="1">
582
			[% IF ( f4pipe ) %]
582
			[% IF ( f4dblpipe ) %]
583
                            <option value="|" selected="selected">|- Filling character</option>
583
                            <option value="||" selected="selected">||- Filling characters</option>
584
                        [% ELSE %]
584
                        [% ELSE %]
585
                            <option value="|">|- Filling character</option>
585
                            <option value="||">||- Filling characters</option>
586
                        [% END %]
586
                        [% END %]
587
                        [% IF ( f4 ) %]
587
                        [% IF ( f4dblspace ) %]
588
                                <option value="  " selected="selected">non required value</option>
588
                                <option value="  " selected="selected">non required value</option>
589
                        [% ELSE %]
589
                        [% ELSE %]
590
                                <option value="  ">non required value</option>
590
                                <option value="  ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_120.tt (-7 / +7 lines)
Lines 71-77 Link Here
71
		<td><label for="f4">Relief codes 1:</label></td>
71
		<td><label for="f4">Relief codes 1:</label></td>
72
		<td>
72
		<td>
73
			<select name="f4" id="f4" size="1">
73
			<select name="f4" id="f4" size="1">
74
			[% IF ( f4 ) %]
74
			[% IF ( f4space ) %]
75
				<option value=" " selected="selected">non required value</option>
75
				<option value=" " selected="selected">non required value</option>
76
			[% ELSE %]
76
			[% ELSE %]
77
				<option value=" ">non required value</option>
77
				<option value=" ">non required value</option>
Lines 148-154 Link Here
148
		<td><label for="f5">Relief codes 2:</label></td>
148
		<td><label for="f5">Relief codes 2:</label></td>
149
		<td>
149
		<td>
150
			<select name="f5" id="f5" size="1">
150
			<select name="f5" id="f5" size="1">
151
			[% IF ( f5 ) %]
151
			[% IF ( f5space ) %]
152
				<option value=" " selected="selected">non required value</option>
152
				<option value=" " selected="selected">non required value</option>
153
			[% ELSE %]
153
			[% ELSE %]
154
				<option value=" ">non required value</option>
154
				<option value=" ">non required value</option>
Lines 226-232 Link Here
226
		<td>
226
		<td>
227
			<select name="f6" id="f6" size="1">
227
			<select name="f6" id="f6" size="1">
228
                        
228
                        
229
                        [% IF ( f6 ) %]
229
                        [% IF ( f6space ) %]
230
                                <option value=" " selected="selected">non required value</option>
230
                                <option value=" " selected="selected">non required value</option>
231
                        [% ELSE %]
231
                        [% ELSE %]
232
                                <option value=" ">non required value</option>
232
                                <option value=" ">non required value</option>
Lines 304-310 Link Here
304
		<td><label for="f7">Relief codes 4:</label></td>
304
		<td><label for="f7">Relief codes 4:</label></td>
305
		<td>
305
		<td>
306
			<select name="f7" id="f7" size="1">
306
			<select name="f7" id="f7" size="1">
307
                        [% IF ( f7 ) %]
307
                        [% IF ( f7space ) %]
308
                                <option value=" " selected="selected">non required value</option>
308
                                <option value=" " selected="selected">non required value</option>
309
                        [% ELSE %]
309
                        [% ELSE %]
310
                                <option value=" ">non required value</option>
310
                                <option value=" ">non required value</option>
Lines 661-667 Link Here
661
		</td></tr><tr><td><label for="f9">Prime meridian 1:</label></td>
661
		</td></tr><tr><td><label for="f9">Prime meridian 1:</label></td>
662
		<td>
662
		<td>
663
			<select name="f9" id="f9" size="1">
663
			<select name="f9" id="f9" size="1">
664
			[% IF ( f9 ) %]
664
			[% IF ( f9dblspace ) %]
665
				<option value="  " selected="selected">non required value</option>
665
				<option value="  " selected="selected">non required value</option>
666
			[% ELSE %]
666
			[% ELSE %]
667
				<option value="  ">non required value</option>
667
				<option value="  ">non required value</option>
Lines 901-910 Link Here
901
		<td>
901
		<td>
902
			<select name="f10" id="f10" size="1">
902
			<select name="f10" id="f10" size="1">
903
            
903
            
904
			[% IF ( f10 ) %]
904
			[% IF ( f10dblspace ) %]
905
				<option value="  " selected="selected">non required value</option>
905
				<option value="  " selected="selected">non required value</option>
906
			[% ELSE %]
906
			[% ELSE %]
907
				<option value=" ">non required value</option>
907
				<option value="  ">non required value</option>
908
			[% END %]
908
			[% END %]
909
909
910
			[% IF ( f10aa ) %]
910
			[% IF ( f10aa ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_121a.tt (-2 / +2 lines)
Lines 27-33 Link Here
27
		<td>
27
		<td>
28
			<select name="f2" id="f2" size="1">
28
			<select name="f2" id="f2" size="1">
29
            
29
            
30
			[% IF ( f2 ) %]
30
			[% IF ( f2space ) %]
31
				<option value=" " selected="selected">non required value</option>
31
				<option value=" " selected="selected">non required value</option>
32
			[% ELSE %]
32
			[% ELSE %]
33
				<option value=" ">non required value</option>
33
				<option value=" ">non required value</option>
Lines 64-70 Link Here
64
		<td><label for="f3">Primary cartographic image 2:</label></td>
64
		<td><label for="f3">Primary cartographic image 2:</label></td>
65
		<td>
65
		<td>
66
			<select name="f3" id="f3" size="1">
66
			<select name="f3" id="f3" size="1">
67
                        [% IF ( f3 ) %]
67
                        [% IF ( f3space ) %]
68
                                <option value=" " selected="selected">non required value</option>
68
                                <option value=" " selected="selected">non required value</option>
69
                        [% ELSE %]
69
                        [% ELSE %]
70
                                <option value=" ">non required value</option>
70
                                <option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
		<td><label for="f1">Literary Text Indicator:</label></td>
10
		<td><label for="f1">Literary Text Indicator:</label></td>
11
		<td>
11
		<td>
12
			<select name="f1" id="f1" size="1">
12
			<select name="f1" id="f1" size="1">
13
			[% IF ( f1 ) %]
13
			[% IF ( f1space ) %]
14
				<option value=" " selected="selected">non required value</option>
14
				<option value=" " selected="selected">non required value</option>
15
			[% ELSE %]
15
			[% ELSE %]
16
				<option value=" ">non required value</option>
16
				<option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt (-7 / +7 lines)
Lines 415-421 Link Here
415
		<td><label for="f8">Accompanying textual material 1:</label></td>
415
		<td><label for="f8">Accompanying textual material 1:</label></td>
416
		<td>
416
		<td>
417
			<select name="f8" id="f8" size="1">
417
			<select name="f8" id="f8" size="1">
418
			[% IF ( f8 ) %]
418
			[% IF ( f8space ) %]
419
				<option value=" " selected="selected">non required value</option>
419
				<option value=" " selected="selected">non required value</option>
420
			[% ELSE %]
420
			[% ELSE %]
421
				<option value=" ">non required value</option>
421
				<option value=" ">non required value</option>
Lines 502-508 Link Here
502
		<td>
502
		<td>
503
			<select name="f9" id="f9" size="1">
503
			<select name="f9" id="f9" size="1">
504
			
504
			
505
			[% IF ( f9 ) %]
505
			[% IF ( f9space ) %]
506
				<option value=" " selected="selected">non required value</option>
506
				<option value=" " selected="selected">non required value</option>
507
			[% ELSE %]
507
			[% ELSE %]
508
				<option value=" ">non required value</option>
508
				<option value=" ">non required value</option>
Lines 589-595 Link Here
589
		<td>
589
		<td>
590
			<select name="f10" id="f10" size="1">
590
			<select name="f10" id="f10" size="1">
591
			
591
			
592
			[% IF ( f10 ) %]
592
			[% IF ( f10space ) %]
593
				<option value=" " selected="selected">non required value</option>
593
				<option value=" " selected="selected">non required value</option>
594
			[% ELSE %]
594
			[% ELSE %]
595
				<option value=" ">non required value</option>
595
				<option value=" ">non required value</option>
Lines 676-682 Link Here
676
		<td>
676
		<td>
677
			<select name="f11" id="f11" size="1">
677
			<select name="f11" id="f11" size="1">
678
			
678
			
679
			[% IF ( f11 ) %]
679
			[% IF ( f11space ) %]
680
				<option value=" " selected="selected">non required value</option>
680
				<option value=" " selected="selected">non required value</option>
681
			[% ELSE %]
681
			[% ELSE %]
682
				<option value=" ">non required value</option>
682
				<option value=" ">non required value</option>
Lines 762-768 Link Here
762
		<td><label for="f12">Accompanying textual material 5:</label></td>
762
		<td><label for="f12">Accompanying textual material 5:</label></td>
763
		<td>
763
		<td>
764
			<select name="f12" id="f12" size="1">
764
			<select name="f12" id="f12" size="1">
765
                        [% IF ( f12 ) %]
765
                        [% IF ( f12space ) %]
766
                            <option value=" " selected="selected">non required value</option>
766
                            <option value=" " selected="selected">non required value</option>
767
                        [% ELSE %]
767
                        [% ELSE %]
768
                            <option value=" ">non required value</option>
768
                            <option value=" ">non required value</option>
Lines 848-854 Link Here
848
		<td><label for="f13">Accompanying textual material 6:</label></td>
848
		<td><label for="f13">Accompanying textual material 6:</label></td>
849
		<td>
849
		<td>
850
			<select name="f13" id="f13" size="1">
850
			<select name="f13" id="f13" size="1">
851
                        [% IF ( f13 ) %]
851
                        [% IF ( f13space ) %]
852
                            <option value=" " selected="selected">non required value</option>
852
                            <option value=" " selected="selected">non required value</option>
853
                        [% ELSE %]
853
                        [% ELSE %]
854
                            <option value=" ">non required value</option>
854
                            <option value=" ">non required value</option>
Lines 1038-1041 Link Here
1038
//]]>
1038
//]]>
1039
</script>
1039
</script>
1040
1040
1041
[% INCLUDE 'popup-bottom.inc' %]
1041
[% INCLUDE 'popup-bottom.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt (-3 / +3 lines)
Lines 10-19 Link Here
10
		<td><label for="f1">Instruments ou voix dans un ensemble:</label></td>
10
		<td><label for="f1">Instruments ou voix dans un ensemble:</label></td>
11
		<td>
11
		<td>
12
			<select name="f1" id="f1" size="1">
12
			<select name="f1" id="f1" size="1">
13
			[% IF ( f1pipe ) %]
13
			[% IF ( f1dblpipe ) %]
14
            	<option value="|" selected="selected">|- Caractère de remplissage</option>
14
            	<option value="||" selected="selected">||- Caractères de remplissage</option>
15
            [% ELSE %]
15
            [% ELSE %]
16
            	<option value="|">|- Caractère de remplissage</option>
16
            	<option value="||">||- Caractères de remplissage</option>
17
            [% END %]
17
            [% END %]
18
18
19
			[% IF ( f1ba ) %]
19
			[% IF ( f1ba ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt (-1 / +1 lines)
Lines 89-95 Link Here
89
		<td>
89
		<td>
90
			<select name="f3" id="f3" size="1">
90
			<select name="f3" id="f3" size="1">
91
91
92
			[% IF ( f3 ) %]
92
			[% IF ( f3space ) %]
93
				<option value=" " selected="selected">non required value</option>
93
				<option value=" " selected="selected">non required value</option>
94
			[% ELSE %]
94
			[% ELSE %]
95
				<option value=" ">non required value</option>
95
				<option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
		<td>
11
		<td>
12
			<select name="f1" id="f1" size="1">
12
			<select name="f1" id="f1" size="1">
13
            
13
            
14
			[% IF ( f1 ) %]
14
			[% IF ( f1space ) %]
15
				<option value=" " selected="selected">non required value</option>
15
				<option value=" " selected="selected">non required value</option>
16
			[% ELSE %]
16
			[% ELSE %]
17
				<option value=" ">non required value</option>
17
				<option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt (-17 / +17 lines)
Lines 10-16 Link Here
10
		<td><label for="f1">Illustration - Book 1:</label></td>
10
		<td><label for="f1">Illustration - Book 1:</label></td>
11
		<td>
11
		<td>
12
			<select name="f1" id="f1" size="1">
12
			<select name="f1" id="f1" size="1">
13
			[% IF ( f1 ) %]
13
			[% IF ( f1space ) %]
14
				<option value=" " selected="selected">non required value</option>
14
				<option value=" " selected="selected">non required value</option>
15
			[% ELSE %]
15
			[% ELSE %]
16
				<option value=" ">non required value</option>
16
				<option value=" ">non required value</option>
Lines 105-111 Link Here
105
		<td><label for="f2">Illustration - Book 2:</label></td>
105
		<td><label for="f2">Illustration - Book 2:</label></td>
106
		<td>
106
		<td>
107
			<select name="f2" id="f2" size="1">
107
			<select name="f2" id="f2" size="1">
108
			[% IF ( f2 ) %]
108
			[% IF ( f2space ) %]
109
				<option value=" " selected="selected">non required value</option>
109
				<option value=" " selected="selected">non required value</option>
110
			[% ELSE %]
110
			[% ELSE %]
111
				<option value=" ">non required value</option>
111
				<option value=" ">non required value</option>
Lines 201-207 Link Here
201
		<td><label for="f3">Illustration - Book 3:</label></td>
201
		<td><label for="f3">Illustration - Book 3:</label></td>
202
		<td>
202
		<td>
203
			<select name="f3" id="f3" size="1">
203
			<select name="f3" id="f3" size="1">
204
			[% IF ( f3 ) %]
204
			[% IF ( f3space ) %]
205
				<option value=" " selected="selected">non required value</option>
205
				<option value=" " selected="selected">non required value</option>
206
			[% ELSE %]
206
			[% ELSE %]
207
				<option value=" ">non required value</option>
207
				<option value=" ">non required value</option>
Lines 297-303 Link Here
297
		<td>
297
		<td>
298
			<select name="f4" id="f4" size="1">
298
			<select name="f4" id="f4" size="1">
299
            
299
            
300
			[% IF ( f4 ) %]
300
			[% IF ( f4space ) %]
301
				<option value=" " selected="selected">non required value</option>
301
				<option value=" " selected="selected">non required value</option>
302
			[% ELSE %]
302
			[% ELSE %]
303
				<option value=" ">non required value</option>
303
				<option value=" ">non required value</option>
Lines 394-400 Link Here
394
		<td>
394
		<td>
395
			<select name="f5" id="f5" size="1">
395
			<select name="f5" id="f5" size="1">
396
            
396
            
397
			[% IF ( f5 ) %]
397
			[% IF ( f5space ) %]
398
				<option value=" " selected="selected">non required value</option>
398
				<option value=" " selected="selected">non required value</option>
399
			[% ELSE %]
399
			[% ELSE %]
400
				<option value=" ">non required value</option>
400
				<option value=" ">non required value</option>
Lines 465-471 Link Here
465
		<td>
465
		<td>
466
			<select name="f6" id="f6" size="1">
466
			<select name="f6" id="f6" size="1">
467
            
467
            
468
			[% IF ( f6 ) %]
468
			[% IF ( f6space ) %]
469
				<option value=" " selected="selected">non required value</option>
469
				<option value=" " selected="selected">non required value</option>
470
			[% ELSE %]
470
			[% ELSE %]
471
				<option value=" ">non required value</option>
471
				<option value=" ">non required value</option>
Lines 537-543 Link Here
537
		<td>
537
		<td>
538
			<select name="f7" id="f7" size="1">
538
			<select name="f7" id="f7" size="1">
539
            
539
            
540
			[% IF ( f7 ) %]
540
			[% IF ( f7space ) %]
541
				<option value=" " selected="selected">non required value</option>
541
				<option value=" " selected="selected">non required value</option>
542
			[% ELSE %]
542
			[% ELSE %]
543
				<option value=" ">non required value</option>
543
				<option value=" ">non required value</option>
Lines 608-614 Link Here
608
		<td>
608
		<td>
609
			<select name="f8" id="f8" size="1">
609
			<select name="f8" id="f8" size="1">
610
            
610
            
611
			[% IF ( f8 ) %]
611
			[% IF ( f8space ) %]
612
				<option value=" " selected="selected">non required value</option>
612
				<option value=" " selected="selected">non required value</option>
613
			[% ELSE %]
613
			[% ELSE %]
614
				<option value=" ">non required value</option>
614
				<option value=" ">non required value</option>
Lines 679-685 Link Here
679
		<td>
679
		<td>
680
			<select name="f9" id="f9" size="1">
680
			<select name="f9" id="f9" size="1">
681
            
681
            
682
			[% IF ( f9 ) %]
682
			[% IF ( f9space ) %]
683
				<option value=" " selected="selected">non required value</option>
683
				<option value=" " selected="selected">non required value</option>
684
			[% ELSE %]
684
			[% ELSE %]
685
				<option value=" ">non required value</option>
685
				<option value=" ">non required value</option>
Lines 732-738 Link Here
732
		<td>
732
		<td>
733
			<select name="f10" id="f10" size="1">
733
			<select name="f10" id="f10" size="1">
734
            
734
            
735
			[% IF ( f10 ) %]
735
			[% IF ( f10dblspace ) %]
736
				<option value="  " selected="selected">non required value</option>
736
				<option value="  " selected="selected">non required value</option>
737
			[% ELSE %]
737
			[% ELSE %]
738
				<option value="  ">non required value</option>
738
				<option value="  ">non required value</option>
Lines 888-894 Link Here
888
		<td>
888
		<td>
889
			<select name="f11" id="f11" size="1">
889
			<select name="f11" id="f11" size="1">
890
            
890
            
891
			[% IF ( f11 ) %]
891
			[% IF ( f11dblspace ) %]
892
				<option value="  " selected="selected">non required value</option>
892
				<option value="  " selected="selected">non required value</option>
893
			[% ELSE %]
893
			[% ELSE %]
894
				<option value="  ">non required value</option>
894
				<option value="  ">non required value</option>
Lines 1046-1052 Link Here
1046
			<td>
1046
			<td>
1047
			<select name="f12" id="f12" size="1">
1047
			<select name="f12" id="f12" size="1">
1048
            
1048
            
1049
			[% IF ( f12 ) %]
1049
			[% IF ( f12dblspace ) %]
1050
				<option value="  " selected="selected">non required value</option>
1050
				<option value="  " selected="selected">non required value</option>
1051
			[% ELSE %]
1051
			[% ELSE %]
1052
				<option value="  ">non required value</option>
1052
				<option value="  ">non required value</option>
Lines 1202-1208 Link Here
1202
		<td>
1202
		<td>
1203
			<select name="f13" id="f13" size="1">
1203
			<select name="f13" id="f13" size="1">
1204
            
1204
            
1205
			[% IF ( f13 ) %]
1205
			[% IF ( f13dblspace ) %]
1206
				<option value="  " selected="selected">non required value</option>
1206
				<option value="  " selected="selected">non required value</option>
1207
			[% ELSE %]
1207
			[% ELSE %]
1208
				<option value="  ">non required value</option>
1208
				<option value="  ">non required value</option>
Lines 1358-1364 Link Here
1358
		<td>
1358
		<td>
1359
			<select name="f14" id="f14" size="1">
1359
			<select name="f14" id="f14" size="1">
1360
1360
1361
			[% IF ( f14 ) %]
1361
			[% IF ( f14dblspace ) %]
1362
				<option value="  " selected="selected">non required value</option>
1362
				<option value="  " selected="selected">non required value</option>
1363
			[% ELSE %]
1363
			[% ELSE %]
1364
				<option value="  ">non required value</option>
1364
				<option value="  ">non required value</option>
Lines 1527-1533 Link Here
1527
		<td>
1527
		<td>
1528
			<select name="f15" id="f15" size="1">
1528
			<select name="f15" id="f15" size="1">
1529
1529
1530
			[% IF ( f15 ) %]
1530
			[% IF ( f15space ) %]
1531
				<option value=" " selected="selected">non required value</option>
1531
				<option value=" " selected="selected">non required value</option>
1532
			[% ELSE %]
1532
			[% ELSE %]
1533
				<option value=" ">non required value</option>
1533
				<option value=" ">non required value</option>
Lines 1570-1576 Link Here
1570
		<td>
1570
		<td>
1571
			<select name="f16" id="f16" size="1">
1571
			<select name="f16" id="f16" size="1">
1572
1572
1573
			[% IF ( f16 ) %]
1573
			[% IF ( f16space ) %]
1574
				<option value=" " selected="selected">non required value</option>
1574
				<option value=" " selected="selected">non required value</option>
1575
			[% ELSE %]
1575
			[% ELSE %]
1576
				<option value=" ">non required value</option>
1576
				<option value=" ">non required value</option>
Lines 1611-1617 Link Here
1611
		<td>
1611
		<td>
1612
			<select name="f17" id="f17" size="1">
1612
			<select name="f17" id="f17" size="1">
1613
1613
1614
         		[% IF ( f17 ) %]
1614
         		[% IF ( f17space ) %]
1615
				<option value=" " selected="selected">non required value</option>
1615
				<option value=" " selected="selected">non required value</option>
1616
			[% ELSE %]
1616
			[% ELSE %]
1617
				<option value=" ">non required value</option>
1617
				<option value=" ">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tt (-4 / +3 lines)
Lines 188-194 Link Here
188
            	<option value="|">|- Filling character</option>
188
            	<option value="|">|- Filling character</option>
189
            [% END %]
189
            [% END %]
190
            
190
            
191
				[% IF ( f8 ) %]
191
				[% IF ( f8space ) %]
192
					<option value=" " selected="selected"> - Hierarchical relationship undefined</option>
192
					<option value=" " selected="selected"> - Hierarchical relationship undefined</option>
193
				[% ELSE %]
193
				[% ELSE %]
194
					<option value=" "> - Hierarchical relationship undefined</option>
194
					<option value=" "> - Hierarchical relationship undefined</option>
Lines 230-236 Link Here
230
            	<option value="|">|- Filling character</option>
230
            	<option value="|">|- Filling character</option>
231
            [% END %]
231
            [% END %]
232
            
232
            
233
				[% IF ( f17 ) %]
233
				[% IF ( f17space ) %]
234
					<option value=" " selected="selected"> Full level ("item in hand")</option>
234
					<option value=" " selected="selected"> Full level ("item in hand")</option>
235
				[% ELSE %]
235
				[% ELSE %]
236
					<option value=" "> Full level ("item in hand")</option>
236
					<option value=" "> Full level ("item in hand")</option>
Lines 264-270 Link Here
264
            	<option value="|">|- Filling character</option>
264
            	<option value="|">|- Filling character</option>
265
            [% END %]
265
            [% END %]
266
            
266
            
267
				[% IF ( f18 ) %]
267
				[% IF ( f18space ) %]
268
					<option value=" " selected="selected"> - In full ISBD form</option>
268
					<option value=" " selected="selected"> - In full ISBD form</option>
269
				[% ELSE %]
269
				[% ELSE %]
270
					<option value=" "> - In full ISBD form</option>
270
					<option value=" "> - In full ISBD form</option>
271
- 

Return to bug 6465