From finlayt at users.sourceforge.net Fri Aug 9 06:03:46 2002 From: finlayt at users.sourceforge.net (Finlay Thompson) Date: Thu, 08 Aug 2002 21:03:46 -0700 Subject: [Koha-cvs] CVS: koha/circ circulation.pl,1.34,1.35 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv30707 Modified Files: circulation.pl Log Message: fixed up the todays issues and previous issues tables so that they are both listed in reverse order by issue date. Index: circulation.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/circulation.pl,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** circulation.pl 24 Jul 2002 05:11:07 -0000 1.34 --- circulation.pl 9 Aug 2002 04:03:43 -0000 1.35 *************** *** 44,48 **** my @datearr = localtime(time()); ! my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", $datearr[3]); #warn $todaysdate; --- 44,50 ---- my @datearr = localtime(time()); ! my $tday = localtime(time()); ! warn "today: $tday \n"; ! my $todaysdate = (1900+$datearr[5]).sprintf ("%0.2d", ($datearr[4]+1)).sprintf ("%0.2d", ($datearr[3])); #warn $todaysdate; *************** *** 367,381 **** my $previssues=''; if ($borrower) { my $issueslist = getissues($borrower); ! my $tcolor = ''; ! my $pcolor = ''; ! foreach my $it (sort keys %$issueslist) { ! my $dd = $issueslist->{$it}->{'date_due'}; my $issuedate = $issueslist->{$it}->{'timestamp'}; $issuedate = substr($issuedate, 0, 8); ! ! my $bookissue = $issueslist->{$it}; ! my $bgcolor=''; ! my $datedue = $bookissue->{'date_due'}; #convert to nz style dates #this should be set with some kinda config variable --- 369,389 ---- my $previssues=''; if ($borrower) { + my @todaysissues; + my @previousissues; my $issueslist = getissues($borrower); ! foreach my $it (keys %$issueslist) { my $issuedate = $issueslist->{$it}->{'timestamp'}; $issuedate = substr($issuedate, 0, 8); ! if ($todaysdate == $issuedate) { ! push @todaysissues, $issueslist->{$it}; ! } else { ! push @previousissues, $issueslist->{$it}; ! } ! } ! my $tcolor = ''; ! my $pcolor = ''; ! foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @todaysissues){ ! my $dd = $book->{'date_due'}; ! my $datedue = $book->{'date_due'}; #convert to nz style dates #this should be set with some kinda config variable *************** *** 386,410 **** $dd="$dd\n"; } ! if ($todaysdate == $issuedate) { ! ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1); ! $todaysissues .=<< "EOF"; $dd ! {'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$bookissue->{'barcode'} ! $bookissue->{'title'} ! $bookissue->{'author'} ! $bookissue->{'dewey'} $bookissue->{'subclass'} ! EOF ! } else { ! ($pcolor eq $linecolor1) ? ($pcolor=$linecolor2) : ($pcolor=$linecolor1); ! $previssues .= << "EOF"; $dd ! {'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$bookissue->{'barcode'} ! $bookissue->{'title'} ! $bookissue->{'author'} ! $bookissue->{'dewey'} $bookissue->{'subclass'} EOF - } } } --- 394,427 ---- $dd="$dd\n"; } ! ($tcolor eq $linecolor1) ? ($tcolor=$linecolor2) : ($tcolor=$linecolor1); ! $todaysissues .=<< "EOF"; $dd ! {'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$book->{'barcode'} ! $book->{'title'} ! $book->{'author'} ! $book->{'dewey'} $book->{'subclass'} ! EOF ! } ! foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @previousissues){ ! my $dd = $book->{'date_due'}; ! my $datedue = $book->{'date_due'}; ! #convert to nz style dates ! #this should be set with some kinda config variable ! my @tempdate=split(/-/,$dd); ! $dd="$tempdate[2]/$tempdate[1]/$tempdate[0]"; ! $datedue=~s/-//g; ! if ($datedue < $todaysdate) { ! $dd="$dd\n"; ! } ! ($pcolor eq $linecolor1) ? ($pcolor=$linecolor2) : ($pcolor=$linecolor1); ! $previssues .= << "EOF"; $dd ! {'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$book->{'barcode'} ! $book->{'title'} ! $book->{'author'} ! $book->{'dewey'} $book->{'subclass'} EOF } } From finlayt at users.sourceforge.net Fri Aug 9 06:14:59 2002 From: finlayt at users.sourceforge.net (Finlay Thompson) Date: Thu, 08 Aug 2002 21:14:59 -0700 Subject: [Koha-cvs] CVS: koha/circ circulation.pl,1.35,1.36 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv1091 Modified Files: circulation.pl Log Message: changed the previous issues to be listed in order of due date Index: circulation.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/circulation.pl,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -r1.35 -r1.36 *** circulation.pl 9 Aug 2002 04:03:43 -0000 1.35 --- circulation.pl 9 Aug 2002 04:14:56 -0000 1.36 *************** *** 404,408 **** EOF } ! foreach my $book (sort {$b->{'timestamp'} <=> $a->{'timestamp'}} @previousissues){ my $dd = $book->{'date_due'}; my $datedue = $book->{'date_due'}; --- 404,408 ---- EOF } ! foreach my $book (sort {$a->{'due_date'} <=> $b->{'due_date'}} @previousissues){ my $dd = $book->{'date_due'}; my $datedue = $book->{'date_due'}; From finlayt at users.sourceforge.net Fri Aug 9 06:33:04 2002 From: finlayt at users.sourceforge.net (Finlay Thompson) Date: Thu, 08 Aug 2002 21:33:04 -0700 Subject: [Koha-cvs] CVS: koha request.pl,1.7,1.8 Message-ID: Update of /cvsroot/koha/koha In directory usw-pr-cvs1:/tmp/cvs-serv5004 Modified Files: request.pl Log Message: I have changed the branch options to only include the Issueing branches. Also if no branch is set it Defaults to Levin. Index: request.pl =================================================================== RCS file: /cvsroot/koha/koha/request.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** request.pl 31 Jul 2002 04:27:57 -0000 1.7 --- request.pl 9 Aug 2002 04:33:01 -0000 1.8 *************** *** 35,41 **** # get branch information my $branch = $input->cookie('branch'); my $branches = getbranches(); - - my $branchoptions = branchoptions($branch); --- 35,40 ---- # get branch information my $branch = $input->cookie('branch'); + ($branch) || ($branch = 'L'); my $branches = getbranches(); my $branchoptions = branchoptions($branch); *************** *** 155,159 **** my $out = ""; foreach my $br (keys %$branches) { ! (next) unless $branches->{$br}->{'CU'}; my $selected = ""; if ($br eq $selbr) { --- 154,158 ---- my $out = ""; foreach my $br (keys %$branches) { ! (next) unless $branches->{$br}->{'IS'}; my $selected = ""; if ($br eq $selbr) { From tonnesen at users.sourceforge.net Wed Aug 14 01:04:10 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Tue, 13 Aug 2002 16:04:10 -0700 Subject: [Koha-cvs] CVS: koha addcopyrightstatements.pl,NONE,1.1.2.1 Message-ID: Update of /cvsroot/koha/koha In directory usw-pr-cvs1:/tmp/cvs-serv23985 Added Files: Tag: rel-1-2 addcopyrightstatements.pl Log Message: Little script to add a copyright statement to all .pl and .pm files --- NEW FILE --- #!/usr/bin/perl # # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha 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. # # Koha 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. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA my $copyrightstatement=qq| # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha 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. # # Koha 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. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA |; open (PL, "find -name '*.pl' -o -name '*.pm'|"); while () { my $filename=$_; chomp $filename; my $holder=''; my $newversion=''; open (IN, "$filename"); my $begin=''; my $end=''; my $alreaddone=0; while () { if ((/^\s*#/ || /^\s*$/ || /^\s*package/) && $end eq '') { $begin.=$_; } else { $end.=$_; } if (/^\s*#\s*Copyright/) { print "$filename already has a copyright statement\n"; $alreadydone=1; } } close IN; unless ($alreadydone) { open (OUT, ">$filename"); print OUT "$begin$copyrightstatement$end"; close OUT; } } From finlayt at users.sourceforge.net Wed Aug 14 07:35:55 2002 From: finlayt at users.sourceforge.net (Finlay Thompson) Date: Tue, 13 Aug 2002 22:35:55 -0700 Subject: [Koha-cvs] CVS: koha/circ returns.pl,1.11,1.12 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv20936/circ Modified Files: returns.pl Log Message: all items are listed in the returned items list, regardless of whether they were issued or not. Changed some messageing stuff as well, but will be back to fix that up some more. Index: returns.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/returns.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** returns.pl 26 Jul 2002 02:27:16 -0000 1.11 --- returns.pl 14 Aug 2002 05:35:53 -0000 1.12 *************** *** 107,117 **** $barcode = cuecatbarcodedecode($barcode); ($returned, $messages, $iteminformation, $borrower) = returnbook($barcode, $branch); if ($returned) { - $returneditems{0} = $barcode; $riborrowernumber{0} = $borrower->{'borrowernumber'}; $riduedate{0} = $iteminformation->{'date_due'}; - $ritext.= "\n"; $ritext.= "{'date_due'}>\n"; $ritext.= "{'borrowernumber'}>\n"; } } --- 107,122 ---- $barcode = cuecatbarcodedecode($barcode); ($returned, $messages, $iteminformation, $borrower) = returnbook($barcode, $branch); + $returneditems{0} = $barcode; + $ritext.= "\n"; if ($returned) { $riborrowernumber{0} = $borrower->{'borrowernumber'}; $riduedate{0} = $iteminformation->{'date_due'}; $ritext.= "{'date_due'}>\n"; $ritext.= "{'borrowernumber'}>\n"; + } else { + $riborrowernumber{0} = 0; + $riduedate{0} = 0; + $ritext.= "\n"; + $ritext.= "\n"; } } *************** *** 207,211 **** BORROWER: ! $borr->{'surname'}, $borr->{'firstname'} card number: $borr->{'cardnumber'} Phone: $borr->{'phone'} --- 212,216 ---- BORROWER: ! $borr->{'title'} $borr->{'surname'}, $borr->{'firstname'} card number: $borr->{'cardnumber'} Phone: $borr->{'phone'} *************** *** 216,224 **** ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ EOF $reservetext = <<"EOF"; ! Reserved found: Item: $iteminfo->{'title'} ($iteminfo->{'author'})
! for $name ($number). $flaginfotext EOF } + $borrowertable .= "
Change status to waiting and print --- 221,230 ---- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + EOF $reservetext = <<"EOF"; ! Reserve found: Item: $iteminfo->{'title'} ($iteminfo->{'author'})
! for $name ($number) to be collected at $branchname. $flaginfotext -
Change status to waiting and print *************** *** 249,252 **** --- 255,259 ---- # collect the messages and put into message table.... foreach my $code (keys %$messages) { + warn $code; if ($code eq 'BadBarcode'){ $messagetext .= " No Item with barcode: $messages->{'BadBarcode'}
"; *************** *** 259,262 **** --- 266,272 ---- $messagetext .= " Item was lost, now found.
"; } + if ($code eq 'wthdrawm'){ + $messagetext .= " Item Cancelled.
"; + } if (($code eq 'IsPermanent') && (not $messages->{'ResFound'})) { if ($messages->{'IsPermanent'} ne $branch) { *************** *** 345,351 **** Flags
EOF } } --- 355,361 ---- Flags
"; } *************** *** 366,382 **** my $barcode = $returneditems{$_}; my $duedate = $riduedate{$_}; ! my @datearr = localtime(time()); ! ### ! # convert to nz date format ! my @tempdate = split(/-/,$duedate); ! my $duedatenz = "$tempdate[2]/$tempdate[1]/$tempdate[0]"; ! #### ! my $todaysdate ! = (1900+$datearr[5]).'-'.sprintf ("%0.2d", ($datearr[4]+1)).'-'.sprintf ("%0.2d", $datearr[3]); ! my $overduetext = "$duedatenz"; ! ($overduetext="$duedate") if ($duedate lt $todaysdate); ! ($duedatenz) || ($overduetext = ""); ! my $borrowernumber = $riborrowernumber{$_}; ! my ($borrower) = getpatroninformation(\%env,$borrowernumber,0); my ($iteminformation) = getiteminformation(\%env, 0, $barcode);; $returneditemstable .= << "EOF"; --- 376,399 ---- my $barcode = $returneditems{$_}; my $duedate = $riduedate{$_}; ! my $overduetext; ! if ($duedate) { ! my @tempdate = split ( /-/ , $duedate ) ; ! my $duedatenz = "$tempdate[2]/$tempdate[1]/$tempdate[0]"; ! my @datearr = localtime(time()); ! my $todaysdate = (1900+$datearr[5]).'-'.sprintf ("%0.2d", ($datearr[4]+1)).'-'.sprintf ("%0.2d", $datearr[3]); ! $overduetext = "$duedatenz"; ! ($overduetext="$duedate") if ($duedate lt $todaysdate); ! ($duedatenz) || ($overduetext = ""); ! } else { ! $overduetext = "Not on loan."; ! } ! my $borrowernumber = $riborrowernumber{$_}; ! my $borrowerinfo; ! if ($borrowernumber) { ! my ($borrower) = getpatroninformation(\%env,$borrowernumber,0); ! my $borrowerinfo = "{'borrowernumber'} onClick=\"openWindow(this,'Member', 480, 640)\">$borrower->{'cardnumber'} $borrower->{'firstname'} $borrower->{'surname'}"; ! } else { ! $borrowerinfo = "Not on loan."; ! } my ($iteminformation) = getiteminformation(\%env, 0, $barcode);; $returneditemstable .= << "EOF"; *************** *** 388,392 **** $iteminformation->{'itemtype'} ! {'borrowernumber'} onClick=\"openWindow(this,'Member', 480, 640)\">$borrower->{'cardnumber'} $borrower->{'firstname'} $borrower->{'surname'} EOF } else { --- 405,409 ---- $iteminformation->{'itemtype'} ! $borrowerinfo EOF } else { From finlayt at users.sourceforge.net Wed Aug 14 07:37:09 2002 From: finlayt at users.sourceforge.net (Finlay Thompson) Date: Tue, 13 Aug 2002 22:37:09 -0700 Subject: [Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.30,1.31 Message-ID: Update of /cvsroot/koha/koha/C4/Circulation In directory usw-pr-cvs1:/tmp/cvs-serv21418/C4/Circulation Modified Files: Circ2.pm Log Message: added a check in the returnbook subroutine that checks to see if a book has been cancelled: i.e. that the wthdrawn field has been set to 1. Index: Circ2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** Circ2.pm 2 Jul 2002 23:31:33 -0000 1.30 --- Circ2.pm 14 Aug 2002 05:37:07 -0000 1.31 *************** *** 500,503 **** --- 500,508 ---- $messages->{'IsPermanent'} = $hbr; } + # check that the book has been cancelled + if ($iteminformation->{'wthdrawn'}) { + $messages->{'wthdrawn'} = 1; + $doreturn = 0; + } # update issues, thereby returning book (should push this out into another subroutine my ($borrower) = getpatroninformation(\%env, $currentborrower, 0); From tonnesen at users.sourceforge.net Wed Aug 14 20:12:54 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:54 -0700 Subject: [Koha-cvs] CVS: koha/C4/Interface AccountsCDK.pm,1.1.1.1,1.2 BorrowerCDK.pm,1.1.1.1,1.2 FlagsCDK.pm,1.1.1.1,1.2 RenewalsCDK.pm,1.1.1.1,1.2 ReserveentCDK.pm,1.1.1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/C4/Interface In directory usw-pr-cvs1:/tmp/cvs-serv8581/C4/Interface Modified Files: AccountsCDK.pm BorrowerCDK.pm FlagsCDK.pm RenewalsCDK.pm ReserveentCDK.pm Log Message: Added copyright statement to all .pl and .pm files Index: AccountsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/AccountsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** AccountsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- AccountsCDK.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: BorrowerCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/BorrowerCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** BorrowerCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- BorrowerCDK.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: FlagsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/FlagsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** FlagsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- FlagsCDK.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- package C4::Interface::FlagsCDK; #asummes C4/Interface/FlagsCDK + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: RenewalsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/RenewalsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** RenewalsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- RenewalsCDK.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use Cdk; Index: ReserveentCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/ReserveentCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** ReserveentCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- ReserveentCDK.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:54 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:54 -0700 Subject: [Koha-cvs] CVS: koha/acqui acquire.pl,1.4,1.5 addorder.pl,1.9,1.10 basket.pl,1.4,1.5 finishreceive.pl,1.6,1.7 modorders.pl,1.3,1.4 newbasket.pl,1.4,1.5 newbasket2.pl,1.4,1.5 newbiblio.pl,1.6,1.7 order.pl,1.3,1.4 receive.pl,1.4,1.5 recieveorder.pl,1.3,1.4 supplier.pl,1.3,1.4 updatesupplier.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/acqui In directory usw-pr-cvs1:/tmp/cvs-serv8581/acqui Modified Files: acquire.pl addorder.pl basket.pl finishreceive.pl modorders.pl newbasket.pl newbasket2.pl newbiblio.pl order.pl receive.pl recieveorder.pl supplier.pl updatesupplier.pl Log Message: Added copyright statement to all .pl and .pm files Index: acquire.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/acquire.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** acquire.pl 4 Jul 2002 15:53:02 -0000 1.4 --- acquire.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: addorder.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/addorder.pl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** addorder.pl 4 Jul 2002 15:53:02 -0000 1.9 --- addorder.pl 14 Aug 2002 18:12:52 -0000 1.10 *************** *** 4,7 **** --- 4,25 ---- #written 29/2/00 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: basket.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/basket.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** basket.pl 4 Jul 2002 15:53:02 -0000 1.4 --- basket.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: finishreceive.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/finishreceive.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** finishreceive.pl 4 Jul 2002 15:53:02 -0000 1.6 --- finishreceive.pl 14 Aug 2002 18:12:52 -0000 1.7 *************** *** 4,7 **** --- 4,25 ---- #written 1/3/00 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Output; use C4::Catalogue; Index: modorders.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/modorders.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** modorders.pl 4 Jul 2002 15:53:02 -0000 1.3 --- modorders.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #written 29/2/00 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: newbasket.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/newbasket.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** newbasket.pl 4 Jul 2002 15:53:02 -0000 1.4 --- newbasket.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: newbasket2.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/newbasket2.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** newbasket2.pl 4 Jul 2002 15:53:02 -0000 1.4 --- newbasket2.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 3,6 **** --- 3,24 ---- #now script to do searching for acquisitions + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Search; Index: newbiblio.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/newbiblio.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** newbiblio.pl 4 Jul 2002 15:53:02 -0000 1.6 --- newbiblio.pl 14 Aug 2002 18:12:52 -0000 1.7 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: order.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/order.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** order.pl 4 Jul 2002 15:53:02 -0000 1.3 --- order.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 23/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: receive.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/receive.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** receive.pl 4 Jul 2002 15:53:02 -0000 1.4 --- receive.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: recieveorder.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/recieveorder.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** recieveorder.pl 4 Jul 2002 15:53:02 -0000 1.3 --- recieveorder.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: supplier.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/supplier.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** supplier.pl 4 Jul 2002 15:53:02 -0000 1.3 --- supplier.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 24/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; Index: updatesupplier.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui/updatesupplier.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** updatesupplier.pl 4 Jul 2002 15:53:02 -0000 1.3 --- updatesupplier.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 23/2/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Catalogue; use C4::Biblio; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:54 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:54 -0700 Subject: [Koha-cvs] CVS: koha/C4/Circulation Borrissues.pm,1.1.1.1,1.2 Borrower.pm,1.1.1.1,1.2 Circ2.pm,1.31,1.32 Fines.pm,1.3,1.4 Issues.pm,1.1.1.1,1.2 Main.pm,1.2,1.3 Renewals.pm,1.1.1.1,1.2 Renewals2.pm,1.4,1.5 Returns.pm,1.1.1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/C4/Circulation In directory usw-pr-cvs1:/tmp/cvs-serv8581/C4/Circulation Modified Files: Borrissues.pm Borrower.pm Circ2.pm Fines.pm Issues.pm Main.pm Renewals.pm Renewals2.pm Returns.pm Log Message: Added copyright statement to all .pl and .pm files Index: Borrissues.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Borrissues.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Borrissues.pm 19 Dec 2000 23:45:55 -0000 1.1.1.1 --- Borrissues.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Borrower.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Borrower.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Borrower.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Borrower.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circ2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** Circ2.pm 14 Aug 2002 05:37:07 -0000 1.31 --- Circ2.pm 14 Aug 2002 18:12:52 -0000 1.32 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; # use warnings; Index: Fines.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Fines.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Fines.pm 17 Mar 2002 02:58:00 -0000 1.3 --- Fines.pm 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #uses DBD:Pg + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Issues.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Issues.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Issues.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Issues.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Main.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Main.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Main.pm 5 Jan 2001 17:39:25 -0000 1.2 --- Main.pm 14 Aug 2002 18:12:52 -0000 1.3 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Renewals.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Renewals.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Renewals.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Renewals.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 7/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Renewals2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Renewals2.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Renewals2.pm 24 Jun 2002 21:54:44 -0000 1.4 --- Renewals2.pm 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 8,11 **** --- 8,29 ---- #need to update stats with renewals + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Returns.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Returns.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Returns.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Returns.pm 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:55 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:55 -0700 Subject: [Koha-cvs] CVS: koha/admin aqbookfund.pl,1.3,1.4 aqbudget.pl,1.4,1.5 branches.pl,1.2,1.3 categorie.pl,1.2,1.3 categoryitem.pl,1.2,1.3 currency.pl,1.3,1.4 itemtypes.pl,1.3,1.4 marctagstructure.pl,1.2,1.3 printers.pl,1.4,1.5 stopwords.pl,1.4,1.5 systempreferences.pl,1.4,1.5 Message-ID: Update of /cvsroot/koha/koha/admin In directory usw-pr-cvs1:/tmp/cvs-serv8581/admin Modified Files: aqbookfund.pl aqbudget.pl branches.pl categorie.pl categoryitem.pl currency.pl itemtypes.pl marctagstructure.pl printers.pl stopwords.pl systempreferences.pl Log Message: Added copyright statement to all .pl and .pm files Index: aqbookfund.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/aqbookfund.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** aqbookfund.pl 2 Jul 2002 21:46:52 -0000 1.3 --- aqbookfund.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: aqbudget.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/aqbudget.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** aqbudget.pl 25 Jun 2002 11:05:45 -0000 1.4 --- aqbudget.pl 14 Aug 2002 18:12:53 -0000 1.5 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: branches.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/branches.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** branches.pl 2 May 2002 00:08:53 -0000 1.2 --- branches.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- # Reorganising this branches admin page..... + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: categorie.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categorie.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** categorie.pl 24 Jun 2002 18:40:56 -0000 1.2 --- categorie.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 19,22 **** --- 19,40 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: categoryitem.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/categoryitem.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** categoryitem.pl 24 Jun 2002 18:40:56 -0000 1.2 --- categoryitem.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: currency.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/currency.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** currency.pl 2 Jul 2002 21:46:53 -0000 1.3 --- currency.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: itemtypes.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/itemtypes.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** itemtypes.pl 2 Jul 2002 21:46:53 -0000 1.3 --- itemtypes.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: marctagstructure.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/marctagstructure.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** marctagstructure.pl 8 Jul 2002 16:45:57 -0000 1.2 --- marctagstructure.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: printers.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/printers.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** printers.pl 2 Jul 2002 21:46:53 -0000 1.4 --- printers.pl 14 Aug 2002 18:12:53 -0000 1.5 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: stopwords.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/stopwords.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** stopwords.pl 2 Jul 2002 21:46:53 -0000 1.4 --- stopwords.pl 14 Aug 2002 18:12:53 -0000 1.5 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: systempreferences.pl =================================================================== RCS file: /cvsroot/koha/koha/admin/systempreferences.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** systempreferences.pl 4 Jul 2002 12:46:42 -0000 1.4 --- systempreferences.pl 14 Aug 2002 18:12:53 -0000 1.5 *************** *** 20,23 **** --- 20,41 ---- # - we delete the record having primkey=$primkey + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:55 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:55 -0700 Subject: [Koha-cvs] CVS: koha/acqui.simple addbiblio.pl,1.1,1.2 addbooks.pl,1.10,1.11 addbookslccn.pl,1.6,1.7 additem.pl,1.5,1.6 bulkmarcimport.pl,1.6,1.7 isbnsearch.pl,1.3,1.4 keywordsearch.pl,1.4,1.5 marcimport.pl,1.12,1.13 savebiblio.pl,1.5,1.6 saveitem.pl,1.5,1.6 viewmarc.pl,1.3,1.4 websitesearch.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/acqui.simple In directory usw-pr-cvs1:/tmp/cvs-serv8581/acqui.simple Modified Files: addbiblio.pl addbooks.pl addbookslccn.pl additem.pl bulkmarcimport.pl isbnsearch.pl keywordsearch.pl marcimport.pl savebiblio.pl saveitem.pl viewmarc.pl websitesearch.pl Log Message: Added copyright statement to all .pl and .pm files Index: addbiblio.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/addbiblio.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** addbiblio.pl 29 Apr 2002 05:29:02 -0000 1.1 --- addbiblio.pl 14 Aug 2002 18:12:52 -0000 1.2 *************** *** 7,10 **** --- 7,28 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: addbooks.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/addbooks.pl,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** addbooks.pl 24 Jul 2002 16:24:20 -0000 1.10 --- addbooks.pl 14 Aug 2002 18:12:52 -0000 1.11 *************** *** 14,17 **** --- 14,35 ---- # Add info on biblioitems and items already entered as you enter new ones + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use CGI; Index: addbookslccn.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/addbookslccn.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** addbookslccn.pl 24 Jul 2002 16:24:20 -0000 1.6 --- addbookslccn.pl 14 Aug 2002 18:12:52 -0000 1.7 *************** *** 14,17 **** --- 14,35 ---- # Add info on biblioitems and items already entered as you enter new ones + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use CGI; Index: additem.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/additem.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** additem.pl 24 Jul 2002 16:24:20 -0000 1.5 --- additem.pl 14 Aug 2002 18:12:52 -0000 1.6 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: bulkmarcimport.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/bulkmarcimport.pl,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** bulkmarcimport.pl 24 Jul 2002 16:24:20 -0000 1.6 --- bulkmarcimport.pl 14 Aug 2002 18:12:52 -0000 1.7 *************** *** 12,15 **** --- 12,33 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + $file=$ARGV[0]; Index: isbnsearch.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/isbnsearch.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** isbnsearch.pl 24 Jul 2002 16:24:20 -0000 1.3 --- isbnsearch.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: keywordsearch.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/keywordsearch.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** keywordsearch.pl 24 Jul 2002 16:24:20 -0000 1.4 --- keywordsearch.pl 14 Aug 2002 18:12:52 -0000 1.5 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: marcimport.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/marcimport.pl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** marcimport.pl 24 Jul 2002 16:24:20 -0000 1.12 --- marcimport.pl 14 Aug 2002 18:12:52 -0000 1.13 *************** *** 10,13 **** --- 10,31 ---- # Licensed under the GPL + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 988,991 **** --- 1006,1012 ---- #--------------- # $Log$ + # Revision 1.13 2002/08/14 18:12:52 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.12 2002/07/24 16:24:20 tipaul # Now, the acqui.simple system... Index: savebiblio.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/savebiblio.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** savebiblio.pl 24 Jul 2002 16:24:20 -0000 1.5 --- savebiblio.pl 14 Aug 2002 18:12:52 -0000 1.6 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: saveitem.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/saveitem.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** saveitem.pl 24 Jul 2002 16:24:20 -0000 1.5 --- saveitem.pl 14 Aug 2002 18:12:52 -0000 1.6 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: viewmarc.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/viewmarc.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** viewmarc.pl 24 Jul 2002 16:24:20 -0000 1.3 --- viewmarc.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 7,10 **** --- 7,28 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + my $starttime=gettime(); Index: websitesearch.pl =================================================================== RCS file: /cvsroot/koha/koha/acqui.simple/websitesearch.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** websitesearch.pl 24 Jul 2002 16:24:20 -0000 1.3 --- websitesearch.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:55 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:55 -0700 Subject: [Koha-cvs] CVS: koha/circ branchtransfers.pl,1.11,1.12 circulation.pl,1.36,1.37 returns.pl,1.12,1.13 selectbranchprinter.pl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv8581/circ Modified Files: branchtransfers.pl circulation.pl returns.pl selectbranchprinter.pl Log Message: Added copyright statement to all .pl and .pm files Index: branchtransfers.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/branchtransfers.pl,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** branchtransfers.pl 23 Jul 2002 01:28:42 -0000 1.11 --- branchtransfers.pl 14 Aug 2002 18:12:53 -0000 1.12 *************** *** 4,7 **** --- 4,25 ---- #script to execute branch transfers of books + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: circulation.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/circulation.pl,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -r1.36 -r1.37 *** circulation.pl 9 Aug 2002 04:14:56 -0000 1.36 --- circulation.pl 14 Aug 2002 18:12:53 -0000 1.37 *************** *** 4,7 **** --- 4,25 ---- #script to execute issuing of books + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: returns.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/returns.pl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** returns.pl 14 Aug 2002 05:35:53 -0000 1.12 --- returns.pl 14 Aug 2002 18:12:53 -0000 1.13 *************** *** 4,7 **** --- 4,25 ---- #script to execute returns of books + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: selectbranchprinter.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/selectbranchprinter.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** selectbranchprinter.pl 18 May 2002 05:37:28 -0000 1.2 --- selectbranchprinter.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI qw/:standard/; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/sec writeoff.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/sec In directory usw-pr-cvs1:/tmp/cvs-serv8581/sec Modified Files: writeoff.pl Log Message: Added copyright statement to all .pl and .pm files Index: writeoff.pl =================================================================== RCS file: /cvsroot/koha/koha/sec/writeoff.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** writeoff.pl 2 Apr 2001 22:51:26 -0000 1.3 --- writeoff.pl 14 Aug 2002 18:12:54 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #script to write off accounts + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:55 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:55 -0700 Subject: [Koha-cvs] CVS: koha/html-template Search.pm,1.2,1.3 detail.pl,1.3,1.4 moredetail.pl,1.1,1.2 search.pl,1.16,1.17 Message-ID: Update of /cvsroot/koha/koha/html-template In directory usw-pr-cvs1:/tmp/cvs-serv8581/html-template Modified Files: Search.pm detail.pl moredetail.pl search.pl Log Message: Added copyright statement to all .pl and .pm files Index: Search.pm =================================================================== RCS file: /cvsroot/koha/koha/html-template/Search.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Search.pm 10 May 2002 22:34:36 -0000 1.2 --- Search.pm 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #uses DBD:Pg + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: detail.pl =================================================================== RCS file: /cvsroot/koha/koha/html-template/detail.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** detail.pl 31 Jul 2002 09:17:34 -0000 1.3 --- detail.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; Index: moredetail.pl =================================================================== RCS file: /cvsroot/koha/koha/html-template/moredetail.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** moredetail.pl 15 May 2002 04:54:07 -0000 1.1 --- moredetail.pl 14 Aug 2002 18:12:53 -0000 1.2 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; Index: search.pl =================================================================== RCS file: /cvsroot/koha/koha/html-template/search.pl,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** search.pl 19 May 2002 21:27:12 -0000 1.16 --- search.pl 14 Aug 2002 18:12:53 -0000 1.17 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:55 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:55 -0700 Subject: [Koha-cvs] CVS: koha/maint catmaintain.pl,1.3,1.4 shiftbib.pl,1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/maint In directory usw-pr-cvs1:/tmp/cvs-serv8581/maint Modified Files: catmaintain.pl shiftbib.pl Log Message: Added copyright statement to all .pl and .pm files Index: catmaintain.pl =================================================================== RCS file: /cvsroot/koha/koha/maint/catmaintain.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** catmaintain.pl 26 Feb 2002 09:31:15 -0000 1.3 --- catmaintain.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 5,8 **** --- 5,26 ---- # by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: shiftbib.pl =================================================================== RCS file: /cvsroot/koha/koha/maint/shiftbib.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** shiftbib.pl 15 Mar 2001 10:11:33 -0000 1.1 --- shiftbib.pl 14 Aug 2002 18:12:53 -0000 1.2 *************** *** 5,8 **** --- 5,26 ---- # by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/telnet borrwraper.pl,1.1.1.1,1.2 doreturns.pl,1.1.1.1,1.2 issuewrapper.pl,1.1.1.1,1.2 returnswrapper.pl,1.1.1.1,1.2 startint.pl,1.1.1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/telnet In directory usw-pr-cvs1:/tmp/cvs-serv8581/telnet Modified Files: borrwraper.pl doreturns.pl issuewrapper.pl returnswrapper.pl startint.pl Log Message: Added copyright statement to all .pl and .pm files Index: borrwraper.pl =================================================================== RCS file: /cvsroot/koha/koha/telnet/borrwraper.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** borrwraper.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- borrwraper.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use DBI; use C4::Database; Index: doreturns.pl =================================================================== RCS file: /cvsroot/koha/koha/telnet/doreturns.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** doreturns.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- doreturns.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use DBI; use C4::Database; Index: issuewrapper.pl =================================================================== RCS file: /cvsroot/koha/koha/telnet/issuewrapper.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** issuewrapper.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- issuewrapper.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 3,6 **** --- 3,24 ---- #my @args=('issuewrapper.pl',"$env{'branchcode'}","$env{'usercode'}","$env{'telnet'}","$env{'queue'}","$env{'printtype'}"); + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + $done = "Issues"; my $i=0; Index: returnswrapper.pl =================================================================== RCS file: /cvsroot/koha/koha/telnet/returnswrapper.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** returnswrapper.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- returnswrapper.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + $done = "returns"; my $i=0; Index: startint.pl =================================================================== RCS file: /cvsroot/koha/koha/telnet/startint.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** startint.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- startint.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; #use C4::Security; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/translator translator.pl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha/translator In directory usw-pr-cvs1:/tmp/cvs-serv8581/translator Modified Files: translator.pl Log Message: Added copyright statement to all .pl and .pm files Index: translator.pl =================================================================== RCS file: /cvsroot/koha/koha/translator/translator.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** translator.pl 27 Jun 2001 21:53:05 -0000 1.2 --- translator.pl 14 Aug 2002 18:12:54 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/marc File.pm,1.1,1.2 MARCdetail.pl,1.1,1.2 USMARC.pm,1.1,1.2 fill_usmarc.pl,1.2,1.3 viewmarc.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/marc In directory usw-pr-cvs1:/tmp/cvs-serv8581/marc Modified Files: File.pm MARCdetail.pl USMARC.pm fill_usmarc.pl viewmarc.pl Log Message: Added copyright statement to all .pl and .pm files Index: File.pm =================================================================== RCS file: /cvsroot/koha/koha/marc/File.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** File.pm 24 Jul 2002 15:52:53 -0000 1.1 --- File.pm 14 Aug 2002 18:12:53 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- package MARC::File; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + =head1 NAME Index: MARCdetail.pl =================================================================== RCS file: /cvsroot/koha/koha/marc/MARCdetail.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** MARCdetail.pl 25 Jul 2002 09:55:51 -0000 1.1 --- MARCdetail.pl 14 Aug 2002 18:12:53 -0000 1.2 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; Index: USMARC.pm =================================================================== RCS file: /cvsroot/koha/koha/marc/USMARC.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** USMARC.pm 24 Jul 2002 15:52:53 -0000 1.1 --- USMARC.pm 14 Aug 2002 18:12:53 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- package MARC::File::USMARC; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + =head1 NAME Index: fill_usmarc.pl =================================================================== RCS file: /cvsroot/koha/koha/marc/fill_usmarc.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** fill_usmarc.pl 24 Jul 2002 15:52:53 -0000 1.2 --- fill_usmarc.pl 14 Aug 2002 18:12:53 -0000 1.3 *************** *** 3,6 **** --- 3,24 ---- #---- this simple script fills the tables with US MARC + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use strict; Index: viewmarc.pl =================================================================== RCS file: /cvsroot/koha/koha/marc/viewmarc.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** viewmarc.pl 20 Jun 2002 17:33:17 -0000 1.3 --- viewmarc.pl 14 Aug 2002 18:12:53 -0000 1.4 *************** *** 7,10 **** --- 7,28 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + my $starttime=gettime(); From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/updater thesaurus_create.pl,1.1,1.2 updatedatabase2.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/updater In directory usw-pr-cvs1:/tmp/cvs-serv8581/updater Modified Files: thesaurus_create.pl updatedatabase2.pl Log Message: Added copyright statement to all .pl and .pm files Index: thesaurus_create.pl =================================================================== RCS file: /cvsroot/koha/koha/updater/thesaurus_create.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** thesaurus_create.pl 14 May 2002 11:26:10 -0000 1.1 --- thesaurus_create.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; # This script generates and fill the thesaurus table Index: updatedatabase2.pl =================================================================== RCS file: /cvsroot/koha/koha/updater/updatedatabase2.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** updatedatabase2.pl 24 Jun 2002 15:00:13 -0000 1.3 --- updatedatabase2.pl 14 Aug 2002 18:12:54 -0000 1.4 *************** *** 14,17 **** --- 14,35 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use C4::Catalogue; From tonnesen at users.sourceforge.net Wed Aug 14 20:12:56 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:12:56 -0700 Subject: [Koha-cvs] CVS: koha/misc fines2.pl,1.5,1.6 fixborrower.pl,1.2,1.3 fixcatalog.pl,1.1.1.1,1.2 fixorders.pl,1.1.1.1,1.2 fixrefs.pl,1.1.1.1,1.2 makebaskets.pl,1.1.1.1,1.2 makeformats.pl,1.1.1.1,1.2 tidyaccounts.pl,1.1.1.1,1.2 Message-ID: Update of /cvsroot/koha/koha/misc In directory usw-pr-cvs1:/tmp/cvs-serv8581/misc Modified Files: fines2.pl fixborrower.pl fixcatalog.pl fixorders.pl fixrefs.pl makebaskets.pl makeformats.pl tidyaccounts.pl Log Message: Added copyright statement to all .pl and .pm files Index: fines2.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/fines2.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** fines2.pl 10 Apr 2002 00:02:59 -0000 1.5 --- fines2.pl 14 Aug 2002 18:12:54 -0000 1.6 *************** *** 9,12 **** --- 9,30 ---- # This script is meant to be run nightly out of cron. + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use C4::Search; Index: fixborrower.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/fixborrower.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** fixborrower.pl 9 Apr 2002 22:08:15 -0000 1.2 --- fixborrower.pl 14 Aug 2002 18:12:54 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use strict; Index: fixcatalog.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/fixcatalog.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** fixcatalog.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- fixcatalog.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use strict; Index: fixorders.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/fixorders.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** fixorders.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- fixorders.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use strict; Index: fixrefs.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/fixrefs.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** fixrefs.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- fixrefs.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: makebaskets.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/makebaskets.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** makebaskets.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- makebaskets.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: makeformats.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/makeformats.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** makeformats.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- makeformats.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: tidyaccounts.pl =================================================================== RCS file: /cvsroot/koha/koha/misc/tidyaccounts.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** tidyaccounts.pl 19 Dec 2000 23:45:57 -0000 1.1.1.1 --- tidyaccounts.pl 14 Aug 2002 18:12:54 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; From tonnesen at users.sourceforge.net Wed Aug 14 20:13:24 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:13:24 -0700 Subject: [Koha-cvs] CVS: koha/C4 Accounts.pm,1.2,1.3 Accounts2.pm,1.11,1.12 Acquisitions.pm,1.22,1.23 Auth.pm,1.9,1.10 Biblio.pm,1.6,1.7 BookShelves.pm,1.3,1.4 Catalogue.pm,1.20,1.21 Circmain.pm,1.2,1.3 Circulation.pm,1.2,1.3 Database.pm,1.5,1.6 Format.pm,1.2,1.3 Groups.pm,1.2,1.3 Input.pm,1.3,1.4 InterfaceCDK.pm,1.2,1.3 Koha.pm,1.5,1.6 Maintainance.pm,1.5,1.6 Output.pm,1.14,1.15 Print.pm,1.7,1.8 Reserves.pm,1.1.1.1,1.2 Reserves2.pm,1.12,1.13 Scan.pm,1.2,1.3 Search.pm,1.32,1.33 Security.pm,1.2,1.3 SimpleMarc.pm,1.2,1.3 Stats.pm,1.6,1.7 Stock.pm,1.2,1.3 Z3950.pm,1.2,1.3 test.pl,1.3,1.4 Message-ID: Update of /cvsroot/koha/koha/C4 In directory usw-pr-cvs1:/tmp/cvs-serv8581/C4 Modified Files: Accounts.pm Accounts2.pm Acquisitions.pm Auth.pm Biblio.pm BookShelves.pm Catalogue.pm Circmain.pm Circulation.pm Database.pm Format.pm Groups.pm Input.pm InterfaceCDK.pm Koha.pm Maintainance.pm Output.pm Print.pm Reserves.pm Reserves2.pm Scan.pm Search.pm Security.pm SimpleMarc.pm Stats.pm Stock.pm Z3950.pm test.pl Log Message: Added copyright statement to all .pl and .pm files Index: Accounts.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Accounts.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Accounts.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Accounts.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Accounts; #assumes C4/Accounts + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Accounts2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Accounts2.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** Accounts2.pm 2 Jul 2002 20:49:44 -0000 1.11 --- Accounts2.pm 14 Aug 2002 18:12:51 -0000 1.12 *************** *** 1,4 **** --- 1,22 ---- package C4::Accounts2; #assumes C4/Accounts2 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Acquisitions.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Acquisitions.pm,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** Acquisitions.pm 22 Jul 2002 20:45:47 -0000 1.22 --- Acquisitions.pm 14 Aug 2002 18:12:51 -0000 1.23 *************** *** 1,4 **** --- 1,22 ---- package C4::Acquisitions; #assumes C4/Acquisitions.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Auth.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Auth.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Auth.pm 11 Jul 2002 05:46:58 -0000 1.9 --- Auth.pm 14 Aug 2002 18:12:51 -0000 1.10 *************** *** 1,4 **** --- 1,22 ---- package C4::Auth; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use Digest::MD5 qw(md5_base64); Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Biblio.pm 25 Jul 2002 13:40:31 -0000 1.6 --- Biblio.pm 14 Aug 2002 18:12:51 -0000 1.7 *************** *** 2,5 **** --- 2,8 ---- # $Id$ # $Log$ + # Revision 1.7 2002/08/14 18:12:51 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.6 2002/07/25 13:40:31 tipaul # pod documenting the API. *************** *** 52,55 **** --- 55,76 ---- # in 1.4 version, the translations will be nicer, as we have NOTHING to do in code. Everything has to be done in Biblio.pm ;-) + + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA use strict; Index: BookShelves.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/BookShelves.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** BookShelves.pm 2 Jul 2002 17:48:06 -0000 1.3 --- BookShelves.pm 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 6,9 **** --- 6,27 ---- #requires DBI.pm to be installed + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; *************** *** 134,137 **** --- 152,158 ---- # # $Log$ + # Revision 1.4 2002/08/14 18:12:51 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.3 2002/07/02 17:48:06 tonnesen # Merged in updates from rel-1-2 Index: Catalogue.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Catalogue.pm,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** Catalogue.pm 4 Jul 2002 15:53:02 -0000 1.20 --- Catalogue.pm 14 Aug 2002 18:12:51 -0000 1.21 *************** *** 10,13 **** --- 10,31 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circmain.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circmain.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Circmain.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Circmain.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circulation.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Circulation.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Circulation.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Database.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Database.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Database.pm 24 Jul 2002 16:11:37 -0000 1.5 --- Database.pm 14 Aug 2002 18:12:51 -0000 1.6 *************** *** 3,6 **** --- 3,24 ---- #requires DBI.pm to be installed + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Format.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Format.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Format.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Format.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Format; #assumes C4/Format + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Groups.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Groups.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Groups.pm 20 Jun 2002 18:04:47 -0000 1.2 --- Groups.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Input.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Input.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Input.pm 3 Jul 2002 03:18:50 -0000 1.3 --- Input.pm 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 1,4 **** --- 1,22 ---- package C4::Input; #assumes C4/Input + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: InterfaceCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/InterfaceCDK.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** InterfaceCDK.pm 20 Jun 2002 18:56:52 -0000 1.2 --- InterfaceCDK.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use strict; Index: Koha.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Koha.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Koha.pm 20 Jun 2002 18:56:52 -0000 1.5 --- Koha.pm 14 Aug 2002 18:12:51 -0000 1.6 *************** *** 1,4 **** --- 1,22 ---- package C4::Koha; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Maintainance.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Maintainance.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Maintainance.pm 20 Jun 2002 18:56:52 -0000 1.5 --- Maintainance.pm 14 Aug 2002 18:12:51 -0000 1.6 *************** *** 3,6 **** --- 3,24 ---- #package to deal with marking up output + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: Output.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Output.pm,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** Output.pm 24 Jul 2002 16:11:37 -0000 1.14 --- Output.pm 14 Aug 2002 18:12:51 -0000 1.15 *************** *** 5,8 **** --- 5,26 ---- #set the value of path to be where your html lives + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Print.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Print.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Print.pm 24 Jul 2002 03:16:21 -0000 1.7 --- Print.pm 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 1,4 **** --- 1,22 ---- package C4::Print; #assumes C4/Print.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Reserves.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Reserves.pm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** Reserves.pm 19 Dec 2000 23:45:55 -0000 1.1.1.1 --- Reserves.pm 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #uses DBD:Pg + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Reserves2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Reserves2.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** Reserves2.pm 26 Jul 2002 01:08:48 -0000 1.12 --- Reserves2.pm 14 Aug 2002 18:12:51 -0000 1.13 *************** *** 1,4 **** --- 1,22 ---- package C4::Reserves2; #assumes C4/Reserves2 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Scan.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Scan.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Scan.pm 20 Jun 2002 18:04:48 -0000 1.2 --- Scan.pm 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Scan; #assumes C4/Scan.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Search.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Search.pm,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** Search.pm 31 Jul 2002 01:50:06 -0000 1.32 --- Search.pm 14 Aug 2002 18:12:51 -0000 1.33 *************** *** 1,4 **** --- 1,22 ---- package C4::Search; #assumes C4/Search + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Security.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Security.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Security.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Security.pm 14 Aug 2002 18:12:52 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Security; #assumes C4/Security + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: SimpleMarc.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/SimpleMarc.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** SimpleMarc.pm 2 Jul 2002 20:30:15 -0000 1.2 --- SimpleMarc.pm 14 Aug 2002 18:12:52 -0000 1.3 *************** *** 11,14 **** --- 11,32 ---- # Licensed under the GPL + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 448,451 **** --- 466,472 ---- #--------------------------------------------- # $Log$ + # Revision 1.3 2002/08/14 18:12:52 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.2 2002/07/02 20:30:15 tonnesen # Merged SimpleMarc.pm over from rel-1-2 Index: Stats.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Stats.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Stats.pm 20 Jun 2002 20:43:26 -0000 1.6 --- Stats.pm 14 Aug 2002 18:12:52 -0000 1.7 *************** *** 1,4 **** --- 1,22 ---- package C4::Stats; #assumes C4/Stats + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Stock.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Stock.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Stock.pm 20 Jun 2002 18:56:52 -0000 1.2 --- Stock.pm 14 Aug 2002 18:12:52 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Stock; #assumes C4/Stock.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Z3950.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Z3950.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Z3950.pm 2 Jul 2002 20:31:33 -0000 1.2 --- Z3950.pm 14 Aug 2002 18:12:52 -0000 1.3 *************** *** 11,14 **** --- 11,32 ---- # Licensed under the GPL + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 190,193 **** --- 208,214 ---- #-------------------------------------- # $Log$ + # Revision 1.3 2002/08/14 18:12:52 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.2 2002/07/02 20:31:33 tonnesen # module added from rel-1-2 branch Index: test.pl =================================================================== RCS file: /cvsroot/koha/koha/C4/test.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** test.pl 10 Jun 2002 20:49:54 -0000 1.3 --- test.pl 14 Aug 2002 18:12:52 -0000 1.4 *************** *** 1,3 **** --- 1,21 ---- package C4::test; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; From tonnesen at users.sourceforge.net Wed Aug 14 20:30:52 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:30:52 -0700 Subject: [Koha-cvs] CVS: koha Install.pm,1.1.2.11,1.1.2.12 Message-ID: Update of /cvsroot/koha/koha In directory usw-pr-cvs1:/tmp/cvs-serv19575 Modified Files: Tag: rel-1-2 Install.pm Log Message: Adding copyright statements to all .pl and .pm files in rel-1-2 branch Index: Install.pm =================================================================== RCS file: /cvsroot/koha/koha/Attic/Install.pm,v retrieving revision 1.1.2.11 retrieving revision 1.1.2.12 diff -C2 -r1.1.2.11 -r1.1.2.12 *** Install.pm 27 Jul 2002 07:00:14 -0000 1.1.2.11 --- Install.pm 14 Aug 2002 18:30:50 -0000 1.1.2.12 *************** *** 1,4 **** --- 1,22 ---- package Install; #assumes Install.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; From tonnesen at users.sourceforge.net Wed Aug 14 20:30:53 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:30:53 -0700 Subject: [Koha-cvs] CVS: koha/C4/Circulation Borrissues.pm,1.1.1.1,1.1.1.1.2.1 Borrower.pm,1.1.1.1,1.1.1.1.2.1 Circ2.pm,1.21.2.3,1.21.2.4 Fines.pm,1.3,1.3.2.1 Issues.pm,1.1.1.1,1.1.1.1.2.1 Main.pm,1.2,1.2.2.1 Renewals.pm,1.1.1.1,1.1.1.1.2.1 Renewals2.pm,1.2.2.2,1.2.2.3 Returns.pm,1.1.1.1,1.1.1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/C4/Circulation In directory usw-pr-cvs1:/tmp/cvs-serv19575/C4/Circulation Modified Files: Tag: rel-1-2 Borrissues.pm Borrower.pm Circ2.pm Fines.pm Issues.pm Main.pm Renewals.pm Renewals2.pm Returns.pm Log Message: Adding copyright statements to all .pl and .pm files in rel-1-2 branch Index: Borrissues.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Borrissues.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Borrissues.pm 19 Dec 2000 23:45:55 -0000 1.1.1.1 --- Borrissues.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Borrower.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Borrower.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Borrower.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Borrower.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circ2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v retrieving revision 1.21.2.3 retrieving revision 1.21.2.4 diff -C2 -r1.21.2.3 -r1.21.2.4 *** Circ2.pm 27 Jul 2002 05:30:12 -0000 1.21.2.3 --- Circ2.pm 14 Aug 2002 18:30:50 -0000 1.21.2.4 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Fines.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Fines.pm,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** Fines.pm 17 Mar 2002 02:58:00 -0000 1.3 --- Fines.pm 14 Aug 2002 18:30:50 -0000 1.3.2.1 *************** *** 4,7 **** --- 4,25 ---- #uses DBD:Pg + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Issues.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Issues.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Issues.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Issues.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Main.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Main.pm,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -r1.2 -r1.2.2.1 *** Main.pm 5 Jan 2001 17:39:25 -0000 1.2 --- Main.pm 14 Aug 2002 18:30:50 -0000 1.2.2.1 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Renewals.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Renewals.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Renewals.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Renewals.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #written 7/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Renewals2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Renewals2.pm,v retrieving revision 1.2.2.2 retrieving revision 1.2.2.3 diff -C2 -r1.2.2.2 -r1.2.2.3 *** Renewals2.pm 24 Jun 2002 21:54:09 -0000 1.2.2.2 --- Renewals2.pm 14 Aug 2002 18:30:50 -0000 1.2.2.3 *************** *** 8,11 **** --- 8,29 ---- #need to update stats with renewals + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Returns.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Returns.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Returns.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- Returns.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; From tonnesen at users.sourceforge.net Wed Aug 14 20:30:53 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:30:53 -0700 Subject: [Koha-cvs] CVS: koha/circ branchtransfers.pl,1.3,1.3.2.1 circulation.pl,1.23.2.2,1.23.2.3 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv19575/circ Modified Files: Tag: rel-1-2 branchtransfers.pl circulation.pl Log Message: Adding copyright statements to all .pl and .pm files in rel-1-2 branch Index: branchtransfers.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/branchtransfers.pl,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -r1.3 -r1.3.2.1 *** branchtransfers.pl 14 Mar 2002 01:51:16 -0000 1.3 --- branchtransfers.pl 14 Aug 2002 18:30:51 -0000 1.3.2.1 *************** *** 4,7 **** --- 4,25 ---- #script to execute branch transfers of books + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: circulation.pl =================================================================== RCS file: /cvsroot/koha/koha/circ/circulation.pl,v retrieving revision 1.23.2.2 retrieving revision 1.23.2.3 diff -C2 -r1.23.2.2 -r1.23.2.3 *** circulation.pl 11 Jul 2002 18:05:29 -0000 1.23.2.2 --- circulation.pl 14 Aug 2002 18:30:51 -0000 1.23.2.3 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI qw/:standard/; use C4::Circulation::Circ2; From tonnesen at users.sourceforge.net Wed Aug 14 20:30:53 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:30:53 -0700 Subject: [Koha-cvs] CVS: koha/C4/Interface AccountsCDK.pm,1.1.1.1,1.1.1.1.2.1 BorrowerCDK.pm,1.1.1.1,1.1.1.1.2.1 FlagsCDK.pm,1.1.1.1,1.1.1.1.2.1 RenewalsCDK.pm,1.1.1.1,1.1.1.1.2.1 ReserveentCDK.pm,1.1.1.1,1.1.1.1.2.1 Message-ID: Update of /cvsroot/koha/koha/C4/Interface In directory usw-pr-cvs1:/tmp/cvs-serv19575/C4/Interface Modified Files: Tag: rel-1-2 AccountsCDK.pm BorrowerCDK.pm FlagsCDK.pm RenewalsCDK.pm ReserveentCDK.pm Log Message: Adding copyright statements to all .pl and .pm files in rel-1-2 branch Index: AccountsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/AccountsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** AccountsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- AccountsCDK.pm 14 Aug 2002 18:30:51 -0000 1.1.1.1.2.1 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: BorrowerCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/BorrowerCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** BorrowerCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- BorrowerCDK.pm 14 Aug 2002 18:30:51 -0000 1.1.1.1.2.1 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: FlagsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/FlagsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** FlagsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- FlagsCDK.pm 14 Aug 2002 18:30:51 -0000 1.1.1.1.2.1 *************** *** 1,4 **** --- 1,22 ---- package C4::Interface::FlagsCDK; #asummes C4/Interface/FlagsCDK + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; Index: RenewalsCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/RenewalsCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** RenewalsCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- RenewalsCDK.pm 14 Aug 2002 18:30:51 -0000 1.1.1.1.2.1 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use Cdk; Index: ReserveentCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Interface/ReserveentCDK.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** ReserveentCDK.pm 19 Dec 2000 23:45:56 -0000 1.1.1.1 --- ReserveentCDK.pm 14 Aug 2002 18:30:51 -0000 1.1.1.1.2.1 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use C4::InterfaceCDK; From tonnesen at users.sourceforge.net Wed Aug 14 20:30:53 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:30:53 -0700 Subject: [Koha-cvs] CVS: koha/C4 Accounts.pm,1.1.1.1.2.1,1.1.1.1.2.2 Accounts2.pm,1.9.2.4,1.9.2.5 Acquisitions.pm,1.5.2.12,1.5.2.13 Auth.pm,1.9.2.7,1.9.2.8 Biblio.pm,1.1.2.4,1.1.2.5 BookShelves.pm,1.2.2.1,1.2.2.2 Catalogue.pm,1.11.2.1,1.11.2.2 Circmain.pm,1.1.1.1.2.2,1.1.1.1.2.3 Circulation.pm,1.1.1.1.2.1,1.1.1.1.2.2 Database.pm,1.2.2.6,1.2.2.7 Format.pm,1.1.1.1.2.2,1.1.1.1.2.3 Groups.pm,1.1.2.1,1.1.2.2 Input.pm,1.1.1.1.2.4,1.1.1.1.2.5 InterfaceCDK.pm,1.1.1.1.2.2,1.1.1.1.2.3 Koha.pm,1.4.2.4,1.4.2.5 Maintainance.pm,1.4.2.1,1.4.2.2 Output.pm,1.6.2.15,1.6.2.16 Print.pm,1.3.2.3,1.3.2.4 Reserves.pm,1.1.1.1,1.1.1.1.2.1 Reserves2.pm,1.5.2.5,1.5.2.6 Scan.pm,1.1.1.1.2.1,1.1.1.1.2.2 Search.pm,1.18.2.6,1.18.2.7 Security.pm,1.1.1.1.2.1,1.1.1.1.2.2 SimpleMarc.pm,1.1.2.4,1.1.2.5 Stats.pm,1.3.2.2,1.3.2.3 Stock.pm,1.1.1.1.2.1,1.1.1.1.2.2 Z3950.pm,1.1.2.5,1.1.2.6 Message-ID: Update of /cvsroot/koha/koha/C4 In directory usw-pr-cvs1:/tmp/cvs-serv19575/C4 Modified Files: Tag: rel-1-2 Accounts.pm Accounts2.pm Acquisitions.pm Auth.pm Biblio.pm BookShelves.pm Catalogue.pm Circmain.pm Circulation.pm Database.pm Format.pm Groups.pm Input.pm InterfaceCDK.pm Koha.pm Maintainance.pm Output.pm Print.pm Reserves.pm Reserves2.pm Scan.pm Search.pm Security.pm SimpleMarc.pm Stats.pm Stock.pm Z3950.pm Log Message: Adding copyright statements to all .pl and .pm files in rel-1-2 branch Index: Accounts.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Accounts.pm,v retrieving revision 1.1.1.1.2.1 retrieving revision 1.1.1.1.2.2 diff -C2 -r1.1.1.1.2.1 -r1.1.1.1.2.2 *** Accounts.pm 25 Apr 2002 21:59:55 -0000 1.1.1.1.2.1 --- Accounts.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.2 *************** *** 1,4 **** --- 1,22 ---- package C4::Accounts; #assumes C4/Accounts + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Accounts2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Accounts2.pm,v retrieving revision 1.9.2.4 retrieving revision 1.9.2.5 diff -C2 -r1.9.2.4 -r1.9.2.5 *** Accounts2.pm 24 Jun 2002 16:15:00 -0000 1.9.2.4 --- Accounts2.pm 14 Aug 2002 18:30:50 -0000 1.9.2.5 *************** *** 1,4 **** --- 1,22 ---- package C4::Accounts2; #assumes C4/Accounts2 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Acquisitions.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Acquisitions.pm,v retrieving revision 1.5.2.12 retrieving revision 1.5.2.13 diff -C2 -r1.5.2.12 -r1.5.2.13 *** Acquisitions.pm 24 Jun 2002 16:15:01 -0000 1.5.2.12 --- Acquisitions.pm 14 Aug 2002 18:30:50 -0000 1.5.2.13 *************** *** 1,4 **** --- 1,22 ---- package C4::Acquisitions; #assumes C4/Acquisitions.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Auth.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Auth.pm,v retrieving revision 1.9.2.7 retrieving revision 1.9.2.8 diff -C2 -r1.9.2.7 -r1.9.2.8 *** Auth.pm 27 Jul 2002 04:33:57 -0000 1.9.2.7 --- Auth.pm 14 Aug 2002 18:30:50 -0000 1.9.2.8 *************** *** 1,4 **** --- 1,22 ---- package C4::Auth; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use Digest::MD5 qw(md5_base64); Index: Biblio.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Biblio.pm,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -r1.1.2.4 -r1.1.2.5 *** Biblio.pm 26 Jun 2002 22:13:49 -0000 1.1.2.4 --- Biblio.pm 14 Aug 2002 18:30:50 -0000 1.1.2.5 *************** *** 5,8 **** --- 5,26 ---- #----------------- # General requirements + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 982,985 **** --- 1000,1006 ---- #--------------------------------------- # $Log$ + # Revision 1.1.2.5 2002/08/14 18:30:50 tonnesen + # Adding copyright statements to all .pl and .pm files in rel-1-2 branch + # # Revision 1.1.2.4 2002/06/26 22:13:49 tonnesen # Fix to allow non-numeric barcodes. Index: BookShelves.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/BookShelves.pm,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -r1.2.2.1 -r1.2.2.2 *** BookShelves.pm 26 Jun 2002 20:46:48 -0000 1.2.2.1 --- BookShelves.pm 14 Aug 2002 18:30:50 -0000 1.2.2.2 *************** *** 6,9 **** --- 6,27 ---- #requires DBI.pm to be installed + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; *************** *** 134,137 **** --- 152,158 ---- # # $Log$ + # Revision 1.2.2.2 2002/08/14 18:30:50 tonnesen + # Adding copyright statements to all .pl and .pm files in rel-1-2 branch + # # Revision 1.2.2.1 2002/06/26 20:46:48 tonnesen # Inserting some changes I made locally a while ago. Index: Catalogue.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Catalogue.pm,v retrieving revision 1.11.2.1 retrieving revision 1.11.2.2 diff -C2 -r1.11.2.1 -r1.11.2.2 *** Catalogue.pm 25 Apr 2002 21:59:55 -0000 1.11.2.1 --- Catalogue.pm 14 Aug 2002 18:30:50 -0000 1.11.2.2 *************** *** 10,13 **** --- 10,31 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circmain.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circmain.pm,v retrieving revision 1.1.1.1.2.2 retrieving revision 1.1.1.1.2.3 diff -C2 -r1.1.1.1.2.2 -r1.1.1.1.2.3 *** Circmain.pm 20 Jun 2002 18:33:56 -0000 1.1.1.1.2.2 --- Circmain.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.3 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Circulation.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation.pm,v retrieving revision 1.1.1.1.2.1 retrieving revision 1.1.1.1.2.2 diff -C2 -r1.1.1.1.2.1 -r1.1.1.1.2.2 *** Circulation.pm 25 Apr 2002 21:59:55 -0000 1.1.1.1.2.1 --- Circulation.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.2 *************** *** 3,6 **** --- 3,24 ---- #package to deal with circulation + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Database.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Database.pm,v retrieving revision 1.2.2.6 retrieving revision 1.2.2.7 diff -C2 -r1.2.2.6 -r1.2.2.7 *** Database.pm 27 Jul 2002 04:41:30 -0000 1.2.2.6 --- Database.pm 14 Aug 2002 18:30:50 -0000 1.2.2.7 *************** *** 3,6 **** --- 3,24 ---- #requires DBI.pm to be installed + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Format.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Format.pm,v retrieving revision 1.1.1.1.2.2 retrieving revision 1.1.1.1.2.3 diff -C2 -r1.1.1.1.2.2 -r1.1.1.1.2.3 *** Format.pm 20 Jun 2002 18:33:56 -0000 1.1.1.1.2.2 --- Format.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Format; #assumes C4/Format + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Groups.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Groups.pm,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -r1.1.2.1 -r1.1.2.2 *** Groups.pm 25 Apr 2002 21:59:55 -0000 1.1.2.1 --- Groups.pm 14 Aug 2002 18:30:50 -0000 1.1.2.2 *************** *** 4,7 **** --- 4,25 ---- #written 3/11/99 by olwen at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Input.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Input.pm,v retrieving revision 1.1.1.1.2.4 retrieving revision 1.1.1.1.2.5 diff -C2 -r1.1.1.1.2.4 -r1.1.1.1.2.5 *** Input.pm 5 Jul 2002 04:45:13 -0000 1.1.1.1.2.4 --- Input.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.5 *************** *** 1,4 **** --- 1,22 ---- package C4::Input; #assumes C4/Input + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: InterfaceCDK.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/InterfaceCDK.pm,v retrieving revision 1.1.1.1.2.2 retrieving revision 1.1.1.1.2.3 diff -C2 -r1.1.1.1.2.2 -r1.1.1.1.2.3 *** InterfaceCDK.pm 21 Jun 2002 18:26:28 -0000 1.1.1.1.2.2 --- InterfaceCDK.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.3 *************** *** 2,5 **** --- 2,23 ---- #uses Newt + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Format; use strict; Index: Koha.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Koha.pm,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -r1.4.2.4 -r1.4.2.5 *** Koha.pm 12 Jul 2002 23:58:35 -0000 1.4.2.4 --- Koha.pm 14 Aug 2002 18:30:50 -0000 1.4.2.5 *************** *** 1,4 **** --- 1,22 ---- package C4::Koha; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Maintainance.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Maintainance.pm,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -C2 -r1.4.2.1 -r1.4.2.2 *** Maintainance.pm 25 Apr 2002 21:59:55 -0000 1.4.2.1 --- Maintainance.pm 14 Aug 2002 18:30:50 -0000 1.4.2.2 *************** *** 3,6 **** --- 3,24 ---- #package to deal with marking up output + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: Output.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Output.pm,v retrieving revision 1.6.2.15 retrieving revision 1.6.2.16 diff -C2 -r1.6.2.15 -r1.6.2.16 *** Output.pm 11 Jul 2002 21:06:19 -0000 1.6.2.15 --- Output.pm 14 Aug 2002 18:30:50 -0000 1.6.2.16 *************** *** 7,10 **** --- 7,28 ---- #set the value of path to be where your html lives + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Print.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Print.pm,v retrieving revision 1.3.2.3 retrieving revision 1.3.2.4 diff -C2 -r1.3.2.3 -r1.3.2.4 *** Print.pm 20 Jun 2002 20:42:35 -0000 1.3.2.3 --- Print.pm 14 Aug 2002 18:30:50 -0000 1.3.2.4 *************** *** 1,4 **** --- 1,22 ---- package C4::Print; #assumes C4/Print.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Reserves.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Reserves.pm,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.1.2.1 diff -C2 -r1.1.1.1 -r1.1.1.1.2.1 *** Reserves.pm 19 Dec 2000 23:45:55 -0000 1.1.1.1 --- Reserves.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.1 *************** *** 4,7 **** --- 4,25 ---- #uses DBD:Pg + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Reserves2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Reserves2.pm,v retrieving revision 1.5.2.5 retrieving revision 1.5.2.6 diff -C2 -r1.5.2.5 -r1.5.2.6 *** Reserves2.pm 11 Jul 2002 18:05:29 -0000 1.5.2.5 --- Reserves2.pm 14 Aug 2002 18:30:50 -0000 1.5.2.6 *************** *** 1,4 **** --- 1,22 ---- package C4::Reserves2; #assumes C4/Reserves2 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Scan.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Scan.pm,v retrieving revision 1.1.1.1.2.1 retrieving revision 1.1.1.1.2.2 diff -C2 -r1.1.1.1.2.1 -r1.1.1.1.2.2 *** Scan.pm 25 Apr 2002 21:59:55 -0000 1.1.1.1.2.1 --- Scan.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.2 *************** *** 1,4 **** --- 1,22 ---- package C4::Scan; #assumes C4/Scan.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Search.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Search.pm,v retrieving revision 1.18.2.6 retrieving revision 1.18.2.7 diff -C2 -r1.18.2.6 -r1.18.2.7 *** Search.pm 11 Jul 2002 18:05:29 -0000 1.18.2.6 --- Search.pm 14 Aug 2002 18:30:50 -0000 1.18.2.7 *************** *** 1,4 **** --- 1,22 ---- package C4::Search; #assumes C4/Search + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Security.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Security.pm,v retrieving revision 1.1.1.1.2.1 retrieving revision 1.1.1.1.2.2 diff -C2 -r1.1.1.1.2.1 -r1.1.1.1.2.2 *** Security.pm 25 Apr 2002 21:59:55 -0000 1.1.1.1.2.1 --- Security.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.2 *************** *** 1,4 **** --- 1,22 ---- package C4::Security; #assumes C4/Security + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: SimpleMarc.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/SimpleMarc.pm,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -r1.1.2.4 -r1.1.2.5 *** SimpleMarc.pm 28 Jun 2002 14:36:47 -0000 1.1.2.4 --- SimpleMarc.pm 14 Aug 2002 18:30:50 -0000 1.1.2.5 *************** *** 11,14 **** --- 11,32 ---- # Licensed under the GPL + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 448,451 **** --- 466,472 ---- #--------------------------------------------- # $Log$ + # Revision 1.1.2.5 2002/08/14 18:30:50 tonnesen + # Adding copyright statements to all .pl and .pm files in rel-1-2 branch + # # Revision 1.1.2.4 2002/06/28 14:36:47 amillar # Fix broken logic on illustrator vs. add'l author Index: Stats.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Stats.pm,v retrieving revision 1.3.2.2 retrieving revision 1.3.2.3 diff -C2 -r1.3.2.2 -r1.3.2.3 *** Stats.pm 18 May 2002 10:21:51 -0000 1.3.2.2 --- Stats.pm 14 Aug 2002 18:30:50 -0000 1.3.2.3 *************** *** 1,4 **** --- 1,22 ---- package C4::Stats; #assumes C4/Stats + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Stock.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Stock.pm,v retrieving revision 1.1.1.1.2.1 retrieving revision 1.1.1.1.2.2 diff -C2 -r1.1.1.1.2.1 -r1.1.1.1.2.2 *** Stock.pm 25 Apr 2002 21:59:55 -0000 1.1.1.1.2.1 --- Stock.pm 14 Aug 2002 18:30:50 -0000 1.1.1.1.2.2 *************** *** 1,4 **** --- 1,22 ---- package C4::Stock; #assumes C4/Stock.pm + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; require Exporter; Index: Z3950.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Z3950.pm,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -C2 -r1.1.2.5 -r1.1.2.6 *** Z3950.pm 29 Jun 2002 17:33:47 -0000 1.1.2.5 --- Z3950.pm 14 Aug 2002 18:30:50 -0000 1.1.2.6 *************** *** 11,14 **** --- 11,32 ---- # Licensed under the GPL + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; *************** *** 190,193 **** --- 208,214 ---- #-------------------------------------- # $Log$ + # Revision 1.1.2.6 2002/08/14 18:30:50 tonnesen + # Adding copyright statements to all .pl and .pm files in rel-1-2 branch + # # Revision 1.1.2.5 2002/06/29 17:33:47 amillar # Allow DEFAULT as input to addz3950search. From tonnesen at users.sourceforge.net Wed Aug 14 20:13:24 2002 From: tonnesen at users.sourceforge.net (Steve Tonnesen) Date: Wed, 14 Aug 2002 11:13:24 -0700 Subject: [Koha-cvs] CVS: koha addwebsite.pl,1.1,1.2 barcodes.pl,1.1,1.2 bookcount.pl,1.1,1.2 boraccount.pl,1.2,1.3 charges.pl,1.1.1.1,1.2 currency.pl,1.2,1.3 delbiblio.pl,1.4,1.5 deletebiblioitem.pl,1.1,1.2 deletemem.pl,1.2,1.3 deletewebsite.pl,1.1,1.2 delitem.pl,1.2,1.3 detail.pl,1.9,1.10 groups.pl,1.1,1.2 imemberentry.pl,1.1.1.1,1.2 insertdata.pl,1.7,1.8 insertidata.pl,1.1.1.1,1.2 insertjdata.pl,1.1.1.1,1.2 installer-lite.pl,1.1,1.2 installer.pl,1.7,1.8 jmemberentry.pl,1.1.1.1,1.2 loadmodules.pl,1.3,1.4 logout.pl,1.2,1.3 mancredit.pl,1.2,1.3 maninvoice.pl,1.2,1.3 member.pl,1.2,1.3 memberentry.pl,1.7,1.8 modbib.pl,1.5,1.6 modbibitem.pl,1.8,1.9 moditem.pl,1.2,1.3 modrequest.pl,1.1.1.1,1.2 modwebsites.pl,1.1,1.2 moredetail.pl,1.8,1.9 moremember.pl,1.13,1.14 newimember.pl,1.1.1.1,1.2 newjmember.pl,1.1.1.1,1.2 newmember.pl,1.1.1.1,1.2 orderbreakdown.pl,1.2,1.3 overdue.pl,1.1,1.2 pay.pl,1.3,1.4 placerequest.pl,1.1.1.1,1.2 readingrec.pl,1.2,1.3 renewscript.pl,1.2,1.3 reports.pl,1.1.1.1,1.2 request.pl,1.8,1.9 reservereport.pl,1.1.1.1,1.2 search.pl,1.9,1.10 shelves.pl,1.7,1.8 showbudget.pl,1.3,1.4 simpleredirect.pl,1.1.1.1,1.2 stats.pl,1.4,1.5 stats2.pl,1.1.1.1,1.2 subjectsearch.pl,1.2,1.3 testKoha.pl,1.5,1.6 thesaurus_popup.pl,1.1,1.2 tidyaccounts.pl,1.1.1.1,1.2 updatebibitem.pl,1.7,1.8 updatebiblio.pl,1.3,1.4 updatecharges.pl,1.1.1.1,1.2 updateitem.pl,1.3,1.4 updatewebsite.pl,1.1,1.2 userpage.pl,1.2,1.3 Message-ID: Update of /cvsroot/koha/koha In directory usw-pr-cvs1:/tmp/cvs-serv8581 Modified Files: addwebsite.pl barcodes.pl bookcount.pl boraccount.pl charges.pl currency.pl delbiblio.pl deletebiblioitem.pl deletemem.pl deletewebsite.pl delitem.pl detail.pl groups.pl imemberentry.pl insertdata.pl insertidata.pl insertjdata.pl installer-lite.pl installer.pl jmemberentry.pl loadmodules.pl logout.pl mancredit.pl maninvoice.pl member.pl memberentry.pl modbib.pl modbibitem.pl moditem.pl modrequest.pl modwebsites.pl moredetail.pl moremember.pl newimember.pl newjmember.pl newmember.pl orderbreakdown.pl overdue.pl pay.pl placerequest.pl readingrec.pl renewscript.pl reports.pl request.pl reservereport.pl search.pl shelves.pl showbudget.pl simpleredirect.pl stats.pl stats2.pl subjectsearch.pl testKoha.pl thesaurus_popup.pl tidyaccounts.pl updatebibitem.pl updatebiblio.pl updatecharges.pl updateitem.pl updatewebsite.pl userpage.pl Log Message: Added copyright statement to all .pl and .pm files Index: addwebsite.pl =================================================================== RCS file: /cvsroot/koha/koha/addwebsite.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** addwebsite.pl 12 May 2002 15:37:53 -0000 1.1 --- addwebsite.pl 14 Aug 2002 18:12:50 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Acquisitions; Index: barcodes.pl =================================================================== RCS file: /cvsroot/koha/koha/barcodes.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** barcodes.pl 29 May 2002 21:06:17 -0000 1.1 --- barcodes.pl 14 Aug 2002 18:12:50 -0000 1.2 *************** *** 6,9 **** --- 6,27 ---- # Variable Section # #################### + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + my $pretext='T '; my $startnumber=1000; Index: bookcount.pl =================================================================== RCS file: /cvsroot/koha/koha/bookcount.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** bookcount.pl 2 May 2002 00:08:53 -0000 1.1 --- bookcount.pl 14 Aug 2002 18:12:50 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #script to display reports + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: boraccount.pl =================================================================== RCS file: /cvsroot/koha/koha/boraccount.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** boraccount.pl 2 May 2001 21:11:41 -0000 1.2 --- boraccount.pl 14 Aug 2002 18:12:50 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #script to display borrowers account details + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: charges.pl =================================================================== RCS file: /cvsroot/koha/koha/charges.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** charges.pl 19 Dec 2000 23:45:51 -0000 1.1.1.1 --- charges.pl 14 Aug 2002 18:12:50 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 8/11/99 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: currency.pl =================================================================== RCS file: /cvsroot/koha/koha/currency.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** currency.pl 20 Jun 2002 17:23:09 -0000 1.2 --- currency.pl 14 Aug 2002 18:12:50 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- #script to display and update currency rates + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Acquisitions; Index: delbiblio.pl =================================================================== RCS file: /cvsroot/koha/koha/delbiblio.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** delbiblio.pl 20 Jun 2002 17:45:18 -0000 1.4 --- delbiblio.pl 14 Aug 2002 18:12:51 -0000 1.5 *************** *** 5,8 **** --- 5,26 ---- #by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: deletebiblioitem.pl =================================================================== RCS file: /cvsroot/koha/koha/deletebiblioitem.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** deletebiblioitem.pl 14 May 2002 04:12:52 -0000 1.1 --- deletebiblioitem.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Acquisitions; Index: deletemem.pl =================================================================== RCS file: /cvsroot/koha/koha/deletemem.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** deletemem.pl 11 Sep 2001 02:03:26 -0000 1.2 --- deletemem.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- #by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: deletewebsite.pl =================================================================== RCS file: /cvsroot/koha/koha/deletewebsite.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** deletewebsite.pl 12 May 2002 15:37:53 -0000 1.1 --- deletewebsite.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Acquisitions; Index: delitem.pl =================================================================== RCS file: /cvsroot/koha/koha/delitem.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** delitem.pl 20 Jun 2002 17:23:09 -0000 1.2 --- delitem.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- #by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: detail.pl =================================================================== RCS file: /cvsroot/koha/koha/detail.pl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** detail.pl 22 May 2002 18:35:25 -0000 1.9 --- detail.pl 14 Aug 2002 18:12:51 -0000 1.10 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; Index: groups.pl =================================================================== RCS file: /cvsroot/koha/koha/groups.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** groups.pl 2 May 2001 23:06:44 -0000 1.1 --- groups.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #script to display reports + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI qw/:standard/; use C4::Output; Index: imemberentry.pl =================================================================== RCS file: /cvsroot/koha/koha/imemberentry.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** imemberentry.pl 19 Dec 2000 23:45:51 -0000 1.1.1.1 --- imemberentry.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 20/12/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: insertdata.pl =================================================================== RCS file: /cvsroot/koha/koha/insertdata.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** insertdata.pl 9 Apr 2002 00:04:39 -0000 1.7 --- insertdata.pl 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 5,8 **** --- 5,26 ---- # written 9/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Database; Index: insertidata.pl =================================================================== RCS file: /cvsroot/koha/koha/insertidata.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** insertidata.pl 19 Dec 2000 23:45:51 -0000 1.1.1.1 --- insertidata.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 5,8 **** --- 5,26 ---- # written 9/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Database; Index: insertjdata.pl =================================================================== RCS file: /cvsroot/koha/koha/insertjdata.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** insertjdata.pl 19 Dec 2000 23:45:51 -0000 1.1.1.1 --- insertjdata.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 5,8 **** --- 5,26 ---- # written 9/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Database; Index: installer-lite.pl =================================================================== RCS file: /cvsroot/koha/koha/installer-lite.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** installer-lite.pl 11 Jun 2002 11:24:36 -0000 1.1 --- installer-lite.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl -w # please develop with -w + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use diagnostics; use strict; # please develop with the strict pragma Index: installer.pl =================================================================== RCS file: /cvsroot/koha/koha/installer.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** installer.pl 23 Jul 2002 06:06:42 -0000 1.7 --- installer.pl 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 2,5 **** --- 2,23 ---- #use diagnostics; + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; # please develop with the strict pragma Index: jmemberentry.pl =================================================================== RCS file: /cvsroot/koha/koha/jmemberentry.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** jmemberentry.pl 19 Dec 2000 23:45:51 -0000 1.1.1.1 --- jmemberentry.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 20/12/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: loadmodules.pl =================================================================== RCS file: /cvsroot/koha/koha/loadmodules.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** loadmodules.pl 20 Jun 2002 17:23:09 -0000 1.3 --- loadmodules.pl 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 5,8 **** --- 5,26 ---- #called as an include by the acquisitions index page + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Acquisitions; use C4::Biblio; Index: logout.pl =================================================================== RCS file: /cvsroot/koha/koha/logout.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** logout.pl 5 Jul 2002 05:03:36 -0000 1.2 --- logout.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Database; Index: mancredit.pl =================================================================== RCS file: /cvsroot/koha/koha/mancredit.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** mancredit.pl 9 May 2001 23:22:10 -0000 1.2 --- mancredit.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #script to display borrowers account details + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: maninvoice.pl =================================================================== RCS file: /cvsroot/koha/koha/maninvoice.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** maninvoice.pl 9 May 2001 23:22:10 -0000 1.2 --- maninvoice.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #script to display borrowers account details + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: member.pl =================================================================== RCS file: /cvsroot/koha/koha/member.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** member.pl 6 May 2002 04:12:48 -0000 1.2 --- member.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #written 20/12/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: memberentry.pl =================================================================== RCS file: /cvsroot/koha/koha/memberentry.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** memberentry.pl 4 Jul 2002 13:53:56 -0000 1.7 --- memberentry.pl 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 4,7 **** --- 4,25 ---- #written 20/12/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: modbib.pl =================================================================== RCS file: /cvsroot/koha/koha/modbib.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** modbib.pl 28 Jun 2002 12:07:16 -0000 1.5 --- modbib.pl 14 Aug 2002 18:12:51 -0000 1.6 *************** *** 5,8 **** --- 5,26 ---- # modified 11/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: modbibitem.pl =================================================================== RCS file: /cvsroot/koha/koha/modbibitem.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** modbibitem.pl 20 Jun 2002 18:04:45 -0000 1.8 --- modbibitem.pl 14 Aug 2002 18:12:51 -0000 1.9 *************** *** 6,9 **** --- 6,27 ---- # modified 11/11/99 by chris at katipo.co.nz # modified 18/4/00 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: moditem.pl =================================================================== RCS file: /cvsroot/koha/koha/moditem.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** moditem.pl 20 Jun 2002 17:23:09 -0000 1.2 --- moditem.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- # modified 11/11/99 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: modrequest.pl =================================================================== RCS file: /cvsroot/koha/koha/modrequest.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** modrequest.pl 19 Dec 2000 23:45:52 -0000 1.1.1.1 --- modrequest.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 5,8 **** --- 5,26 ---- #last update 27/1/2000 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; #use DBI; Index: modwebsites.pl =================================================================== RCS file: /cvsroot/koha/koha/modwebsites.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** modwebsites.pl 12 May 2002 15:37:53 -0000 1.1 --- modwebsites.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; Index: moredetail.pl =================================================================== RCS file: /cvsroot/koha/koha/moredetail.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** moredetail.pl 31 Jul 2002 03:56:44 -0000 1.8 --- moredetail.pl 14 Aug 2002 18:12:51 -0000 1.9 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; Index: moremember.pl =================================================================== RCS file: /cvsroot/koha/koha/moremember.pl,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** moremember.pl 27 Jun 2002 21:16:20 -0000 1.13 --- moremember.pl 14 Aug 2002 18:12:51 -0000 1.14 *************** *** 11,14 **** --- 11,32 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: newimember.pl =================================================================== RCS file: /cvsroot/koha/koha/newimember.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** newimember.pl 19 Dec 2000 23:45:52 -0000 1.1.1.1 --- newimember.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 3,6 **** --- 3,24 ---- #script to print confirmation screen, then if accepted calls itself to insert data + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: newjmember.pl =================================================================== RCS file: /cvsroot/koha/koha/newjmember.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** newjmember.pl 19 Dec 2000 23:45:52 -0000 1.1.1.1 --- newjmember.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 3,6 **** --- 3,24 ---- #script to print confirmation screen, then if accepted calls itself to insert data + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: newmember.pl =================================================================== RCS file: /cvsroot/koha/koha/newmember.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** newmember.pl 19 Dec 2000 23:45:52 -0000 1.1.1.1 --- newmember.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 3,6 **** --- 3,24 ---- #script to print confirmation screen, then if accepted calls itself to insert data + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: orderbreakdown.pl =================================================================== RCS file: /cvsroot/koha/koha/orderbreakdown.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** orderbreakdown.pl 20 Jun 2002 17:23:09 -0000 1.2 --- orderbreakdown.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #written by chris at katipo.co.nz 31/01/2000 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Acquisitions; use C4::Biblio; Index: overdue.pl =================================================================== RCS file: /cvsroot/koha/koha/overdue.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** overdue.pl 18 Mar 2001 22:06:39 -0000 1.1 --- overdue.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: pay.pl =================================================================== RCS file: /cvsroot/koha/koha/pay.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** pay.pl 27 Mar 2002 00:02:40 -0000 1.3 --- pay.pl 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 4,7 **** --- 4,25 ---- #part of the koha library system, script to facilitate paying off fines + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: placerequest.pl =================================================================== RCS file: /cvsroot/koha/koha/placerequest.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** placerequest.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- placerequest.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #writen 2/1/00 by chris at katipo.oc.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; #use DBI; Index: readingrec.pl =================================================================== RCS file: /cvsroot/koha/koha/readingrec.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** readingrec.pl 20 Jun 2001 03:36:01 -0000 1.2 --- readingrec.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 5,8 **** --- 5,26 ---- + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Output; Index: renewscript.pl =================================================================== RCS file: /cvsroot/koha/koha/renewscript.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** renewscript.pl 9 May 2001 23:23:52 -0000 1.2 --- renewscript.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #script to renew items from the web + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use C4::Circulation::Renewals2; Index: reports.pl =================================================================== RCS file: /cvsroot/koha/koha/reports.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** reports.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- reports.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #written 8/11/99 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: request.pl =================================================================== RCS file: /cvsroot/koha/koha/request.pl,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** request.pl 9 Aug 2002 04:33:01 -0000 1.8 --- request.pl 14 Aug 2002 18:12:51 -0000 1.9 *************** *** 4,7 **** --- 4,25 ---- #writen 2/1/00 by chris at katipo.oc.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; #use DBI; Index: reservereport.pl =================================================================== RCS file: /cvsroot/koha/koha/reservereport.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** reservereport.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- reservereport.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #script to display reports + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Stats; use strict; Index: search.pl =================================================================== RCS file: /cvsroot/koha/koha/search.pl,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** search.pl 15 May 2002 04:36:51 -0000 1.9 --- search.pl 14 Aug 2002 18:12:51 -0000 1.10 *************** *** 2,5 **** --- 2,23 ---- #script to provide intranet (librarian) advanced search facility + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Search; Index: shelves.pl =================================================================== RCS file: /cvsroot/koha/koha/shelves.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** shelves.pl 5 Jul 2002 05:03:37 -0000 1.7 --- shelves.pl 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 5,8 **** --- 5,26 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Search; *************** *** 170,173 **** --- 188,194 ---- # # $Log$ + # Revision 1.8 2002/08/14 18:12:51 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.7 2002/07/05 05:03:37 tonnesen # Minor changes to authentication routines. Index: showbudget.pl =================================================================== RCS file: /cvsroot/koha/koha/showbudget.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** showbudget.pl 20 Jun 2002 17:23:09 -0000 1.3 --- showbudget.pl 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 5,8 **** --- 5,26 ---- #called as an include by the acquisitions index page + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Acquisitions; use C4::Biblio; Index: simpleredirect.pl =================================================================== RCS file: /cvsroot/koha/koha/simpleredirect.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** simpleredirect.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- simpleredirect.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #used by members section + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use CGI; use strict; Index: stats.pl =================================================================== RCS file: /cvsroot/koha/koha/stats.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** stats.pl 2 Apr 2001 22:51:26 -0000 1.4 --- stats.pl 14 Aug 2002 18:12:51 -0000 1.5 *************** *** 4,7 **** --- 4,25 ---- #script to display reports + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Stats; use strict; Index: stats2.pl =================================================================== RCS file: /cvsroot/koha/koha/stats2.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** stats2.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- stats2.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- #script to display reports + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Stats; use strict; Index: subjectsearch.pl =================================================================== RCS file: /cvsroot/koha/koha/subjectsearch.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** subjectsearch.pl 9 Jul 2002 03:07:05 -0000 1.2 --- subjectsearch.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 4,7 **** --- 4,25 ---- #written 8/11/99 + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; #use DBI; Index: testKoha.pl =================================================================== RCS file: /cvsroot/koha/koha/testKoha.pl,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** testKoha.pl 20 Jun 2002 18:04:46 -0000 1.5 --- testKoha.pl 14 Aug 2002 18:12:51 -0000 1.6 *************** *** 3,6 **** --- 3,24 ---- # $Id$ + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use Test::Harness; *************** *** 24,27 **** --- 42,48 ---- # $Log$ + # Revision 1.6 2002/08/14 18:12:51 tonnesen + # Added copyright statement to all .pl and .pm files + # # Revision 1.5 2002/06/20 18:04:46 tonnesen # Are we getting sick of merging yet? Not me! Index: thesaurus_popup.pl =================================================================== RCS file: /cvsroot/koha/koha/thesaurus_popup.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** thesaurus_popup.pl 14 May 2002 11:26:10 -0000 1.1 --- thesaurus_popup.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- # build Subject field using bibliothesaurus table + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: tidyaccounts.pl =================================================================== RCS file: /cvsroot/koha/koha/tidyaccounts.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** tidyaccounts.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- tidyaccounts.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 4,7 **** --- 4,25 ---- # + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Database; Index: updatebibitem.pl =================================================================== RCS file: /cvsroot/koha/koha/updatebibitem.pl,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** updatebibitem.pl 28 Jun 2002 12:53:02 -0000 1.7 --- updatebibitem.pl 14 Aug 2002 18:12:51 -0000 1.8 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use CGI; Index: updatebiblio.pl =================================================================== RCS file: /cvsroot/koha/koha/updatebiblio.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** updatebiblio.pl 28 Jun 2002 12:19:50 -0000 1.3 --- updatebiblio.pl 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use CGI; Index: updatecharges.pl =================================================================== RCS file: /cvsroot/koha/koha/updatecharges.pl,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** updatecharges.pl 19 Dec 2000 23:45:53 -0000 1.1.1.1 --- updatecharges.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 6,9 **** --- 6,27 ---- # written 1/1/2000 by chris at katipo.co.nz + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use CGI; Index: updateitem.pl =================================================================== RCS file: /cvsroot/koha/koha/updateitem.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** updateitem.pl 20 Jun 2002 17:23:09 -0000 1.3 --- updateitem.pl 14 Aug 2002 18:12:51 -0000 1.4 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use C4::Database; use CGI; Index: updatewebsite.pl =================================================================== RCS file: /cvsroot/koha/koha/updatewebsite.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** updatewebsite.pl 12 May 2002 15:37:53 -0000 1.1 --- updatewebsite.pl 14 Aug 2002 18:12:51 -0000 1.2 *************** *** 1,4 **** --- 1,22 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use strict; use C4::Acquisitions; Index: userpage.pl =================================================================== RCS file: /cvsroot/koha/koha/userpage.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** userpage.pl 11 Jul 2002 06:40:06 -0000 1.2 --- userpage.pl 14 Aug 2002 18:12:51 -0000 1.3 *************** *** 1,3 **** --- 1,21 ---- #!/usr/bin/perl + + # Copyright 2000-2002 Katipo Communications + # + # This file is part of Koha. + # + # Koha 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. + # + # Koha 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. + # + # You should have received a copy of the GNU General Public License along with + # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, + # Suite 330, Boston, MA 02111-1307 USA + use HTML::Template; use strict; From rangi at users.sourceforge.net Thu Aug 15 02:46:28 2002 From: rangi at users.sourceforge.net (Chris Cormack) Date: Wed, 14 Aug 2002 17:46:28 -0700 Subject: [Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.21.2.4,1.21.2.5 Message-ID: Update of /cvsroot/koha/koha/C4/Circulation In directory usw-pr-cvs1:/tmp/cvs-serv1318/C4/Circulation Modified Files: Tag: rel-1-2 Circ2.pm Log Message: Merging branchtransfers and lots of circulation fixes into the rel-1-2 branch Needs testing. Index: Circ2.pm =================================================================== RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v retrieving revision 1.21.2.4 retrieving revision 1.21.2.5 diff -C2 -r1.21.2.4 -r1.21.2.5 *** Circ2.pm 14 Aug 2002 18:30:50 -0000 1.21.2.4 --- Circ2.pm 15 Aug 2002 00:46:26 -0000 1.21.2.5 *************** *** 23,26 **** --- 23,27 ---- use strict; + # use warnings; require Exporter; use DBI; *************** *** 33,36 **** --- 34,38 ---- #use C4::Scan; [...1274 lines suppressed...] ! if (my $conrec = $consth->fetchrow_hashref) { ! if ($resrec->{'constrainttype'} eq "o") { ! $resfound = 1; ! } ! } ! $consth->finish; ! } ! } ! if ($resfound) { ! my $updquery = "update reserves set found = 'W', itemnumber = '$itemno' ! where borrowernumber = $brn and reservedate = $rdate and biblionumber = $bibno"; ! my $updsth = $dbh->prepare($updquery); ! $updsth->execute; ! $updsth->finish; ! } } ! $sth->finish; ! return ($resfound,$lastrec); } From rangi at users.sourceforge.net Thu Aug 15 02:46:28 2002 From: rangi at users.sourceforge.net (Chris Cormack) Date: Wed, 14 Aug 2002 17:46:28 -0700 Subject: [Koha-cvs] CVS: koha/circ returns.pl,NONE,1.13.2.1 selectbranchprinter.pl,NONE,1.3.2.1 branchtransfers.pl,1.3.2.1,1.3.2.2 circulation.pl,1.23.2.3,1.23.2.4 Message-ID: Update of /cvsroot/koha/koha/circ In directory usw-pr-cvs1:/tmp/cvs-serv1318/circ Modified Files: Tag: rel-1-2 branchtransfers.pl circulation.pl Added Files: Tag: rel-1-2 returns.pl selectbranchprinter.pl Log Message: Merging branchtransfers and lots of circulation fixes into the rel-1-2 branch Needs testing. --- NEW FILE --- #!/usr/bin/perl #written 11/3/2002 by Finlay #script to execute returns of books # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha 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. # # Koha 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. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use CGI; use C4::Circulation::Circ2; use C4::Search; use C4::Output; use C4::Print; use C4::Reserves2; my %env; my $headerbackgroundcolor='#99cc33'; my $circbackgroundcolor='#ffffcc'; my $circbackgroundcolor='white'; my $linecolor1='#ffffcc'; my $linecolor2='white'; my $backgroundimage="/images/background-mem.gif"; my $query=new CGI; my $branches = getbranches(); my $printers = getprinters(\%env); my $branch = $query->param("branch"); my $printer = $query->param("printer"); ($branch) || ($branch=$query->cookie('branch')) ; ($printer) || ($printer=$query->cookie('printer')) ; # # Some code to handle the error if there is no branch or printer setting..... # $env{'branchcode'}=$branch; $env{'printer'}=$printer; $env{'queue'}=$printer; # Set up the item stack .... my $ritext = ''; my %returneditems; my %riduedate; my %riborrowernumber; foreach ($query->param) { (next) unless (/ri-(\d*)/); my $counter=$1; (next) if ($counter>20); my $barcode=$query->param("ri-$counter"); my $duedate=$query->param("dd-$counter"); my $borrowernumber=$query->param("bn-$counter"); $counter++; # decode cuecat $barcode = cuecatbarcodedecode($barcode); $returneditems{$counter}=$barcode; $riduedate{$counter}=$duedate; $riborrowernumber{$counter}=$borrowernumber; $ritext.="\n"; $ritext.="\n"; $ritext.="\n"; } # Collect a few messages here... my $messagetext=''; my $reservetext=''; ############ # Deal with the requests.... if ($query->param('resbarcode')) { my $item = $query->param('itemnumber'); my $borrnum = $query->param('borrowernumber'); my $resbarcode = $query->param('resbarcode'); my $tobranchcd = ReserveWaiting($item, $borrnum); my $branchname = $branches->{$tobranchcd}->{'branchname'}; my ($borr) = getpatroninformation(\%env, $borrnum, 0); my $name = $borr->{'surname'}." ".$borr->{'title'}." ".$borr->{'firstname'}; my $number = "{'borrowernumber'} onClick='openWindow(this,'Member', 480, 640)'>$borr->{'cardnumber'}"; my $slip = $query->param('resslip'); printslip(\%env, $slip); if ($tobranchcd ne $branch) { my ($transfered, $messages, $iteminfo) = transferbook($tobranchcd, $resbarcode, 1); $reservetext .= <<"EOF"; Item marked Waiting:
Item: $iteminfo->{'title'} ($iteminfo->{'author'})
needs to be transfered to $branchname
to be picked up by $name ($number).
$ritext
EOF } } my $iteminformation; my $borrower; my $returned = 0; my $messages; my $barcode = $query->param('barcode'); # actually return book and prepare item table..... if ($barcode) { # decode cuecat $barcode = cuecatbarcodedecode($barcode); ($returned, $messages, $iteminformation, $borrower) = returnbook($barcode, $branch); $returneditems{0} = $barcode; $ritext.= "\n"; if ($returned) { $riborrowernumber{0} = $borrower->{'borrowernumber'}; $riduedate{0} = $iteminformation->{'date_due'}; $ritext.= "{'date_due'}>\n"; $ritext.= "{'borrowernumber'}>\n"; } else { $riborrowernumber{0} = 0; $riduedate{0} = 0; $ritext.= "\n"; $ritext.= "\n"; } } ################################################################################## # HTML code.... # title.... my $title = <<"EOF"; Circulation: Returns
Branch: $branches->{$branch}->{'branchname'}   Printer: $printers->{$printer}->{'printername'}
Change Settings

