@@ -, +, @@ --- 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(-) --- a/Koha/Indexer/Daemon.pm +++ a/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 . + package Koha::Indexer::Daemon; use Moose; --- a/Koha/Indexer/Indexing.pm +++ a/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 . + package Koha::Indexer::Indexing; use Moose; --- a/Koha/Indexer/RecordReader.pm +++ a/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 . + package Koha::Indexer::RecordReader; use Moose; --- a/Koha/Indexer/RecordWriter.pm +++ a/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 . + package Koha::Indexer::RecordWriter; use Moose; --- a/misc/bin/koha-index +++ a/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 . + package Main; --- a/misc/bin/koha-index-daemon +++ a/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 . package Main; --