@@ -, +, @@ --- Koha/QueryParser/Driver/PQF.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/Util.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan/facet.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan/filter.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan/modifier.pm | 18 ++++++++++++++++++ Koha/QueryParser/Driver/PQF/query_plan/node.pm | 18 ++++++++++++++++++ .../QueryParser/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(+) --- a/Koha/QueryParser/Driver/PQF.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/Util.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan/facet.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan/filter.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan/modifier.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan/node.pm +++ a/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; --- a/Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm +++ a/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; --- a/Koha/SearchEngine.pm +++ a/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; --- a/Koha/SearchEngine/Config.pm +++ a/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 ); --- a/Koha/SearchEngine/ConfigRole.pm +++ a/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'; --- a/Koha/SearchEngine/FacetsBuilder.pm +++ a/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 ); --- a/Koha/SearchEngine/FacetsBuilderRole.pm +++ a/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'; --- a/Koha/SearchEngine/Index.pm +++ a/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 ); --- a/Koha/SearchEngine/IndexRole.pm +++ a/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'; --- a/Koha/SearchEngine/QueryBuilder.pm +++ a/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 ); --- a/Koha/SearchEngine/QueryBuilderRole.pm +++ a/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'; --- a/Koha/SearchEngine/Search.pm +++ a/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; --- a/Koha/SearchEngine/SearchRole.pm +++ a/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'; --- a/Koha/SearchEngine/Solr.pm +++ a/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; --- a/Koha/SearchEngine/Solr/Config.pm +++ a/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; --- a/Koha/SearchEngine/Solr/FacetsBuilder.pm +++ a/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; --- a/Koha/SearchEngine/Solr/Index.pm +++ a/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'; --- a/Koha/SearchEngine/Solr/QueryBuilder.pm +++ a/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; --- a/Koha/SearchEngine/Solr/Search.pm +++ a/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'; --- a/Koha/SearchEngine/Zebra.pm +++ a/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'; --- a/Koha/SearchEngine/Zebra/QueryBuilder.pm +++ a/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; --- a/Koha/SearchEngine/Zebra/Search.pm +++ a/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'; --