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

(-)a/C4/InstallAuth.pm (-1 / +1 lines)
Lines 70-76 been provided so that a users login information is passed along Link Here
70
automatically. This gets loaded into the template.
70
automatically. This gets loaded into the template.
71
This package is different from C4::Auth in so far as
71
This package is different from C4::Auth in so far as
72
C4::Auth uses many preferences which are supposed NOT to be obtainable when installing the database.
72
C4::Auth uses many preferences which are supposed NOT to be obtainable when installing the database.
73
    
73
74
As in C4::Auth, Authentication is based on cookies.
74
As in C4::Auth, Authentication is based on cookies.
75
75
76
=head1 FUNCTIONS
76
=head1 FUNCTIONS
(-)a/C4/SIP/SIPServer.pm (-3 / +7 lines)
Lines 1-5 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
2
3
=head1 NAME
4
    C4::SIP::SIPServer
5
=cut
6
3
package C4::SIP::SIPServer;
7
package C4::SIP::SIPServer;
4
8
5
use strict;
9
use strict;
Lines 93-99 __PACKAGE__->run(@parms); Link Here
93
# Server
97
# Server
94
#
98
#
95
99
96
=head3 options
100
=head2 options
97
101
98
As per Net::Server documentation, override "options" to provide your own
102
As per Net::Server documentation, override "options" to provide your own
99
custom options to the Net::Server* object. This allows us to use the Net::Server
103
custom options to the Net::Server* object. This allows us to use the Net::Server
Lines 120-126 sub options { Link Here
120
    $template->{'custom_tcp_keepalive_intvl'} = \$prop->{'custom_tcp_keepalive_intvl'};
124
    $template->{'custom_tcp_keepalive_intvl'} = \$prop->{'custom_tcp_keepalive_intvl'};
121
}
125
}
122
126
123
=head3 post_configure_hook
127
=head2 post_configure_hook
124
128
125
As per Net::Server documentation, this method validates our custom configuration.
129
As per Net::Server documentation, this method validates our custom configuration.
126
130
Lines 148-154 sub post_configure_hook { Link Here
148
    }
152
    }
149
}
153
}
150
154
151
=head3 post_accept_hook
155
=head2 post_accept_hook
152
156
153
This hook occurs after the client connection socket is created, which gives
157
This hook occurs after the client connection socket is created, which gives
154
us an opportunity to enable support for TCP keepalives using the SO_KEEPALIVE
158
us an opportunity to enable support for TCP keepalives using the SO_KEEPALIVE
(-)a/Koha/Filter/MARC/EmbedSeeFromHeadings.pm (+1 lines)
Lines 23-28 Koha::Filter::MARC::EmbedSeeFromHeadings - embeds see from headings into MARC fo Link Here
23
23
24
=head1 SYNOPSIS
24
=head1 SYNOPSIS
25
25
26
=cut
26
27
27
=head1 DESCRIPTION
28
=head1 DESCRIPTION
28
29
(-)a/Koha/Filter/MARC/Null.pm (+1 lines)
Lines 23-28 Koha::Filter::MARC::Null - an example filter that does nothing but allow us to r Link Here
23
23
24
=head1 SYNOPSIS
24
=head1 SYNOPSIS
25
25
26
=cut
26
27
27
=head1 DESCRIPTION
28
=head1 DESCRIPTION
28
29
(-)a/Koha/Notice/Templates.pm (-1 / +1 lines)
Lines 33-39 Koha::Notice::Templates - Koha notice template Object set class, related to the Link Here
33
33
34
=cut
34
=cut
35
35
36
=head3
36
=head3 find_effective_template
37
37
38
my $template = Koha::Notice::Templates->find_effective_template(
38
my $template = Koha::Notice::Templates->find_effective_template(
39
    {
39
    {
(-)a/Koha/REST/V1/ERM/EUsage/CustomReports.pm (-1 / +1 lines)
Lines 678-684 sub _create_report_rows { Link Here
678
    }
678
    }
679
}
679
}
680
680
681
=head3
681
=head3 _get_usage_total
682
682
683
A method for summing the usage counts for a data  object
683
A method for summing the usage counts for a data  object
684
684
(-)a/Koha/SuggestionEngine/Plugin/AuthorityFile.pm (+1 lines)
Lines 23-28 Koha::SuggestionEngine::Plugin::AuthorityFile - get suggestions from the authori Link Here
23
23
24
=head1 SYNOPSIS
24
=head1 SYNOPSIS
25
25
26
=cut
26
27
27
=head1 DESCRIPTION
28
=head1 DESCRIPTION
28
29
(-)a/Koha/SuggestionEngine/Plugin/ExplodedTerms.pm (+1 lines)
Lines 23-28 Koha::SuggestionEngine::Plugin::ExplodedTerms - suggest searches for broader/nar Link Here
23
23
24
=head1 SYNOPSIS
24
=head1 SYNOPSIS
25
25
26
=cut
26
27
27
=head1 DESCRIPTION
28
=head1 DESCRIPTION
28
29
(-)a/Koha/SuggestionEngine/Plugin/Null.pm (+1 lines)
Lines 23-28 Koha::SuggestionEngine::Plugin::Null - an example plugin that does nothing but a Link Here
23
23
24
=head1 SYNOPSIS
24
=head1 SYNOPSIS
25
25
26
=cut
26
27
27
=head1 DESCRIPTION
28
=head1 DESCRIPTION
28
29
(-)a/acqui/spent.pl (-1 / +1 lines)
Lines 21-27 Link Here
21
21
22
=head1 NAME
22
=head1 NAME
23
23
24
 acqui/spent.pl
24
acqui/spent.pl
25
25
26
=head1 DESCRIPTION
26
=head1 DESCRIPTION
27
27
(-)a/opac/opac-ratings.pl (-1 / +1 lines)
Lines 17-23 Link Here
17
# You should have received a copy of the GNU General Public License
17
# You should have received a copy of the GNU General Public License
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
19
20
=head1
20
=head1 SYNOPSIS
21
21
22
A non-javascript method to add/modify a biblio's rating, called from opac-detail.pl
22
A non-javascript method to add/modify a biblio's rating, called from opac-detail.pl
23
23
(-)a/xt/author/podcorrectness.t (-1 / +1 lines)
Lines 1-6 Link Here
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
2
3
=head2 podcorrectness.t
3
=head1 podcorrectness.t
4
4
5
This test file checks all perl modules in the C4 directory for POD
5
This test file checks all perl modules in the C4 directory for POD
6
correctness. It typically finds things like pod tags withouth blank
6
correctness. It typically finds things like pod tags withouth blank
(-)a/xt/yaml_valid.t (-1 / +1 lines)
Lines 48-53 yaml_valid.t Link Here
48
48
49
=head1 DESCRIPTION
49
=head1 DESCRIPTION
50
50
51
=cut
51
52
52
=head1 USAGE
53
=head1 USAGE
53
54
54
- 

Return to bug 39319