From: Jane Sandberg Date: Thu, 15 Jul 2021 20:58:43 +0000 (-0700) Subject: LP1856906: remove unused OpenILS::Utils::ISBN perl module X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=09a3f03bb6296356db5834fc56a93ddb9e6260a2;p=Evergreen.git LP1856906: remove unused OpenILS::Utils::ISBN perl module Signed-off-by: Jane Sandberg Signed-off-by: blake Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/ISBN.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/ISBN.pm deleted file mode 100644 index 34eed663a8..0000000000 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/ISBN.pm +++ /dev/null @@ -1,96 +0,0 @@ -package OpenILS::Utils::ISBN; - -# --------------------------------------------------------------- -# Copyright (C) 2010 Equinox Software, Inc -# Author: Joe Atzberger -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# --------------------------------------------------------------- - -use strict; -use warnings; - -use Business::ISBN; - -use base qw/Exporter/; -our $VERSION = '0.01'; -our @EXPORT_OK = qw/isbn_upconvert/; - -# Jason Stephenson at Merrimack Valley Library Consortium -# Dan Scott at Laurentian University - -sub isbn_upconvert { - my $in = @_ ? shift : return; - my $pretty = @_ ? shift : 0; - $in =~ s/\s*//g; - $in =~ s/-//g; - length($in) or return; - my $isbn = Business::ISBN->new($in) or return; - $isbn->fix_checksum() if $isbn->is_valid_checksum() == Business::ISBN::BAD_CHECKSUM; - $isbn->is_valid() or return; - return $pretty ? $isbn->as_isbn13->as_string : $isbn->as_isbn13->isbn; -} - -1; -__END__ - -For example, if you have a file isbns.txt with these lines: - -1598884093 - 1598884093 - 15 988 840 93 -0446357197 - 0 446 3 5 7 1 9 7 - 0 446 3 5 7 1 9 1 -0596526857 -0786222735 -0446360015 -0446350109 -0446314129 -0439139597 -0743294394 -159143047X -1590203097 -075480965X -0393048799 -0446831832 -0446310069 -1598883275 -0446313033 -0446360279 - -And you run: - perl -pe 'use OpenILS::Utils::ISBN qw/isbn_upconvert/; $_ = isbn_upconvert($_) . "\n";'