View | Details | Raw Unified | Return to bug 11081
Collapse All | Expand All

(-)a/Koha/Indexer/Daemon.pm (+17 lines)
Lines 1-3 Link Here
1
# This file is part of Koha.
2
#
3
# Copyright (C) 2013  Frédéric Demians
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
1
package Koha::Indexer::Daemon;
18
package Koha::Indexer::Daemon;
2
19
3
use Moose;
20
use Moose;
(-)a/Koha/Indexer/Indexing.pm (+17 lines)
Lines 1-3 Link Here
1
# This file is part of Koha.
2
#
3
# Copyright (C) 2013  Frédéric Demians
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
1
package Koha::Indexer::Indexing;
18
package Koha::Indexer::Indexing;
2
19
3
use Moose;
20
use Moose;
(-)a/Koha/Indexer/RecordReader.pm (+17 lines)
Lines 1-3 Link Here
1
# This file is part of Koha.
2
#
3
# Copyright (C) 2013  Frédéric Demians
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
1
package Koha::Indexer::RecordReader;
18
package Koha::Indexer::RecordReader;
2
19
3
use Moose;
20
use Moose;
(-)a/Koha/Indexer/RecordWriter.pm (+17 lines)
Lines 1-3 Link Here
1
# This file is part of Koha.
2
#
3
# Copyright (C) 2013  Frédéric Demians
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
1
package Koha::Indexer::RecordWriter;
18
package Koha::Indexer::RecordWriter;
2
use Moose;
19
use Moose;
3
20
(-)a/misc/bin/koha-index (+17 lines)
Lines 1-4 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# This file is part of Koha.
3
#
4
# Copyright (C) 2013  Frédéric Demians
5
#
6
# Koha is free software; you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 3 of the License, or
9
# (at your option) any later version.
10
#
11
# Koha is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
2
19
3
package Main;
20
package Main;
4
21
(-)a/misc/bin/koha-index-daemon (-1 / +16 lines)
Lines 1-4 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# This file is part of Koha.
3
#
4
# Copyright (C) 2013  Frédéric Demians
5
#
6
# Koha is free software; you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 3 of the License, or
9
# (at your option) any later version.
10
#
11
# Koha is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with Koha; if not, see <http://www.gnu.org/licenses>.
2
18
3
package Main;
19
package Main;
4
20
5
- 

Return to bug 11081