Write a bunch of POD for modules that don't have it.

This commit is contained in:
Colin Kuskie 2010-08-26 14:39:13 -07:00
parent 713d3dc801
commit 0b5d4e4614
6 changed files with 65 additions and 5 deletions

View file

@ -24,6 +24,14 @@ and not worry about closing it.
It also sets C<webgui.debug> as appropriate.
=head2 call ($env)
Interface method for this Middleware class.
=head3 $env
A plack environment hash
=cut
sub call {
@ -77,6 +85,17 @@ sub call {
);
}
=head2 canShowDebug ($env)
Checks to see whether or not the owner of this session can see debug output. It checks
WebGUI settings showDebug and ipDebug for this.
=head3 $env
A Plack environment hash.
=cut
sub canShowDebug {
my $self = shift;
my $env = shift;