EOF my $links = <<"EOF";
Issues   Issues
EOF my $itemtable; if ($iteminformation) { $itemtable = <<"EOF";
Returned Item Information
Title: $iteminformation->{'title'}
EOF } # Barcode entry box, with hidden inputs attached.... my $barcodeentrytext = << "EOF";

Enter Book Barcode
Item Barcode:
$ritext
EOF if ($messages->{'ResFound'}) { my $res = $messages->{'ResFound'}; my $branchname = $branches->{$res->{'branchcode'}}->{'branchname'}; my ($borr) = getpatroninformation(\%env, $res->{'borrowernumber'}, 0); my $name = $borr->{'surname'}." ".$borr->{'title'}." ".$borr->{'firstname'}; my $number = "{'borrowernumber'} onClick='openWindow(this,'Member', 480, 640)'>$borr->{'cardnumber'}"; my ($iteminfo) = getiteminformation(\%env, 0, $barcode); if ($res->{'ResFound'} eq "Waiting") { $reservetext = <<"EOF"; Item marked Waiting:
Item $iteminfo->{'title'} ($iteminfo->{'author'})
is marked waiting at $branchname for $name ($number).
$ritext
EOF } if ($res->{'ResFound'} eq "Reserved") { my @da = localtime(time()); my $todaysdate = sprintf ("%0.2d", ($da[3]+1))."/".sprintf ("%0.2d", ($da[4]+1))."/".($da[5]+1900); my $slip = <<"EOF"; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Date: $todaysdate; ITEM RESERVED: $iteminfo->{'title'} ($iteminfo->{'author'}) barcode: $iteminfo->{'barcode'} itemtype: $iteminfo->{'itemtype'} COLLECT AT: $branchname BORROWER: $borr->{'title'} $borr->{'surname'}, $borr->{'firstname'} card number: $borr->{'cardnumber'} Phone: $borr->{'phone'} $borr->{'streetaddress'} $borr->{'suburb'} $borr->{'town'} $borr->{'emailaddress'} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ EOF $reservetext = <<"EOF"; Reserve found: Item: $iteminfo->{'title'} ($iteminfo->{'author'})
for $name ($number) to be collected at $branchname.
Change status to waiting and print slip?:
$ritext {'itemnumber'}> {'borrowernumber'}>
EOF } } my $reservefoundtext; if ($reservetext) { $reservefoundtext = <<"EOF";
Reserve Found
$reservetext
EOF } # collect the messages and put into message table.... foreach my $code (keys %$messages) { warn $code; if ($code eq 'BadBarcode'){ $messagetext .= " No Item with barcode: $messages->{'BadBarcode'}
"; } if ($code eq 'NotIssued'){ my $braname = $branches->{$messages->{'IsPermanent'}}->{'branchname'}; $messagetext .= " Item not on issue.
"; } if ($code eq 'WasLost'){ $messagetext .= " Item was lost, now found.
"; } if ($code eq 'wthdrawm'){ $messagetext .= " Item Cancelled.
"; } if (($code eq 'IsPermanent') && (not $messages->{'ResFound'})) { if ($messages->{'IsPermanent'} ne $branch) { $messagetext .= " Please return to $branches->{$messages->{'IsPermanent'}}->{'branchname'}
"; } } } $messagetext = substr($messagetext, 0, -4); my $messagetable; if ($messagetext) { $messagetable = << "EOF";
Messages
$messagetext
EOF } # patrontable .... my $borrowertable; my $flaginfotable; if ($borrower) { $borrowertable = << "EOF"; EOF my $flags = $borrower->{'flags'}; my $flaginfotext=''; my $color = ''; foreach my $flag (sort keys %$flags) { ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); if ($flags->{$flag}->{'noissues'}) { $flag = "$flag"; } if ($flag eq 'CHARGES') { $flaginfotext.= <<"EOF"; EOF } elsif ($flag eq 'WAITING') { my $itemswaiting=''; my $items = $flags->{$flag}->{'itemlist'}; foreach my $item (@$items) { my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0); $itemswaiting .= <<"EOF"; {'biblionumber'}&type=intra onClick="openWindow(this, 'Item', 480, 640)">$iteminformation->{'barcode'} $iteminformation->{'title'} ($branches->{$iteminformation->{'holdingbranch'}}->{'branchname'})
EOF } $flaginfotext.="\n"; } elsif ($flag eq 'ODUES') { my $itemsoverdue = ''; my $items = $flags->{$flag}->{'itemlist'}; foreach my $item (sort {$a->{'date_due'} cmp $b->{'date_due'}} @$items) { my ($iteminformation) = getiteminformation(\%env, $item->{'itemnumber'}, 0); $itemsoverdue .= <<"EOF"; $item->{'date_due'}{'biblionumber'}&type=intra onClick="openWindow(this, 'Item', 480, 640)">$iteminformation->{'barcode'} $iteminformation->{'title'}
EOF } $flaginfotext .= "\n"; } else { $flaginfotext.= <<"EOF"; EOF } } if ($flaginfotext) { $borrowertable .= << "EOF"; $flaginfotext EOF } $borrowertable .= "
Borrower Information
{'borrowernumber'} onClick="openWindow(this,'Member', 480, 640)">$borrower->{'cardnumber'} $borrower->{'surname'}, $borrower->{'title'} $borrower->{'firstname'}
$flag $flags->{$flag}->{'message'} {'borrowernumber'} onClick="openWindow(this, 'Payment', 480,640)">Payment
$flag$itemswaiting
$flag$itemsoverdue
$flag $flags->{$flag}->{'message'}
Flags
"; } # the returned items..... my $returneditemstable = << "EOF"; EOF my $color=''; #set up so only the lat 8 returned items display (make for faster loading pages) my $count=0; foreach (sort {$a <=> $b} keys %returneditems) { if ($count < 8) { ($color eq $linecolor1) ? ($color=$linecolor2) : ($color=$linecolor1); my $barcode = $returneditems{$_}; my $duedate = $riduedate{$_}; my $overduetext; if ($duedate) { my @tempdate = split ( /-/ , $duedate ) ; my $duedatenz = "$tempdate[2]/$tempdate[1]/$tempdate[0]"; my @datearr = localtime(time()); my $todaysdate = (1900+$datearr[5]).'-'.sprintf ("%0.2d", ($datearr[4]+1)).'-'.sprintf ("%0.2d", $datearr[3]); $overduetext = "$duedatenz"; ($overduetext="$duedate") if ($duedate lt $todaysdate); ($duedatenz) || ($overduetext = ""); } else { $overduetext = "Not on loan."; } my $borrowernumber = $riborrowernumber{$_}; my $borrowerinfo; if ($borrowernumber) { my ($borrower) = getpatroninformation(\%env,$borrowernumber,0); my $borrowerinfo = "{'borrowernumber'} onClick=\"openWindow(this,'Member', 480, 640)\">$borrower->{'cardnumber'} $borrower->{'firstname'} $borrower->{'surname'}"; } else { $borrowerinfo = "Not on loan."; } my ($iteminformation) = getiteminformation(\%env, 0, $barcode);; $returneditemstable .= << "EOF"; EOF } else { last; } $count++; } $returneditemstable .= "
Returned Items
Due DateBar CodeTitleAuthorTypeBorrower
$overduetext {'biblionumber'}&type=intra onClick=\"openWindow(this, 'Item', 480, 640)\">$barcode $iteminformation->{'title'} $iteminformation->{'author'} $iteminformation->{'itemtype'} $borrowerinfo
\n"; # actually print the page! print $query->header(); print startpage(); print startmenu('circulation'); print <<"EOF"; $links $title EOF if ($reservefoundtext) { print <<"EOF"; EOF } else { print <<"EOF"; EOF } if ($returned) { print <<"EOF"; EOF } if (%returneditems) { print ""; } print "
$reservefoundtext
$messagetable
$barcodeentrytext $messagetable
$itemtable $borrowertable
$returneditemstable
"; print endmenu('circulation'); print endpage(); sub cuecatbarcodedecode { my ($barcode) = @_; chomp($barcode); my @fields = split(/\./,$barcode); my @results = map(decode($_), @fields[1..$#fields]); if ($#results == 2){ return $results[2]; } else { return $barcode; } } --- NEW FILE --- #!/usr/bin/perl # Copyright 2000-2002 Katipo Communications # # This file is part of Koha. # # Koha 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. # # Koha 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. # # You should have received a copy of the GNU General Public License along with # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA use strict; use CGI qw/:standard/; use C4::Circulation::Circ2; use C4::Output; use C4::Print; use DBI; # this is a reorganisation of circulationold.pl # dividing it up into three scripts...... # this will be the first one that chooses branch and printer settings.... #general design stuff... my $headerbackgroundcolor='#99cc33'; my $circbackgroundcolor='#ffffcc'; my $circbackgroundcolor='white'; my $linecolor1='#ffffcc'; my $linecolor2='white'; my $backgroundimage="/images/background-mem.gif"; # try to get the branch and printer settings from the http.... my %env; my $query=new CGI; my $branches=getbranches(\%env); my $printers=getprinters(\%env); my $branch=$query->param('branch'); my $printer=$query->param('printer'); ($branch) || ($branch=$query->cookie('branch')); ($printer) || ($printer=$query->cookie('printer')); # is you force a selection.... my $oldbranch = $branch; my $oldprinter = $printer; $branch=''; $printer=''; $env{'branchcode'}=$branch; $env{'printer'}=$printer; $env{'queue'}=$printer; # set up select options.... my $branchcount=0; my $printercount=0; my $branchoptions; my $printeroptions; foreach (keys %$branches) { (next) unless ($_); (next) unless ($branches->{$_}->{'IS'}); $branchcount++; my $selected=''; ($selected='selected') if ($_ eq $oldbranch); $branchoptions.="