Diff for /loncom/interface/lonmsg.pm between versions 1.72 and 1.73

version 1.72, 2003/12/29 21:21:39 version 1.73, 2003/12/30 14:57:49
Line 284  sub author_res_msg { Line 284  sub author_res_msg {
     return 'no_host';      return 'no_host';
 }  }
   
   # =========================================== Retrieve author resource messages
   
   sub retrieve_author_res_msg {
       my ($author,$domain,$url)=@_;
       $url=&Apache::lonnet::declutter($url);
       my %errormsgs=&Apache::lonnet::dump('nohist_res_msgs',$1,$2);
       my $msgs='';
       foreach (keys %errormsgs) {
    if ($_=~/^\Q$url\E\_\d+$/) {
       my %content=&unpackagemsg($errormsgs{$_});
       $msgs.='<b>'.$content{'time'}.'</b>: '.$content{'message'}.
         '<br />';
    }
       } 
       return $msgs;     
   }
   
   
   # =============================== Delete all author messages related to one URL
   
   sub del_url_author_res_msg {
       my ($author,$domain,$url)=@_;
       $url=&Apache::lonnet::declutter($url);
   }
   
   # ================= Return hash with URLs for which there is a resource message
   
   sub all_url_author_res_msg {
       my ($author,$domain)=@_;
   }
   
 # ================================================== Critical message to a user  # ================================================== Critical message to a user
   
 sub user_crit_msg_raw {  sub user_crit_msg_raw {

Removed from v.1.72  
changed lines
  Added in v.1.73


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