Skip to content

Commit

Permalink
Patch from Galen Charlton, removing $Id$ $Log$ and $Revision$ from files
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
  • Loading branch information
Chris Cormack authored and Joshua Ferraro committed Oct 19, 2007
1 parent 9578340 commit b9c20fa
Show file tree
Hide file tree
Showing 111 changed files with 25 additions and 151 deletions.
5 changes: 1 addition & 4 deletions C4/Accounts.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Accounts;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -29,9 +28,7 @@ use C4::Members;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
3 changes: 1 addition & 2 deletions C4/Acquisition.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Acquisition;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -30,7 +29,7 @@ use Time::localtime;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

# used in receiveorder subroutine
# to provide library specific handling
Expand Down
4 changes: 1 addition & 3 deletions C4/Auth.pm
Expand Up @@ -39,9 +39,7 @@ use C4::Branch; # GetBranches
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
4 changes: 1 addition & 3 deletions C4/AuthoritiesMarc.pm
Expand Up @@ -27,7 +27,7 @@ use C4::Search;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

@ISA = qw(Exporter);
@EXPORT = qw(
Expand Down Expand Up @@ -1198,8 +1198,6 @@ Paul POULAIN paul.poulain@free.fr
=cut

# $Id$
# $Log$
# Revision 1.50 2007/07/26 15:14:05 toins
# removing warn compilation.
#
Expand Down
3 changes: 1 addition & 2 deletions C4/Bookfund.pm
Expand Up @@ -17,15 +17,14 @@ package C4::Bookfund;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;


use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
3 changes: 1 addition & 2 deletions C4/Bookseller.pm
Expand Up @@ -17,14 +17,13 @@ package C4::Bookseller;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;

use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

@ISA = qw(Exporter);
@EXPORT = qw(
Expand Down
1 change: 0 additions & 1 deletion C4/Boolean.pm
@@ -1,6 +1,5 @@
package C4::Boolean;

# $Id$

#package to handle Boolean values in the parameters table
# Note: This is just a utility module; it should not be instantiated.
Expand Down
3 changes: 1 addition & 2 deletions C4/Branch.pm
Expand Up @@ -15,7 +15,6 @@ package C4::Branch;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -25,7 +24,7 @@ use C4::Koha;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion C4/Calendar.pm
Expand Up @@ -23,7 +23,7 @@ use vars qw($VERSION @EXPORT);
# use Date::Calc;

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
3 changes: 1 addition & 2 deletions C4/Circulation.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Circulation;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -44,7 +43,7 @@ use C4::Log; # logaction
our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,%EXPORT_TAGS);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
2 changes: 0 additions & 2 deletions C4/Context.pm
Expand Up @@ -16,7 +16,6 @@ package C4::Context;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$
use strict;

BEGIN {
Expand Down Expand Up @@ -944,7 +943,6 @@ Joshua Ferraro <jmf at liblime dot com>
=cut
# $Log$
# Revision 1.57 2007/05/22 09:13:55 tipaul
# Bugfixes & improvements (various and minor) :
# - updating templates to have tmpl_process3.pl running without any errors
Expand Down
3 changes: 1 addition & 2 deletions C4/Koha.pm
Expand Up @@ -17,15 +17,14 @@ package C4::Koha;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
use C4::Context;
use C4::Output;
our ($VERSION,@ISA,@EXPORT);

$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
1 change: 0 additions & 1 deletion C4/Languages.pm
Expand Up @@ -18,7 +18,6 @@ package C4::Languages;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict; use warnings; #FIXME: turn off warnings before release
require Exporter;
Expand Down
4 changes: 1 addition & 3 deletions C4/Letters.pm
Expand Up @@ -29,9 +29,7 @@ require Exporter;
our ( $VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS );

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion C4/Log.pm
Expand Up @@ -29,7 +29,7 @@ require Exporter;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
3 changes: 1 addition & 2 deletions C4/Members.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Members;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -31,7 +30,7 @@ use C4::Reserves;

our ($VERSION,@ISA,@EXPORT,@EXPORT_OK);

$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
3 changes: 1 addition & 2 deletions C4/Output.pm
Expand Up @@ -21,7 +21,6 @@ package C4::Output;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

# NOTE: I'm pretty sure this module is deprecated in favor of
# templates.
Expand All @@ -35,7 +34,7 @@ use HTML::Template::Pro;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
4 changes: 1 addition & 3 deletions C4/Overdues.pm
@@ -1,6 +1,5 @@
package C4::Overdues;

# $Id$

# Copyright 2000-2002 Katipo Communications
#
Expand Down Expand Up @@ -29,8 +28,7 @@ use Date::Manip qw/UnixDate/;
use C4::Log; # logaction

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
$VERSION = 3.00;

=head1 NAME
Expand Down
5 changes: 1 addition & 4 deletions C4/Print.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Print;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -31,9 +30,7 @@ use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
5 changes: 1 addition & 4 deletions C4/Record.pm
Expand Up @@ -18,7 +18,6 @@ package C4::Record;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
#
# $Id$
#
use strict;# use warnings; #FIXME: turn off warnings before release

Expand All @@ -33,8 +32,7 @@ use XML::LibXML;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
$VERSION = 3.00;

@ISA = qw(Exporter);

Expand Down Expand Up @@ -568,6 +566,5 @@ Joshua Ferraro <jmf@liblime.com>
=head1 MODIFICATIONS
# $Id$
=cut
3 changes: 1 addition & 2 deletions C4/Reserves.pm
Expand Up @@ -22,7 +22,6 @@ package C4::Reserves;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -37,7 +36,7 @@ our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,%EXPORT_TAGS);
my $library_name = C4::Context->preference("LibraryName");

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion C4/Review.pm
Expand Up @@ -24,7 +24,7 @@ use C4::Context;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g; shift(@v).".".join( "_", map { sprintf "%03d", $_ } @v ); };
$VERSION = 3.00;

=head1 NAME
Expand Down
4 changes: 1 addition & 3 deletions C4/Search.pm
Expand Up @@ -26,9 +26,7 @@ use C4::Date;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
1 change: 0 additions & 1 deletion C4/Serials.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Serials; #assumes C4/Serials.pm
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
use C4::Date;
Expand Down
5 changes: 1 addition & 4 deletions C4/Stats.pm
@@ -1,6 +1,5 @@
package C4::Stats;

# $Id$

# Copyright 2000-2002 Katipo Communications
#
Expand All @@ -25,9 +24,7 @@ use C4::Context;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = $VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
$VERSION = 3.00;

=head1 NAME
Expand Down
4 changes: 1 addition & 3 deletions C4/Suggestions.pm
Expand Up @@ -17,7 +17,6 @@ package C4::Suggestions;
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA

# $Id$

use strict;
require Exporter;
Expand All @@ -28,8 +27,7 @@ use Mail::Sendmail;
use vars qw($VERSION @ISA @EXPORT);

# set the version for version checking
$VERSION = do { my @v = '$Revision$' =~ /\d+/g;
shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
$VERSION = 3.00;

=head1 NAME
Expand Down

0 comments on commit b9c20fa

Please sign in to comment.