Skip to content

Commit

Permalink
Merge pull request #775 from RotherOSS/issue-#760-RequireEndWithOne
Browse files Browse the repository at this point in the history
Issue #760: fix some POD
  • Loading branch information
bschmalhofer authored Feb 5, 2021
2 parents e8353d2 + 21d7846 commit 2d4350a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 29 deletions.
10 changes: 2 additions & 8 deletions Kernel/GenericInterface/ErrorHandling.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ Kernel::GenericInterface::ErrorHandling - Error object to execute registered err
=head1 PUBLIC INTERFACE
=over 4
=cut

=item new()
=head2 new()
create an object. Do not create it directly, instead use:
Expand All @@ -61,7 +57,7 @@ sub new {
return $Self;
}

=item HandleError()
=head2 HandleError()
Receives the current web service and operation or invoker data, as well as the result
of the HandleError method from the related invoker or operation.
Expand Down Expand Up @@ -372,6 +368,4 @@ sub _LogAndReturn {
};
}

=back
1;
8 changes: 2 additions & 6 deletions Kernel/GenericInterface/ErrorHandling/RequestRetry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ Kernel::GenericInterface::ErrorHandling::RequestRetry - Module do decide about r
=head1 PUBLIC INTERFACE
=over 4
=item new()
=head2 new()
create an object. Do not create it directly, instead use:
Expand All @@ -55,7 +53,7 @@ sub new {
return $Self;
}

=item Run()
=head2 Run()
Decides if a non-successful request should be retried, based on the configuration.
Relevant module configuration variables are:
Expand Down Expand Up @@ -315,6 +313,4 @@ sub _LogAndReturn {
};
}

=back
1;
22 changes: 7 additions & 15 deletions Kernel/Output/HTML/Layout/Znuny4OTOBORepo.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,15 @@ All Znuny4OTOBORepo functions.
=head1 PUBLIC INTERFACE
=over 4
=cut

=item new()
=head2 new()
create an object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
=cut

=item _OutputFilterHookShift()
=head2 _OutputFilterHookShift()
modifies content and uses output filter hooks to get hook content
Expand Down Expand Up @@ -103,7 +97,7 @@ Example html for a hook:
return $Return;
}

=item _OutputFilterHookReplace()
=head2 _OutputFilterHookReplace()
modifies content and uses output filter hooks to get hook content
Expand Down Expand Up @@ -181,7 +175,7 @@ Example html for a hook:
return $Success;
}

=item _OutputFilterHookExists()
=head2 _OutputFilterHookExists()
modifies content and uses output filter hooks to check if a hook exists
Expand Down Expand Up @@ -227,7 +221,7 @@ Example html for a hook:
return 1;
}

=item _OutputFilterHookInsertAfter()
=head2 _OutputFilterHookInsertAfter()
modifies content and uses output filter hooks to add content after hook.
Expand Down Expand Up @@ -282,7 +276,7 @@ Example html for a hook:
return 1;
}

=item _OutputFilterHookInsertBefore()
=head2 _OutputFilterHookInsertBefore()
modifies content and uses output filter hooks to add content before hook.
Expand Down Expand Up @@ -337,7 +331,7 @@ Example html for a hook:
return 1;
}

=item AddJSOnDocumentCompleteIfNotExists()
=head2 AddJSOnDocumentCompleteIfNotExists()
this functions adds JavaScript by the function AddJSOnDocumentComplete only if it not exists.
Expand Down Expand Up @@ -390,6 +384,4 @@ sub AddJSOnDocumentCompleteIfNotExists {
return 1;
}

=back
1;
2 changes: 2 additions & 0 deletions Kernel/Output/Template/Provider.pm
Original file line number Diff line number Diff line change
Expand Up @@ -392,4 +392,6 @@ sub _PreProcessTemplateContent {

=end Internal:
=cut

1;

0 comments on commit 2d4350a

Please sign in to comment.