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

(-)a/.codespell-ignore (+1 lines)
Lines 16-18 ore Link Here
16
sav
16
sav
17
theses
17
theses
18
rouge
18
rouge
19
connexion
(-)a/Koha/Edifact.pm (-1 / +1 lines)
Lines 280-286 Edifact - Edifact message handler Link Here
280
280
281
=head2 get_transmission
281
=head2 get_transmission
282
282
283
     This method is useful in debug:ing. Call on an Edifact object
283
     This method is useful in debugging. Call on an Edifact object
284
     it returns the object's transmission member
284
     it returns the object's transmission member
285
285
286
=head2 message_type
286
=head2 message_type
(-)a/Koha/Edifact/Line.pm (-3 / +3 lines)
Lines 755-763 sub pri_price { Link Here
755
755
756
    # In practice qualifier is AAE in the quote and AAA & AAB in invoices
756
    # In practice qualifier is AAE in the quote and AAA & AAB in invoices
757
    # but the following are defined
757
    # but the following are defined
758
    # AAA calculation price net (unit price excl tax but incl any allowances or charges)
758
    # AAA calculation price net (unit price excluding tax but including any allowances or charges)
759
    # AAB calculation price gross (unit price excl all taxes, allowances and charges )
759
    # AAB calculation price gross (unit price excluding all taxes, allowances and charges )
760
    # AAE information price (incl tax but excl allowances or charges )
760
    # AAE information price (including tax but excluding allowances or charges )
761
    # AAF information price (including all taxes, allowances or charges)
761
    # AAF information price (including all taxes, allowances or charges)
762
    foreach my $s ( @{ $self->{segs} } ) {
762
    foreach my $s ( @{ $self->{segs} } ) {
763
        if ( $s->tag eq 'PRI' && $s->elem( 0, 0 ) eq $price_qualifier ) {
763
        if ( $s->tag eq 'PRI' && $s->elem( 0, 0 ) eq $price_qualifier ) {
(-)a/fix-perl-path.PL (-1 / +1 lines)
Lines 29-35 $bindir =~ s!\\!/!g; # make all directory separators uniform since Win32 does Link Here
29
my $shebang = "#!$bindir\/perl";
29
my $shebang = "#!$bindir\/perl";
30
30
31
warn "Perl binary located in $bindir on this system.\n"         if $DEBUG;
31
warn "Perl binary located in $bindir on this system.\n"         if $DEBUG;
32
warn "The shebang line for this systems should be $shebang\n\n" if $DEBUG;
32
warn "The shebang line for this system should be $shebang\n\n" if $DEBUG;
33
33
34
die if $basedir eq 'test';
34
die if $basedir eq 'test';
35
35
(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 2763-2769 CREATE TABLE `deletedborrowers` ( Link Here
2763
  `updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'time of last change could be useful for synchronization with external systems (among others)',
2763
  `updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'time of last change could be useful for synchronization with external systems (among others)',
2764
  `lastseen` datetime DEFAULT NULL COMMENT 'last time a patron has been seen (connected at the OPAC or staff interface)',
2764
  `lastseen` datetime DEFAULT NULL COMMENT 'last time a patron has been seen (connected at the OPAC or staff interface)',
2765
  `lang` varchar(25) NOT NULL DEFAULT 'default' COMMENT 'lang to use to send notices to this patron',
2765
  `lang` varchar(25) NOT NULL DEFAULT 'default' COMMENT 'lang to use to send notices to this patron',
2766
  `login_attempts` int(4) NOT NULL DEFAULT 0 COMMENT 'number of failed login attemps',
2766
  `login_attempts` int(4) NOT NULL DEFAULT 0 COMMENT 'number of failed login attempts',
2767
  `overdrive_auth_token` mediumtext DEFAULT NULL COMMENT 'persist OverDrive auth token',
2767
  `overdrive_auth_token` mediumtext DEFAULT NULL COMMENT 'persist OverDrive auth token',
2768
  `anonymized` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'flag for data anonymization',
2768
  `anonymized` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'flag for data anonymization',
2769
  `autorenew_checkouts` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'flag for allowing auto-renewal',
2769
  `autorenew_checkouts` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'flag for allowing auto-renewal',
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/searchresultlist.tt (-2 / +2 lines)
Lines 76-83 Link Here
76
                    [% FOREACH line IN result %]
76
                    [% FOREACH line IN result %]
77
                        <tr data-authid="[% result.authid | html %]">
77
                        <tr data-authid="[% result.authid | html %]">
78
                            <td>
78
                            <td>
79
                                [% IF result.html %]
79
                                [% IF line.html %]
80
                                    [% result.html | $raw %]
80
                                    [% line.html | $raw %]
81
                                [% ELSE %]
81
                                [% ELSE %]
82
                                    [% PROCESS authresult summary=line.summary authid=line.authid %]
82
                                    [% PROCESS authresult summary=line.summary authid=line.authid %]
83
                                [% END %]
83
                                [% END %]
(-)a/misc/bin/connexion_import_daemon.pl (-4 / +4 lines)
Lines 62-72 Config file format: Link Here
62
                      add_only_for_matches, add_only_for_new or ignore
62
                      add_only_for_matches, add_only_for_new or ignore
63
  import_mode    - stage or direct
63
  import_mode    - stage or direct
64
  framework      - to be used if import_mode is direct, if blank, will use default
64
  framework      - to be used if import_mode is direct, if blank, will use default
65
  connection_user      - User sent from connection client
65
  connexion_user      - User sent from connexion client
66
  connection_password  - Password sent from connection client
66
  connexion_password  - Password sent from connexion client
67
67
68
  Note: If connection parameters are not defined request authentication will not be checked
68
  Note: If connexion parameters are not defined request authentication will not be checked
69
  You should specify a different user for connection to protect the Koha credentials
69
  You should specify a different user for connexion to protect the Koha credentials
70
70
71
  All process related parameters (all but ip and port) have default values as
71
  All process related parameters (all but ip and port) have default values as
72
  per Koha import process.
72
  per Koha import process.
(-)a/t/db_dependent/Holds/HoldFulfillmentPolicy.t (-1 / +1 lines)
Lines 184-190 $reserve_id = AddReserve( Link Here
184
is( $status, q{}, "Hold where pickup ne home, pickup ne holding not targeted" );
184
is( $status, q{}, "Hold where pickup ne home, pickup ne holding not targeted" );
185
Koha::Holds->find($reserve_id)->cancel;
185
Koha::Holds->find($reserve_id)->cancel;
186
186
187
# With hold_fulfillment_policy = any, hold should be pikcup up regardless of matching home or holding branch
187
# With hold_fulfillment_policy = any, hold should be picked regardless of matching home or holding branch
188
$dbh->do("DELETE FROM circulation_rules");
188
$dbh->do("DELETE FROM circulation_rules");
189
Koha::CirculationRules->set_rules(
189
Koha::CirculationRules->set_rules(
190
    {
190
    {
(-)a/t/db_dependent/HoldsQueue.t (-1 / +1 lines)
Lines 861-867 $holds_queue = $dbh->selectall_arrayref( "SELECT * FROM tmp_holdsqueue", { Slice Link Here
861
is( @$holds_queue, 0, "Hold where pickup ne home, pickup ne holding not targeted" );
861
is( @$holds_queue, 0, "Hold where pickup ne home, pickup ne holding not targeted" );
862
Koha::Holds->find($reserve_id)->cancel;
862
Koha::Holds->find($reserve_id)->cancel;
863
863
864
# With hold_fulfillment_policy = any, hold should be pikcup up regardless of matching home or holding branch
864
# With hold_fulfillment_policy = any, hold should be picked regardless of matching home or holding branch
865
$dbh->do("DELETE FROM circulation_rules");
865
$dbh->do("DELETE FROM circulation_rules");
866
Koha::CirculationRules->set_rules(
866
Koha::CirculationRules->set_rules(
867
    {
867
    {
(-)a/t/mock_templates/intranet-tmpl/prog/en/modules/about.tt (-2 / +2 lines)
Lines 252-258 Link Here
252
        [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %]
252
        [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %]
253
            <table style="cursor:pointer">
253
            <table style="cursor:pointer">
254
                <caption>Perl modules</caption>
254
                <caption>Perl modules</caption>
255
                [% FOREACH table IN tablee %]
255
                [% FOREACH table IN tables %]
256
                    <tr>
256
                    <tr>
257
                        [% FOREACH ro IN table.row %]
257
                        [% FOREACH ro IN table.row %]
258
                            [% IF ( ro.require ) %]
258
                            [% IF ( ro.require ) %]
Lines 1186-1192 Link Here
1186
                            <td style="font-weight:bold;">Description</td>
1186
                            <td style="font-weight:bold;">Description</td>
1187
                        </tr>
1187
                        </tr>
1188
                    </thead>
1188
                    </thead>
1189
                    [% FOREACH table IN tablee2 %]
1189
                    [% FOREACH table IN tables2 %]
1190
                        <tr class="[% loop.parity | html %]">
1190
                        <tr class="[% loop.parity | html %]">
1191
                            [% FOREACH ro IN table.row2 %]
1191
                            [% FOREACH ro IN table.row2 %]
1192
                                <td>[% ro.date | html %]</td>
1192
                                <td>[% ro.date | html %]</td>
(-)a/t/mock_templates/intranet-tmpl/prog/fr-CA/modules/about.tt (-3 / +2 lines)
Lines 252-258 Link Here
252
        [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %]
252
        [% WRAPPER tab_panel tabname= "perl" bt_active = 1 %]
253
            <table style="cursor:pointer">
253
            <table style="cursor:pointer">
254
                <caption>Perl modules</caption>
254
                <caption>Perl modules</caption>
255
                [% FOREACH table IN tablee %]
255
                [% FOREACH table IN tables %]
256
                    <tr>
256
                    <tr>
257
                        [% FOREACH ro IN table.row %]
257
                        [% FOREACH ro IN table.row %]
258
                            [% IF ( ro.require ) %]
258
                            [% IF ( ro.require ) %]
Lines 1192-1198 Link Here
1192
                            <td style="font-weight:bold;">Description</td>
1192
                            <td style="font-weight:bold;">Description</td>
1193
                        </tr>
1193
                        </tr>
1194
                    </thead>
1194
                    </thead>
1195
                    [% FOREACH table IN tablee2 %]
1195
                    [% FOREACH table IN tables2 %]
1196
                        <tr class="[% loop.parity | html %]">
1196
                        <tr class="[% loop.parity | html %]">
1197
                            [% FOREACH ro IN table.row2 %]
1197
                            [% FOREACH ro IN table.row2 %]
1198
                                <td>[% ro.date | html %]</td>
1198
                                <td>[% ro.date | html %]</td>
1199
- 

Return to bug 39325