Merge commit '63865eb39f' into WebGUI8. up to 7.9.11

This commit is contained in:
Colin Kuskie 2010-08-13 11:52:08 -07:00
commit 7b218942b3
72 changed files with 3085 additions and 407 deletions

View file

@ -123,6 +123,28 @@ These methods are available from this class:
#-------------------------------------------------------------------
=head2 dispatch ( )
Extent the base method in Asset.pm to handle RSS feeds.
=cut
sub dispatch {
my ( $self, $fragment ) = @_;
if ($fragment eq '.rss') {
return $self->www_viewRss;
}
elsif ($fragment eq '.atom') {
return $self->www_viewAtom;
}
elsif ($fragment eq '.rdf') {
return $self->www_viewRdf;
}
return $self->next::method();
}
#-------------------------------------------------------------------
=head2 _httpBasicLogin ( )
Set header values and content to show the HTTP Basic Auth login box.