Skip to content

Commit 7406c02

Browse files
committedJan 18, 2012
Add a bunch of missing POD while the gears spin.
1 parent 475b73f commit 7406c02

File tree

5 files changed

+41
-1
lines changed

5 files changed

+41
-1
lines changed
 

‎lib/WebGUI.pm

+11
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,17 @@ sub call {
134134
}
135135
}
136136

137+
=head2 handle ($session)
138+
139+
Process the list of content handlers from the config file and then evaluate any Template objects which
140+
may have been returned.
141+
142+
=head3 $session
143+
144+
A WebGUI::Session object.
145+
146+
=cut
147+
137148
sub handle {
138149
my ( $self, $session ) = @_;
139150

‎lib/WebGUI/Command/changeIobStatus.pm

+12
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ use WebGUI::Command -command;
1414
use strict;
1515
use warnings;
1616

17+
=head2 opt_spec
18+
19+
Return a set of options to WebGUI::Command so that it knows how to process command line options.
20+
21+
=cut
22+
1723
sub opt_spec {
1824
return (
1925
[ 'configFile=s', 'The WebGUI config file to use. This parameter is required.'],
@@ -26,6 +32,12 @@ sub opt_spec {
2632
);
2733
}
2834

35+
=head2 validate_args
36+
37+
Check for mandatory command line options
38+
39+
=cut
40+
2941
sub validate_args {
3042
my ($self, $opt, $args) = @_;
3143
if (! $opt->{configfile}) {

‎lib/WebGUI/Form/Control.pm

+8
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,14 @@ sub getDatabaseFieldType {
336336
return "CHAR(255)";
337337
}
338338

339+
#-------------------------------------------------------------------
340+
341+
=head2 getLabel ( )
342+
343+
Gets the label for this form control, including any configured hover help.
344+
345+
=cut
346+
339347
sub getLabel {
340348
my ( $self ) = @_;
341349

‎lib/WebGUI/Operation/WebGUI.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sub www_genesis {
4040

4141
#-------------------------------------------------------------------
4242

43-
=head2 theWg ( )
43+
=head2 www_theWg ( )
4444
4545
The core WebGUI function. All WebGUI Assets, Operations and functions require this
4646
to work, even superseding the session variable.

‎lib/WebGUI/Upgrade/File/txt.pm

+9
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,21 @@
1414
1515
WebGUI::Upgrade::File::txt - Upgrade class for text documents
1616
17+
Displays the text document to the user, and then after a keypress, continues on to the
18+
next upgarde file.
19+
1720
=cut
1821

1922
package WebGUI::Upgrade::File::txt;
2023
use Moose;
2124
with 'WebGUI::Upgrade::File';
2225

26+
=head2 once
27+
28+
Override the default so that the text is only displayed once.
29+
30+
=cut
31+
2332
sub once { 1 }
2433

2534
sub run {

0 commit comments

Comments
 (0)
Please sign in to comment.