# The LearningOnline Network # Search Catalog # # 03/08/2001 Scott Harrison # package Apache::lonsearchcat; use strict; use Apache::Constants qw(:common); sub handler { my $r = shift; $r->content_type('text/html'); $r->send_http_header; return OK if $r->header_only; # ---------------------------------------------------------------- Print screen $r->print(< The LearningOnline Network with CAPA

Search Catalog

Resource Library Search
title
author
subject
notes
abstract
mime
language
creationdate
lastrevisiondate
owner
copyright
ENDDOCUMENT return OK; } 1; __END__