Bugzilla – Attachment 39420 Details for
Bug 11081
Port Koha::Contrib::Tamil indexer into Koha code base
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 11081: (followup) Add license information
PASSED-QA-Bug-11081-followup-Add-license-informati.patch (text/plain), 6.12 KB, created by
Kyle M Hall (khall)
on 2015-05-22 14:44:40 UTC
(
hide
)
Description:
[PASSED QA] Bug 11081: (followup) Add license information
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2015-05-22 14:44:40 UTC
Size:
6.12 KB
patch
obsolete
>From 2dca6fab0ae473bcd519c7af713de90d133386be Mon Sep 17 00:00:00 2001 >From: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Date: Mon, 18 May 2015 07:56:52 -0300 >Subject: [PATCH] [PASSED QA] Bug 11081: (followup) Add license information > >Signed-off-by: Frederic Demians <f.demians@tamil.fr> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > Koha/Indexer/Daemon.pm | 17 +++++++++++++++++ > Koha/Indexer/Indexing.pm | 17 +++++++++++++++++ > Koha/Indexer/RecordReader.pm | 17 +++++++++++++++++ > Koha/Indexer/RecordWriter.pm | 17 +++++++++++++++++ > misc/bin/koha-index | 17 +++++++++++++++++ > misc/bin/koha-index-daemon | 16 ++++++++++++++++ > 6 files changed, 101 insertions(+), 0 deletions(-) > >diff --git a/Koha/Indexer/Daemon.pm b/Koha/Indexer/Daemon.pm >index 1851969..3f14cb3 100644 >--- a/Koha/Indexer/Daemon.pm >+++ b/Koha/Indexer/Daemon.pm >@@ -1,3 +1,20 @@ >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. >+ > package Koha::Indexer::Daemon; > > use Moose; >diff --git a/Koha/Indexer/Indexing.pm b/Koha/Indexer/Indexing.pm >index 61f8fab..ff79d9c 100644 >--- a/Koha/Indexer/Indexing.pm >+++ b/Koha/Indexer/Indexing.pm >@@ -1,3 +1,20 @@ >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. >+ > package Koha::Indexer::Indexing; > > use Moose; >diff --git a/Koha/Indexer/RecordReader.pm b/Koha/Indexer/RecordReader.pm >index 4a42311..952efad 100644 >--- a/Koha/Indexer/RecordReader.pm >+++ b/Koha/Indexer/RecordReader.pm >@@ -1,3 +1,20 @@ >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. >+ > package Koha::Indexer::RecordReader; > > use Moose; >diff --git a/Koha/Indexer/RecordWriter.pm b/Koha/Indexer/RecordWriter.pm >index cc2dfe1..e1b52cc 100644 >--- a/Koha/Indexer/RecordWriter.pm >+++ b/Koha/Indexer/RecordWriter.pm >@@ -1,3 +1,20 @@ >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. >+ > package Koha::Indexer::RecordWriter; > use Moose; > >diff --git a/misc/bin/koha-index b/misc/bin/koha-index >index d578ab3..789398c 100755 >--- a/misc/bin/koha-index >+++ b/misc/bin/koha-index >@@ -1,4 +1,21 @@ > #!/usr/bin/perl >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. >+ > > package Main; > >diff --git a/misc/bin/koha-index-daemon b/misc/bin/koha-index-daemon >index 5ff19bc..3f90bdc 100755 >--- a/misc/bin/koha-index-daemon >+++ b/misc/bin/koha-index-daemon >@@ -1,4 +1,20 @@ > #!/usr/bin/perl >+# This file is part of Koha. >+# >+# Copyright (C) 2013 Frédéric Demians >+# >+# 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 3 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, see <http://www.gnu.org/licenses>. > > package Main; > >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11081
:
22081
|
39274
|
39277
|
39278
|
39320
|
39419
|
39420
|
46176
|
46177
|
48126