From c3a55042e7cdbb241486acf3448afe70d9438550 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 8 Oct 2013 09:32:34 +0200 Subject: [PATCH] Bug 11015: add copyright headers to some files This patch adds a copyright headers where they didn't exist in the Koha namespace. Signed-off-by: Robin Sheat Signed-off-by: Brendan Gallagher Signed-off-by: Galen Charlton --- Koha/QueryParser/Driver/PQF.pm | 18 +++++++++++++++++ Koha/QueryParser/Driver/PQF/Util.pm | 18 +++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan.pm | 18 +++++++++++++++++ .../Driver/PQF/query_plan/facet.pm | 18 +++++++++++++++++ .../Driver/PQF/query_plan/filter.pm | 18 +++++++++++++++++ .../Driver/PQF/query_plan/modifier.pm | 18 +++++++++++++++++ .../QueryParser/Driver/PQF/query_plan/node.pm | 18 +++++++++++++++++ .../Driver/PQF/query_plan/node/atom.pm | 18 +++++++++++++++++ Koha/SearchEngine.pm | 17 ++++++++++++++++ Koha/SearchEngine/Config.pm | 17 ++++++++++++++++ Koha/SearchEngine/ConfigRole.pm | 17 ++++++++++++++++ Koha/SearchEngine/FacetsBuilder.pm | 17 ++++++++++++++++ Koha/SearchEngine/FacetsBuilderRole.pm | 17 ++++++++++++++++ Koha/SearchEngine/Index.pm | 18 +++++++++++++++++ Koha/SearchEngine/IndexRole.pm | 18 +++++++++++++++++ Koha/SearchEngine/QueryBuilder.pm | 17 ++++++++++++++++ Koha/SearchEngine/QueryBuilderRole.pm | 17 ++++++++++++++++ Koha/SearchEngine/Search.pm | 18 +++++++++++++++++ Koha/SearchEngine/SearchRole.pm | 18 +++++++++++++++++ Koha/SearchEngine/Solr.pm | 18 +++++++++++++++++ Koha/SearchEngine/Solr/Config.pm | 17 ++++++++++++++++ Koha/SearchEngine/Solr/FacetsBuilder.pm | 17 ++++++++++++++++ Koha/SearchEngine/Solr/Index.pm | 20 +++++++++++++++++++ Koha/SearchEngine/Solr/QueryBuilder.pm | 17 ++++++++++++++++ Koha/SearchEngine/Solr/Search.pm | 19 ++++++++++++++++++ Koha/SearchEngine/Zebra.pm | 18 +++++++++++++++++ Koha/SearchEngine/Zebra/QueryBuilder.pm | 17 ++++++++++++++++ Koha/SearchEngine/Zebra/Search.pm | 18 +++++++++++++++++ 28 files changed, 496 insertions(+) diff --git a/Koha/QueryParser/Driver/PQF.pm b/Koha/QueryParser/Driver/PQF.pm index d4551f0f58..cd3b994679 100644 --- a/Koha/QueryParser/Driver/PQF.pm +++ b/Koha/QueryParser/Driver/PQF.pm @@ -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 . + use base qw(OpenILS::QueryParser Class::Accessor); use strict; diff --git a/Koha/QueryParser/Driver/PQF/Util.pm b/Koha/QueryParser/Driver/PQF/Util.pm index be7639beee..5d9ed7140a 100644 --- a/Koha/QueryParser/Driver/PQF/Util.pm +++ b/Koha/QueryParser/Driver/PQF/Util.pm @@ -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 . + use Scalar::Util qw(looks_like_number); use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan.pm b/Koha/QueryParser/Driver/PQF/query_plan.pm index 8b0df42577..19544b8eaf 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan'; use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan/facet.pm b/Koha/QueryParser/Driver/PQF/query_plan/facet.pm index 217cd29fd6..0a8b169207 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan/facet.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan/facet.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan::facet'; use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan/filter.pm b/Koha/QueryParser/Driver/PQF/query_plan/filter.pm index 587ad81722..ab6358e4af 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan/filter.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan/filter.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan::filter'; use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan/modifier.pm b/Koha/QueryParser/Driver/PQF/query_plan/modifier.pm index 2092232647..7577bc4a62 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan/modifier.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan/modifier.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan::modifier'; use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan/node.pm b/Koha/QueryParser/Driver/PQF/query_plan/node.pm index e88ef84e02..a50347e18c 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan/node.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan/node.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan::node'; use strict; diff --git a/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm b/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm index 8de250dbf9..909fb0d1d6 100644 --- a/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm +++ b/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm @@ -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 . + use base 'OpenILS::QueryParser::query_plan::node::atom'; use strict; diff --git a/Koha/SearchEngine.pm b/Koha/SearchEngine.pm index 407156f229..6cfc46197a 100644 --- a/Koha/SearchEngine.pm +++ b/Koha/SearchEngine.pm @@ -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 . + use Moose; use C4::Context; use Koha::SearchEngine::Config; diff --git a/Koha/SearchEngine/Config.pm b/Koha/SearchEngine/Config.pm index 089bac68ee..497e448e51 100644 --- a/Koha/SearchEngine/Config.pm +++ b/Koha/SearchEngine/Config.pm @@ -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 . + use Moose; use Moose::Util qw( apply_all_roles ); diff --git a/Koha/SearchEngine/ConfigRole.pm b/Koha/SearchEngine/ConfigRole.pm index 9ea224f24a..e75a62db3e 100644 --- a/Koha/SearchEngine/ConfigRole.pm +++ b/Koha/SearchEngine/ConfigRole.pm @@ -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 . + use Moose::Role; requires 'indexes', 'index', 'ressource_types'; diff --git a/Koha/SearchEngine/FacetsBuilder.pm b/Koha/SearchEngine/FacetsBuilder.pm index 2c974b1de4..a43b30dd12 100644 --- a/Koha/SearchEngine/FacetsBuilder.pm +++ b/Koha/SearchEngine/FacetsBuilder.pm @@ -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 . + use Moose; use Moose::Util qw( apply_all_roles ); diff --git a/Koha/SearchEngine/FacetsBuilderRole.pm b/Koha/SearchEngine/FacetsBuilderRole.pm index f0886e0344..3a8b21c650 100644 --- a/Koha/SearchEngine/FacetsBuilderRole.pm +++ b/Koha/SearchEngine/FacetsBuilderRole.pm @@ -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 . + use Moose::Role; requires 'build_facets'; diff --git a/Koha/SearchEngine/Index.pm b/Koha/SearchEngine/Index.pm index 2807fbf98d..59fd4b68a6 100644 --- a/Koha/SearchEngine/Index.pm +++ b/Koha/SearchEngine/Index.pm @@ -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 . + use Moose; use Moose::Util qw( apply_all_roles ); diff --git a/Koha/SearchEngine/IndexRole.pm b/Koha/SearchEngine/IndexRole.pm index a52f852065..d495618d58 100644 --- a/Koha/SearchEngine/IndexRole.pm +++ b/Koha/SearchEngine/IndexRole.pm @@ -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 . + use Moose::Role; requires 'index_record'; diff --git a/Koha/SearchEngine/QueryBuilder.pm b/Koha/SearchEngine/QueryBuilder.pm index 7c2f793de0..68973fc4f9 100644 --- a/Koha/SearchEngine/QueryBuilder.pm +++ b/Koha/SearchEngine/QueryBuilder.pm @@ -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 . + use Moose; use Moose::Util qw( apply_all_roles ); diff --git a/Koha/SearchEngine/QueryBuilderRole.pm b/Koha/SearchEngine/QueryBuilderRole.pm index b768035922..3c1c778b22 100644 --- a/Koha/SearchEngine/QueryBuilderRole.pm +++ b/Koha/SearchEngine/QueryBuilderRole.pm @@ -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 . + use Moose::Role; requires 'build_query'; diff --git a/Koha/SearchEngine/Search.pm b/Koha/SearchEngine/Search.pm index 8d9b469305..1a57887242 100644 --- a/Koha/SearchEngine/Search.pm +++ b/Koha/SearchEngine/Search.pm @@ -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 . + use Moose; use C4::Context; diff --git a/Koha/SearchEngine/SearchRole.pm b/Koha/SearchEngine/SearchRole.pm index 40a5c5bfd9..bd15425b4f 100644 --- a/Koha/SearchEngine/SearchRole.pm +++ b/Koha/SearchEngine/SearchRole.pm @@ -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 . + use Moose::Role; requires 'search'; diff --git a/Koha/SearchEngine/Solr.pm b/Koha/SearchEngine/Solr.pm index 3d7041d992..ecc9308b4c 100644 --- a/Koha/SearchEngine/Solr.pm +++ b/Koha/SearchEngine/Solr.pm @@ -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 . + use Moose; use Koha::SearchEngine::Config; diff --git a/Koha/SearchEngine/Solr/Config.pm b/Koha/SearchEngine/Solr/Config.pm index 016208239b..001169f0b1 100644 --- a/Koha/SearchEngine/Solr/Config.pm +++ b/Koha/SearchEngine/Solr/Config.pm @@ -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 . + use Modern::Perl; use Moose::Role; use YAML; diff --git a/Koha/SearchEngine/Solr/FacetsBuilder.pm b/Koha/SearchEngine/Solr/FacetsBuilder.pm index e8478a0032..672072db94 100644 --- a/Koha/SearchEngine/Solr/FacetsBuilder.pm +++ b/Koha/SearchEngine/Solr/FacetsBuilder.pm @@ -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 . + use Modern::Perl; use Moose::Role; diff --git a/Koha/SearchEngine/Solr/Index.pm b/Koha/SearchEngine/Solr/Index.pm index e526f1e741..f56dcfa746 100644 --- a/Koha/SearchEngine/Solr/Index.pm +++ b/Koha/SearchEngine/Solr/Index.pm @@ -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 . + use Moose::Role; with 'Koha::SearchEngine::IndexRole'; diff --git a/Koha/SearchEngine/Solr/QueryBuilder.pm b/Koha/SearchEngine/Solr/QueryBuilder.pm index 414d1e1af5..b3e75c98cd 100644 --- a/Koha/SearchEngine/Solr/QueryBuilder.pm +++ b/Koha/SearchEngine/Solr/QueryBuilder.pm @@ -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 . + use Modern::Perl; use Moose::Role; diff --git a/Koha/SearchEngine/Solr/Search.pm b/Koha/SearchEngine/Solr/Search.pm index b177ca43ae..603c83368e 100644 --- a/Koha/SearchEngine/Solr/Search.pm +++ b/Koha/SearchEngine/Solr/Search.pm @@ -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 . + use Moose::Role; with 'Koha::SearchEngine::SearchRole'; diff --git a/Koha/SearchEngine/Zebra.pm b/Koha/SearchEngine/Zebra.pm index 9071071842..ffe18b888a 100644 --- a/Koha/SearchEngine/Zebra.pm +++ b/Koha/SearchEngine/Zebra.pm @@ -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 . + use Moose; extends 'Data::SearchEngine::Zebra'; diff --git a/Koha/SearchEngine/Zebra/QueryBuilder.pm b/Koha/SearchEngine/Zebra/QueryBuilder.pm index 50792a0494..09a6d93db2 100644 --- a/Koha/SearchEngine/Zebra/QueryBuilder.pm +++ b/Koha/SearchEngine/Zebra/QueryBuilder.pm @@ -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 . + use Modern::Perl; use Moose::Role; use C4::Search; diff --git a/Koha/SearchEngine/Zebra/Search.pm b/Koha/SearchEngine/Zebra/Search.pm index 0531ab92dd..3b736dfde5 100644 --- a/Koha/SearchEngine/Zebra/Search.pm +++ b/Koha/SearchEngine/Zebra/Search.pm @@ -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 . + use Moose::Role; with 'Koha::SearchEngine::SearchRole'; -- 2.20.1