File:  [LON-CAPA] / rat / lonratsrv.pm
Revision 1.1: download - view: text, annotated - select for diffs
Sat Jul 1 17:55:31 2000 UTC (23 years, 9 months ago) by www
Branches: MAIN
CVS tags: HEAD
New files to deal with server side of RAT

# The LearningOnline Network with CAPA
# Server for RAT Maps
#
# (Edit Handler for RAT Maps
# (TeX Content Handler
#
# 05/29/00,05/30 Gerd Kortemeyer)
# 7/1 Gerd Kortemeyer)
# 7/1 Gerd Kortemeyer

package Apache::lonratsrv;

use strict;
use Apache::Constants qw(:common);

# ================================================================ Main Handler

sub handler {
  my $r=shift;
  $r->content_type('text/html');
  $r->send_http_header;

  return OK if $r->header_only;

  my $url=$r->uri;

  $r->print(<<ENDDOCUMENT);
<html>
<body bgcolor="#FFFFFF">
<form name=storage method=post>
<input type=hidden name=output>
</form>
</body>
</html>

ENDDOCUMENT
  return OK;
}

1;
__END__








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