Diff for /loncom/publisher/lonpublisher.pm between versions 1.18 and 1.21

version 1.18, 2001/03/22 22:41:01 version 1.21, 2001/03/29 21:45:06
Line 6 Line 6
 # 05/29/00,05/30,10/11 Gerd Kortemeyer)  # 05/29/00,05/30,10/11 Gerd Kortemeyer)
 #  #
 # 11/28,11/29,11/30,12/01,12/02,12/04,12/23 Gerd Kortemeyer  # 11/28,11/29,11/30,12/01,12/02,12/04,12/23 Gerd Kortemeyer
   # 03/23 Guy Albertelli
   # 03/24,03/29 Gerd Kortemeyer
   
 package Apache::lonpublisher;  package Apache::lonpublisher;
   
Line 289  sub publish { Line 291  sub publish {
 # -------------------------------------------------- Parse content for metadata  # -------------------------------------------------- Parse content for metadata
   
         my $allmeta=Apache::lonxml::xmlparse('meta',$content);          my $allmeta=Apache::lonxml::xmlparse('meta',$content);
 #        &metaeval($allmeta);          &metaeval($allmeta);
   
 # ---------------- Find and document discrepancies in the parameters and stores  # ---------------- Find and document discrepancies in the parameters and stores
   
Line 596  if (-e $target) { Line 598  if (-e $target) {
   
 }  }
   
   # ---------------------------------------- Send update notifications, meta only
   
   {
   
       my $filename;
    
       $target=~/(.*)\/([^\/]+)$/;
       my $srcf=$2.'.meta';
       opendir(DIR,$1);
       while ($filename=readdir(DIR)) {
          if ($filename=~/$srcf\.(\w+)$/) {
      my $subhost=$1;
              if ($subhost ne 'meta') {
          $scrout.=
                   '<p>Notifying host for metadata only '.$subhost.':';
                  print $logfile 
                   "\nNotifying host for metadata only '.$subhost.':'";
                  my $reply=&Apache::lonnet::critical(
                                   'update:'.$target.'.meta',$subhost);
                  $scrout.=$reply;
                  print $logfile $reply;              
              }
          }
       }
       closedir(DIR);
   
   }
   
 # ------------------------------------------------ Provide link to new resource  # ------------------------------------------------ Provide link to new resource
   
     my $thisdistarget=$target;      my $thisdistarget=$target;
Line 616  sub handler { Line 646  sub handler {
      return OK;       return OK;
   }    }
   
 unless ($ENV{'form.pubdir'}) {  
 # -------------------------------------------------------------- Check filename  # -------------------------------------------------------------- Check filename
   
   my $fn=$ENV{'form.filename'};    my $fn=$ENV{'form.filename'};
Line 745  unless ($ENV{'form.phase'} eq 'two') { Line 774  unless ($ENV{'form.phase'} eq 'two') {
   
   }    }
   $r->print('</body></html>');    $r->print('</body></html>');
 } else {  
   
   my $fn=$ENV{'form.filename'};  
   
   $fn=~s/\/[^\/]+$//;  
   my $thisprefix=$fn;  
   $thisprefix=~s/\/\~/\/priv\//;  
   
   $fn=~s/^http\:\/\/[^\/]+\/\~(\w+)/\/home\/$1\/public_html/;  
   
   unless ($fn) {   
      $r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.  
          ' trying to publish empty directory', $r->filename);   
      return HTTP_NOT_FOUND;  
   }   
   
 # ----------------------------------------------------------- Start page output  
   
   $r->content_type('text/html');  
   $r->send_http_header;  
   
   $r->print('<html><head><title>LON-CAPA Publishing Directory</title></head>');  
   $r->print(  
    '<body bgcolor="#FFFFFF"><img align=right src=/adm/lonIcons/lonlogos.gif>');  
   
   my $thisdisfn=$fn;  
   $thisdisfn=~s/^\/home\/$ENV{'user.name'}\/public_html\///;  
     
   $r->print('<h1>Publishing directory <tt>'.$thisdisfn.'</tt></h1>');  
   my $i=0;  
   $r->print('<script>');  
     my $filename;  
     opendir(DIR,$fn);  
        while ($filename=readdir(DIR)) {  
            $filename=~/\.(\w+)$/;  
            if ((&Apache::lonnet::fileembstyle($1)) && ($1 ne 'meta')) {  
       $r->print(<<ENDOPEN);  
       pub$i=window.open("$thisprefix/$filename","LONCAPApub$i",  
                                 "menubar=no,height=450,width=650");  
 ENDOPEN  
               $i++;       
    }  
        }  
     closedir(DIR);  
   $r->print('</script>');  
   
   $r->print('</body></html>');  
     
 }  
   return OK;    return OK;
 }  }
   

Removed from v.1.18  
changed lines
  Added in v.1.21


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