Diff for /loncom/interface/lonchat.pm between versions 1.6 and 1.10

version 1.6, 2003/06/23 22:25:14 version 1.10, 2005/04/07 06:56:22
Line 29 Line 29
 package Apache::lonchat;  package Apache::lonchat;
   
 use strict;  use strict;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common :http);
 use Apache::loncommon;  use Apache::loncommon;
   use Apache::lonnet;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     $r->content_type('text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
       if (! &Apache::lonnet::allowed('plc',$env{'request.course.id'}.
                 ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')
                                      )) {
           return HTTP_NOT_ACCEPTABLE;
       }
   
     if ($ENV{'form.newchat'}) {      if ($env{'form.newchat'}) {
  &Apache::lonnet::chatsend(&Apache::lonfeedback::clear_out_html($ENV{'form.newchat'}),$ENV{'form.anonymous'});   &Apache::lonnet::chatsend(&Apache::lonfeedback::clear_out_html($env{'form.newchat'}),$env{'form.anonymous'});
     }      }
 # --------------------------------------------------- Print login screen header  # --------------------------------------------------- Print login screen header
     my $latexHelp = Apache::loncommon::helpLatexCheatsheet();      my $latexHelp = Apache::loncommon::helpLatexCheatsheet();
       my $html=&Apache::lonxml::xmlbegin();
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
 <html>  $html
 <head>  <head>
 <title>The LearningOnline Network with CAPA</title>  <title>The LearningOnline Network with CAPA</title>
 </head>  </head>

Removed from v.1.6  
changed lines
  Added in v.1.10


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