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

(-)a/C4/Category.pm (-3 / +6 lines)
Lines 1-5 Link Here
1
package C4::Category;
1
package C4::Category;
2
2
3
# Copyright 2009 Liblime
4
# Parts Copyright 2011 Tamil
5
#
3
# This file is part of Koha.
6
# This file is part of Koha.
4
#
7
#
5
# Koha is free software; you can redistribute it and/or modify it under the
8
# Koha is free software; you can redistribute it and/or modify it under the
Lines 11-19 package C4::Category; Link Here
11
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13
#
16
#
14
# You should have received a copy of the GNU General Public License along with
17
# You should have received a copy of the GNU General Public License along
15
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18
# with Koha; if not, write to the Free Software Foundation, Inc.,
16
# Suite 330, Boston, MA  02111-1307 USA
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
20
18
use strict;
21
use strict;
19
use warnings;
22
use warnings;
(-)a/C4/Creators.pm (+17 lines)
Lines 1-5 Link Here
1
package C4::Creators;
1
package C4::Creators;
2
2
3
# Copyright 2010 Foundations
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
3
BEGIN {
20
BEGIN {
4
    use version; our $VERSION = qv('1.0.0_1');
21
    use version; our $VERSION = qv('1.0.0_1');
5
    use vars qw(@EXPORT @ISA);
22
    use vars qw(@EXPORT @ISA);
(-)a/C4/Dates.pm (-3 / +7 lines)
Lines 1-5 Link Here
1
package C4::Dates;
1
package C4::Dates;
2
2
3
# Copyright 2007 Liblime
4
# Parts Copyright ACPL 2011
5
# Parts Copyright Catalyst IT 2012
6
#
3
# This file is part of Koha.
7
# This file is part of Koha.
4
#
8
#
5
# Koha is free software; you can redistribute it and/or modify it under the
9
# Koha is free software; you can redistribute it and/or modify it under the
Lines 11-19 package C4::Dates; Link Here
11
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13
#
17
#
14
# You should have received a copy of the GNU General Public License along with
18
# You should have received a copy of the GNU General Public License along
15
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19
# with Koha; if not, write to the Free Software Foundation, Inc.,
16
# Suite 330, Boston, MA  02111-1307 USA
20
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
21
18
use strict;
22
use strict;
19
use warnings;
23
use warnings;
(-)a/C4/ItemCirculationAlertPreference.pm (-3 / +5 lines)
Lines 1-5 Link Here
1
package C4::ItemCirculationAlertPreference;
1
package C4::ItemCirculationAlertPreference;
2
2
3
# Copyright Liblime 2009
4
#
3
# This file is part of Koha.
5
# This file is part of Koha.
4
#
6
#
5
# Koha is free software; you can redistribute it and/or modify it under the
7
# Koha is free software; you can redistribute it and/or modify it under the
Lines 11-19 package C4::ItemCirculationAlertPreference; Link Here
11
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13
#
15
#
14
# You should have received a copy of the GNU General Public License along with
16
# You should have received a copy of the GNU General Public License along
15
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
16
# Suite 330, Boston, MA  02111-1307 USA
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
19
18
use strict;
20
use strict;
19
use warnings;
21
use warnings;
(-)a/C4/ItemType.pm (-3 / +6 lines)
Lines 1-5 Link Here
1
package C4::ItemType;
1
package C4::ItemType;
2
2
3
# Copyright Liblime 2009
4
# Parts Copyright Tamil 2011
5
#
3
# This file is part of Koha.
6
# This file is part of Koha.
4
#
7
#
5
# Koha is free software; you can redistribute it and/or modify it under the
8
# Koha is free software; you can redistribute it and/or modify it under the
Lines 11-19 package C4::ItemType; Link Here
11
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13
#
16
#
14
# You should have received a copy of the GNU General Public License along with
17
# You should have received a copy of the GNU General Public License along
15
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18
# with Koha; if not, write to the Free Software Foundation, Inc.,
16
# Suite 330, Boston, MA  02111-1307 USA
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
20
18
use strict;
21
use strict;
19
use warnings;
22
use warnings;
(-)a/C4/Message.pm (+20 lines)
Lines 1-4 Link Here
1
package C4::Message;
1
package C4::Message;
2
3
# Copyright Liblime 2009
4
# Copyright Catalyst IT 2012
5
#
6
# This file is part of Koha.
7
#
8
# Koha is free software; you can redistribute it and/or modify it under the
9
# terms of the GNU General Public License as published by the Free Software
10
# Foundation; either version 2 of the License, or (at your option) any later
11
# version.
12
#
13
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License along
18
# with Koha; if not, write to the Free Software Foundation, Inc.,
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21
2
use strict;
22
use strict;
3
use warnings;
23
use warnings;
4
use C4::Context;
24
use C4::Context;
(-)a/C4/SMS.pm (-3 / +5 lines)
Lines 1-5 Link Here
1
package C4::SMS;
1
package C4::SMS;
2
2
3
# Copyright 2007 Liblime
4
#
3
# This file is part of Koha.
5
# This file is part of Koha.
4
#
6
#
5
# Koha is free software; you can redistribute it and/or modify it under the
7
# Koha is free software; you can redistribute it and/or modify it under the
Lines 11-19 package C4::SMS; Link Here
11
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13
#
15
#
14
# You should have received a copy of the GNU General Public License along with
16
# You should have received a copy of the GNU General Public License along
15
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
16
# Suite 330, Boston, MA  02111-1307 USA
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
19
18
=head1 NAME
20
=head1 NAME
19
21
(-)a/C4/Scrubber.pm (-3 / +8 lines)
Lines 1-4 Link Here
1
package C4::Scrubber;
1
package C4::Scrubber;
2
3
# Copyright Liblime 2008
4
# Parts copyright sys-tech.net 2011
5
# Copyright PTFS Europe 2011
6
#
2
# This file is part of Koha.
7
# This file is part of Koha.
3
#
8
#
4
# Koha is free software; you can redistribute it and/or modify it under the
9
# Koha is free software; you can redistribute it and/or modify it under the
Lines 10-18 package C4::Scrubber; Link Here
10
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12
#
17
#
13
# You should have received a copy of the GNU General Public License along with
18
# You should have received a copy of the GNU General Public License along
14
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19
# with Koha; if not, write to the Free Software Foundation, Inc.,
15
# Suite 330, Boston, MA  02111-1307 USA
20
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
21
17
use strict;
22
use strict;
18
use warnings;
23
use warnings;
(-)a/C4/TTParser.pm (+18 lines)
Lines 1-4 Link Here
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
3
# Copyright Tamil 2011
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
2
#simple parser for HTML with Template Toolkit directives. Tokens are put into @tokens and are accesible via next_token and peep_token
20
#simple parser for HTML with Template Toolkit directives. Tokens are put into @tokens and are accesible via next_token and peep_token
3
package C4::TTParser;
21
package C4::TTParser;
4
use base qw(HTML::Parser);
22
use base qw(HTML::Parser);
(-)a/C4/Tags.pm (-3 / +7 lines)
Lines 1-4 Link Here
1
package C4::Tags;
1
package C4::Tags;
2
3
# Copyright Liblime 2008
4
# Parts Copyright ACPL 2011
5
#
2
# This file is part of Koha.
6
# This file is part of Koha.
3
#
7
#
4
# Koha is free software; you can redistribute it and/or modify it under the
8
# Koha is free software; you can redistribute it and/or modify it under the
Lines 10-18 package C4::Tags; Link Here
10
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12
#
16
#
13
# You should have received a copy of the GNU General Public License along with
17
# You should have received a copy of the GNU General Public License along
14
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18
# with Koha; if not, write to the Free Software Foundation, Inc.,
15
# Suite 330, Boston, MA  02111-1307 USA
19
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
20
17
use strict;
21
use strict;
18
use warnings;
22
use warnings;
(-)a/C4/TmplToken.pm (+18 lines)
Lines 1-5 Link Here
1
package C4::TmplToken;
1
package C4::TmplToken;
2
2
3
# Copyright Tamil 2011
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
3
use strict;
21
use strict;
4
#use warnings; FIXME - Bug 2505
22
#use warnings; FIXME - Bug 2505
5
use C4::TmplTokenType;
23
use C4::TmplTokenType;
(-)a/C4/TmplTokenType.pm (+17 lines)
Lines 1-5 Link Here
1
package C4::TmplTokenType;
1
package C4::TmplTokenType;
2
2
3
# Copyright 2011 Tamil
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
3
use strict;
20
use strict;
4
#use warnings; FIXME - Bug 2505
21
#use warnings; FIXME - Bug 2505
5
require Exporter;
22
require Exporter;
(-)a/C4/Utils.pm (-1 / +18 lines)
Lines 1-5 Link Here
1
package C4::Utils;
1
package C4::Utils;
2
2
3
# Copyright 2007 Liblime
4
#
5
# This file is part of Koha.
6
#
7
# Koha is free software; you can redistribute it and/or modify it under the
8
# terms of the GNU General Public License as published by the Free Software
9
# Foundation; either version 2 of the License, or (at your option) any later
10
# version.
11
#
12
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14
# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20
3
# Useful code I didn't feel like duplicating all over the place.
21
# Useful code I didn't feel like duplicating all over the place.
4
#
22
#
5
23
6
- 

Return to bug 4330