File:  [LON-CAPA] / loncom / metadata_database / Attic / lonsql.pm
Revision 1.2: download - view: text, annotated - select for diffs
Tue Feb 20 14:17:15 2001 UTC (23 years, 2 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
setting up a first test with test output -Scott

# The LearningOnline Network with CAPA
# Metadata Database Handler
#
# 02/20/2001 Scott Harrison

package Apache::lonsql;

use strict;
use Opcode;
use Apache::lonnet;
use Apache::Constants qw(:common :http);



# ================================================================ Main handler
#
# Interactive call to screen
#
#

sub handler {
    my $r=shift;
    my $output=<<END;
Content-type: text/html

<H1>Test output message for lonsql.pm</H1>
END
    $r->print($output);
    return OK;
}



1;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>