[Koha-cvs] koha about.pl mainpage.pl [rel_3_0]

Antoine Farnault antoine at koha-fr.org
Thu Sep 7 09:32:56 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_3_0
Changes by:	Antoine Farnault <toins>	06/09/07 07:32:56

Modified files:
	.              : about.pl mainpage.pl 

Log message:
	GPL added.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/about.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.8&r2=1.8.2.1
http://cvs.savannah.gnu.org/viewcvs/koha/mainpage.pl?cvsroot=koha&only_with_tag=rel_3_0&r1=1.11&r2=1.11.2.1

Patches:
Index: about.pl
===================================================================
RCS file: /sources/koha/koha/about.pl,v
retrieving revision 1.8
retrieving revision 1.8.2.1
diff -u -b -r1.8 -r1.8.2.1
--- about.pl	21 Apr 2006 14:32:09 -0000	1.8
+++ about.pl	7 Sep 2006 07:32:56 -0000	1.8.2.1
@@ -1,4 +1,20 @@
 #!/usr/bin/perl
+
+# 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;
 require Exporter;

Index: mainpage.pl
===================================================================
RCS file: /sources/koha/koha/mainpage.pl,v
retrieving revision 1.11
retrieving revision 1.11.2.1
diff -u -b -r1.11 -r1.11.2.1
--- mainpage.pl	3 Mar 2006 17:02:22 -0000	1.11
+++ mainpage.pl	7 Sep 2006 07:32:56 -0000	1.11.2.1
@@ -1,6 +1,23 @@
 #!/usr/bin/perl
-use HTML::Template;
+
+# 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 HTML::Template;
 require Exporter;
 use C4::Database;
 use C4::Output;  # contains gettemplate
@@ -13,6 +30,7 @@
 my $query = new CGI;
 my $authtypes = getauthtypes;
 my @authtypesloop;
+
 foreach my $thisauthtype (sort { $authtypes->{$a} <=> $authtypes->{$b} } keys %$authtypes) {
 	my %row =(value => $thisauthtype,
 				authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},





More information about the Koha-cvs mailing list