Bugzilla – Attachment 85337 Details for
Bug 15774
Additional fields for baskets
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15774: Add POD and license notices
Bug-15774-Add-POD-and-license-notices.patch (text/plain), 8.13 KB, created by
Nick Clemens (kidclamp)
on 2019-02-20 13:10:23 UTC
(
hide
)
Description:
Bug 15774: Add POD and license notices
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2019-02-20 13:10:23 UTC
Size:
8.13 KB
patch
obsolete
>From 25ab34cf53354d2c6bbf9a090ab6ec4c68d862fd Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Tue, 15 May 2018 17:16:34 +0200 >Subject: [PATCH] Bug 15774: Add POD and license notices >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > Koha/AdditionalField.pm | 30 ++++++++++++++++------------- > Koha/AdditionalFieldValue.pm | 35 ++++++++++++++++++++++++++++++++++ > Koha/AdditionalFieldValues.pm | 35 ++++++++++++++++++++++++++++++++++ > Koha/AdditionalFields.pm | 34 +++++++++++++++++++++++++++++++++ > Koha/Object/Mixin/AdditionalFields.pm | 32 +++++++++++++++++++++++++++++++ > Koha/Objects/Mixin/AdditionalFields.pm | 24 +++++++++++++++++++++++ > 6 files changed, 177 insertions(+), 13 deletions(-) > >diff --git a/Koha/AdditionalField.pm b/Koha/AdditionalField.pm >index 78de775d5e..721c01fffc 100644 >--- a/Koha/AdditionalField.pm >+++ b/Koha/AdditionalField.pm >@@ -1,5 +1,11 @@ > package Koha::AdditionalField; > >+=head1 NAME >+ >+Koha::AdditionalField - Koha::Object derived class for additional fields >+ >+=cut >+ > use Modern::Perl; > > use base qw(Koha::Object); >@@ -8,23 +14,13 @@ use C4::Context; > > sub _type { 'AdditionalField' } > >-1; >- >-__END__ >- >-=head1 NAME >- >-Koha::AdditionalField >- > =head1 AUTHOR > >-Jonathan Druart <jonathan.druart at biblibre.com> >+Koha Development Team <http://koha-community.org/> > >-=head1 COPYRIGHT >+=head1 COPYRIGHT AND LICENSE > >-Copyright 2013 BibLibre >- >-=head1 LICENSE >+Copyright 2013, 2018 BibLibre > > This file is part of Koha. > >@@ -39,3 +35,11 @@ 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 <http://www.gnu.org/licenses>. >+ >+=head1 SEE ALSO >+ >+L<Koha::Object> >+ >+=cut >+ >+1; >diff --git a/Koha/AdditionalFieldValue.pm b/Koha/AdditionalFieldValue.pm >index f54c811ad8..48c399f147 100644 >--- a/Koha/AdditionalFieldValue.pm >+++ b/Koha/AdditionalFieldValue.pm >@@ -1,9 +1,44 @@ > package Koha::AdditionalFieldValue; > >+=head1 NAME >+ >+Koha::AdditionalFieldValue - Koha::Object derived class for additional field >+values >+ >+=cut >+ > use Modern::Perl; > > use base 'Koha::Object'; > > sub _type { 'AdditionalFieldValue' } > >+=head1 AUTHOR >+ >+Koha Development Team <http://koha-community.org/> >+ >+=head1 COPYRIGHT AND LICENSE >+ >+Copyright 2018 BibLibre >+ >+This file is part of Koha. >+ >+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 <http://www.gnu.org/licenses>. >+ >+=head1 SEE ALSO >+ >+L<Koha::Object> >+ >+=cut >+ > 1; >diff --git a/Koha/AdditionalFieldValues.pm b/Koha/AdditionalFieldValues.pm >index fa3576fa4f..2b890140e7 100644 >--- a/Koha/AdditionalFieldValues.pm >+++ b/Koha/AdditionalFieldValues.pm >@@ -1,5 +1,12 @@ > package Koha::AdditionalFieldValues; > >+=head1 NAME >+ >+Koha::AdditionalFieldValues - Koha::Objects derived class for additional field >+values >+ >+=cut >+ > use Modern::Perl; > > use base 'Koha::Objects'; >@@ -7,4 +14,32 @@ use base 'Koha::Objects'; > sub _type { 'AdditionalFieldValue' } > sub object_class { 'Koha::AdditionalFieldValue' } > >+=head1 AUTHOR >+ >+Koha Development Team <http://koha-community.org/> >+ >+=head1 COPYRIGHT AND LICENSE >+ >+Copyright 2018 BibLibre >+ >+This file is part of Koha. >+ >+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 <http://www.gnu.org/licenses>. >+ >+=head1 SEE ALSO >+ >+L<Koha::Objects> >+ >+=cut >+ > 1; >diff --git a/Koha/AdditionalFields.pm b/Koha/AdditionalFields.pm >index 2d4761bbec..4900ddaa18 100644 >--- a/Koha/AdditionalFields.pm >+++ b/Koha/AdditionalFields.pm >@@ -1,5 +1,11 @@ > package Koha::AdditionalFields; > >+=head1 NAME >+ >+Koha::AdditionalFields - Koha::Objects derived class for additional fields >+ >+=cut >+ > use Modern::Perl; > > use base 'Koha::Objects'; >@@ -9,4 +15,32 @@ use Koha::AdditionalField; > sub _type { 'AdditionalField' } > sub object_class { 'Koha::AdditionalField' } > >+=head1 AUTHOR >+ >+Koha Development Team <http://koha-community.org/> >+ >+=head1 COPYRIGHT AND LICENSE >+ >+Copyright 2018 BibLibre >+ >+This file is part of Koha. >+ >+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 <http://www.gnu.org/licenses>. >+ >+=head1 SEE ALSO >+ >+L<Koha::Objects> >+ >+=cut >+ > 1; >diff --git a/Koha/Object/Mixin/AdditionalFields.pm b/Koha/Object/Mixin/AdditionalFields.pm >index 090e2824c2..e297058adf 100644 >--- a/Koha/Object/Mixin/AdditionalFields.pm >+++ b/Koha/Object/Mixin/AdditionalFields.pm >@@ -59,10 +59,42 @@ sub set_additional_fields { > } > } > >+=head3 additional_field_values >+ >+Returns additional field values >+ >+ my @values = $foo->additional_field_values; >+ >+=cut >+ > sub additional_field_values { > my ($self) = @_; > > return $self->_result->additional_field_values; > } > >+=head1 AUTHOR >+ >+Koha Development Team <http://koha-community.org/> >+ >+=head1 COPYRIGHT AND LICENSE >+ >+Copyright 2018 BibLibre >+ >+This file is part of Koha. >+ >+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 <http://www.gnu.org/licenses>. >+ >+=cut >+ > 1; >diff --git a/Koha/Objects/Mixin/AdditionalFields.pm b/Koha/Objects/Mixin/AdditionalFields.pm >index 62c784f183..cf3db56132 100644 >--- a/Koha/Objects/Mixin/AdditionalFields.pm >+++ b/Koha/Objects/Mixin/AdditionalFields.pm >@@ -56,4 +56,28 @@ sub search_additional_fields { > return $class->search(\%conditions, { join => [ ('additional_field_values') x $idx ] }); > } > >+=head1 AUTHOR >+ >+Koha Development Team <http://koha-community.org/> >+ >+=head1 COPYRIGHT AND LICENSE >+ >+Copyright 2018 BibLibre >+ >+This file is part of Koha. >+ >+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 <http://www.gnu.org/licenses>. >+ >+=cut >+ > 1; >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 15774
:
48224
|
53608
|
53609
|
72078
|
72079
|
72085
|
72086
|
75083
|
75084
|
75085
|
75086
|
75336
|
75354
|
75361
|
79976
|
79977
|
79978
|
79979
|
79980
|
79981
|
79982
|
80060
|
80061
|
80062
|
80063
|
80064
|
80065
|
80066
|
80680
|
81490
|
81491
|
81492
|
81493
|
81494
|
81495
|
81496
|
81497
|
81833
|
81837
|
81838
|
81839
|
81840
|
81841
|
81842
|
81843
|
81844
|
81845
|
81846
|
81847
|
81848
|
81849
|
81850
|
81851
|
81852
|
83349
|
83350
|
83351
|
83352
|
83353
|
83354
|
83355
|
83356
|
83357
|
83358
|
83359
|
83360
|
83361
|
83362
|
83363
|
83364
|
83444
|
83445
|
83446
|
83447
|
83448
|
83449
|
83450
|
83451
|
83452
|
83453
|
83454
|
83455
|
83456
|
83457
|
83458
|
83459
|
85333
|
85334
|
85335
|
85336
|
85337
|
85338
|
85339
|
85340
|
85341
|
85342
|
85343
|
85344
|
85345
|
85346
|
85347
|
85348
|
85792
|
85806
|
85807
|
85808
|
85809
|
85810
|
85811
|
85812
|
85813
|
85814
|
85815
|
85816
|
85817
|
85818
|
85819
|
85820
|
85821
|
85822
|
85823
|
85824
|
86411