Bug 11015: add copyright headers to some files
authorJonathan Druart <jonathan.druart@biblibre.com>
Tue, 8 Oct 2013 07:32:34 +0000 (09:32 +0200)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 21 Oct 2013 21:45:00 +0000 (21:45 +0000)
This patch adds a copyright headers where they didn't exist in the Koha
namespace.

Signed-off-by: Robin Sheat <robin@catalyst.net.nz>
Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
28 files changed:
Koha/QueryParser/Driver/PQF.pm
Koha/QueryParser/Driver/PQF/Util.pm
Koha/QueryParser/Driver/PQF/query_plan.pm
Koha/QueryParser/Driver/PQF/query_plan/facet.pm
Koha/QueryParser/Driver/PQF/query_plan/filter.pm
Koha/QueryParser/Driver/PQF/query_plan/modifier.pm
Koha/QueryParser/Driver/PQF/query_plan/node.pm
Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm
Koha/SearchEngine.pm
Koha/SearchEngine/Config.pm
Koha/SearchEngine/ConfigRole.pm
Koha/SearchEngine/FacetsBuilder.pm
Koha/SearchEngine/FacetsBuilderRole.pm
Koha/SearchEngine/Index.pm
Koha/SearchEngine/IndexRole.pm
Koha/SearchEngine/QueryBuilder.pm
Koha/SearchEngine/QueryBuilderRole.pm
Koha/SearchEngine/Search.pm
Koha/SearchEngine/SearchRole.pm
Koha/SearchEngine/Solr.pm
Koha/SearchEngine/Solr/Config.pm
Koha/SearchEngine/Solr/FacetsBuilder.pm
Koha/SearchEngine/Solr/Index.pm
Koha/SearchEngine/Solr/QueryBuilder.pm
Koha/SearchEngine/Solr/Search.pm
Koha/SearchEngine/Zebra.pm
Koha/SearchEngine/Zebra/QueryBuilder.pm
Koha/SearchEngine/Zebra/Search.pm

index d4551f0..cd3b994 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base qw(OpenILS::QueryParser Class::Accessor);
 
 use strict;
index be7639b..5d9ed71 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::Util;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use Scalar::Util qw(looks_like_number);
 
 use strict;
index 8b0df42..19544b8 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan';
 
 use strict;
index 217cd29..0a8b169 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan::facet;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan::facet';
 
 use strict;
index 587ad81..ab6358e 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan::filter;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan::filter';
 
 use strict;
index 2092232..7577bc4 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan::modifier;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan::modifier';
 
 use strict;
index e88ef84..a50347e 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan::node;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan::node';
 
 use strict;
index 8de250d..909fb0d 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::QueryParser::Driver::PQF::query_plan::node::atom;
+
+# This file is part of Koha.
+#
+# Copyright 2012 C & P Bibliography Services
+#
+# 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>.
+
 use base 'OpenILS::QueryParser::query_plan::node::atom';
 
 use strict;
index 407156f..6cfc461 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 use C4::Context;
 use Koha::SearchEngine::Config;
index 089bac6..497e448 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::Config;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 
 use Moose::Util qw( apply_all_roles );
index 9ea224f..e75a62d 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::ConfigRole;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 
 requires 'indexes', 'index', 'ressource_types';
index 2c974b1..a43b30d 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::FacetsBuilder;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 
 use Moose::Util qw( apply_all_roles );
index f0886e0..3a8b21c 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::FacetsBuilderRole;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 
 requires 'build_facets';
index 2807fbf..59fd4b6 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::Index;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 
 use Moose::Util qw( apply_all_roles );
index a52f852..d495618 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::IndexRole;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 
 requires 'index_record';
index 7c2f793..68973fc 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::QueryBuilder;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 
 use Moose::Util qw( apply_all_roles );
index b768035..3c1c778 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::QueryBuilderRole;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 
 requires 'build_query';
index 8d9b469..1a57887 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::Search;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 use C4::Context;
 
index 40a5c5b..bd15425 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::SearchRole;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 
 requires 'search';
index 3d7041d..ecc9308 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::Solr;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 use Koha::SearchEngine::Config;
 
index 0162082..001169f 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::Solr::Config;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Modern::Perl;
 use Moose::Role;
 use YAML;
index e8478a0..672072d 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::Solr::FacetsBuilder;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Modern::Perl;
 use Moose::Role;
 
index e526f1e..f56dcfa 100644 (file)
@@ -1,4 +1,24 @@
 package Koha::SearchEngine::Solr::Index;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+# Copyright 2012 C & P Bibliography Services
+# Copyright 2012 PTFS-Europe Ltd.
+#
+# 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>.
+
 use Moose::Role;
 with 'Koha::SearchEngine::IndexRole';
 
index 414d1e1..b3e75c9 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::Solr::QueryBuilder;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Modern::Perl;
 use Moose::Role;
 
index b177ca4..603c833 100644 (file)
@@ -1,4 +1,23 @@
 package Koha::SearchEngine::Solr::Search;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+# Copyright 2012 KohaAloha
+#
+# 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>.
+
 use Moose::Role;
 with 'Koha::SearchEngine::SearchRole';
 
index 9071071..ffe18b8 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::Zebra;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose;
 
 extends 'Data::SearchEngine::Zebra';
index 50792a0..09a6d93 100644 (file)
@@ -1,5 +1,22 @@
 package Koha::SearchEngine::Zebra::QueryBuilder;
 
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Modern::Perl;
 use Moose::Role;
 use C4::Search;
index 0531ab9..3b736df 100644 (file)
@@ -1,4 +1,22 @@
 package Koha::SearchEngine::Zebra::Search;
+
+# This file is part of Koha.
+#
+# Copyright 2012 BibLibre
+#
+# 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>.
+
 use Moose::Role;
 with 'Koha::SearchEngine::SearchRole';