Add stub dispatch sub to Asset.pm

This commit is contained in:
Colin Kuskie 2010-07-28 12:30:17 -07:00
parent 9d6463f1e7
commit 092e3502c2

View file

@ -558,6 +558,24 @@ sub definition {
}
#-------------------------------------------------------------------
=head2 dispatch ( $fragment )
Based on the URL and query parameters in the current request, call internal methods
like www_view, www_edit, etc.
=head3 $fragment
A URL.
=cut
sub dispatch {
my ($self, $fragment) = @_;
}
#-------------------------------------------------------------------
=head2 drawExtraHeadTags ( )