Lines 1-23
Link Here
|
1 |
#!/usr/bin/perl |
1 |
#!/usr/bin/perl |
2 |
|
2 |
|
3 |
# Copyright 2013 Universidad Nacional de Cordoba |
|
|
4 |
# Tomas Cohen Arazi |
5 |
# |
6 |
# This file is part of Koha. |
3 |
# This file is part of Koha. |
7 |
# |
4 |
# |
8 |
# Koha is free software; you can redistribute it and/or modify it under the |
5 |
# Copyright 2013 Universidad Nacional de Cordoba |
9 |
# terms of the GNU General Public License as published by the Free Software |
6 |
# Tomas Cohen Arazi |
10 |
# Foundation; either version 2 of the License, or (at your option) any later |
|
|
11 |
# version. |
12 |
# |
7 |
# |
13 |
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY |
8 |
# Koha is free software; you can redistribute it and/or modify it |
14 |
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
9 |
# under the terms of the GNU General Public License as published by |
15 |
# A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
10 |
# the Free Software Foundation; either version 3 of the License, or |
|
|
11 |
# (at your option) any later version. |
16 |
# |
12 |
# |
17 |
# You should have received a copy of the GNU General Public License along |
13 |
# Koha is distributed in the hope that it will be useful, but |
18 |
# with Koha; if not, write to the Free Software Foundation, Inc., |
14 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
19 |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
15 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
|
16 |
# GNU General Public License for more details. |
20 |
# |
17 |
# |
|
|
18 |
# You should have received a copy of the GNU General Public License |
19 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
21 |
|
20 |
|
22 |
use Modern::Perl; |
21 |
use Modern::Perl; |
23 |
|
22 |
|
24 |
- |
|
|