Diff for /loncom/interface/loncommon.pm between versions 1.153 and 1.155

version 1.153, 2003/11/11 22:11:09 version 1.155, 2003/11/17 15:14:48
Line 2140  sub bodytag { Line 2140  sub bodytag {
     my $bodytag = <<END;      my $bodytag = <<END;
 <style>  <style>
 h1, h2, h3, th { font-family: Arial, Helvetica, sans-serif }  h1, h2, h3, th { font-family: Arial, Helvetica, sans-serif }
 a:hover { color: black; background: yellow }  
 a:focus { color: red; background: yellow }   a:focus { color: red; background: yellow } 
 </style>  </style>
 <body bgcolor="$pgbg" text="$font" alink="$alink" vlink="$vlink" link="$link"  <body bgcolor="$pgbg" text="$font" alink="$alink" vlink="$vlink" link="$link"
Line 2747  the routine &Apache::lonnet::transfer_pr Line 2746  the routine &Apache::lonnet::transfer_pr
 ############################################################  ############################################################
 my $uniq=0;  my $uniq=0;
 sub get_cgi_id {  sub get_cgi_id {
     $uniq=($uniq++)%100000;      $uniq=($uniq+1)%100000;
     return (time.'_'.$uniq);      return (time.'_'.$uniq);
 }  }
   
Line 3201  sub restore_course_settings { Line 3200  sub restore_course_settings {
 ############################################################  ############################################################
 ############################################################  ############################################################
   
   sub propath {
       my ($udom,$uname)=@_;
       $udom=~s/\W//g;
       $uname=~s/\W//g;
       my $subdir=$uname.'__';
       $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
       my $proname="$Apache::lonnet::perlvar{'lonUsersDir'}/$udom/$subdir/$uname";
       return $proname;
   } 
   
 =pod  =pod
   
 =back  =back

Removed from v.1.153  
changed lines
  Added in v.1.155


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