Diff for /loncom/interface/lonchatfetch.pm between versions 1.4 and 1.15

version 1.4, 2002/09/09 21:01:58 version 1.15, 2005/02/17 08:29:42
Line 29 Line 29
 package Apache::lonchatfetch;  package Apache::lonchatfetch;
   
 use strict;  use strict;
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common :http);
 use Apache::lontexconvert;  use Apache::lontexconvert;
 use Apache::loncommon;  use Apache::loncommon;
 use Apache::lonnet;  use Apache::lonnet;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
   
       if (! &Apache::lonnet::allowed('pch',$ENV{'request.course.id'}.
                ($ENV{'request.course.sec'}?'/'.$ENV{'request.course.sec'}:''))
           ) {
           return HTTP_NOT_ACCEPTABLE;
       }
   
       my $loaderror=&Apache::lonnet::overloaderror($r);
       if ($loaderror) { return $loaderror; }
       $loaderror=
          &Apache::lonnet::overloaderror($r,
            $ENV{'course.'.$ENV{'request.course.id'}.'.home'});
       if ($loaderror) { return $loaderror; }
   
     $r->content_type('text/html');      $r->content_type('text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
Line 47  sub handler { Line 61  sub handler {
     my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};      my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
   
     my @entries=split(/\:/,      my @entries=split(/\:/,
                        &Apache::lonnet::reply("chatretr:$cdom:$cnum",$chome));         &Apache::lonnet::reply(
     my ($lastid)=($entries[$#entries]=~/^(\w+)/);          "chatretr:$cdom:$cnum:$ENV{'user.domain'}:$ENV{'user.name'}",$chome));
     my ($thentime,$idnum)=split(/\_/,$lastid);  # Figure out what the last valid entry-id is
       my ($lastid,$thentime,$idnum);
       foreach (@entries) {
    $_=~/^(\w+)/;
           if ($1 ne 'active_participant') {
       $lastid=$1;
               ($thentime,$idnum)=split(/\_/,$lastid);
    }
       }
 # ----------------------------------------------------------- Can see identity?  # ----------------------------------------------------------- Can see identity?
     my $crs='/'.$ENV{'request.course.id'};      my $crs='/'.$ENV{'request.course.id'};
     if ($ENV{'request.course.sec'}) {      if ($ENV{'request.course.sec'}) {
Line 64  sub handler { Line 86  sub handler {
     my $bottomid='';      my $bottomid='';
     unless ($ENV{'form.lastid'}) {       unless ($ENV{'form.lastid'}) { 
        $include=1;          $include=1; 
        $newstuff='<html><body bgcolor="#FFFFFF">';         my $html=&Apache::lonxml::xmlbegin();
          $newstuff=$html.'<head></head><body bgcolor="#FFFFFF">';
     }      }
       my @participants=();
     foreach (@entries) {      foreach (@entries) {
  if ($include) {   my ($id,$msg,$udom)=split(/\:/,&Apache::lonnet::unescape($_));
             my ($id,$msg)=split(/\:/,&Apache::lonnet::unescape($_));    if ($id eq 'active_participant') {
             chomp($msg);             chomp($udom);
             my ($msgtime,$msgnum)=split(/\_/,$id);     my $participant= &Apache::loncommon::nickname($msg,$udom);
             my ($sdom,$snum,$anon,$contrib)=split(/\:/,     unless ($participant=~/\w/) { $participant=$msg.'@'.$udom; }
                                               &Apache::lonnet::unescape($msg));     $participants[$#participants+1]=$participant;
             $contrib=&Apache::lonnet::unescape($contrib);   } elsif ($include) {
             $contrib=~s/\n/\<br \/\>/g;      chomp($msg);
     $contrib=&Apache::lontexconvert::msgtexconverted($contrib);      my ($msgtime,$msgnum)=split(/\_/,$id);
             $contrib=~s/\n/ /g;      my ($sdom,$snum,$anon,$contrib)=split(/\:/,
             $contrib=~s/\'/\&\#39\;/g;       &Apache::lonnet::unescape($msg));
             my $sender='';      $contrib=&Apache::lonnet::unescape($contrib);
             unless (($anon) && (!$seeid)) {      $contrib=~s/\n/\<br \/\>/g;
                $sender=&Apache::loncommon::plainname($snum,$sdom);      ($contrib,my $errors)=&Apache::lontexconvert::msgtexconverted($contrib);
         if ($anon) { $sender.=' [Anon]' };      if ($errors) { $contrib.="[Message not fully displayed due to incorrect embedded TeX]"; }
             } else {      if ($errors && $snum eq $ENV{'user.name'} &&
    $sdom eq $ENV{'user.domain'} ) {
    $contrib.="<br />[TeX error message: $errors]";
       }
       $contrib=~s/\n/ /g;
       $contrib=~s/\'/\&\#39\;/g;
       my $sender='';
       if ($seeid) {
    $sender=&Apache::loncommon::plainname($snum,$sdom);
    my $nick=&Apache::loncommon::nickname($snum,$sdom);
    if (($nick) && ($nick ne $sender)) {
       $sender.=' '.$nick;
    }
    unless ($sender) { $sender=$snum.'@'.$sdom; }
    if ($anon) { $sender.=' [Anon]' };
       } elsif (!$anon) {
    $sender=&Apache::loncommon::nickname($snum,$sdom);
    unless ($sender) { $sender=$snum.'@'.$sdom; }
       } else {
  $sender=&Apache::loncommon::screenname($snum,$sdom);   $sender=&Apache::loncommon::screenname($snum,$sdom);
                 unless ($sender) { $sender="Anonymous"; }   unless ($sender) { $sender="Anonymous"; }
             }      }
             $sender=~s/\'/\"/g;      $sender=~s/\'/\&\#39\;/g;
             my $color=$sender;      my $color=$sender;
             $color=~tr/a-j/0-9/;      $color=~tr/a-j/0-9/;
             $color=~tr/A-J/0-9/;      $color=~tr/A-J/0-9/;
             $color=~tr/k-t/0-9/;      $color=~tr/k-t/0-9/;
             $color=~tr/K-T/0-9/;      $color=~tr/K-T/0-9/;
             $color=~tr/u-z/0-5/;      $color=~tr/u-z/0-5/;
             $color=~tr/U-Z/0-5/;      $color=~tr/U-Z/0-5/;
             $color=~s/\D//g;      $color=~s/\D//g;
             $color=substr($color,0,6);      $color=substr($color,0,6);
             my $timestamp=localtime($msgtime);      my $timestamp=localtime($msgtime);
             my ($mhour,$mmin,$msec)=($timestamp=~/(\d\d)\:(\d\d)\:(\d\d)/);      my ($mhour,$mmin,$msec)=($timestamp=~/(\d\d)\:(\d\d)\:(\d\d)/);
     $newstuff.='<font color="#'.$color.'"><a name="'.$id.'"><b>'.      $newstuff.='<font color="#'.$color.'"><a name="'.$id.'"><b>'.
                        $sender.'</b> ('.$mhour.':'.$mmin.':'.$msec.'): '.   $sender.'</b> ('.$mhour.':'.$mmin.':'.$msec.'): '.
                        $contrib."</font><br>";   $contrib."</font><br>";
             $bottomid=$id;      $bottomid=$id;
         } else {   } else {
             $_=~/^(\w+)/;      $_=~/^(\w+)/;
             if ($1 eq $ENV{'form.lastid'}) { $include=1; }      if ($1 eq $ENV{'form.lastid'}) { $include=1; }
         }   }
     }      }
       my $participant_output=join('<br />',sort @participants);
       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>
   <meta HTTP-EQUIV="Refresh" CONTENT="5; url=/adm/chatfetch?lastid=$lastid">    <meta HTTP-EQUIV="Refresh" CONTENT="5; url=/adm/chatfetch?lastid=$lastid">
Line 118  sub handler { Line 162  sub handler {
 parent.chatout.document.writeln('$newstuff');  parent.chatout.document.writeln('$newstuff');
 parent.chatout.scroll(0,10000000);  parent.chatout.scroll(0,10000000);
 </script>  </script>
   $participant_output
 </body>  </body>
 </html>  </html>
 ENDDOCUMENT  ENDDOCUMENT

Removed from v.1.4  
changed lines
  Added in v.1.15


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