added redirect and migrated site map to article

This commit is contained in:
JT Smith 2004-11-24 19:32:03 +00:00
parent 0ffe4c87ce
commit 8a3e872238
8 changed files with 203 additions and 24 deletions

View file

@ -192,6 +192,21 @@ sub getEditForm {
#-------------------------------------------------------------------
=head2 getName ( )
This method should be overridden by all wobjects and should return an internationalized human friendly name for the wobject. This method only exists in the super class for reverse compatibility and will try to look up the name based on the old name definition.
=cut
sub getName {
my $self = shift;
return $self->get("className");
}
#-------------------------------------------------------------------
=head2 logView ( )
@ -206,21 +221,6 @@ sub logView {
}
#-------------------------------------------------------------------
=head2 name ( )
This method should be overridden by all wobjects and should return an internationalized human friendly name for the wobject. This method only exists in the super class for reverse compatibility and will try to look up the name based on the old name definition.
=cut
sub name {
my $self = shift;
return $self->get("className");
}
#-------------------------------------------------------------------
=head2 processMacros ( output )