Fix broken POD, and add missing POD.

This commit is contained in:
Colin Kuskie 2009-04-02 17:20:04 +00:00
parent d75bf1e4c4
commit f07a6c066b
3 changed files with 49 additions and 2 deletions

View file

@ -359,6 +359,14 @@ sub prepareView {
#------------------------------------------------------------------
=head2 purge ( )
See WebGUI::Asset::purge() for details. Extend SUPERclass
to handle deleting tickets, tokens, ribbons, registrants, badge groups
and event meta data.
=cut
sub purge {
my $self = shift;
my $db = $self->session->db;

View file

@ -206,6 +206,14 @@ sub purgeCache {
}
#-------------------------------------------------------------------
=head2 view ( )
See WebGUI::Asset::view for details. Generate template variables and
render the template. Also handles caching.
=cut
sub view {
my $self = shift;

View file

@ -501,6 +501,16 @@ sub www_jumpTo {
#-------------------------------------------------------------------
=head2 removeType ( $address )
Remove the requested questionType, and then reloads the Survey.
=head3 $address
Specifies which questionType to delete.
=cut
sub removeType{
my $self = shift;
my $address = shift;
@ -511,6 +521,20 @@ sub removeType{
#-------------------------------------------------------------------
=head2 addType ( $name, $address )
Adds a new questionType, and then reloads the Survey.
=head3 $name
The name of the new question type.
=head3 $address
Specifies where to add the question.
=cut
sub addType{
my $self = shift;
my $name = shift;
@ -1384,7 +1408,7 @@ sub persistResponseJSON {
#-------------------------------------------------------------------
=head2 responseId
=head2 responseIdCookies
Mutator for the responseIdCookies that determines whether cookies are used as
part of the L<"responseId"> lookup process.
@ -1696,6 +1720,13 @@ sub www_viewStatisticalOverview {
}
#-------------------------------------------------------------------
=head2 www_exportTransposedResults ()
Exports transposed results in a tab deliniated file.
=cut
sub www_exportSimpleResults {
my $self = shift;
@ -1714,7 +1745,7 @@ sub www_exportSimpleResults {
#-------------------------------------------------------------------
=head2 www_exportTransposedResults (){
=head2 www_exportTransposedResults ()
Returns transposed results as a tabbed file.