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

(-)a/misc/batchCompareMARCvsFrameworks.pl (-2 / +2 lines)
Lines 2-9 Link Here
2
# small script that dumps an iso2709 file.
2
# small script that dumps an iso2709 file.
3
3
4
4
5
use strict;
5
Modern::Perl;
6
#use warnings; FIXME - Bug 2505
6
#Modern::Perl; FIXME - Bug 2505
7
BEGIN {
7
BEGIN {
8
    # find Koha's Perl modules
8
    # find Koha's Perl modules
9
    # test carefully before changing this
9
    # test carefully before changing this
(-)a/misc/batchDeleteUnusedSubfields.pl (-1 / +1 lines)
Lines 1-7 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# small script that rebuilds the non-MARC DB
2
# small script that rebuilds the non-MARC DB
3
3
4
use strict;
4
Modern::Perl;
5
#use warnings; FIXME - Bug 2505
5
#use warnings; FIXME - Bug 2505
6
BEGIN {
6
BEGIN {
7
    # find Koha's Perl modules
7
    # find Koha's Perl modules
(-)a/misc/batchImportMARCWithBiblionumbers.pl (-2 / +2 lines)
Lines 1-8 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# load records that already have biblionumber set into a koha system
2
# load records that already have biblionumber set into a koha system
3
# Written by TG on 10/04/2006
3
# Written by TG on 10/04/2006
4
use strict;
4
Modern::Perl;
5
#use warnings; FIXME - Bug 2505
5
#Modern:Perl; FIXME - Bug 2505
6
BEGIN {
6
BEGIN {
7
    # find Koha's Perl modules
7
    # find Koha's Perl modules
8
    # test carefully before changing this
8
    # test carefully before changing this
(-)a/misc/batchRebuildBiblioTables.pl (-2 / +2 lines)
Lines 2-9 Link Here
2
# Small script that rebuilds the non-MARC DB
2
# Small script that rebuilds the non-MARC DB
3
# Formerly named rebuildnonmarc.pl
3
# Formerly named rebuildnonmarc.pl
4
4
5
use strict;
5
Modern::Perl;
6
#use warnings; FIXME - Bug 2505
6
#Modern::Perl; FIXME - Bug 2505
7
7
8
BEGIN {
8
BEGIN {
9
    # find Koha's Perl modules
9
    # find Koha's Perl modules
(-)a/misc/cronjobs/build_browser_and_cloud.pl (-2 / +2 lines)
Lines 1-8 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# small script that builds the tag cloud
2
# small script that builds the tag cloud
3
3
4
use strict;
4
Modern::Perl;
5
#use warnings; FIXME - Bug 2505
5
#Modern:Perl; FIXME - Bug 2505
6
BEGIN {
6
BEGIN {
7
    # find Koha's Perl modules
7
    # find Koha's Perl modules
8
    # test carefully before changing this
8
    # test carefully before changing this
(-)a/misc/exportauth.pl (-2 / +2 lines)
Lines 3-10 Link Here
3
#MARC21 format from the command line.
3
#MARC21 format from the command line.
4
#
4
#
5
5
6
use strict;
6
Modern::Perl;
7
#use warnings; FIXME - Bug 2505
7
#Modern::Perl; FIXME - Bug 2505
8
BEGIN {
8
BEGIN {
9
    # find Koha's Perl modules
9
    # find Koha's Perl modules
10
    # test carefully before changing this
10
    # test carefully before changing this
(-)a/misc/kohalib.pl (-2 / +2 lines)
Lines 38-45 Link Here
38
#     }
38
#     }
39
#
39
#
40
40
41
use strict;
41
Modern::Perl;
42
#use warnings; FIXME - Bug 2505
42
#Modern::Perl; FIXME - Bug 2505
43
43
44
my $module_dir;
44
my $module_dir;
45
BEGIN {
45
BEGIN {
(-)a/misc/translator/tmpl_process3.pl (-3 / +2 lines)
Lines 14-21 using gettext-compatible translation files Link Here
14
14
15
=cut
15
=cut
16
16
17
use strict;
17
Modern::Perl;
18
#use warnings; FIXME - Bug 2505
18
#Modern::Perl; FIXME - Bug 2505
19
use File::Basename;
19
use File::Basename;
20
use Getopt::Long;
20
use Getopt::Long;
21
use Locale::PO;
21
use Locale::PO;
22
- 

Return to bug 27483