Diff for /doc/loncapafiles/removenolongerused.piml between versions 1.1.2.12 and 1.2

version 1.1.2.12, 2021/12/24 16:09:09 version 1.2, 2013/08/09 06:24:21
Line 7 Line 7
   
 use File::Path();  use File::Path();
   
   my @rcgifs = qw(anno.gif anot.gif anot2.gif back.gif bchat.gif bkm.gif blog.gif brws.gif catalog.gif ccat.gif ccrs.gif chrt.gif clst.gif com.gif conf.gif courses.gif cprv.gif cstr.gif del.gif docs.gif egrd.gif enrl.gif eval.gif fdbk.gif forw.gif grds.gif grps.gif keys.gif ledsend.gif list.gif logout.gif mail.gif mcrs.gif mrk.gif nav.gif new.gif parm.gif pcsrt.gif pcstr.gif pdfupload.gif pgrd.gif port.gif pparm.gif pref.gif prt.gif pub.gif rcrs.gif reload.gif remotebg.gif res.gif roles.gif rsrv.gif rtrv.gif sbkm.gif sctr.gif spacer.gif sprs.gif src.gif srvr.gif stat.gif subm.gif title.gif vbkm.gif);
   
 my %paths = (  my %paths = (
               'londaemons' => '/home/httpd/perl',                'londaemons' => '/home/httpd/perl',
               'apache'     => '/home/httpd/lib/perl/Apache',                'apache'     => '/home/httpd/lib/perl/Apache',
               'londocroot' => '/home/httpd/html',                'londocroot' => '/home/httpd/html',
               'debug'      => '/home/httpd/perl/debug',                'rcgifs'     => '/home/httpd/html/res/adm/pages',
             );              );
     
 my %files = (  my %files = (
               'londaemons' => ['lonManage','lchtmldir','lonhttpd','lcuseradd','lonc'],                'londaemons' => ['lonManage','lchtmldir','lonhttpd'],
               'apache'     => ['londropadd.pm','lonconstruct.pm',                'apache'     => ['londropadd.pm','lonconstruct.pm',
                                'admbookmarks.pm','lonassignments.pm'],                                 'lonremote.pm','admbookmarks.pm'],
               'londocroot' => ['adm/rat/extpickcode.html',                'londocroot' => ['adm/rat/extpickcode.html',
                                'adm/rat/extpickframe.html',                                 'adm/rat/extpickframe.html',
                                'adm/help/gif/vbkm.gif',                                 'res/adm/pages/imgmaps.html',
                                'adm/help/eps/vbkm.eps',                                 'res/adm/pages/menu.html',
                                'adm/jQuery/js/jquery-1.3.2.min.js',                                 'res/adm/pages/homeworkmenu.html'],
                                'adm/jQuery/js/jquery-1.6.2.min.js',  
                                'adm/jQuery/js/jquery-1.11.3.min.js',  
                                'adm/jQuery/js/jquery-ui-1.7.2.custom.min.js',  
                                'adm/jQuery/js/jquery-ui-1.8.16.custom.min.js',  
                                'adm/jQuery/js/jquery-ui-1.11.4.custom.min.js',  
                                'adm/jQuery/css/smoothness/jquery-ui-1.7.2.custom.css',  
                                'adm/jQuery/css/smoothness/jquery-ui-1.8.16.custom.css',  
                                'adm/jQuery/js/css/smoothness/jquery-ui-1.11.4.custom.css',  
                                'adm/reactionresponse/reaction_frame.html',  
                                'adm/reactionresponse/reaction_window.html'],  
               'debug'      => ['archive_coursedata_tables.pl'],  
             );              );
   
 my %dirs = (  my %dirs = (
               'londocroot' => ['htmlarea',                'londocroot' => 'adm/lonLCDfont',
                                   'res/adm/pages/bookmarkmenu',                                'htmlarea',
                                   'res/adm/pages/reactionresponse',                                'res/adm/pages/bookmarkmenu',
                                   'adm/jsMath',  
                                   'adm/jQuery/css/ui-lightness'],  
            );             );
   
   my %multis = (
                    rcgifs'     => \@rcgifs,
                ); 
 my @filestodelete = ();  my @filestodelete = ();
 my @dirstodelete = ();  my @dirstodelete = ();
   my @multistodelete = ();
   my @gifstodelete = ();
 foreach my $key (sort(keys(%files))) {  foreach my $key (sort(keys(%files))) {
     if ($paths{$key} ne '') {      if ($paths{$key} ne '') {
         if (ref($files{$key}) eq 'ARRAY') {          if (ref($files{$key}) eq 'ARRAY') {
             foreach my $file (@{$files{$key}}) {              foreach my $file (@{$files{$key}}) {
                 if (($file ne '') && (-f $paths{$key}.'/'.$file)) {                  if (-f $paths{$key}.'/'.$file) {
                     push(@filestodelete,$paths{$key}.'/'.$file);                      push(@filestodelete,$paths{$key}.'/'.$file);
                 }                  }
             }              }
Line 62  foreach my $key (sort(keys(%dirs))) { Line 56  foreach my $key (sort(keys(%dirs))) {
     if ($paths{$key} ne '') {      if ($paths{$key} ne '') {
         if (ref($dirs{$key}) eq 'ARRAY') {          if (ref($dirs{$key}) eq 'ARRAY') {
             foreach my $dir (@{$dirs{$key}}) {              foreach my $dir (@{$dirs{$key}}) {
                 if (($dir ne '') && (-d $paths{$key}.'/'.$dir)) {                  if (-d $paths{$key}.'/'.$dir) {
                     push(@dirstodelete,$paths{$key}.'/'.$dir);                      push(@dirstodelete,$paths{$key}.'/'.$dir);
                 }                  }
             }              }
Line 70  foreach my $key (sort(keys(%dirs))) { Line 64  foreach my $key (sort(keys(%dirs))) {
     }      }
 }  }
   
   foreach my $key (sort(keys(%multis))) {
       if ($paths{$key} ne '') {
           if (ref($multis{$key}) eq 'ARRAY') {
               foreach my $file (@{$dirs{$key}}) {
                   if (-f $paths{$key}.'/'.$file) {
                       push(@multistodelete,$paths{$key}.'/'.$file);
                       push(@gifstodelete,$file);
                   }
               }
           }
       }
   }
   
 if (@dirstodelete > 0) {  if (@dirstodelete > 0) {
     print "\nThe following directories were installed for an earlier version of LON-CAPA, and are no longer needed. It is recommended that you delete them. For each one, enter Y if you would the directory to be deleted.\n\n";      print "\nThe following directories were installed for an earlier version of LON-CAPA, and are no longer needed. It is recommended that you delete them. For each one, enter Y if you would the directory to be deleted.\n\n";
     foreach my $dir (@dirstodelete) {      foreach my $dir (@dirstodelete) {
Line 77  if (@dirstodelete > 0) { Line 84  if (@dirstodelete > 0) {
         print "$dir  -- delete? Enter: Y or N:\n";          print "$dir  -- delete? Enter: Y or N:\n";
         my $choice=<>;          my $choice=<>;
         chomp($choice);          chomp($choice);
         $choice =~ s/\s+//g;          $choice =~ s/\s+//g; 
         if ($choice eq 'Y') {          if ($choice eq 'Y') {
             File::Path::rmtree($dir);              File::Path::remove_tree($dir);
         }          }
     }      }
 }  }
Line 97  if (@filestodelete > 0) { Line 104  if (@filestodelete > 0) {
         }          }
     }      }
 }  }
   
   if (@multistodelete > 0) {
       my $num = scalar(@multistodelete);
       print "\nThe following $num gif image files were installed in $paths{rcgifs}/ for use with the LON-CAPA Remote Control (available in an earlier version of LON-CAPA), and now no longer used:\n".join(' ',@gifstodelete)."\n".
             "Enter Y if you would all $num files to be deleted.\n\n".
             "Remove? Y or N:\n";
       my $choice=<>;
       chomp($choice);
       $choice =~ s/\s+//g;
       if ($choice eq 'Y') {
           foreach my $item (@multistodelete) {
               next if ((($item =~/\*/) || ($item eq '') || ($item eq '/'));
               unlink($item);
           }
       }
   }
   
 </perlscript>  </perlscript>
 </file>  </file>

Removed from v.1.1.2.12  
changed lines
  Added in v.1.2


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