--- loncom/metadata_database/Attic/lonsql.pm 2001/02/20 14:17:15 1.2 +++ loncom/metadata_database/Attic/lonsql.pm 2001/02/20 15:03:23 1.3 @@ -10,7 +10,7 @@ use Opcode; use Apache::lonnet; use Apache::Constants qw(:common :http); - +use CGI; # ================================================================ Main handler # @@ -20,10 +20,70 @@ use Apache::Constants qw(:common :http); sub handler { my $r=shift; + + if ($r->header_only) { + $r->content_type('text/html'); + $r->send_http_header; + return OK; + } + +# ------------------------------------------------------------------- Open page + + my $query=new CGI; + + my $searchquery; + my $searchresults; + + if ($query->{'SUBMIT'}) { + $searchquery="trying to search..."; + } + + $r->content_type('text/html'); + $r->header_out('Cache-control','no-cache'); + $r->header_out('Pragma','no-cache'); + $r->send_http_header; my $output=<Test output message for lonsql.pm +

+

MySQL search engine

+
+ + + + + + + + + + + + + + + + + + + + + + + + +
title
author
subject
notes
abstract
mime
language
creationdate
lastrevisiondate
owner
copyright
+ + +

+

+$searchquery +

+

+$searchresults +

END $r->print($output); return OK;