package Apache::BrowseRead; use strict; use base qw(Apache::BrowseSee); sub render { my $self = shift; print "

Current Directory: $self->{dir}
"; my $location = $self->{r}->location; print qq{$_
} for sort keys %{ $self->{dirs} || {} }; print qq{$_
} for sort keys %{ $self->{files} || {} }; } 1; __END__