Diff for /loncom/interface/londocs.pm between versions 1.237 and 1.660

version 1.237, 2006/06/30 20:33:49 version 1.660, 2019/04/11 14:22:35
Line 33  use Apache::Constants qw(:common :http); Line 33  use Apache::Constants qw(:common :http);
 use Apache::imsexport;  use Apache::imsexport;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::loncommon;  use Apache::loncommon;
 use Apache::lonratedt;  use Apache::lonhtmlcommon;
 use Apache::lonratsrv;  use LONCAPA::map();
   use Apache::lonratedt();
 use Apache::lonxml;  use Apache::lonxml;
 use Apache::loncreatecourse;  use Apache::lonclonecourse;
 use Apache::lonnavmaps;  use Apache::lonnavmaps;
   use Apache::lonnavdisplay();
   use Apache::lonextresedit();
   use Apache::lontemplate();
   use Apache::lonsimplepage();
   use Apache::lonhomework();
   use Apache::lonpublisher();
   use Apache::lonparmset();
   use Apache::loncourserespicker();
 use HTML::Entities;  use HTML::Entities;
   use HTML::TokeParser;
 use GDBM_File;  use GDBM_File;
   use File::MMagic;
   use File::Copy;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Cwd;  use Cwd;
 use lib '/home/httpd/lib/perl/';  use UUID::Tiny ':std';
 use LONCAPA;  use LONCAPA qw(:DEFAULT :match);
   
 my $iconpath;  my $iconpath;
   
Line 53  my $hashtied; Line 65  my $hashtied;
 my %alreadyseen=();  my %alreadyseen=();
   
 my $hadchanges;  my $hadchanges;
   my $suppchanges;
   
 # Available help topics  
   
 my %help=();  my %help=();
   
 # Mapread read maps into lonratedt::global arrays   
 # @order and @resources, determines status  
 # sets @order - pointer to resources in right order  
 # sets @resources - array with the resources with correct idx  
 #  
   
 sub mapread {  sub mapread {
     my ($coursenum,$coursedom,$map)=@_;      my ($coursenum,$coursedom,$map)=@_;
     return      return
       &Apache::lonratedt::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.        &LONCAPA::map::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
                                 $map);       $map);
 }  }
   
 sub storemap {  sub storemap {
     my ($coursenum,$coursedom,$map)=@_;      my ($coursenum,$coursedom,$map,$contentchg)=@_;
       my $report;
       if (($contentchg) && ($map =~ /^default/)) {
          $report = 1;
       }
     my ($outtext,$errtext)=      my ($outtext,$errtext)=
       &Apache::lonratedt::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.        &LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
                                 $map,1);        $map,1,$report);
     if ($errtext) { return ($errtext,2); }      if ($errtext) { return ($errtext,2); }
       
     $hadchanges=1;      if ($map =~ /^default/) {
           $hadchanges=1;
       } else {
           $suppchanges=1;
       }
     return ($errtext,0);      return ($errtext,0);
 }  }
   
 # ----------------------------------------- Return hash with valid author names  
   
 sub authorhosts {  sub authorhosts {
     my %outhash=();      my %outhash=();
     my $home=0;      my $home=0;
     my $other=0;      my $other=0;
     foreach (keys %env) {      foreach my $key (keys(%env)) {
  if ($_=~/^user\.role\.(au|ca)\.(.+)$/) {   if ($key=~/^user\.role\.(au|ca)\.(.+)$/) {
     my $role=$1;      my $role=$1;
     my $realm=$2;      my $realm=$2;
     my ($start,$end)=split(/\./,$env{$_});      my ($start,$end)=split(/\./,$env{$key});
     if (($start) && ($start>time)) { next; }      if (($start) && ($start>time)) { next; }
     if (($end) && (time>$end)) { next; }      if (($end) && (time>$end)) { next; }
     my $ca; my $cd;      my ($ca,$cd);
     if ($1 eq 'au') {      if ($1 eq 'au') {
  $ca=$env{'user.name'};   $ca=$env{'user.name'};
  $cd=$env{'user.domain'};   $cd=$env{'user.domain'};
     } else {      } else {
  ($cd,$ca)=($realm=~/^\/(\w+)\/(\w+)$/);   ($cd,$ca)=($realm=~/^\/($match_domain)\/($match_username)$/);
     }      }
     my $allowed=0;      my $allowed=0;
     my $myhome=&Apache::lonnet::homeserver($ca,$cd);      my $myhome=&Apache::lonnet::homeserver($ca,$cd);
     my @ids=&Apache::lonnet::current_machine_ids();      my @ids=&Apache::lonnet::current_machine_ids();
     foreach my $id (@ids) { if ($id eq $myhome) { $allowed=1; } }      foreach my $id (@ids) {
                   if ($id eq $myhome) {
                       $allowed=1;
                       last;
                   }
               }
     if ($allowed) {      if ($allowed) {
  $home++;   $home++;
  $outhash{'home_'.$ca.'@'.$cd}=1;   $outhash{'home_'.$ca.':'.$cd}=1;
     } else {      } else {
  $outhash{'otherhome_'.$ca.'@'.$cd}=$myhome;   $outhash{'otherhome_'.$ca.':'.$cd}=$myhome;
  $other++;   $other++;
     }      }
  }   }
     }      }
     return ($home,$other,%outhash);      return ($home,$other,%outhash);
 }  }
 # ------------------------------------------------------ Generate "dump" button  
   
 sub dumpbutton {  
     my ($home,$other,%outhash)=&authorhosts();  
     my $type = &Apache::loncommon::course_type();  
     if ($home+$other==0) { return ''; }  
     my $output='</td><td bgcolor="#DDDDCC">';  
     if ($home) {  
  return '</td><td bgcolor="#DDDDCC">'.  
     '<input type="submit" name="dumpcourse" value="'.  
     &mt('Dump '.$type.' DOCS to Construction Space').'" />'.  
     &Apache::loncommon::help_open_topic('Docs_Dump_Course_Docs');  
     } else {  
  return'</td><td bgcolor="#DDDDCC">'.  
      &mt('Dump '.$type.  
  ' DOCS to Construction Space: available on other servers');  
     }  
 }  
   
 sub clean {  sub clean {
     my ($title)=@_;      my ($title)=@_;
     $title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs;      $title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs;
     return $title;      return $title;
   }
   
   sub default_folderpath {
       my ($coursenum,$coursedom,$navmapref) = @_;
       return unless ($coursenum && $coursedom && ref($navmapref));
   # Check if entire course is hidden and/or encrypted
       my ($hiddenmap,$encryptmap,$folderpath,$hiddentop);
       my $toplevel = "uploaded/$coursedom/$coursenum/default.sequence";
       unless (ref($$navmapref)) {
           $$navmapref = Apache::lonnavmaps::navmap->new();
       }
       if (ref($$navmapref)) {
           if (lc($$navmapref->get_mapparam(undef,$toplevel,"0.hiddenresource")) eq 'yes') {
               my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
               my @resources = $$navmapref->retrieveResources($toplevel,$filterFunc,1,1);
               unless (@resources) {
                   $hiddenmap = 1;
                   unless ($env{'request.role.adv'}) {
                       $hiddentop = 1;
                       if ($env{'form.folder'}) {
                           undef($env{'form.folder'});
                       }
                   }
               }
           }
           if (lc($$navmapref->get_mapparam(undef,$toplevel,"0.encrypturl")) eq 'yes') {
               $encryptmap = 1;
           }
       }
       unless ($hiddentop) {
           $folderpath='default&'.&escape(&mt('Main Content')).
                       '::'.$hiddenmap.':'.$encryptmap.'::';
       }
       if (wantarray) {
           return ($folderpath,$hiddentop);
       } else {
           return $folderpath;
       }
 }  }
 # -------------------------------------------------------- Actually dump course  
   
 sub dumpcourse {  sub dumpcourse {
     my ($r) = @_;      my ($r) = @_;
     my $type = &Apache::loncommon::course_type();      my $crstype = &Apache::loncommon::course_type();
     $r->print(&Apache::loncommon::start_page('Dump '.$type.' DOCS to Construction Space').      my ($starthash,$js);
       '<form name="dumpdoc" method="post">');      unless (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {
           $js = <<"ENDJS";
   <script type="text/javascript">
   // <![CDATA[
   
   function hide_searching() {
       if (document.getElementById('searching')) {
           document.getElementById('searching').style.display = 'none';
       }
       return;
   }
   
   // ]]>
   </script>
   ENDJS
           $starthash = {
                            add_entries => {'onload' => "hide_searching();"},
                        };
       }
       $r->print(&Apache::loncommon::start_page('Copy '.$crstype.' Content to Authoring Space',$js,$starthash)."\n".
                 &Apache::lonhtmlcommon::breadcrumbs('Copy '.$crstype.' Content to Authoring Space')."\n");
       $r->print(&startContentScreen('tools'));
     my ($home,$other,%outhash)=&authorhosts();      my ($home,$other,%outhash)=&authorhosts();
     unless ($home) { return ''; }      unless ($home) {
           $r->print(&endContentScreen());
           return '';
       }
     my $origcrsid=$env{'request.course.id'};      my $origcrsid=$env{'request.course.id'};
     my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid);      my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid);
     if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {      if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {
 # Do the dumping  # Do the dumping
  unless ($outhash{'home_'.$env{'form.authorspace'}}) { return ''; }   unless ($outhash{'home_'.$env{'form.authorspace'}}) {
  my ($ca,$cd)=split(/\@/,$env{'form.authorspace'});              $r->print(&endContentScreen());
               return '';
           }
    my ($ca,$cd)=split(/\:/,$env{'form.authorspace'});
  $r->print('<h3>'.&mt('Copying Files').'</h3>');   $r->print('<h3>'.&mt('Copying Files').'</h3>');
  my $title=$env{'form.authorfolder'};   my $title=$env{'form.authorfolder'};
  $title=&clean($title);   $title=&clean($title);
  my %replacehash=();          my ($navmap,$errormsg) =
  foreach (keys %env) {              &Apache::loncourserespicker::get_navmap_object($crstype,'dumpdocs');
     if ($_=~/^form\.namefor\_(.+)/) {          my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  $replacehash{$1}=$env{$_};          my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
     }          my (%maps,%resources,%titles);
           if (!ref($navmap)) {
               $r->print($errormsg.
                         &endContentScreen());
               return '';
           } else {
               &Apache::loncourserespicker::enumerate_course_contents($navmap,\%maps,\%resources,\%titles,
                                                                      'dumpdocs',$cdom,$cnum);
  }   }
           my @todump = &Apache::loncommon::get_env_multiple('form.archive');
           my (%tocopy,%replacehash,%lookup,%deps,%display,%result,%depresult,%simpleproblems,%simplepages,
               %newcontent,%has_simpleprobs);
           foreach my $item (sort {$a <=> $b} (@todump)) {
               my $name = $env{'form.namefor_'.$item};
               if ($resources{$item}) {
                   my ($map,$id,$res) = &Apache::lonnet::decode_symb($resources{$item});
                   if ($res =~ m{^uploaded/$cdom/$cnum/\E((?:docs|supplemental)/.+)$}) {
                       $tocopy{$1} = $name;
                       $display{$item} = $1;
                       $lookup{$1} = $item; 
                   } elsif ($res eq 'lib/templates/simpleproblem.problem') {
                       $simpleproblems{$item} = {
                                                   symb => $resources{$item},
                                                   name => $name,
                                                };
                       $display{$item} = 'simpleproblem_'.$name;
                       if ($map =~ m{^\Quploaded/$cdom/$cnum/\E(.+)$}) {
                           $has_simpleprobs{$1}{$id} = $item;
                       }
                   } elsif ($res =~ m{^adm/$match_domain/$match_username/(\d+)/smppg}) {
                       my $marker = $1;
                       my $db_name = &Apache::lonsimplepage::get_db_name($res,$marker,$cdom,$cnum);
                       $simplepages{$item} = {
                                               res    => $res,
                                               title  => $titles{$item},
                                               db     => $db_name,
                                               marker => $marker,
                                               symb   => $resources{$item},
                                               name   => $name,
                                             };
                       $display{$item} = '/'.$res;
                   }
               } elsif ($maps{$item}) {
                   if ($maps{$item} =~ m{^\Quploaded/$cdom/$cnum/\E((?:default|supplemental)_\d+\.(?:sequence|page))$}) {
                       $tocopy{$1} = $name;
                       $display{$item} = $1;
                       $lookup{$1} = $item;
                   }
               } else {
                   next;
               }
           }
  my $crs='/uploaded/'.$env{'request.course.id'}.'/';   my $crs='/uploaded/'.$env{'request.course.id'}.'/';
  $crs=~s/\_/\//g;   $crs=~s/\_/\//g;
  foreach (keys %replacehash) {          my $mm = new File::MMagic;
     my $newfilename=$title.'/'.$replacehash{$_};          my $prefix = "/uploaded/$cdom/$cnum/";
     $newfilename=~s/\.(\w+)$//;          %replacehash = %tocopy;
     my $ext=$1;          foreach my $item (sort(keys(%simpleproblems))) {
     $newfilename=&clean($newfilename);              my $content = &Apache::imsexport::simpleproblem($simpleproblems{$item}{'symb'});
     $newfilename.='.'.$ext;              $newcontent{$display{$item}} = $content;
     my @dirs=split(/\//,$newfilename);          }
     my $path='/home/'.$ca.'/public_html';          my $gateway = Apache::lonhtmlgateway->new('web');
     my $makepath=$path;          foreach my $item (sort(keys(%simplepages))) {
     my $fail=0;              if (ref($simplepages{$item}) eq 'HASH') {
     for (my $i=0;$i<$#dirs;$i++) {                  my $pagetitle = $simplepages{$item}{'title'};
  $makepath.='/'.$dirs[$i];                  my %fields = &Apache::lonnet::dump($simplepages{$item}{'db'},$cdom,$cnum);
  unless (-e $makepath) {                   my %contents;
     unless(mkdir($makepath,0777)) { $fail=1; }                   foreach my $field (keys(%fields)) {
  }                      if ($field =~ /^(?:aaa|bbb|ccc)_(\w+)$/) {
                           my $name = $1;
                           my $msg = $fields{$field};
                           if ($name eq 'webreferences') {
                               if ($msg =~ m{^https?://}) {
                                   $contents{$name} = '<a href="'.$msg.'"><tt>'.$msg.'</tt></a>';
                               }
                           } else {
                               $msg = &Encode::decode('utf8',$msg);
                               $msg = $gateway->process_outgoing_html($msg,1);
                               $contents{$name} = $msg;
                           }
                       } elsif ($field eq 'uploaded.photourl') {
                           my $marker = $simplepages{$item}{marker};
                           if ($fields{$field} =~ m{^\Q$prefix\E(simplepage/$marker/.+)$}) {
                               my $filepath = $1;
                               my ($relpath,$fname) = ($filepath =~ m{^(.+/)([^/]+)$});
                               if ($fname ne '') {
                                   $fname=~s/\.(\w+)$//;
                                   my $ext=$1;
                                   $fname = &clean($fname);
                                   $fname.='.'.$ext;
                                   $contents{image} = '<img src="'.$relpath.$fname.'" alt="Image" />';
                                   $replacehash{$filepath} = $relpath.$fname;
                                   $deps{$item}{$filepath} = 1;
                               }
                           }
                       }
                   }
                   $replacehash{'/'.$simplepages{$item}{'res'}} = $simplepages{$item}{'name'};
                   $lookup{'/'.$simplepages{$item}{'res'}} = $item;
                   my $content = '
   <html>
   <head>
   <title>'.$pagetitle.'</title>
   </head>
   <body bgcolor="#ffffff">';
                   if ($contents{title}) {
                       $content .= "\n".'<h2>'.$contents{title}.'</h2>';
                   }
                   if ($contents{image}) {
                       $content .= "\n".$contents{image};
                   }
                   if ($contents{content}) {
                       $content .= '
   <div class="LC_Box">
   <h4 class="LC_hcell">'.&mt('Content').'</h4>'.
   $contents{content}.'
   </div>';
                   }
                   if ($contents{webreferences}) {
                       $content .= ' 
   <div class="LC_Box">
   <h4 class="LC_hcell">'.&mt('Web References').'</h4>'.
   $contents{webreferences}.'
   </div>';
                   }
                   $content .= '
   </body>
   </html>
   ';
                   $newcontent{'/'.$simplepages{$item}{res}} = $content; 
               }
           }
    foreach my $item (keys(%tocopy)) {
               unless ($item=~/\.(sequence|page)$/) {
                   my $currurlpath = $prefix.$item;
                   my $currdirpath = &Apache::lonnet::filelocation('',$currurlpath);
                   &recurse_html($mm,$prefix,$currdirpath,$currurlpath,$item,$lookup{$item},\%replacehash,\%deps);
               }
           }
           foreach my $num (sort {$a <=> $b} (@todump)) {
               my $src = $display{$num};
               next if ($src eq '');
               my @needcopy = ();
               if ($replacehash{$src}) {
                   push(@needcopy,$src);
                   if (ref($deps{$num}) eq 'HASH') {
                       foreach my $dep (sort(keys(%{$deps{$num}}))) {
                           if ($replacehash{$dep}) {
                               push(@needcopy,$dep);
                           }
                       }
                   }
               } elsif ($src =~ /^simpleproblem_/) {
                   push(@needcopy,$src);
               }
               next if (@needcopy == 0);
               my ($result,$depresult);
               for (my $i=0; $i<@needcopy; $i++) {
                   my $item = $needcopy[$i];
                   my $newfilename;
                   if ($simpleproblems{$num}) {
                       $newfilename=$title.'/'.$simpleproblems{$num}{'name'};
                   } else {
               $newfilename=$title.'/'.$replacehash{$item};
                   }
           $newfilename=~s/\.(\w+)$//;
           my $ext=$1;
           $newfilename=&clean($newfilename);
           $newfilename.='.'.$ext;
                   my ($newrelpath) = ($newfilename =~ m{^\Q$title/\E(.+)$}); 
                   if ($newrelpath ne $replacehash{$item}) {
                       $replacehash{$item} = $newrelpath;
                   }
           my @dirs=split(/\//,$newfilename);
           my $path=$r->dir_config('lonDocRoot')."/priv/$cd/$ca";
           my $makepath=$path;
           my $fail;
                   my $origin;
           for (my $i=0;$i<$#dirs;$i++) {
       $makepath.='/'.$dirs[$i];
       unless (-e $makepath) {
           unless(mkdir($makepath,0755)) { 
                               $fail = &mt('Directory creation failed.');
                           }
       }
           }
                   if ($i == 0) {
               $result = '<br /><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt>: ';
                   } else {
                       $depresult .= '<li><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt> '.
                                     '<span class="LC_fontsize_small" style="font-weight: bold;">'.
                                     &mt('(dependency)').'</span>: ';
                   }
                   if (-e $path.'/'.$newfilename) {
                       $fail = &mt('Destination already exists -- not overwriting.'); 
           } else {
                       if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) {
                           if (($item =~ m{^/adm/$match_domain/$match_username/\d+/smppg}) ||
                               ($item =~ /^simpleproblem_/)) {
                               print $fh $newcontent{$item};
                           } else {
                               my $fileloc = &Apache::lonnet::filelocation('',$prefix.$item);
                               if (-e $fileloc) {
                                   if ($item=~/\.(sequence|page|html|htm|xml|xhtml)$/) {
                                       if ((($1 eq 'sequence') || ($1 eq 'page')) &&
                                           (ref($has_simpleprobs{$item}) eq 'HASH')) {
                                           my %changes = %{$has_simpleprobs{$item}};
                                           my $content = &Apache::lonclonecourse::rewritefile(
                        &Apache::lonclonecourse::readfile($env{'request.course.id'},$item),
                                                         (%replacehash,$crs => '')
                                                                                             );
                                           my $updatedcontent = '';
                                           my $parser = HTML::TokeParser->new(\$content);
                                           $parser->attr_encoded(1);
                                           while (my $token = $parser->get_token) {
                                               if ($token->[0] eq 'S') {
                                                   if (($token->[1] eq 'resource') &&
                                                       ($token->[2]->{'src'} eq '/res/lib/templates/simpleproblem.problem') && 
                                                       ($changes{$token->[2]->{'id'}})) {
                                                       my $id = $token->[2]->{'id'};
                                                       $updatedcontent .= '<'.$token->[1];
                                                       foreach my $attrib (@{$token->[3]}) {
                                                           next unless ($attrib =~ /^(src|type|title|id)$/);
                                                           if ($attrib eq 'src') {
                                                               my ($file) = ($display{$changes{$id}} =~ /^\Qsimpleproblem_\E(.+)$/); 
                                                               if ($file) {
                                                                   $updatedcontent .= ' '.$attrib.'="'.$file.'"';
                                                               } else {
                                                                   $updatedcontent .= ' '.$attrib.'="'.$token->[2]->{$attrib}.'"'; 
                                                               }
                                                           } else {
                                                               $updatedcontent .= ' '.$attrib.'="'.$token->[2]->{$attrib}.'"';
                                                           }
                                                       }
                                                       $updatedcontent .= ' />'."\n";
                                                   } else {
                                                       $updatedcontent .= $token->[4]."\n";
                                                   }
                                                } else {
                                                    $updatedcontent .= $token->[2];
                                                }
                                            }
                                            print $fh $updatedcontent;
                                       } else {  
                           print $fh &Apache::lonclonecourse::rewritefile(
                        &Apache::lonclonecourse::readfile($env{'request.course.id'},$item),
                                         (%replacehash,$crs => '')
                                 );
                                       }
                                   } else {
                       print $fh
                                           &Apache::lonclonecourse::readfile($env{'request.course.id'},$item);
                   }
                               } else {
                                   $fail = &mt('Source does not exist.');  
                               }
                           }
                           $fh->close();
               } else {
           $fail = &mt('Could not write to destination.');
                       }
           }
                   my $text;
           if ($fail) {
                       $text = '<span class="LC_error">'.&mt('fail').('&nbsp;'x3).$fail.'</span>';
           } else {
                       $text = '<span class="LC_success">'.&mt('ok').'</span>';
                   }
                   if ($i == 0) {
                       $result .= $text;
                   } else {
                       $depresult .= $text.'</li>';
           }
               }
               $r->print($result);
               if ($depresult) {
                   $r->print('<ul>'.$depresult.'</ul>');
               }
           }
       } else {
           my ($navmap,$errormsg) =
               &Apache::loncourserespicker::get_navmap_object($crstype,'dumpdocs');
           if (!ref($navmap)) {
               $r->print($errormsg);
           } else {
               $r->print('<div id="searching">'.&mt('Searching ...').'</div>');
               $r->rflush();
               my ($preamble,$formname);
               $formname = 'dumpdoc';
       unless ($home==1) {
           $preamble = '<div class="LC_left_float">'.
               '<fieldset><legend>'.
                               &mt('Select the Authoring Space').
                               '</legend><select name="authorspace">';
     }      }
     $r->print('<br /><tt>'.$_.'</tt> => <tt>'.$newfilename.'</tt>: ');              my @orderspaces = ();
     if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) {      foreach my $key (sort(keys(%outhash))) {
  if ($_=~/\.(sequence|page|html|htm|xml|xhtml)$/) {                  if ($key=~/^home_(.+)$/) {
     print $fh &Apache::loncreatecourse::rewritefile(                      if ($1 eq $env{'user.name'}.':'.$env{'user.domain'}) {
          &Apache::loncreatecourse::readfile($env{'request.course.id'},$_),                          unshift(@orderspaces,$1);
      (%replacehash,$crs => '')                      } else {
     );                          push(@orderspaces,$1);
                       }
                   } 
               }
               if ($home>1) {
                   $preamble .= '<option value="" selected="selected">'.&mt('Select').'</option>';
               }
               foreach my $user (@orderspaces) {
    if ($home==1) {
       $preamble .= '<input type="hidden" name="authorspace" value="'.$user.'" />';
  } else {   } else {
     print $fh      $preamble .= '<option value="'.$user.'">'.$user.' - '.
          &Apache::loncreatecourse::readfile($env{'request.course.id'},$_);           &Apache::loncommon::plainname(split(/\:/,$user)).'</option>';
        }          }
  $fh->close();  
     } else {  
  $fail=1;  
     }      }
     if ($fail) {      unless ($home==1) {
  $r->print('<font color="red">fail</font>');          $preamble .= '</select></fieldset></div>'."\n";
     } else {      }
  $r->print('<font color="green">ok</font>');      my $title=$origcrsdata{'description'};
       $title=~s/[\/\s]+/\_/gs;
       $title=&clean($title);
       $preamble .= '<div class="LC_left_float">'.
                            '<fieldset><legend>'.&mt('Folder in Authoring Space').'</legend>'.
                            '<input type="text" size="50" name="authorfolder" value="'.
                            $title.'" />'.
                            '</fieldset></div><div style="padding:0;clear:both;margin:0;border:0"></div>'."\n";
               my %uploadedfiles;
       &tiehash();
       foreach my $file (&Apache::lonclonecourse::crsdirlist($origcrsid,'userfiles')) {
           my ($ext)=($file=~/\.(\w+)$/);
   # FIXME Check supplemental here
           my $title=$hash{'title_'.$hash{
                   'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$file}};
           if (!$title) {
       $title=$file;
           } else {
       $title=~s|/|_|g;
           }
           $title=~s/\.(\w+)$//;
           $title=&clean($title);
           $title.='.'.$ext;
   #    $r->print("\n<td><input type='text' size='60' name='namefor_".$file."' value='".$title."' /></td>"
                   $uploadedfiles{$file} = $title;
       }
       &untiehash();
               $r->print(&Apache::loncourserespicker::create_picker($navmap,'dumpdocs',$formname,$crstype,undef,
                                                                    undef,undef,$preamble,$home,\%uploadedfiles));
           }
       }
       $r->print(&endContentScreen());
   }
   
   sub recurse_html {
       my ($mm,$prefix,$currdirpath,$currurlpath,$container,$item,$replacehash,$deps) = @_;
       return unless ((ref($replacehash) eq 'HASH') && (ref($deps) eq 'HASH'));
       my (%allfiles,%codebase);
       if (&Apache::lonnet::extract_embedded_items($currdirpath,\%allfiles,\%codebase) eq 'ok') {
           if (keys(%allfiles)) {
               foreach my $dependency (keys(%allfiles)) {
                   next if (($dependency =~ m{^/(res|adm)/}) || ($dependency =~ m{^https?://}));
                   my ($depurl,$relfile,$newcontainer);
                   if ($dependency =~ m{^/}) {
                       if ($dependency =~ m{^\Q$currurlpath/\E(.+)$}) {
                           $relfile = $1;
                           if ($dependency =~ m{^\Q$prefix\E(.+)$}) {
                               $newcontainer = $1;
                               next if ($replacehash->{$newcontainer});
                           }
                           $depurl = $dependency;
                       } else {
                           next;
                       }
                   } else {
                       $relfile = $dependency;
                       $depurl = $currurlpath;
                       $depurl =~ s{[^/]+$}{};
                       $depurl .= $dependency;
                       ($newcontainer) = ($depurl =~ m{^\Q$prefix\E(.+)$});
                   }
                   next if ($relfile eq '');
                   my $newname = $replacehash->{$container};
                   $newname =~ s{[^/]+$}{};
                   $replacehash->{$newcontainer} = $newname.$relfile;
                   $deps->{$item}{$newcontainer} = 1;
                   my ($newurlpath) = ($depurl =~ m{^(.*)/[^/]+$});  
                   my $depfile = &Apache::lonnet::filelocation('',$depurl);
                   my $type = $mm->checktype_filename($depfile);
                   if ($type eq 'text/html') {
                       &recurse_html($mm,$prefix,$depfile,$newurlpath,$newcontainer,$item,$replacehash,$deps);
                   }
               }
           }
       }
       return;
   }
   
   sub group_import {
       my ($coursenum, $coursedom, $folder, $container, $caller, $ltitoolsref, @files) = @_;
       my ($donechk,$allmaps,%hierarchy,%titles,%addedmaps,%removefrommap,
           %removeparam,$importuploaded,$fixuperrors);
       $allmaps = {};
       while (@files) {
    my ($name, $url, $residx) = @{ shift(@files) };
           if (($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$})
        && ($caller eq 'londocs')
        && (!&Apache::lonnet::stat_file($url))) {
   
               my $errtext = '';
               my $fatal = 0;
               my $newmapstr = '<map>'."\n".
                               '<resource id="1" src="" type="start"></resource>'."\n".
                               '<link from="1" to="2" index="1"></link>'."\n".
                               '<resource id="2" src="" type="finish"></resource>'."\n".
                               '</map>';
               $env{'form.output'}=$newmapstr;
               my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom,
                                                   'output',$1.$2);
               if ($result !~ m{^/uploaded/}) {
                   $errtext.='Map not saved: A network error occurred when trying to save the new map. ';
                   $fatal = 2;
               }
               if ($fatal) {
                   return ($errtext,$fatal);
               }
           }
    if ($url) {
               if ($url =~ m{^(/adm/$coursedom/$coursenum/(\d+)/ext\.tool)\:?(.*)$}) {
                   $url = $1;
                   my $marker = $2;
                   my $info = $3;
                   my ($toolid,%toolhash,%toolsettings);
                   my @extras = ('linktext','explanation','crslabel','crstitle','crsappend');
                   my @toolinfo = split(/:/,$info);
                   if ($residx) {
                       %toolsettings=&Apache::lonnet::dump('exttool_'.$marker,$coursedom,$coursenum);
                       $toolid = $toolsettings{'id'};
                   } else {
                       $toolid = shift(@toolinfo);
                   }
                   $toolid =~ s/\D//g;
                   ($toolhash{'target'},$toolhash{'width'},$toolhash{'height'},
                    $toolhash{'linktext'},$toolhash{'explanation'},$toolhash{'crslabel'},
                    $toolhash{'crstitle'},$toolhash{'crsappend'},$toolhash{'gradable'}) = @toolinfo;
                   foreach my $item (@extras) {
                       $toolhash{$item} = &unescape($toolhash{$item});
                   }
                   if ($folder =~ /^supplemental/) {
                       delete($toolhash{'gradable'});
                   } else {
                       $toolhash{'gradable'} =~ s/\D+//g;
                   }
                   if (ref($ltitoolsref) eq 'HASH') {
                       if (ref($ltitoolsref->{$toolid}) eq 'HASH') {
                           my @deleted;
                           $toolhash{'id'} = $toolid;
                           if (($toolhash{'target'} eq 'iframe') || ($toolhash{'target'} eq 'tab') ||
                               ($toolhash{'target'} eq 'window')) {
                               if ($toolhash{'target'} eq 'window') {
                                   foreach my $item ('width','height') {
                                       $toolhash{$item} =~ s/^\s+//;
                                       $toolhash{$item} =~ s/\s+$//;
                                       if ($toolhash{$item} =~ /\D/) {
                                           delete($toolhash{$item});
                                           if ($residx) {
                                               if ($toolsettings{$item}) {
                                                   push(@deleted,$item);
                                               }
                                           }
                                       }
                                   }
                               }
                           } elsif ($residx) {
                               $toolhash{'target'} = $toolsettings{'target'};
                               if ($toolhash{'target'} eq 'window') {
                                   foreach my $item ('width','height') {
                                       $toolhash{$item} = $toolsettings{$item};
                                   }
                               }
                           } elsif (ref($ltitoolsref->{$toolid}->{'display'}) eq 'HASH') {
                               $toolhash{'target'} = $ltitoolsref->{$toolid}->{'display'}->{'target'};
                               if ($toolhash{'target'} eq 'window') {
                                   $toolhash{'width'} = $ltitoolsref->{$toolid}->{'display'}->{'width'};
                                   $toolhash{'height'} = $ltitoolsref->{$toolid}->{'display'}->{'height'};
                               }
                           }
                           if ($toolhash{'target'} eq 'iframe') {
                               foreach my $item ('width','height','linktext','explanation') {
                                   delete($toolhash{$item});
                                   if ($residx) {
                                       if ($toolsettings{$item}) {
                                           push(@deleted,$item);
                                       }
                                   }
                               }
                           } elsif ($toolhash{'target'} eq 'tab') {
                               foreach my $item ('width','height') {
                                   delete($toolhash{$item});
                                   if ($residx) {
                                       if ($toolsettings{$item}) {
                                           push(@deleted,$item);
                                       }
                                   }
                               }
                           }
                           if (ref($ltitoolsref->{$toolid}->{'crsconf'}) eq 'HASH') {
                               foreach my $item ('label','title','linktext','explanation') {
                                   my $crsitem;
                                   if (($item eq 'label') || ($item eq 'title')) {
                                       $crsitem = 'crs'.$item;
                                   } else {
                                       $crsitem = $item;
                                   }
                                   if ($ltitoolsref->{$toolid}->{'crsconf'}->{$item}) {
                                       $toolhash{$crsitem} =~ s/^\s+//;
                                       $toolhash{$crsitem} =~ s/\s+$//;
                                       if ($toolhash{$crsitem} eq '') {
                                           delete($toolhash{$crsitem});
                                       }
                                   } else {
                                       delete($toolhash{$crsitem});
                                   }
                                   if (($residx) && (exists($toolsettings{$crsitem}))) {
                                       unless (exists($toolhash{$crsitem})) {
                                           push(@deleted,$crsitem);
                                       }
                                   }
                               }
                           }
                           if ($toolhash{'passback'}) {
                               my $gradesecret = UUID::Tiny::create_uuid_as_string(UUID_V4);
                               $toolhash{'gradesecret'} = $gradesecret;
                               $toolhash{'gradesecretdate'} = time;
                           }
                           if ($toolhash{'roster'}) {
                               my $rostersecret = UUID::Tiny::create_uuid_as_string(UUID_V4);
                               $toolhash{'rostersecret'} = $rostersecret;
                               $toolhash{'rostersecretdate'} = time;
                           }
                           my $changegradable;
                           if (($residx) && ($folder =~ /^default/)) {
                               if ($toolsettings{'gradable'}) {
                                   unless (($toolhash{'gradable'}) || (defined($LONCAPA::map::zombies[$residx]))) {
                                       push(@deleted,'gradable');
                                       $changegradable = 1;
                                   }
                               } elsif ($toolhash{'gradable'}) {
                                   $changegradable = 1;
                               }
                               if (($caller eq 'londocs') && (defined($LONCAPA::map::zombies[$residx]))) {
                                   $changegradable = 1;
                                   if ($toolsettings{'gradable'}) {
                                       $toolhash{'gradable'} = 1;
                                   }
                               }
                           }
                           my $putres = &Apache::lonnet::put('exttool_'.$marker,\%toolhash,$coursedom,$coursenum);
                           if ($putres eq 'ok') {
                               if (@deleted) {
                                   &Apache::lonnet::del('exttool_'.$marker,\@deleted,$coursedom,$coursenum);
                               }
                               if (($changegradable) && ($folder =~ /^default/)) {
                                   my $val;
                                   if ($toolhash{'gradable'}) {
                                       $val = 'yes';
                                   } else {
                                       $val = 'no';
                                   }
                                   &LONCAPA::map::storeparameter($residx,'parameter_0_gradable',$val,
                                                                 'string_yesno');
                                   &remember_parms($residx,'gradable','set',$val);
                               }
                           } else {
                               return (&mt('Failed to save update to external tool.'),1);
                           }
                       }
                   }
               }
               if (($caller eq 'londocs') &&
                   ($folder =~ /^default/)) {
                   if (($url =~ /\.(page|sequence)$/) && (!$donechk)) {
                       my $chome = &Apache::lonnet::homeserver($coursenum,$coursedom);
                       my $cid = $coursedom.'_'.$coursenum;
                       $allmaps =
                           &Apache::loncommon::allmaps_incourse($coursedom,$coursenum,
                                                                $chome,$cid);
                       $donechk = 1;
                   }
                   if ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$}) {
                       &contained_map_check($url,$folder,$coursenum,$coursedom,\%removefrommap,
                                           \%removeparam,\%addedmaps,\%hierarchy,\%titles,$allmaps);
                       $importuploaded = 1;
                   } elsif ($url =~ m{^/res/.+\.(page|sequence)$}) {
                       next if ($allmaps->{$url});
                   }
               }
       if (!$residx
    || defined($LONCAPA::map::zombies[$residx])) {
    $residx = &LONCAPA::map::getresidx($url,$residx);
    push(@LONCAPA::map::order, $residx);
     }      }
       my $ext = 'false';
       if ($url=~m{^http://} || $url=~m{^https://}) { $ext = 'true'; }
       $name = &LONCAPA::map::qtunescape($name);
               if ($name eq '') {
                   $name = &LONCAPA::map::qtunescape(&mt('Web Page'));
               }
               if ($url =~ m{^/uploaded/$coursedom/$coursenum/((?:docs|supplemental)/(?:default|\d+))/new\.html$}) {
                   my $filepath = $1;
                   my $fname = $name;
                   if ($fname =~ /^\W+$/) {
                       $fname = 'web';
                   } else {
                       $fname =~ s/\W/_/g;
                   }
                   if (length($fname) > 15) {
                       $fname = substr($fname,0,14);
                   }
                   my $initialtext = &mt('Replace with your own content.');
                   my $newhtml = <<END;
   <html>
   <head>
   <title>$name</title>
   </head>
   <body bgcolor="#ffffff">
   $initialtext
   </body>
   </html>
   END
                   $env{'form.output'}=$newhtml;
                   my $result =
                       &Apache::lonnet::finishuserfileupload($coursenum,$coursedom,
                                                             'output',
                                                             "$filepath/$residx/$fname.html");
                   if ($result =~ m{^/uploaded/}) {
                       $url = $result;
                       if ($filepath =~ /^supplemental/) {
                           $name = time.'___&&&___'.$env{'user.name'}.'___&&&___'.
                                   $env{'user.domain'}.'___&&&___'.$name;
                       }
                   } else {
                       return (&mt('Failed to save new web page.'),1);
                   }
               }
               $url  = &LONCAPA::map::qtunescape($url);
       $LONCAPA::map::resources[$residx] =
    join(':', ($name, $url, $ext, 'normal', 'res'));
  }   }
     } else {      }
 # Input form      if ($importuploaded) {
  unless ($home==1) {          my %import_errors;
     $r->print(          my %updated = (
       '<h3>'.&mt('Select the Construction Space').'</h3><select name="authorspace">');                            removefrommap => \%removefrommap,
                             removeparam   => \%removeparam,
                         );
           my ($result,$msgsarray,$lockerror) = 
               &apply_fixups($folder,1,$coursedom,$coursenum,\%import_errors,\%updated);
           if (keys(%import_errors) > 0) {
               $fixuperrors =
                   '<p span class="LC_warning">'."\n".
                   &mt('The following files are either dependencies of a web page or references within a folder and/or composite page for which errors occurred during import:')."\n".
                   '<ul>'."\n";
               foreach my $key (sort(keys(%import_errors))) {
                   $fixuperrors .= '<li>'.$key.'</li>'."\n";
               }
               $fixuperrors .= '</ul></p>'."\n";
           }
           if (ref($msgsarray) eq 'ARRAY') {
               if (@{$msgsarray} > 0) {
                   $fixuperrors .= '<p class="LC_info">'.
                                   join('<br />',@{$msgsarray}).
                                   '</p>';
               }
           }
           if ($lockerror) {
               $fixuperrors .= '<p class="LC_error">'.
                               $lockerror.
                               '</p>';
           }
       }
       my ($errtext,$fatal) =
           &storemap($coursenum, $coursedom, $folder.'.'.$container,1);
       unless ($fatal) {
           if ($folder =~ /^supplemental/) {
               &Apache::lonnet::get_numsuppfiles($coursenum,$coursedom,1);
               my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
                                               $folder.'.'.$container);
           }
       }
       return ($errtext,$fatal,$fixuperrors);
   }
   
   sub log_docs {
       return &Apache::lonnet::write_log('course','docslog',@_);
   }
   
   {
       my @oldresources=();
       my @oldorder=();
       my $parmidx;
       my %parmaction=();
       my %parmvalue=();
       my $changedflag;
   
       sub snapshotbefore {
           @oldresources=@LONCAPA::map::resources;
           @oldorder=@LONCAPA::map::order;
           $parmidx=undef;
           %parmaction=();
           %parmvalue=();
           $changedflag=0;
       }
   
       sub remember_parms {
           my ($idx,$parameter,$action,$value)=@_;
           $parmidx=$idx;
           $parmaction{$parameter}=$action;
           $parmvalue{$parameter}=$value;
           $changedflag=1;
       }
   
       sub log_differences {
           my ($plain)=@_;
           my %storehash=('folder' => $plain,
                          'currentfolder' => $env{'form.folder'});
           if ($parmidx) {
              $storehash{'parameter_res'}=$oldresources[$parmidx];
              foreach my $parm (keys(%parmaction)) {
                 $storehash{'parameter_action_'.$parm}=$parmaction{$parm};
                 $storehash{'parameter_value_'.$parm}=$parmvalue{$parm};
              }
           }
           my $maxidx=$#oldresources;
           if ($#LONCAPA::map::resources>$#oldresources) {
              $maxidx=$#LONCAPA::map::resources;
           }
           for (my $idx=0; $idx<=$maxidx; $idx++) {
              if ($LONCAPA::map::resources[$idx] ne $oldresources[$idx]) {
                 $storehash{'before_resources_'.$idx}=$oldresources[$idx];
                 $storehash{'after_resources_'.$idx}=$LONCAPA::map::resources[$idx];
                 $changedflag=1;
              }
              if ($LONCAPA::map::order[$idx] ne $oldorder[$idx]) {
                 $storehash{'before_order_res_'.$idx}=$oldresources[$oldorder[$idx]];
                 $storehash{'after_order_res_'.$idx}=$LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
                 $changedflag=1;
              }
           }
    $storehash{'maxidx'}=$maxidx;
           if ($changedflag) { &log_docs(\%storehash); }
       }
   }
   
   sub docs_change_log {
       my ($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath,$canedit)=@_;
       my $supplementalflag=($env{'form.folderpath'}=~/^supplemental/);
       my $navmap; 
       my $js = '<script type="text/javascript">'."\n".
                '// <![CDATA['."\n".
                &Apache::loncommon::display_filter_js('docslog')."\n".
                &editing_js($env{'user.domain'},$env{'user.name'},$supplementalflag,
                            $coursedom,$coursenum,'','',$canedit,'',\$navmap)."\n".
                &history_tab_js()."\n".
                &Apache::lonratedt::editscript('simple')."\n".
                '// ]]>'."\n".
                '</script>'."\n";
       $r->print(&Apache::loncommon::start_page('Content Change Log',$js));
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Change Log'));
       $r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs')));
       my %orderhash;
       my $container='sequence';
       my $pathitem;
       if ($env{'form.folderpath'} =~ /\:1$/) {
           $container='page';
       }
       my $folderpath=$env{'form.folderpath'};
       if ($folderpath eq '') {
           $folderpath = &default_folderpath($coursenum,$coursedom,\$navmap);
       }
       undef($navmap);
       $pathitem = '<input type="hidden" name="folderpath" value="'.
                   &HTML::Entities::encode($folderpath,'<>&"').'" />';
       my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container";
       my $jumpto = $readfile;
       $jumpto =~ s{^/}{};
       my $tid = 1;
       if ($supplementalflag) {
           $tid = 2;
       }
       my ($breadcrumbtrail) =
           &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
       $r->print($breadcrumbtrail.
                 &generate_edit_table($tid,\%orderhash,undef,$iconpath,$jumpto,
                 $readfile));
       my %docslog=&Apache::lonnet::dump('nohist_docslog',
                                         $env{'course.'.$env{'request.course.id'}.'.domain'},
                                         $env{'course.'.$env{'request.course.id'}.'.num'});
   
       if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); }
   
       my %saveable_parameters = ('show' => 'scalar',);
       &Apache::loncommon::store_course_settings('docs_log',
                                                 \%saveable_parameters);
       &Apache::loncommon::restore_course_settings('docs_log',
                                                   \%saveable_parameters);
       if (!$env{'form.show'}) { $env{'form.show'}=10; }
   # FIXME: internationalization seems wrong here
       my %lt=('hiddenresource' => 'Resources hidden',
       'encrypturl'     => 'URL hidden',
       'randompick'     => 'Randomly pick',
       'randomorder'    => 'Randomly ordered',
               'gradable'       => 'Grade can be assigned to External Tool',
       'set'            => 'set to',
       'del'            => 'deleted');
       my $filter = &Apache::loncommon::display_filter('docslog')."\n".
                    $pathitem."\n".
                    '<input type="hidden" name="folder" value="'.$env{'form.folder'}.'" />'.
                    ('&nbsp;'x2).'<input type="submit" value="'.&mt('Display').'" />';
       $r->print('<div class="LC_left_float">'.
                 '<fieldset><legend>'.&mt('Display of Content Changes').'</legend>'."\n".
                 &makedocslogform($filter,1).
                 '</fieldset></div><br clear="all" />');
       $r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row().
                 '<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'.
                 &mt('After').'</th>'.
                 &Apache::loncommon::end_data_table_header_row());
       my $shown=0;
       foreach my $id (sort { $docslog{$b}{'exe_time'}<=>$docslog{$a}{'exe_time'} } (keys(%docslog))) {
    if ($env{'form.displayfilter'} eq 'currentfolder') {
       if ($docslog{$id}{'logentry'}{'currentfolder'} ne $folder) { next; }
  }   }
  foreach (sort keys %outhash) {          my @changes=keys(%{$docslog{$id}{'logentry'}});
     if ($_=~/^home_(.+)$/) {          if ($env{'form.displayfilter'} eq 'containing') {
  if ($home==1) {      my $wholeentry=$docslog{$id}{'exe_uname'}.':'.$docslog{$id}{'exe_udom'}.':'.
     $r->print(   &Apache::loncommon::plainname($docslog{$id}{'exe_uname'},$docslog{$id}{'exe_udom'});
   '<input type="hidden" name="authorspace" value="'.$1.'" />');      foreach my $key (@changes) {
  } else {   $wholeentry.=':'.$docslog{$id}{'logentry'}{$key};
     $r->print('<option value="'.$1.'">'.$1.' - '.  
       &Apache::loncommon::plainname(split(/\@/,$1)).'</option>');  
  }  
     }      }
       if ($wholeentry!~/\Q$env{'form.containingphrase'}\E/i) { next; }
  }   }
  unless ($home==1) {          my $count = 0;
     $r->print('</select>');          my $time =
               &Apache::lonlocal::locallocaltime($docslog{$id}{'exe_time'});
           my $plainname =
               &Apache::loncommon::plainname($docslog{$id}{'exe_uname'},
                                             $docslog{$id}{'exe_udom'});
           my $about_me_link =
               &Apache::loncommon::aboutmewrapper($plainname,
                                                  $docslog{$id}{'exe_uname'},
                                                  $docslog{$id}{'exe_udom'});
           my $send_msg_link='';
           if ((($docslog{$id}{'exe_uname'} ne $env{'user.name'})
                || ($docslog{$id}{'exe_udom'} ne $env{'user.domain'}))) {
               $send_msg_link ='<br />'.
                   &Apache::loncommon::messagewrapper(&mt('Send message'),
                                                      $docslog{$id}{'exe_uname'},
                                                      $docslog{$id}{'exe_udom'});
           }
           $r->print(&Apache::loncommon::start_data_table_row());
           $r->print('<td>'.$time.'</td>
                          <td>'.$about_me_link.
                     '<br /><tt>'.$docslog{$id}{'exe_uname'}.
                                     ':'.$docslog{$id}{'exe_udom'}.'</tt>'.
                     $send_msg_link.'</td><td>'.
                     $docslog{$id}{'logentry'}{'folder'}.'</td><td>');
           my $is_supp = 0; 
           if ($docslog{$id}{'logentry'}{'currentfolder'} =~ /^supplemental/) {
               $is_supp = 1;
           }
   # Before
    for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
       my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
       my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
       if ($oldname ne $newname) {
                   my $shown = &LONCAPA::map::qtescape($oldname);
                   if ($is_supp) {
                       $shown = &Apache::loncommon::parse_supplemental_title($shown);
                   }
                   $r->print($shown);
       }
  }   }
  my $title=$origcrsdata{'description'};   $r->print('<ul>');
  $title=~s/[\/\s]+/\_/gs;   for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
  $title=&clean($title);              if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) {
  $r->print('<h3>'.&mt('Folder in Construction Space').'</h3><input type="text" size="50" name="authorfolder" value="'.$title.'" /><br />');                  my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]);
  &tiehash();                  if ($is_supp) {
  $r->print('<h3>'.&mt('Filenames in Construction Space').'</h3><table border="2"><tr><th>'.&mt('Internal Filename').'</th><th>'.&mt('Title').'</th><th>'.&mt('Save as ...').'</th></tr>');                      $shown = &Apache::loncommon::parse_supplemental_title($shown);
  foreach (&Apache::loncreatecourse::crsdirlist($origcrsid,'userfiles')) {                  }
     $r->print('<tr><td>'.$_.'</td>');   $r->print('<li>'.$shown.'</li>');
     my ($ext)=($_=~/\.(\w+)$/);  
     my $title=$hash{'title_'.$hash{  
  'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$_}};  
     $title=~s/&colon;/:/g;  
     $r->print('<td>'.($title?$title:'&nbsp;').'</td>');  
     if (!$title) {  
  $title=$_;  
     } else {  
  $title=~s|/|_|g;  
     }      }
     $title=~s/\.(\w+)$//;  
     $title=&clean($title);  
     $title.='.'.$ext;  
     $r->print("\n<td><input type='text' size='60' name='namefor_".$_."' value='".$title."' /></td></tr>\n");  
  }   }
  $r->print("</table>\n");   $r->print('</ul>');
  &untiehash();  # After
  $r->print(          $r->print('</td><td>');
   '<p><input type="submit" name="dumpcourse" value="'.&mt('Dump [_1] DOCS',$type).'" /></p></form>');  
    for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
       my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
       my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
       if ($oldname ne '' && $oldname ne $newname) {
                   my $shown = &LONCAPA::map::qtescape($newname);
                   if ($is_supp) {
                       $shown = &Apache::loncommon::parse_supplemental_title(&LONCAPA::map::qtescape($newname));
                   }
                   $r->print($shown);
       }
    }
    $r->print('<ul>');
    for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
               if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) {
                   my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]);
                   if ($is_supp) {
                       $shown = &Apache::loncommon::parse_supplemental_title($shown);
                   }
                   $r->print('<li>'.$shown.'</li>');
       }
    }
    $r->print('</ul>');
    if ($docslog{$id}{'logentry'}{'parameter_res'}) {
       $r->print(&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'parameter_res'}))[0]).':<ul>');
       foreach my $parameter ('randompick','hiddenresource','encrypturl','randomorder','gradable') {
    if ($docslog{$id}{'logentry'}{'parameter_action_'.$parameter}) {
   # FIXME: internationalization seems wrong here
       $r->print('<li>'.
         &mt($lt{$parameter}.' '.$lt{$docslog{$id}{'logentry'}{'parameter_action_'.$parameter}}.' [_1]',
     $docslog{$id}{'logentry'}{'parameter_value_'.$parameter})
         .'</li>');
    }
       }
       $r->print('</ul>');
    }
   # End
           $r->print('</td>'.&Apache::loncommon::end_data_table_row());
           $shown++;
           if (!($env{'form.show'} eq &mt('all')
                 || $shown<=$env{'form.show'})) { last; }
       }
       $r->print(&Apache::loncommon::end_data_table()."\n".
                 &makesimpleeditform($pathitem)."\n".
                 '</div></div>');
       $r->print(&endContentScreen());
   }
   
   sub update_paste_buffer {
       my ($coursenum,$coursedom,$folder) = @_;
       my (@possibles,%removals,%cuts,$output);
       if ($env{'form.multiremove'}) {
           $env{'form.multiremove'} =~ s/,$//;
           map { $removals{$_} = 1; } split(/,/,$env{'form.multiremove'});
       }
       if (($env{'form.multicopy'}) || ($env{'form.multicut'})) {
           if ($env{'form.multicut'}) {
               $env{'form.multicut'} =~ s/,$//;
               foreach my $item (split(/,/,$env{'form.multicut'})) {
                   unless ($removals{$item}) {
                       $cuts{$item} = 1;
                       push(@possibles,$item.':cut');
                   }
               }
           }
           if ($env{'form.multicopy'}) {
               $env{'form.multicopy'} =~ s/,$//;
               foreach my $item (split(/,/,$env{'form.multicopy'})) {
                   unless ($removals{$item} || $cuts{$item}) {
                       push(@possibles,$item.':copy'); 
                   }
               }
           }
       } elsif ($env{'form.markcopy'}) {
           @possibles = split(/,/,$env{'form.markcopy'});
     }      }
 }  
   
 # ------------------------------------------------------ Generate "export" button      return if (@possibles == 0);
       return if (!defined($env{'form.copyfolder'}));
   
 sub exportbutton {      my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
     my $type = &Apache::loncommon::course_type();      $env{'form.copyfolder'});
     return '</td><td bgcolor="#DDDDCC">'.      return if ($fatal);
             '<input type="submit" name="exportcourse" value="'.  
             &mt('Export '.$type.' to IMS').'" />'.      my %curr_groups = &Apache::longroup::coursegroups();
     &Apache::loncommon::help_open_topic('Docs_Export_Course_Docs');  
 }  # Retrieve current paste buffer suffixes.
       my @currpaste = split(/,/,$env{'docs.markedcopies'});
       my (%pasteurls,@newpaste);
   
   # Construct identifiers for current contents of user's paste buffer
       if (@currpaste) {
           foreach my $suffix (@currpaste) {
                my $cid = $env{'docs.markedcopy_crs_'.$suffix};
                my $url = $env{'docs.markedcopy_url_'.$suffix};
                my $mapidx = $env{'docs.markedcopy_map_'.$suffix};
                if (($cid =~ /^$match_domain(?:_)$match_courseid$/) &&
                    ($url ne '')) {
                    $pasteurls{$cid.'_'.$url.'_'.$mapidx} = 1;
                }
           }
       }
   
 sub exportcourse {  # Mark items for copying (skip any items already in user's paste buffer)
     my $r=shift;      my %addtoenv;
     my $type = &Apache::loncommon::course_type();  
     my %discussiontime = &Apache::lonnet::dump('discussiontimes',  
                                                $env{'course.'.$env{'request.course.id'}.'.domain'}, $env{'course.'.$env{'request.course.id'}.'.num'});  
     my $numdisc = keys %discussiontime;  
     my $navmap = Apache::lonnavmaps::navmap->new();  
     my $it=$navmap->getIterator(undef,undef,undef,1,undef,undef);  
     my $curRes;  
     my $outcome;  
   
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},      my @pathitems = split(/\&/,$env{'form.folderpath'});
                                             ['finishexport']);      my @folderconf = split(/\:/,$pathitems[-1]);
     if ($env{'form.finishexport'}) {      my $ispage = $folderconf[4];
         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},  
                                             ['archive','discussion']);      foreach my $item (@possibles) {
           my ($orderidx,$cmd) = split(/:/,$item);
         my @exportitems = &Apache::loncommon::get_env_multiple('form.archive');          next if ($orderidx =~ /\D/);
         my @discussions = &Apache::loncommon::get_env_multiple('form.discussion');          next unless (($cmd eq 'cut') || ($cmd eq 'copy') || ($cmd eq 'remove'));
         if (@exportitems == 0 && @discussions == 0) {          my $mapidx = $folder.':'.$orderidx.':'.$ispage;
             $outcome = '<br />As you did not select any content items or discussions for export, an IMS package has not been created.  Please <a href="javascript:history.go(-1)">go back</a> to select either content items or discussions for export';          my ($title,$url)=split(':',$LONCAPA::map::resources[$orderidx]);
         } else {          my %denied = &action_restrictions($coursenum,$coursedom,
             my $now = time;                                            &LONCAPA::map::qtescape($url),
             my %symbs;                                            $env{'form.folderpath'},\%curr_groups);
             my $manifestok = 0;          next if ($denied{'copy'});
             my $imsresources;          $url=~s{http(&colon;|:)//https(&colon;|:)//}{https$2//};
             my $tempexport;          next if (exists($pasteurls{$coursedom.'_'.$coursenum.'_'.$mapidx}));
             my $copyresult;          my ($suffix,$errortxt,$locknotfreed) =
             my $ims_manifest = &create_ims_store($now,\$manifestok,\$outcome,\$tempexport);              &new_timebased_suffix($env{'user.domain'},$env{'user.name'},'paste');
             if ($manifestok) {          if ($suffix ne '') {
                 &build_package($now,$navmap,\@exportitems,\@discussions,\$outcome,$tempexport,\$copyresult,$ims_manifest);              push(@newpaste,$suffix);
                 close($ims_manifest);          } else {
               if ($locknotfreed) {
 #Create zip file in prtspool                  return $locknotfreed;
                 my $imszipfile = '/prtspool/'.              }
                 $env{'user.name'}.'_'.$env{'user.domain'}.'_'.  
                    time.'_'.rand(1000000000).'.zip';  
                 my $cwd = &Cwd::getcwd();  
                 my $imszip = '/home/httpd/'.$imszipfile;  
                 chdir $tempexport;  
                 open(OUTPUT, "zip -r $imszip *  2> /dev/null |");  
                 close(OUTPUT);  
                 chdir $cwd;  
                 $outcome .= &mt('Download the zip file from <a href="[_1]">IMS '.lc($type).' archive</a><br />',$imszipfile,);  
                 if ($copyresult) {  
                     $outcome .= 'The following errors occurred during export - '.$copyresult;  
                 }  
             } else {  
                 $outcome = '<br />Unfortunately you will not be able to retrieve an IMS archive of this posts at this time, because there was a problem creating a manifest file.<br />';  
             }  
         }  
         $r->print(&Apache::loncommon::start_page('Export '.lc($type).' to IMS content package'));  
         $r->print($outcome);  
         $r->print(&Apache::loncommon::end_page());  
     } else {  
         my $display;  
         $display = '<form name="exportdoc" method="post">'."\n";  
         $display .= &mt('Choose which items you wish to export from your '.$type.'.<br /><br />');  
         $display .= '<table border="0" cellspacing="0" cellpadding="3">'.  
                     '<tr><td><fieldset><legend>&nbsp;<b>Content items</b></legend>'.  
                     '<input type="button" value="check all" '.  
                     'onclick="javascript:checkAll(document.exportdoc.archive)" />'.  
                     '&nbsp;&nbsp;<input type="button" value="uncheck all"'.  
                     ' onclick="javascript:uncheckAll(document.exportdoc.archive)" /></fieldset></td>'.  
                     '<td>&nbsp;</td><td>&nbsp;</td>'.  
                     '<td align="right"><fieldset><legend>&nbsp;<b>Discussion posts'.  
                     '</b></legend><input type="button" value="check all"'.  
                     ' onclick="javascript:checkAll(document.exportdoc.discussion)" />'.  
                     '&nbsp;&nbsp;<input type="button" value="uncheck all"'.  
                     ' onclick="javascript:uncheckAll(document.exportdoc.discussion)" /></fieldset></td>'.  
                     '</tr></table>';  
         my $curRes;  
         my $depth = 0;  
         my $count = 0;  
         my $boards = 0;  
         my $startcount = 5;  
         my %parent = ();  
         my %children = ();  
         my $lastcontainer = $startcount;  
         my @bgcolors = ('#F6F6F6','#FFFFFF');  
         $display .= '<table cellspacing="0"><tr>'.  
             '<td><b>Export content item?<br /></b></td><td>&nbsp;</td><td align="right">'."\n";  
         if ($numdisc > 0) {  
             $display.='<b>Export&nbsp;discussion posts?</b>'."\n";  
         }          }
         $display.='&nbsp;</td></tr>';          if (&is_supplemental_title($title)) {
         while ($curRes = $it->next()) {              &Apache::lonnet::appenv({'docs.markedcopy_supplemental_'.$suffix => $title});
             if (ref($curRes)) {      ($title) = &Apache::loncommon::parse_supplemental_title($title);
                 $count ++;          }
   
           $addtoenv{'docs.markedcopy_title_'.$suffix} = $title,
           $addtoenv{'docs.markedcopy_url_'.$suffix}   = $url,
           $addtoenv{'docs.markedcopy_cmd_'.$suffix}   = $cmd,
           $addtoenv{'docs.markedcopy_crs_'.$suffix}   = $env{'request.course.id'};
           $addtoenv{'docs.markedcopy_map_'.$suffix}   = $mapidx;
           if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(default|supplemental)_?(\d*)\.(page|sequence)$}) {
               my $prefix = $1;
               my $subdir =$2;
               if ($subdir eq '') {
                   $subdir = $prefix;
               }
               my (%addedmaps,%removefrommap,%removeparam,%hierarchy,%titles,%allmaps);
               &contained_map_check($url,$folder,$coursenum,$coursedom,\%removefrommap,
                                    \%removeparam,\%addedmaps,\%hierarchy,\%titles,\%allmaps);
               if (ref($hierarchy{$url}) eq 'HASH') {
                   my ($nested,$nestednames);
                   &recurse_uploaded_maps($url,$subdir,\%hierarchy,\%titles,\$nested,\$nestednames);
                   $nested =~ s/\&$//;
                   $nestednames =~ s/\Q___&&&___\E$//;
                   if ($nested ne '') {
                       $addtoenv{'docs.markedcopy_nested_'.$suffix} = $nested;
                   }
                   if ($nestednames ne '') {
                       $addtoenv{'docs.markedcopy_nestednames_'.$suffix} = $nestednames;
                   }
               }
           }
           if ($locknotfreed) {
               $output = $locknotfreed;
               last;
           }
       }
       if (@newpaste) {
           $addtoenv{'docs.markedcopies'} = join(',',(@currpaste,@newpaste));
       }
       &Apache::lonnet::appenv(\%addtoenv);
       delete($env{'form.markcopy'});
       return $output;
   }
   
   sub recurse_uploaded_maps {
       my ($url,$dir,$hierarchy,$titlesref,$nestref,$namesref) = @_;
       if (ref($hierarchy->{$url}) eq 'HASH') {
           my @maps = map { $hierarchy->{$url}{$_}; } sort { $a <=> $b } (keys(%{$hierarchy->{$url}}));
           my @titles = map { $titlesref->{$url}{$_}; } sort { $a <=> $b } (keys(%{$titlesref->{$url}}));
           my (@uploaded,@names,%shorter);
           for (my $i=0; $i<@maps; $i++) {
               my ($inner) = ($maps[$i] =~ m{^/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_(\d+)\.(?:page|sequence)$});
               if ($inner ne '') {
                   push(@uploaded,$inner);
                   push(@names,&escape($titles[$i]));
                   $shorter{$maps[$i]} = $inner;
             }              }
             if ($curRes == $it->BEGIN_MAP()) {          }
                 $depth++;          $$nestref .= "$dir:".join(',',@uploaded).'&';
                 $parent{$depth} = $lastcontainer;          $$namesref .= "$dir:".(join(',',@names)).'___&&&___';
           foreach my $map (@maps) {
               if ($shorter{$map} ne '') {
                   &recurse_uploaded_maps($map,$shorter{$map},$hierarchy,$titlesref,$nestref,$namesref);
             }              }
             if ($curRes == $it->END_MAP()) {          }
                 $depth--;      }
                 $lastcontainer = $parent{$depth};      return;
   }
   
   sub print_paste_buffer {
       my ($r,$container,$folder,$coursedom,$coursenum) = @_;
       return if (!defined($env{'docs.markedcopies'}));
   
       unless (($env{'form.pastemarked'}) || ($env{'form.clearmarked'})) {
           return if ($env{'docs.markedcopies'} eq '');
       }
   
       my @currpaste = split(/,/,$env{'docs.markedcopies'});
       my ($pasteitems,@pasteable);
       my $clipboardcount = 0;
   
   # Construct identifiers for current contents of user's paste buffer
       foreach my $suffix (@currpaste) {
           next if ($suffix =~ /\D/);
           my $cid = $env{'docs.markedcopy_crs_'.$suffix};
           my $url = $env{'docs.markedcopy_url_'.$suffix};
           my $mapidx = $env{'docs.markedcopy_map_'.$suffix};
           if (($cid =~ /^$match_domain\_$match_courseid$/) &&
               ($url ne '')) {
               $clipboardcount ++;
               my ($is_external,$othercourse,$fromsupp,$is_uploaded_map,$parent,
                   $canpaste,$nopaste,$othercrs,$areachange,$is_exttool);
               my $extension = (split(/\./,$env{'docs.markedcopy_url_'.$suffix}))[-1];
               if ($url =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?:&colon;|:))//} ) {
                   $is_external = 1;
               } elsif ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$}) {
                   $is_exttool = 1;
             }              }
             if (ref($curRes)) {              if ($folder =~ /^supplemental/) {
                 my $symb = $curRes->symb();                  $canpaste = &supp_pasteable($env{'docs.markedcopy_url_'.$suffix});
                 my $ressymb = $symb;                  unless ($canpaste) {
                 if ($ressymb =~ m|adm/(\w+)/(\w+)/(\d+)/bulletinboard$|) {                      $nopaste = &mt('Paste into Supplemental Content unavailable.');
                     unless ($ressymb =~ m|adm/wrapper/adm|) {                  }
                         $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';              } else {
                   $canpaste = 1;
               }
               if ($canpaste) {
                   if ($url =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) {
                       my $srcdom = $1;
                       my $srcnum = $2;
                       my $rem = $3;
                       if (($srcdom ne $coursedom) || ($srcnum ne $coursenum)) {
                           $othercourse = 1;
                           if ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) {
                               $othercrs = '<br />'.&mt('(from another course)');
                           } else {
                               $canpaste = 0;
                               $nopaste = &mt('Paste from another course unavailable.'); 
                           }
                       }
                       if ($rem =~ m{^(default|supplemental)_?(\d*)\.(?:page|sequence)$}) {
                           my $prefix = $1;
                           $parent = $2;
                           if ($folder !~ /^\Q$prefix\E/) {
                               $areachange = 1;
                           }
                           $is_uploaded_map = 1;
                       }
                   } elsif (($url =~ m{^/res/lib/templates/\w+\.problem$}) ||
                            ($url =~ m{^/adm/($match_domain)/($match_username)/\d+/(bulletinboard|smppg|ext\.tool)$})) {
                       if ($cid ne $env{'request.course.id'}) {
                           my ($srcdom,$srcnum) = split(/_/,$cid);
                           if ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) {
                               if (($is_exttool) && ($srcdom ne $coursedom)) {
                                   $canpaste = 0;
                                   $nopaste = &mt('Paste from another domain unavailable.');
                               } else {
                                   $othercrs = '<br />'.&mt('(from another course)');
                               }
                           } else {
                               $canpaste = 0;
                               $nopaste = &mt('Paste from another course unavailable.');
                           }
                     }                      }
                 }                  }
                 my $color = $count%2;                  if ($canpaste) {
                 $display .='<tr bgcolor='.$bgcolors[$color].'><td>'."\n".                      push(@pasteable,$suffix);
                     '<input type="checkbox" name="archive" value="'.$count.'" ';  
                 if (($curRes->is_sequence()) || ($curRes->is_page())) {  
                     my $checkitem = $count + $boards + $startcount;  
                     $display .= 'onClick="javascript:propagateCheck('."'$checkitem'".')"';  
                 }                  }
                 $display .= ' />'."\n";              }
                 for (my $i=0; $i<$depth; $i++) {              my $buffer;
                     $display .= '<img src="/adm/lonIcons/whitespace1.gif" width="25" height="1" alt="" border="0" /><img src="/adm/lonIcons/whitespace1.gif" width="25" height="1" alt="" border="0" />'."\n";              if ($is_external) {
                   $buffer = &mt('External Resource').': '.
                       &LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix}).' ('.
                       &LONCAPA::map::qtescape($url).')';
               } elsif ($is_exttool) {
                   $buffer = &mt('External Tool').': '.
                       &LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix});
               } else {
                   my $icon = &Apache::loncommon::icon($extension);
                   if ($extension eq 'sequence' &&
                       $url =~ m{/default_\d+\.sequence$}x) {
                       $icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
                       $icon .= '/navmap.folder.closed.gif';
                 }                  }
                 if ($curRes->is_sequence()) {                  my $title = $env{'docs.markedcopy_title_'.$suffix};
                     $display .= '<img src="/adm/lonIcons/navmap.folder.open.gif">&nbsp;'."\n";                  if ($title eq '') {
                     $lastcontainer = $count + $startcount + $boards;                      ($title) = ($url =~ m{/([^/]+)$});
                 } elsif ($curRes->is_page()) {  
                     $display .= '<img src="/adm/lonIcons/navmap.page.open.gif">&nbsp;'."\n";  
                     $lastcontainer = $count + $startcount + $boards;  
                 }                  }
                 my $currelem = $count+$boards+$startcount;                  $buffer = '<img src="'.$icon.'" alt="" class="LC_icon" />'.
                 $children{$parent{$depth}} .= $currelem.':';                            ': '.
                 $display .= '&nbsp;'.$curRes->title().'</td>';                            &Apache::loncommon::parse_supplemental_title(
                 if ($discussiontime{$ressymb} > 0) {                               &LONCAPA::map::qtescape($title));
                     $boards ++;              }
                     $currelem = $count+$boards+$startcount;              $pasteitems .= '<div class="LC_left_float">';
                     $display .= '<td>&nbsp;</td><td align="right"><input type="checkbox" name="discussion" value="'.$count.'" />&nbsp;</td>'."\n";              my ($options,$onclick);
                 } else {              if (($canpaste) && (!$areachange) && (!$othercourse) &&
                     $display .= '<td colspan="2">&nbsp;</td>'."\n";                  ($env{'docs.markedcopy_cmd_'.$suffix} eq 'cut')) {
                   if (($is_uploaded_map) ||
                       ($url =~ /(bulletinboard|smppg)$/) ||
                       ($url =~ m{^/uploaded/$coursedom/$coursenum/(?:docs|supplemental)/(.+)$})) {
                       $options = &paste_options($suffix,$is_uploaded_map,$parent);
                       $onclick= 'onclick="showOptions(this,'."'$suffix'".');" ';
                   }
               }
               $pasteitems .= '<label><input type="checkbox" name="pasting" id="pasting_'.$suffix.'" value="'.$suffix.'" '.$onclick.'/>'.$buffer.'</label>';
               if ($nopaste) {
                    $pasteitems .= $nopaste;   
               } else {
                   if ($othercrs) {
                       $pasteitems .= $othercrs;
                   }
                   if ($options) {
                       $pasteitems .= $options;
                 }                  }
             }              }
               $pasteitems .= '</div>';
         }          }
         my $scripttag = qq|      }
 <script>      if ($pasteitems eq '') {
           &Apache::lonnet::delenv('docs.markedcopies');
 function checkAll(field) {      }
     if (field.length > 0) {      my ($pasteform,$form_start,$buttons,$form_end);
         for (i = 0; i < field.length; i++) {      if ($pasteitems) {
             field[i].checked = true ;          $pasteitems .= '<div style="padding:0;clear:both;margin:0;border:0"></div>';
           $form_start = '<form name="pasteform" action="/adm/coursedocs" method="post" onsubmit="return validateClipboard();">';
           if (@pasteable) {
               my $value = &mt('Paste to current folder');
               if ($container eq 'page') {
                   $value = &mt('Paste to current page');
               } 
               $buttons = '<input type="submit" name="pastemarked" value="'.$value.'" />'.('&nbsp;'x2);
           }
           $buttons .= '<input type="submit" name="clearmarked" value="'.&mt('Remove from clipboard').'" />'.('&nbsp;'x2);
           if ($clipboardcount > 1) {
               $buttons .=
                   '<span style="text-decoration:line-through">'.('&nbsp;'x20).'</span>'.('&nbsp;'x2).
                   '<input type="button" name="checkallclip" value="'.&mt('Check all').'" style="height:20px;" onclick="checkClipboard();" />'.
                   ('&nbsp;'x2).
                   '<input type="button" name="uncheckallclip" value="'.&mt('Uncheck all').'" style="height:20px;" onclick="uncheckClipboard();" />'.
                   ('&nbsp;'x2);
         }          }
           $form_end = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />'.
                       '</form>';
     } else {      } else {
         field.checked = true          $pasteitems = &mt('Clipboard is empty');
     }      }
       $r->print($form_start
                .'<fieldset>'
                .'<legend>'.&mt('Clipboard').('&nbsp;' x2).$buttons.'</legend>'
                .$pasteitems
                .'</fieldset>'
                .$form_end);
   }
   
   sub paste_options {
       my ($suffix,$is_uploaded_map,$parent) = @_;
       my ($copytext,$movetext);
       if ($is_uploaded_map) {
           $copytext = &mt('Copy to new folder');
           $movetext = &mt('Move old');
       } elsif ($env{'docs.markedcopy_url_'.$suffix} =~ /bulletinboard$/) {
           $copytext = &mt('Copy to new board');
           $movetext = &mt('Move (not posts)');
       } elsif ($env{'docs.markedcopy_url_'.$suffix} =~ /smppg$/) {
           $copytext = &mt('Copy to new page');
           $movetext = &mt('Move');
       } else {
           $copytext = &mt('Copy to new file');
           $movetext = &mt('Move');
       }
       my $output = '<br />'.
                    '<span id="pasteoptionstext_'.$suffix.'" class="LC_fontsize_small LC_nobreak"></span>'.
                    '<div id="pasteoptions_'.$suffix.'" class="LC_dccid" style="display:none;"><span class="LC_nobreak">'.('&nbsp;'x 4).
                    '<label>'.
                    '<input type="radio" name="docs.markedcopy_options_'.$suffix.'" value="new" checked="checked" />'.
                    $copytext.'</label></span>'.('&nbsp;'x2).' '.
                    '<span class="LC_nobreak"><label>'.
                    '<input type="radio" name="docs.markedcopy_options_'.$suffix.'" value="move" />'.
                    $movetext.'</label></span>';
       if (($is_uploaded_map) && ($env{'docs.markedcopy_nested_'.$suffix})) {
           $output .= '<br /><fieldset><legend>'.&mt('Folder to paste contains sub-folders').
                      '</legend><table border="0">';
           my @pastemaps = split(/\&/,$env{'docs.markedcopy_nested_'.$suffix});
           my @titles = split(/\Q___&&&___\E/,$env{'docs.markedcopy_nestednames_'.$suffix});
           my $lastdir = $parent;
           my %depths = (
                          $lastdir => 0,
                        );
           my (%display,%deps);
           for (my $i=0; $i<@pastemaps; $i++) {
               ($lastdir,my $subfolderstr) = split(/\:/,$pastemaps[$i]);
               my ($namedir,$esctitlestr) = split(/\:/,$titles[$i]);
               my @subfolders = split(/,/,$subfolderstr);
               $deps{$lastdir} = \@subfolders;
               my @subfoldertitles = map { &unescape($_); } split(/,/,$esctitlestr);
               my $depth = $depths{$lastdir} + 1;
               my $offset = int($depth * 4);
               my $indent = ('&nbsp;' x $offset);
               for (my $j=0; $j<@subfolders; $j++) {
                   $depths{$subfolders[$j]} = $depth;
                   $display{$subfolders[$j]} =
                       '<tr><td>'.$indent.$subfoldertitles[$j].'&nbsp;</td>'.
                       '<td><label>'.
                       '<input type="radio" name="docs.markedcopy_'.$suffix.'_'.$subfolders[$j].'" value="new" checked="checked" />'.&mt('Copy to new').'</label>'.('&nbsp;' x2).
                       '<label>'.
                       '<input type="radio" name="docs.markedcopy_'.$suffix.'_'.$subfolders[$j].'" value="move" />'.
                       &mt('Move old').'</label>'.
                       '</td></tr>';
                }
           }
           &recurse_print(\$output,$parent,\%deps,\%display);
           $output .= '</table></fieldset>';
       }
       $output .= '</div>';
       return $output;
 }  }
                                                                                   
 function uncheckAll(field) {  sub recurse_print {
     if (field.length > 0) {      my ($outputref,$dir,$deps,$display) = @_;
         for (i = 0; i < field.length; i++) {      $$outputref .= $display->{$dir}."\n";
             field[i].checked = false ;      if (ref($deps->{$dir}) eq 'ARRAY') {
           foreach my $subdir (@{$deps->{$dir}}) {
               &recurse_print($outputref,$subdir,$deps,$display);
         }          }
     } else {  
         field.checked = false ;  
     }      }
 }  }
   
 function propagateCheck(item) {  sub supp_pasteable {
     if (document.exportdoc.elements[item].checked == true) {      my ($url) = @_;
         containerCheck(item)      if (($url =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?:&colon;|:))//}) ||
           (($url =~ /\.sequence$/) && ($url =~ m{^/uploaded/})) ||
           ($url =~ m{^/uploaded/$match_domain/$match_courseid/(docs|supplemental)/(default|\d+)/\d+/}) ||
           ($url =~ m{^/adm/$match_domain/$match_username/aboutme}) ||
           ($url =~ m{^/public/$match_domain/$match_courseid/syllabus}) ||
           ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$})) {
           return 1;
     }      }
 }       return;
   }
   
   sub paste_popup_js {
       my %html_js_lt = &Apache::lonlocal::texthash(
                                             show => 'Show Options',
                                             hide => 'Hide Options',
                                           );
       my %js_lt = &Apache::lonlocal::texthash(
                                             none => 'No items selected from clipboard.',
                                           );
       &html_escape(\%html_js_lt);
       &js_escape(\%html_js_lt);
       &js_escape(\%js_lt);
       return <<"END";
   
   function showPasteOptions(suffix) {
       document.getElementById('pasteoptions_'+suffix).style.display='block';
       document.getElementById('pasteoptionstext_'+suffix).innerHTML = '&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:hidePasteOptions(\\''+suffix+'\\');" class="LC_menubuttons_link">$html_js_lt{'hide'}</a>';
       return;
   }
   
   function hidePasteOptions(suffix) {
       document.getElementById('pasteoptions_'+suffix).style.display='none';
       document.getElementById('pasteoptionstext_'+suffix).innerHTML ='&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:showPasteOptions(\\''+suffix+'\\')" class="LC_menubuttons_link">$html_js_lt{'show'}</a>';
       return;
   }
   
 function containerCheck(item) {  function showOptions(caller,suffix) {
     document.exportdoc.elements[item].checked = true      if (document.getElementById('pasteoptionstext_'+suffix)) {
     var numitems = $count + $boards + $startcount          if (caller.checked) {
     var parents = new Array(numitems)              document.getElementById('pasteoptionstext_'+suffix).innerHTML ='&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:showPasteOptions(\\''+suffix+'\\')" class="LC_menubuttons_link">$html_js_lt{'show'}</a>';
     for (var i=$startcount; i<numitems; i++) {          } else {
         parents[i] = new Array              document.getElementById('pasteoptionstext_'+suffix).innerHTML ='';
           }
           if (document.getElementById('pasteoptions_'+suffix)) {
               document.getElementById('pasteoptions_'+suffix).style.display='none';
           }
     }      }
         |;      return;
   }
   
         foreach my $container (sort { $a <=> $b } keys %children) {  function validateClipboard() {
             my @contents = split/:/,$children{$container};      var numchk = 0;
             for (my $i=0; $i<@contents; $i ++) {      if (document.pasteform.pasting.length > 1) {
                 $scripttag .= '    parents['.$container.']['.$i.'] = '.$contents[$i]."\n";          for (var i=0; i<document.pasteform.pasting.length; i++) {
               if (document.pasteform.pasting[i].checked) {
                   numchk ++;
             }              }
         }          }
       } else {
           if (document.pasteform.pasting.type == 'checkbox') {
               if (document.pasteform.pasting.checked) {
                   numchk ++; 
               } 
           }
       }
       if (numchk > 0) { 
           return true;
       } else {
           alert("$js_lt{'none'}");
           return false;
       }
   }
   
   function checkClipboard() {
       if (document.pasteform.pasting.length > 1) {
           for (var i=0; i<document.pasteform.pasting.length; i++) {
               document.pasteform.pasting[i].checked = true;
           } 
       }
       return;
   }
   
         $scripttag .= qq|  function uncheckClipboard() {
     if (parents[item].length > 0) {      if (document.pasteform.pasting.length >1) {
         for (var j=0; j<parents[item].length; j++) {          for (var i=0; i<document.pasteform.pasting.length; i++) {
             containerCheck(parents[item][j])              document.pasteform.pasting[i].checked = false;
         }          }
      }         }
       return;
 }  }
   
 </script>  END
         |;  
  $r->print(&Apache::loncommon::start_page('Export '.lc($type).' to IMS content package',  }
  $scripttag));  
  $r->print($display.'</table>'.  sub do_paste_from_buffer {
                   '<p><input type="hidden" name="finishexport" value="1">'.      my ($coursenum,$coursedom,$folder,$container,$errors) = @_;
                   '<input type="submit" name="exportcourse" value="'.  
                   &mt('Export '.$type.' DOCS').'" /></p></form>'.  # Array of items in paste buffer
   &Apache::loncommon::end_page());      my (@currpaste,%pastebuffer,%allerrors);
     }      @currpaste = split(/,/,$env{'docs.markedcopies'});
 }  
   # Early out if paste buffer is empty
 sub create_ims_store {      if (@currpaste == 0) {
     my ($now,$manifestok,$outcome,$tempexport) = @_;          return ();
     $$tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';      } 
     my $ims_manifest;      map { $pastebuffer{$_} = 1; } @currpaste;
     if (!-e $$tempexport) {  
         mkdir($$tempexport,0700);  # Array of items selected items to paste
     }      my @reqpaste = &Apache::loncommon::get_env_multiple('form.pasting');
     $$tempexport .= '/'.$now;  
     if (!-e $$tempexport) {  # Early out if nothing selected to paste
         mkdir($$tempexport,0700);      if (@reqpaste == 0) {
     }          return();
     $$tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'};      }
     if (!-e $$tempexport) {      my @topaste;
         mkdir($$tempexport,0700);      foreach my $suffix (@reqpaste) {
     }          next if ($suffix =~ /\D/);
     if (!-e "$$tempexport/resources") {          next unless (exists($pastebuffer{$suffix}));
         mkdir("$$tempexport/resources",0700);          push(@topaste,$suffix);
     }      }
 # open manifest file  
     my $manifest = '/imsmanifest.xml';  # Early out if nothing available to paste
     my $manifestfilename = $$tempexport.$manifest;      if (@topaste == 0) {
     if ($ims_manifest = Apache::File->new('>'.$manifestfilename)) {          return();
         $$manifestok=1;      }
         print $ims_manifest  
 '<?xml version="1.0" encoding="UTF-8"?>'."\n".      my (%msgs,%before,%after,@dopaste,%is_map,%notinsupp,%notincrs,%notindom,%duplicate,
 '<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"'.          %prefixchg,%srcdom,%srcnum,%srcmapidx,%marktomove,$save_err,$lockerrors,$allresult);
 ' xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"'.  
 ' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'.      foreach my $suffix (@topaste) {
 ' identifier="MANIFEST-'.$env{'request.course.id'}.'-'.$now.'"'.          my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url_'.$suffix});
 '  xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1imscp_v1p1.xsd'.          my $cid=&LONCAPA::map::qtescape($env{'docs.markedcopy_crs_'.$suffix});
 '  http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">'."\n".          my $mapidx=&LONCAPA::map::qtescape($env{'docs.markedcopy_map_'.$suffix}); 
 '  <metadata>  # Supplemental content may only include certain types of content
     <schema></schema>  # Early out if pasted content is not supported in Supplemental area
     <imsmd:lom>          if ($folder =~ /^supplemental/) {
       <imsmd:general>              unless (&supp_pasteable($url)) {
         <imsmd:identifier>'.$env{'request.course.id'}.'</imsmd:identifier>                  $notinsupp{$suffix} = 1;
         <imsmd:title>                  next;
           <imsmd:langstring xml:lang="en">'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</imsmd:langstring>              }
         </imsmd:title>  
       </imsmd:general>  
     </imsmd:lom>  
   </metadata>'."\n".  
 '  <organizations default="ORG-'.$env{'request.course.id'}.'-'.$now.'">'."\n".  
 '    <organization identifier="ORG-'.$env{'request.course.id'}.'-'.$now.'"'.  
 ' structure="hierarchical">'."\n".  
 '      <title>'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</title>'  
     } else {  
         $$outcome .= 'An error occurred opening the IMS manifest file.<br />'  
 ;  
     }  
     return $ims_manifest;  
 }  
   
 sub build_package {  
     my ($now,$navmap,$exportitems,$discussions,$outcome,$tempexport,$copyresult,$ims_manifest) = @_;  
 # first iterator to look for dependencies  
     my $it = $navmap->getIterator(undef,undef,undef,1,undef,undef);  
     my $curRes;  
     my $count = 0;  
     my $depth = 0;  
     my $lastcontainer = 0;  
     my %parent = ();  
     my @dependencies = ();  
     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};  
     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};  
     while ($curRes = $it->next()) {  
         if (ref($curRes)) {  
             $count ++;  
         }          }
         if ($curRes == $it->BEGIN_MAP()) {          if ($url =~ m{^/uploaded/($match_domain)/($match_courseid)/}) {
             $depth++;              my $srcd = $1;
             $parent{$depth} = $lastcontainer;              my $srcn = $2;
   # When paste buffer was populated using an active role in a different course
   # check for mdc privilege in the course from which the resource was pasted
               if (($srcd ne $coursedom) || ($srcn ne $coursenum)) {
                   unless ($env{"user.priv.cm./$srcd/$srcn"} =~ /\Q:mdc&F\E/) {
                       $notincrs{$suffix} = 1;
                       next;
                   }
               }
               $srcdom{$suffix} = $srcd;
               $srcnum{$suffix} = $srcn;
           } elsif (($url =~ m{^/res/lib/templates/\w+\.problem$}) ||
                    ($url =~ m{^/adm/$match_domain/$match_username/\d+/(bulletinboard|smppg)$}) ||
                    ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$})) {
               my ($srcd,$srcn) = split(/_/,$cid);
   # When paste buffer was populated using an active role in a different course
   # check for mdc privilege in the course from which the resource was pasted
               if (($srcd ne $coursedom) || ($srcn ne $coursenum)) {
                   unless ($env{"user.priv.cm./$srcd/$srcn"} =~ /\Q:mdc&F\E/) {
                       $notincrs{$suffix} = 1;
                       next;
                   }
               }
   # When buffer was populated using an active role in a different course
   # disallow pasting of External Tool if course is in a different domain.
               if (($url =~ m{/ext\.tool$}) && ($srcd ne $coursedom)) {
                   $notindom{$suffix} = 1;
                   next;
               }
               $srcdom{$suffix} = $srcd;
               $srcnum{$suffix} = $srcn;
         }          }
         if ($curRes == $it->END_MAP()) {          $srcmapidx{$suffix} = $mapidx;
             $depth--;          push(@dopaste,$suffix);
             $lastcontainer = $parent{$depth};          if ($url=~/\.(page|sequence)$/) {
               $is_map{$suffix} = 1; 
         }          }
         if (ref($curRes)) {          if ($url =~ m{^/uploaded/$match_domain/$match_courseid/([^/]+)}) {
             if ($curRes->is_sequence() || $curRes->is_page()) {              my $oldprefix = $1;
                 $lastcontainer = $count;  # When pasting content from Main Content to Supplemental Content and vice versa 
   # URLs will contain different paths (which depend on whether pasted item is
   # a folder/page or a document).
               if (($folder =~ /^supplemental/) && (($oldprefix =~ /^default/) || ($oldprefix eq 'docs'))) {
                   $prefixchg{$suffix} = 'docstosupp';
               } elsif (($folder =~ /^default/) && ($oldprefix =~ /^supplemental/)) {
                   $prefixchg{$suffix} = 'supptodocs';
             }              }
             if (grep/^$count$/,@$exportitems) {  
                 &get_dependencies($exportitems,\%parent,$depth,\@dependencies);  # If pasting an uploaded map, get list of contained uploaded maps.
               if ($env{'docs.markedcopy_nested_'.$suffix}) {
                   my @nested;
                   my ($type) = ($oldprefix =~ /^(default|supplemental)/);
                   my @items = split(/\&/,$env{'docs.markedcopy_nested_'.$suffix});
                   my @deps = map { /\d+:([\d,]+$)/ } @items;
                   foreach my $dep (@deps) {
                       if ($dep =~ /,/) {
                           push(@nested,split(/,/,$dep));
                       } else {
                           push(@nested,$dep);
                       }
                   }
                   foreach my $item (@nested) {
                       if ($env{'form.docs.markedcopy_'.$suffix.'_'.$item} eq 'move') {
                           push(@{$marktomove{$suffix}},$type.'_'.$item);
                       }
                   }
             }              }
         }          }
     }      }
 # second iterator to build manifest and store resources  
     $it = $navmap->getIterator(undef,undef,undef,1,undef,undef);  # Early out if nothing available to paste
     $depth = 0;      if (@dopaste == 0) {
     my $prevdepth;          return ();
     $count = 0;      }
     my $imsresources;  
     my $pkgdepth;  # Populate message hash and hashes used for main content <=> supplemental content
     while ($curRes = $it->next()) {  # changes    
         if ($curRes == $it->BEGIN_MAP()) {  
             $prevdepth = $depth;      %msgs = &Apache::lonlocal::texthash (
             $depth++;                  notinsupp => 'Paste failed: content type is not supported within Supplemental Content',
                   notincrs  => 'Paste failed: Item is from a different course which you do not have rights to edit.',
                   notindom  => 'Paste failed: Item is an external tool from a course in a different donain.', 
                   duplicate => 'Paste failed: only one instance of a particular published sequence or page is allowed within each course.',
               );
   
       %before = (
                    docstosupp => {
                                      map => 'default',
                                      doc => 'docs',
                                  },
                    supptodocs => {
                                      map => 'supplemental',
                                      doc => 'supplemental',
                                  },
                 );
   
       %after = (
                    docstosupp => {
                                      map => 'supplemental',
                                      doc => 'supplemental'
                                  },
                    supptodocs => {
                                      map => 'default',
                                      doc => 'docs',
                                  },
                );
   
   # Retrieve information about all course maps in main content area 
   
       my $allmaps = {};
       my (@toclear,%mapurls,%lockerrs,%msgerrs,%results,$donechk);
   
   # Loop over the items to paste
       foreach my $suffix (@dopaste) {
   # Maps need to be copied first
           my (%removefrommap,%removeparam,%addedmaps,%rewrites,%retitles,%copies,
               %dbcopies,%zombies,%params,%docmoves,%mapmoves,%mapchanges,%newsubdir,
               %newurls,%tomove,%resdatacopy);
           if (ref($marktomove{$suffix}) eq 'ARRAY') {
               map { $tomove{$_} = 1; } @{$marktomove{$suffix}};
           }
           my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url_'.$suffix});
           my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix});
           my $cid=&LONCAPA::map::qtescape($env{'docs.markedcopy_crs_'.$suffix}); 
           my $oldurl = $url;
           if ($is_map{$suffix}) {
   # If pasting a map, check if map contains other maps
               my (%hierarchy,%titles);
               if (($folder =~ /^default/) && (!$donechk)) {
                   $allmaps =
                       &Apache::loncommon::allmaps_incourse($coursedom,$coursenum,
                                                            $env{"course.$env{'request.course.id'}.home"},
                                                            $env{'request.course.id'});
                   $donechk = 1;
               }
               &contained_map_check($url,$folder,$coursenum,$coursedom,
                                    \%removefrommap,\%removeparam,\%addedmaps,
                                    \%hierarchy,\%titles,$allmaps);
               if ($url=~ m{^/uploaded/}) {
                   my $newurl;
                   unless ($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') {
                       ($newurl,my $error) = 
                           &get_newmap_url($url,$folder,$prefixchg{$suffix},$coursedom,
                                           $coursenum,$srcdom{$suffix},$srcnum{$suffix},
                                           \$title,$allmaps,\%newurls);
                       if ($error) {
                           $allerrors{$suffix} = $error;
                           next;
                       }
                       if ($newurl ne '') {
                           if ($newurl ne $url) {
                               if ($newurl =~ /(?:default|supplemental)_(\d+).(?:sequence|page)$/) {
                                   $newsubdir{$url} = $1;
                               }
                               $mapchanges{$url} = 1;
                           }
                       }
                   }
                   if (($srcdom{$suffix} ne $coursedom) ||
                       ($srcnum{$suffix} ne $coursenum) ||
                       ($prefixchg{$suffix}) || (($newurl ne '') && ($newurl ne $url))) {
                       unless (&url_paste_fixups($url,$folder,$prefixchg{$suffix},
                                                 $coursedom,$coursenum,$srcdom{$suffix},
                                                 $srcnum{$suffix},$allmaps,\%rewrites,
                                                 \%retitles,\%copies,\%dbcopies,
                                                 \%zombies,\%params,\%mapmoves,
                                                 \%mapchanges,\%tomove,\%newsubdir,
                                                 \%newurls,\%resdatacopy)) {
                           $mapmoves{$url} = 1;
                       }
                       $url = $newurl;
                   } elsif ($env{'docs.markedcopy_nested_'.$suffix}) {
                       &url_paste_fixups($url,$folder,$prefixchg{$suffix},$coursedom,
                                         $coursenum,$srcdom{$suffix},$srcnum{$suffix},
                                         $allmaps,\%rewrites,\%retitles,\%copies,\%dbcopies,
                                         \%zombies,\%params,\%mapmoves,\%mapchanges,
                                         \%tomove,\%newsubdir,\%newurls,\%resdatacopy);
                   }
               } elsif ($url=~m {^/res/}) {
   # published map can only exist once, so remove from paste buffer when done
                   push(@toclear,$suffix);
   # if pasting published map (main content area only) check map not already in course
                   if ($folder =~ /^default/) {
                       if ((ref($allmaps) eq 'HASH') && ($allmaps->{$url})) {
                           $duplicate{$suffix} = 1; 
                           next;
                       }
                   }
               }
         }          }
         if ($curRes == $it->END_MAP()) {          if ($url=~ m{/(bulletinboard|smppg|ext\.tool)$}) {
             $prevdepth = $depth;              my $prefix = $1;
             $depth--;              my $fromothercrs;
               #need to copy the db contents to a new one, unless this is a move.
               my %info = (
                            src  => $url,
                            cdom => $coursedom,
                            cnum => $coursenum,
                          );
               if ($prefix eq 'ext.tool') {
                   if ($prefixchg{$suffix} eq 'docstosupp') {
                       $info{'delgradable'} = 1;
                   }
               }
               if (($srcdom{$suffix} =~ /^$match_domain$/) && ($srcnum{$suffix} =~ /^$match_courseid$/)) {
                   unless (($srcdom{$suffix} eq $coursedom) && ($srcnum{$suffix} eq $coursenum)) {
                       $fromothercrs = 1;
                       $info{'cdom'} = $srcdom{$suffix};
                       $info{'cnum'} = $srcnum{$suffix};
                   }
               }
               unless (($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') && (!$fromothercrs)) {
                   my (%lockerr,$msg);
                   my ($newurl,$result,$errtext) =
                       &dbcopy(\%info,$coursedom,$coursenum,\%lockerr);
                   if ($result eq 'ok') {
                       $url = $newurl;
                       $title=&mt('Copy of').' '.$title;
                   } else {
                       if ($prefix eq 'smppg') {
                           $msg = &mt('Paste failed: An error occurred when copying the simple page.').' '.$errtext;
                       } elsif ($prefix eq 'bulletinboard') {
                           $msg = &mt('Paste failed: An error occurred when copying the discussion board.').' '.$errtext;
                       } elsif ($prefix eq 'ext.tool') {
                           $msg = &mt('Paste failed: An error occurred when copying the external tool.').' '.$errtext;
                       }
                       $results{$suffix} = $result;
                       $msgerrs{$suffix} = $msg;
                       $lockerrs{$suffix} = $lockerr{$prefix}; 
                       next;
           }
                   if ($lockerr{$prefix}) {
                       $lockerrs{$suffix} = $lockerr{$prefix};  
                   }
               }
           }
           $title = &LONCAPA::map::qtunescape($title);
           my $ext='false';
           if ($url=~m{^http(|s)://}) { $ext='true'; }
           if ($env{'docs.markedcopy_supplemental_'.$suffix}) {
               if ($folder !~ /^supplemental/) {
                   (undef,undef,$title) =
                       &Apache::loncommon::parse_supplemental_title($env{'docs.markedcopy_supplemental_'.$suffix});
               }
           } else {
               if ($folder=~/^supplemental/) {
                   $title=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
                          $env{'user.domain'}.'___&&&___'.$title;
               }
         }          }
   
         if (ref($curRes)) {  # For uploaded files (excluding pages/sequences) path in copied file is changed
             $count ++;  # if paste is from Main to Supplemental (or vice versa), or if pasting between
             if ((grep/^$count$/,@$exportitems) || (grep/^$count$/,@dependencies)) {  # courses.
                 my $symb = $curRes->symb();  
                 my $isvisible = 'true';          unless ($is_map{$suffix}) {
                 my $resourceref;              my $newidx;
                 if ($curRes->randomout()) {  # Now insert the URL at the bottom
                     $isvisible = 'false';              $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
                 }              if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(.+)$}) {
                 unless ($curRes->is_sequence()) {                  my $relpath = $1;
                     $resourceref = 'identifierref="RES-'.$env{'request.course.id'}.'-'.$count.'"';                  if ($relpath ne '') {
                 }                      my ($prefix,$subdir,$rem) = ($relpath =~ m{^(default|\d+)/(\d+)/(.+)$});
                 my $step = $prevdepth - $depth;                      my ($newloc,$newdocsdir) = ($folder =~ /^(default|supplemental)_?(\d*)/);
                 if (($step >= 0) && ($count > 1)) {                      my $newprefix = $newloc;
                     while ($step >= 0) {                      if ($newloc eq 'default') {
                         print $ims_manifest "\n".'  </item>'."\n";                          $newprefix = 'docs';
                         $step --;                      }
                     }                      if ($newdocsdir eq '') {
                 }                          $newdocsdir = 'default';
                 $prevdepth = $depth;                      }
                       if (($prefixchg{$suffix}) ||
                 my $itementry =                          ($srcdom{$suffix} ne $coursedom) ||
               '<item identifier="ITEM-'.$env{'request.course.id'}.'-'.$count.                          ($srcnum{$suffix} ne $coursenum) ||
               '" isvisible="'.$isvisible.'" '.$resourceref.'>'.                          ($env{'form.docs.markedcopy_options_'.$suffix} ne 'move')) {
               '<title>'.$curRes->title().'</title>';                          my $newpath = "$newprefix/$newdocsdir/$newidx/$rem";
                 print $ims_manifest "\n".$itementry;                          $url =
                               &Apache::lonclonecourse::writefile($env{'request.course.id'},$newpath,
                 unless ($curRes->is_sequence()) {                                                                 &Apache::lonnet::getfile($oldurl));
                     my $content_file;                          if ($url eq '/adm/notfound.html') {
                     my @hrefs = ();                              $msgs{$suffix} = &mt('Paste failed: an error occurred saving the file.');
                     &process_content($count,$curRes,$cdom,$cnum,$symb,\$content_file,\@hrefs,$copyresult,$tempexport);                              next;
                     if ($content_file) {                          } else {
                         $imsresources .= "\n".                              my ($newsubpath) = ($newpath =~ m{^(.*/)[^/]*$});
                      '   <resource identifier="RES-'.$env{'request.course.id'}.'-'.$count.                              $newsubpath =~ s{/+$}{/};
                      '" type="webcontent" href="'.$content_file.'">'."\n".                              $docmoves{$oldurl} = $newsubpath;
                      '       <file href="'.$content_file.'" />'."\n";                          }
                         foreach (@hrefs) {                      }
                             $imsresources .=                  }
                      '        <file href="'.$_.'" />'."\n";              } elsif ($url =~ m{^/res/lib/templates/(\w+)\.problem$}) {
                         }                  my $template = $1;
                         if (grep/^$count$/,@$discussions) {                  if ($newidx) {
                             my $ressymb = $symb;                      &copy_templated_files($url,$srcdom{$suffix},$srcnum{$suffix},$srcmapidx{$suffix},
                             my $mode;                                            $coursedom,$coursenum,$template,$newidx,"$folder.$container");
                             if ($ressymb =~ m|adm/(\w+)/(\w+)/(\d+)/bulletinboard$|) {                  }
                                 unless ($ressymb =~ m|adm/wrapper/adm|) {              } elsif ($url =~ /ext\.tool$/) {
                                     $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';                  if (($newidx) && ($folder=~/^default/)) {
                                 }                      my $marker = (split(m{/},$url))[4];
                                 $mode = 'board';                      my %toolsettings = &Apache::lonnet::dump('exttool_'.$marker,$coursedom,$coursenum);
                             }                      my $val = 'no';
                             my %extras = (                      if ($toolsettings{'gradable'}) {
                                           caller => 'imsexport',                          $val = 'yes';
                                           tempexport => $tempexport.'/resources',                      }
                                           count => $count                      &LONCAPA::map::storeparameter($newidx,'parameter_0_gradable',$val,
                                          );                                                    'string_yesno');
                             my $discresult = &Apache::lonfeedback::list_discussion($mode,undef,$ressymb,\%extras);                      &remember_parms($newidx,'gradable','set',$val);
                         }                  }
                         $imsresources .= '    </resource>'."\n";              }
                     }              $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
                 }                                                ':'.$ext.':normal:res';
                 $pkgdepth = $depth;              push(@LONCAPA::map::order,$newidx);
             }  # Store the result
         }              my ($errtext,$fatal) =
     }                  &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
     while ($pkgdepth > 0) {              if ($fatal) {
         print $ims_manifest "    </item>\n";                  $save_err .= $errtext;
         $pkgdepth --;                  $allresult = 'fail';
     }  
     my $resource_text = qq|  
     </organization>  
   </organizations>  
   <resources>  
     $imsresources  
   </resources>  
 </manifest>  
     |;  
     print $ims_manifest $resource_text;  
 }  
   
 sub get_dependencies {  
     my ($exportitems,$parent,$depth,$dependencies) = @_;  
     if ($depth > 1) {  
         if ((!grep/^$$parent{$depth}$/,@$exportitems) && (!grep/^$$parent{$depth}$/,@$dependencies)) {  
             push @$dependencies, $$parent{$depth};  
             if ($depth > 2) {  
                 &get_dependencies($exportitems,$parent,$depth-1,$dependencies);  
             }              }
         }          }
   
   # Apply any changes to maps, or copy dependencies for uploaded HTML pages, or update
   # resourcedata for simpleproblems copied from another course 
           unless ($allresult eq 'fail') {
               my %updated = (
                               rewrites      => \%rewrites,
                               zombies       => \%zombies,
                               removefrommap => \%removefrommap,
                               removeparam   => \%removeparam,
                               dbcopies      => \%dbcopies,
                               resdatacopy   => \%resdatacopy,
                               retitles      => \%retitles,
                             );
               my %info = (
                              newsubdir => \%newsubdir,
                              params    => \%params,
                          );
               if ($prefixchg{$suffix}) {
                   $info{'before'} = $before{$prefixchg{$suffix}};
                   $info{'after'} = $after{$prefixchg{$suffix}};
               }
               my %moves = (
                              copies   => \%copies,
                              docmoves => \%docmoves,
                              mapmoves => \%mapmoves,
                           );
               (my $result,$msgs{$suffix},my $lockerror) =
                   &apply_fixups($folder,$is_map{$suffix},$coursedom,$coursenum,$errors,
                                 \%updated,\%info,\%moves,$prefixchg{$suffix},$oldurl,
                                 $url,'paste');
               $lockerrors .= $lockerror;
               if ($result eq 'ok') {
                   if ($is_map{$suffix}) {
                       my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
                                                       $folder.'.'.$container);
                       if ($fatal) {
                           $allresult = 'failread';
                       } else {
                           if ($#LONCAPA::map::order<1) {
                               my $idx=&LONCAPA::map::getresidx();
                               if ($idx<=0) { $idx=1; }
                               $LONCAPA::map::order[0]=$idx;
                               $LONCAPA::map::resources[$idx]='';
                           }
                           my $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
                           $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
                                                             ':'.$ext.':normal:res';
                           push(@LONCAPA::map::order,$newidx);
   
   # Store the result
                           my ($errtext,$fatal) = 
                               &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
                           if ($fatal) {
                               $save_err .= $errtext;
                               $allresult = 'failstore';
                           }
                       } 
                   }
                   if ($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') {
                        push(@toclear,$suffix);
                   }
               }
           }
       }
       &clear_from_buffer(\@toclear,\@currpaste);
       my $msgsarray;
       foreach my $suffix (keys(%msgs)) {
            if (ref($msgs{$suffix}) eq 'ARRAY') {
                $msgsarray .= join(',',@{$msgs{$suffix}});
            }
       }
       return ($allresult,$save_err,$msgsarray,$lockerrors);
   }
   
   sub do_buffer_empty {
       my @currpaste = split(/,/,$env{'docs.markedcopies'});
       if (@currpaste == 0) {
           return &mt('Clipboard is already empty');
       }
       my @toclear = &Apache::loncommon::get_env_multiple('form.pasting');
       if (@toclear == 0) {
           return &mt('Nothing selected to clear from clipboard');
       }
       my $numdel = &clear_from_buffer(\@toclear,\@currpaste);
       if ($numdel) {
           return &mt('[quant,_1,item] cleared from clipboard',$numdel);
       } else {
           return &mt('Clipboard unchanged');
     }      }
       return;
 }  }
   
 sub process_content {  sub clear_from_buffer {
     my ($count,$curRes,$cdom,$cnum,$symb,$content_file,$href,$copyresult,$tempexport) = @_;      my ($toclear,$currpaste) = @_;
     my $content_type;      return unless ((ref($toclear) eq 'ARRAY') && (ref($currpaste) eq 'ARRAY'));
     my $message;      my %pastebuffer;
     my @uploads = ();      map { $pastebuffer{$_} = 1; } @{$currpaste};
     if ($curRes->is_sequence()) {      my $numdel = 0;
         $content_type = 'sequence';      foreach my $suffix (@{$toclear}) {
     } elsif ($curRes->is_page()) {          next if ($suffix =~ /\D/);
         $content_type = 'page'; # need to handle individual items in pages.          next unless (exists($pastebuffer{$suffix}));
     } elsif ($symb =~ m-public/$cdom/$cnum/syllabus$-) {          my $regexp = 'docs.markedcopy_[a-z]+_'.$suffix;
         $content_type = 'syllabus';          if (&Apache::lonnet::delenv($regexp,1) eq 'ok') {
         my $contents = &Apache::imsexport::templatedpage($content_type);              delete($pastebuffer{$suffix});
         if ($contents) {              $numdel ++;
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);          }
         }      }
     } elsif ($symb =~ m-\.sequence___\d+___ext-) {      my $newbuffer = join(',',sort(keys(%pastebuffer)));
         $content_type = 'external';      &Apache::lonnet::appenv({'docs.markedcopies' => $newbuffer});
         my $title = $curRes->title;      return $numdel;
         my $contents =  &Apache::imsexport::external($symb,$title);  }
         if ($contents) {  
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);  sub get_newmap_url {
         }      my ($url,$folder,$prefixchg,$coursedom,$coursenum,$srcdom,$srcnum,
     } elsif ($symb =~ m-adm/navmaps$-) {          $titleref,$allmaps,$newurls) = @_;
         $content_type =  'navmap';      my $newurl;
     } elsif ($symb =~ m-adm/[^/]+/[^/]+/(\d+)/smppg$-) {      if ($url=~ m{^/uploaded/}) {
         $content_type = 'simplepage';          $$titleref=&mt('Copy of').' '.$$titleref;
         my $contents = &Apache::imsexport::templatedpage($content_type,$1,$count,\@uploads);      }
         if ($contents) {      my $now = time;
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);      my $suffix=$$.int(rand(100)).$now;
         }      my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/);
     } elsif ($symb =~ m-lib/templates/simpleproblem\.problem$-) {      if ($oldid =~ m{^(/uploaded/$match_domain/$match_courseid/)(\D+)(\d+)$}) {
         $content_type = 'simpleproblem';          my $path = $1;
         my $contents =  &Apache::imsexport::simpleproblem($symb);          my $prefix = $2;
         if ($contents) {          my $ancestor = $3;
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);          if (length($ancestor) > 10) {
         }              $ancestor = substr($ancestor,-10,10);
     } elsif ($symb =~ m-lib/templates/examupload\.problem$-) {          }
         $content_type = 'examupload';          my $newid;
     } elsif ($symb =~ m-adm/(\w+)/(\w+)/(\d+)/bulletinboard$-) {          if ($prefixchg) {
         $content_type = 'bulletinboard';              if ($folder =~ /^supplemental/) {
         my $contents =  &Apache::imsexport::templatedpage($content_type,$3,$count,\@uploads,$1,$2);                  $prefix =~ s/^default/supplemental/;
         if ($contents) {              } else {
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);                  $prefix =~ s/^supplemental/default/;
         }              }
     } elsif ($symb =~ m-adm/([^/]+)/([^/]+)/aboutme$-) {  
         $content_type = 'aboutme';  
         my $contents =  &Apache::imsexport::templatedpage($content_type,undef,$count,\@uploads,$1,$2);  
         if ($contents) {  
             $$content_file = &store_template($contents,$tempexport,$count,$content_type);  
         }  
     } elsif ($symb =~ m-\.(sequence|page)___\d+___uploaded/$cdom/$cnum/-) {  
         $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');  
     } elsif ($symb =~ m-\.(sequence|page)___\d+___([^/]+)/([^/]+)-) {  
         my $canedit = 0;  
         if ($2 eq $env{'user.domain'} && $3 eq $env{'user.name'})  {  
             $canedit= 1;  
         }          }
 # only include problem code where current user is author          if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) {
         if ($canedit) {              $newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext;
             $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'resource');  
         } else {          } else {
             $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'noedit');              $newurl = "/uploaded/$coursedom/$coursenum/$prefix".$now.'.'.$ext;
         }          }
     } elsif ($symb =~ m-uploaded/$cdom/$cnum-) {          my $counter = 0;
         $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');          my $is_unique = &uniqueness_check($newurl);
     }          if ($folder =~ /^default/) {
     if (@uploads > 0) {              if ($allmaps->{$newurl}) {
         foreach my $item (@uploads) {                  $is_unique = 0;
             my $uploadmsg = '';              }
             &replicate_content($cdom,$cnum,$tempexport,$item,$count,\$uploadmsg,$href,'templateupload');          }
             if ($uploadmsg) {          while ((!$is_unique || $allmaps->{$newurl} || $newurls->{$newurl}) && ($counter < 100)) {
                 $$copyresult .= $uploadmsg."\n";              $counter ++;
               $suffix ++;
               if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) {
                   $newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext;
               } else {
                   $newurl = "/uploaded/$coursedom/$coursenum/$prefix".$ancestor.$suffix.'.'.$ext;
               }
               $is_unique = &uniqueness_check($newurl);
           }
           if ($is_unique) {
               $newurls->{$newurl} = 1;
           } else {
               if ($url=~/\.page$/) {
                   return (undef,&mt('Paste failed: an error occurred creating a unique URL for the composite page'));
               } else {
                   return (undef,&mt('Paste failed: an error occurred creating a unique URL for the folder'));
             }              }
         }          }
     }      }
     if ($message) {      return ($newurl);
         $$copyresult .= $message."\n";  
     }  
 }  }
   
 sub replicate_content {  sub dbcopy {
     my ($cdom,$cnum,$tempexport,$symb,$count,$message,$href,$caller) = @_;      my ($dbref,$coursedom,$coursenum,$lockerrorsref) = @_;
     my ($map,$ind,$url);      my ($url,$result,$errtext);
     if ($caller eq 'templateupload') {      if (ref($dbref) eq 'HASH') {
         $url = $symb;          $url = $dbref->{'src'};
         $url =~ s#//#/#g;          if ($url =~ m{/(smppg|bulletinboard|ext\.tool)$}) {
     } else {               my $prefix = $1;
         ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);              if ($prefix eq 'ext.tool') {
     }                  $prefix = 'exttool';
     my $content;              }
     my $filename;              if (($dbref->{'cdom'} =~ /^$match_domain$/) && 
     my $repstatus;                  ($dbref->{'cnum'} =~ /^$match_courseid$/)) {
     my $content_name;                  my $db_name;
     if ($url =~ m-/([^/]+)$-) {                  my $marker = (split(m{/},$url))[4];
         $filename = $1;                  $marker=~s/\D//g;
         if (!-e $tempexport.'/resources') {                  if ($dbref->{'src'} =~ m{/smppg$}) {
             mkdir($tempexport.'/resources',0700);                      $db_name =
         }                          &Apache::lonsimplepage::get_db_name($url,$marker,
         if (!-e $tempexport.'/resources/'.$count) {                                                              $dbref->{'cdom'},
             mkdir($tempexport.'/resources/'.$count,0700);                                                              $dbref->{'cnum'});
         }                  } elsif ($dbref->{'src'} =~ m{/ext\.tool$}) {
         my $destination = $tempexport.'/resources/'.$count.'/'.$filename;                      $db_name = 'exttool_'.$marker;
         my $copiedfile;  
         if ($copiedfile = Apache::File->new('>'.$destination)) {  
             my $content;  
             if ($caller eq 'resource') {  
                 my $respath =  $Apache::lonnet::perlvar{'lonDocRoot'}.'/res';  
                 my $filepath = &Apache::lonnet::filelocation($respath,$url);  
                 $content = &Apache::lonnet::getfile($filepath);  
                 if ($content eq -1) {  
                     $$message = 'Could not copy file '.$filename;  
                 } else {                  } else {
                     &extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'resource');                      $db_name = 'bulletinpage_'.$marker;
                     $repstatus = 'ok';  
                 }                  }
             } elsif ($caller eq 'uploaded' || $caller eq 'templateupload') {                  my ($suffix,$freedlock,$error) =
                 my $rtncode;                      &Apache::lonnet::get_timebased_id($prefix,'num','templated',
                 $repstatus = &Apache::lonnet::getuploaded('GET',$url,$cdom,$cnum,\$content,$rtncode);                                                        $coursedom,$coursenum,
                 if ($repstatus eq 'ok') {                                                        'concat');
                     if ($url =~ /\.html?$/i) {                  if (!$suffix) {
                         &extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'uploaded');                      if ($prefix eq 'smppg') {
                           $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying a simple page [_1].',$url);
                       } elsif ($prefix eq 'exttool') {
                           $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying an external tool [_1].',$url);
                       } else {
                           $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying a discussion board [_1].',$url);
                       }
                       if ($error) {
                           $errtext .= '<br />'.$error;
                     }                      }
                 } else {                  } else {
                     $$message = 'Could not render '.$url.' server message - '.$rtncode."<br />\n";                      #need to copy the db contents to a new one.
                       my %contents=&Apache::lonnet::dump($db_name,
                                                          $dbref->{'cdom'},
                                                          $dbref->{'cnum'});
                       if (exists($contents{'uploaded.photourl'})) {
                           my $photo = $contents{'uploaded.photourl'};
                           my ($subdir,$fname) =
                               ($photo =~ m{^/uploaded/$match_domain/$match_courseid/+(bulletin|simplepage)/(?:|\d+/)([^/]+)$});
                           my $newphoto;
                           if ($fname ne '') {
                               my $content = &Apache::lonnet::getfile($photo);
                               unless ($content eq '-1') {
                                   $env{'form.'.$suffix.'.photourl'} = $content;
                                   $newphoto = 
                                       &Apache::lonnet::finishuserfileupload($coursenum,$coursedom,$suffix.'.photourl',"$subdir/$suffix/$fname");
                                   delete($env{'form.'.$suffix.'.photourl'});
                               }
                           }
                           if ($newphoto =~ m{^/uploaded/}) {
                               $contents{'uploaded.photourl'} = $newphoto;
                           }
                       }
                       $db_name =~ s{_\d*$ }{_$suffix}x;
                       if (($prefix eq 'exttool') && ($dbref->{'delgradable'}) && ($contents{'gradable'})) {
                           delete($contents{'gradable'});
                       }
                       $result=&Apache::lonnet::put($db_name,\%contents,
                                                    $coursedom,$coursenum);
                       if ($result eq 'ok') {
                           $url =~ s{/(\d*)/(smppg|bulletinboard|ext\.tool)$}{/$suffix/$2}x;
                       }
                   }
                   if (($freedlock ne 'ok') && (ref($lockerrorsref) eq 'HASH')) {
                       $lockerrorsref->{$prefix} =
                           '<div class="LC_error">'.
                           &mt('There was a problem removing a lockfile.');
                       if ($prefix eq 'smppg') {
                           $lockerrorsref->{$prefix} .=
                               ' '.&mt('This will prevent creation of additional simple pages in this course.');
                       } elsif ($prefix eq 'exttool') {
                           $lockerrorsref->{$prefix} .=
                               ' '.&mt('This will prevent addition of more external tools to this course.');
                       } else {
                           $lockerrorsref->{$prefix} .= ' '.&mt('This will prevent creation of additional discussion boards in this course.');
                       }
                       $lockerrorsref->{$prefix} .= ' '.&mt('Please contact the [_1]helpdesk[_2] for assistance.',
                                                        '<a href="/adm/helpdesk" target="_helpdesk">','</a>').
                                                    '</div>';
                 }                  }
             } elsif ($caller eq 'noedit') {  
 # Need to render the resource without the LON-CAPA Internal header and the Post discussion footer, and then set $content equal to this.   
                 $repstatus = 'ok';  
                 $content = 'Not the owner of this resource';   
             }              }
             if ($repstatus eq 'ok') {          } elsif ($url =~ m{/syllabus$}) {
                 print $copiedfile $content;              if (($dbref->{'cdom'} =~ /^$match_domain$/) &&
                   ($dbref->{'cnum'} =~ /^$match_courseid$/)) {
                   if (($dbref->{'cdom'} ne $coursedom) ||
                       ($dbref->{'cnum'} ne $coursenum)) {
                       my %contents=&Apache::lonnet::dump('syllabus',
                                                          $dbref->{'cdom'},
                                                          $dbref->{'cnum'});
                       $result=&Apache::lonnet::put('syllabus',\%contents,
                                                    $coursedom,$coursenum);
                   }
             }              }
             close($copiedfile);  
         } else {  
             $$message = 'Could not open destination file for '.$filename."<br />\n";  
         }          }
     } else {  
         $$message = 'Could not determine name of file for '.$symb."<br />\n";  
     }  
     if ($repstatus eq 'ok') {  
         $content_name = 'resources/'.$count.'/'.$filename;  
     }      }
     return $content_name;      return ($url,$result,$errtext);
 }  }
   
 sub extract_media {  sub copy_templated_files {
     my ($url,$cdom,$cnum,$content,$count,$tempexport,$href,$message,$caller) = @_;      my ($srcurl,$srcdom,$srcnum,$srcmapinfo,$coursedom,$coursenum,$template,$newidx,$newmapname) = @_;
     my ($dirpath,$container);      my ($srcfolder,$srcid,$srcwaspage) = split(/:/,$srcmapinfo);
     my %allfiles = ();      my $srccontainer = 'sequence';
     my %codebase = ();      if ($srcwaspage) {
     if ($url =~ m-(.*/)([^/]+)$-) {          $srccontainer = 'page';
         $dirpath = $1;      }
         $container = $2;      my $srcsymb = "uploaded/$srcdom/$srcnum/$srcfolder.$srccontainer".
     } else {                    '___'.$srcid.'___'.&Apache::lonnet::declutter($srcurl);
         $dirpath = $url;      my $srcprefix = $srcdom.'_'.$srcnum.'.'.$srcsymb;
         $container = '';      my %srcparms=&Apache::lonnet::dump('resourcedata',$srcdom,$srcnum,$srcprefix);
     }      my $newsymb = "uploaded/$coursedom/$coursenum/$newmapname".'___'.$newidx.'___lib/templates/'.
     &Apache::lonnet::extract_embedded_items(undef,undef,\%allfiles,\%codebase,$content);                    $template.'.problem';
     foreach my $embed_file (keys(%allfiles)) {      my $newprefix = $coursedom.'_'.$coursenum.'.'.$newsymb;
         my $filename;      if ($template eq 'simpleproblem') {
         if ($embed_file =~ m#([^/]+)$#) {          $srcprefix .= '.0.';
             $filename = $1;          my $weightprefix = $newprefix;
         } else {          $newprefix .= '.0.';
             $filename = $embed_file;          my @simpleprobqtypes = qw(radio option string essay numerical);
         }          my $qtype=$srcparms{$srcprefix.'questiontype'};
         my $newname = 'res/'.$filename;          if (grep(/^\Q$qtype\E$/,@simpleprobqtypes)) {
         my ($rtncode,$embed_content,$repstatus);              my %newdata;
         my $embed_url;              foreach my $type (@simpleprobqtypes) {
         if ($embed_file =~ m-^/-) {                  if ($type eq $qtype) {
             $embed_url = $embed_file;           # points to absolute path                      $newdata{"$weightprefix.$type.weight"}=1;
         } else {                  } else {
             if ($embed_file =~ m-https?://-) {                      $newdata{"$weightprefix.$type.weight"}=0;
                 next;                           # points to url                  }
             } else {              }
                 $embed_url = $dirpath.$embed_file;  # points to relative path              $newdata{$newprefix.'hiddenparts'} = '!'.$qtype;
               $newdata{$newprefix.'questiontext'} = $srcparms{$srcprefix.'questiontext'};
               $newdata{$newprefix.'hinttext'} = $srcparms{$srcprefix.'hinttext'};
               if ($qtype eq 'numerical') {
                   $newdata{$newprefix.'numericalscript'} = $srcparms{$srcprefix.'numericalscript'};
                   $newdata{$newprefix.'numericalanswer'} = $srcparms{$srcprefix.'numericalanswer'};
                   $newdata{$newprefix.'numericaltolerance'} = $srcparms{$srcprefix.'numericaltolerance'};
                   $newdata{$newprefix.'numericalsigfigs'} = $srcparms{$srcprefix.'numericalsigfigs'};
               } elsif (($qtype eq 'option') || ($qtype eq 'radio')) {
                   my $maxfoils=$srcparms{$srcprefix.'maxfoils'};
                   unless (defined($maxfoils)) { $maxfoils=10; }
                       unless ($maxfoils=~/^\d+$/) { $maxfoils=10; }
                           if ($maxfoils<=0) { $maxfoils=10; }
                               my $randomize=$srcparms{$srcprefix.'randomize'};
                               unless (defined($randomize)) { $randomize='yes'; }
                               unless ($randomize eq 'no') { $randomize='yes'; }
                               $newdata{$newprefix.'maxfoils'} = $maxfoils;
                               $newdata{$newprefix.'randomize'} = $randomize;
                               if ($qtype eq 'option') {
                                   $newdata{$newprefix.'options'} = $srcparms{$srcprefix.'options'};
                               }
                               for (my $i=1; $i<=10; $i++) {
                                   $newdata{$newprefix.'value'.$i} = $srcparms{$srcprefix.'value'.$i};
                                   $newdata{$newprefix.'position'.$i} = $srcparms{$srcprefix.'position'.$i};
                                   $newdata{$newprefix.'text'.$i} = $srcparms{$srcprefix.'text'.$i};
                               }
   
               } elsif (($qtype eq 'option') || ($qtype eq 'radio')) {
                   my $maxfoils=$srcparms{$srcprefix.'maxfoils'};
                   unless (defined($maxfoils)) { $maxfoils=10; }
                   unless ($maxfoils=~/^\d+$/) { $maxfoils=10; }
                   if ($maxfoils<=0) { $maxfoils=10; }
                   my $randomize=$srcparms{$srcprefix.'randomize'};
                   unless (defined($randomize)) { $randomize='yes'; }
                   unless ($randomize eq 'no') { $randomize='yes'; }
                   $newdata{$newprefix.'maxfoils'} = $maxfoils;
                   $newdata{$newprefix.'randomize'} = $randomize;
                   if ($qtype eq 'option') {
                       $newdata{$newprefix.'options'} = $srcparms{$srcprefix.'options'};
                   }
                   for (my $i=1; $i<=10; $i++) {
                       $newdata{$newprefix.'value'.$i} = $srcparms{$srcprefix.'value'.$i};
                       $newdata{$newprefix.'position'.$i} = $srcparms{$srcprefix.'position'.$i};
                       $newdata{$newprefix.'text'.$i} = $srcparms{$srcprefix.'text'.$i};
                   }
               } elsif ($qtype eq 'string') {
                   $newdata{$newprefix.'stringanswer'} = $srcparms{$srcprefix.'stringanswer'};
                   $newdata{$newprefix.'stringtype'} = $srcparms{$srcprefix.'stringtype'};
               }
               if (keys(%newdata)) {
                   my $putres = &Apache::lonnet::cput('resourcedata',\%newdata,$coursedom,
                                                      $coursenum);
                   if ($putres eq 'ok') {
                       &Apache::lonnet::devalidatecourseresdata($coursenum,$coursedom);
                   }
             }              }
         }          }
         if ($caller eq 'resource') {      }
             my $respath =  $Apache::lonnet::perlvar{'lonDocRoot'}.'/res';    }
             my $embed_path = &Apache::lonnet::filelocation($respath,$embed_url);   
             $embed_content = &Apache::lonnet::getfile($embed_path);  sub uniqueness_check {
             unless ($embed_content eq -1) {      my ($newurl) = @_;
                 $repstatus = 'ok';      my $unique = 1;
       foreach my $res (@LONCAPA::map::order) {
           my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
           $url=&LONCAPA::map::qtescape($url);
           if ($newurl eq $url) {
               $unique = 0;
               last;
           }
       }
       return $unique;
   }
   
   sub contained_map_check {
       my ($url,$folder,$coursenum,$coursedom,$removefrommap,$removeparam,$addedmaps,
           $hierarchy,$titles,$allmaps) = @_;
       my $content = &Apache::lonnet::getfile($url);
       unless ($content eq '-1') {
           my $parser = HTML::TokeParser->new(\$content);
           $parser->attr_encoded(1);
           while (my $token = $parser->get_token) {
               next if ($token->[0] ne 'S');
               if ($token->[1] eq 'resource') {
                   next if ($token->[2]->{'type'} eq 'zombie');
                   my $ressrc = $token->[2]->{'src'};
                   if ($ressrc =~ m{^/adm/($match_domain)/$match_courseid/\d+/ext\.tool$}) {
                       my $srcdom = $1;
                       unless ($srcdom eq $coursedom) {
                           $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
                           next;
                       }
                   } elsif ($folder =~ /^supplemental/) {
                       unless (&supp_pasteable($ressrc)) {
                           $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
                           next;
                       }
                   }
                   if ($ressrc =~ m{^/(res|uploaded)/.+\.(sequence|page)$}) {
                       if ($1 eq 'uploaded') {
                           $hierarchy->{$url}{$token->[2]->{'id'}} = $ressrc;
                           $titles->{$url}{$token->[2]->{'id'}} = $token->[2]->{'title'};
                       } else {
                           if ($allmaps->{$ressrc}) {
                               $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
                           } elsif (ref($addedmaps->{$ressrc}) eq 'ARRAY') {
                               $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
                           } else {
                               $addedmaps->{$ressrc} = [$url];
                           }
                       }
                       &contained_map_check($ressrc,$folder,$coursenum,$coursedom,$removefrommap,
                                            $removeparam,$addedmaps,$hierarchy,$titles,$allmaps);
                   }
               } elsif ($token->[1] eq 'param') {
                   if ($folder =~ /^supplemental/) {
                       if (ref($removeparam->{$url}{$token->[2]->{'to'}}) eq 'ARRAY') {
                           push(@{$removeparam->{$url}{$token->[2]->{'to'}}},$token->[2]->{'name'});
                       } else {
                           $removeparam->{$url}{$token->[2]->{'to'}} = [$token->[2]->{'name'}]; 
                       }
                   }
             }              }
         } elsif ($caller eq 'uploaded') {  
               
             $repstatus = &Apache::lonnet::getuploaded('GET',$embed_url,$cdom,$cnum,\$embed_content,$rtncode);  
         }          }
         if ($repstatus eq 'ok') {      }
             my $destination = $tempexport.'/resources/'.$count.'/res';      return;
             if (!-e "$destination") {  }
                 mkdir($destination,0755);  
   sub url_paste_fixups {
       my ($oldurl,$folder,$prefixchg,$cdom,$cnum,$fromcdom,$fromcnum,$allmaps,
           $rewrites,$retitles,$copies,$dbcopies,$zombies,$params,$mapmoves,
           $mapchanges,$tomove,$newsubdir,$newurls,$resdatacopy) = @_;
       my $checktitle;
       if (($prefixchg) &&
           ($oldurl =~ m{^/uploaded/$match_domain/$match_courseid/supplemental})) {
           $checktitle = 1;
       }
       my $skip;
       if ($oldurl =~ m{^\Q/uploaded/$cdom/$cnum/\E(default|supplemental)(_?\d*)\.(?:page|sequence)$}) {
           my $mapid = $1.$2;
           if ($tomove->{$mapid}) {
               $skip = 1;
           }
       }
       my $file = &Apache::lonnet::getfile($oldurl);
       return if ($file eq '-1');
       my $parser = HTML::TokeParser->new(\$file);
       $parser->attr_encoded(1);
       my $changed = 0;
       while (my $token = $parser->get_token) {
           next if ($token->[0] ne 'S');
           if ($token->[1] eq 'resource') {
               my $ressrc = $token->[2]->{'src'};
               next if ($ressrc eq '');
               my $id = $token->[2]->{'id'};
               my $title = $token->[2]->{'title'};
               if ($checktitle) {
                   if ($title =~ m{\d+\Q___&amp;&amp;&amp;___\E$match_username\Q___&amp;&amp;&amp;___\E$match_domain\Q___&amp;&amp;&amp;___\E(.+)$}) {
                       $retitles->{$oldurl}{$id} = $ressrc;
                   }
               }
               next if ($token->[2]->{'type'} eq 'external');
               if ($token->[2]->{'type'} eq 'zombie') {
                   next if ($skip);  
                   $zombies->{$oldurl}{$id} = $ressrc;
                   $changed = 1;
               } elsif ($ressrc =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) {
                   my $srcdom = $1;
                   my $srcnum = $2;
                   my $rem = $3;
                   my $newurl;
                   my $mapname;
                   if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) {
                       my $prefix = $1;
                       $mapname = $prefix.$2;
                       if ($tomove->{$mapname}) {
                           &url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,$cnum,
                                             $srcdom,$srcnum,$allmaps,$rewrites,
                                             $retitles,$copies,$dbcopies,$zombies,
                                             $params,$mapmoves,$mapchanges,$tomove,
                                             $newsubdir,$newurls,$resdatacopy);
                           next;
                       } else {
                           ($newurl,my $error) =
                               &get_newmap_url($ressrc,$folder,$prefixchg,$cdom,$cnum,
                                               $srcdom,$srcnum,\$title,$allmaps,$newurls);
                           if ($newurl =~ /(?:default|supplemental)_(\d+)\.(?:sequence|page)$/) {
                               $newsubdir->{$ressrc} = $1;
                           }
                           if ($error) {
                               next;
                           }
                       }
                   }
                   if (($srcdom ne $cdom) || ($srcnum ne $cnum) || ($prefixchg) ||
                       ($mapchanges->{$oldurl}) || (($newurl ne '') && ($newurl ne $oldurl))) {
                      
                       if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) {
                           $rewrites->{$oldurl}{$id} = $ressrc;
                           $mapchanges->{$ressrc} = 1;
                           unless (&url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,
                                                     $cnum,$srcdom,$srcnum,$allmaps,
                                                     $rewrites,$retitles,$copies,$dbcopies,
                                                     $zombies,$params,$mapmoves,$mapchanges,
                                                     $tomove,$newsubdir,$newurls,$resdatacopy)) {
                               $mapmoves->{$ressrc} = 1;
                           }
                           $changed = 1;
                       } else {
                           $rewrites->{$oldurl}{$id} = $ressrc;
                           $copies->{$oldurl}{$ressrc} = $id;
                           $changed = 1;
                       }
                   }
               } elsif ($ressrc =~ m{^/adm/($match_domain)/($match_courseid)/(.+)$}) {
                   next if ($skip);
                   my $srcdom = $1;
                   my $srcnum = $2;
                   my $rem = $3;
                   my ($is_exttool,$exttoolchg);
                   if ($rem =~ m{\d+/ext\.tool$}) {
                       $is_exttool = 1;
                   }
                   if (($srcdom ne $cdom) || ($srcnum ne $cnum)) {
                       $rewrites->{$oldurl}{$id} = $ressrc;
                       $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
                       $dbcopies->{$oldurl}{$id}{'cdom'} = $srcdom;
                       $dbcopies->{$oldurl}{$id}{'cnum'} = $srcnum;
                       $changed = 1;
                       if ($is_exttool) {
                           $exttoolchg = 1;
                       }
                   } elsif (($rem =~ m{\d+/ext\.tool$}) &&
                            ($env{'form.docs.markedcopy_options'} ne 'move')) {
                       $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
                       $dbcopies->{$oldurl}{$id}{'cdom'} = $srcdom;
                       $dbcopies->{$oldurl}{$id}{'cnum'} = $srcnum;
                       $changed = 1;
                       $exttoolchg = 1;
                   }
                   if (($is_exttool) && ($prefixchg)) {
                       if ($oldurl =~ m{^/uploaded/$match_domain/$match_courseid/default}) {
                           if ($exttoolchg) {
                               $dbcopies->{$oldurl}{$id}{'delgradable'} = 1;
                           }
                       }
                   }
               } elsif ($ressrc =~ m{^/adm/$match_domain/$match_username/\d+/(smppg|bulletinboard)$}) {
                   if (($fromcdom ne $cdom) || ($fromcnum ne $cnum) ||
                       ($env{'form.docs.markedcopy_options'} ne 'move')) {
                       $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
                       $dbcopies->{$oldurl}{$id}{'cdom'} = $fromcdom;
                       $dbcopies->{$oldurl}{$id}{'cnum'} = $fromcnum;
                       $changed = 1;
                   }
               } elsif ($ressrc eq '/res/lib/templates/simpleproblem.problem') {
                   if (($fromcdom ne $cdom) || ($fromcnum ne $cnum)) {
                       $resdatacopy->{$oldurl}{$id}{'src'} = $ressrc;
                       $resdatacopy->{$oldurl}{$id}{'cdom'} = $fromcdom;
                       $resdatacopy->{$oldurl}{$id}{'cnum'} = $fromcnum;
                   }
               } elsif ($ressrc =~ m{^/public/($match_domain)/($match_courseid)/(.+)$}) {
                   next if ($skip);
                   my $srcdom = $1;
                   my $srcnum = $2;
                   if (($srcdom ne $cdom) || ($srcnum ne $cnum)) {
                       $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
                       $dbcopies->{$oldurl}{$id}{'cdom'} = $srcdom;
                       $dbcopies->{$oldurl}{$id}{'cnum'} = $srcnum;
                       $changed = 1;
                   }
             }              }
             $destination .= '/'.$filename;          } elsif ($token->[1] eq 'param') {
             my $copiedfile;              next if ($skip);
             if ($copiedfile = Apache::File->new('>'.$destination)) {              my $to = $token->[2]->{'to'}; 
                 print $copiedfile $embed_content;              if ($to ne '') {
                 push @{$href}, 'resources/'.$count.'/res/'.$filename;                  if (ref($params->{$oldurl}{$to}) eq 'ARRAY') {
                 my $attrib_regexp = '';                      push(@{$params->{$oldurl}{$to}},$token->[2]->{'name'});
                 if (@{$allfiles{$embed_file}} > 1) {  
                     $attrib_regexp = join('|',@{$allfiles{$embed_file}});  
                 } else {                  } else {
                     $attrib_regexp = $allfiles{$embed_file}[0];                      @{$params->{$oldurl}{$to}} = ($token->[2]->{'name'});
                 }                  }
                 $$content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$embed_file\E(['"]?)#$1$newname$2#gi;              }
                 if ($caller eq 'resource' && $container =~ /\.(problem|library)$/) {          }
                     $$content =~ s#\Q$embed_file\E#$newname#gi;      }
       return $changed;
   }
   
   sub apply_fixups {
       my ($folder,$is_map,$cdom,$cnum,$errors,$updated,$info,$moves,$prefixchg,
           $oldurl,$url,$caller) = @_;
       my (%rewrites,%zombies,%removefrommap,%removeparam,%dbcopies,%retitles,
           %params,%newsubdir,%before,%after,%copies,%docmoves,%mapmoves,@msgs,
           %resdatacopy,%lockerrors,$lockmsg);
       if (ref($updated) eq 'HASH') {
           if (ref($updated->{'rewrites'}) eq 'HASH') {
               %rewrites = %{$updated->{'rewrites'}};
           }
           if (ref($updated->{'zombies'}) eq 'HASH') {
               %zombies = %{$updated->{'zombies'}};
           }
           if (ref($updated->{'removefrommap'}) eq 'HASH') {
               %removefrommap = %{$updated->{'removefrommap'}};
           }
           if (ref($updated->{'removeparam'}) eq 'HASH') {
               %removeparam = %{$updated->{'removeparam'}};
           }
           if (ref($updated->{'dbcopies'}) eq 'HASH') {
               %dbcopies = %{$updated->{'dbcopies'}};
           }
           if (ref($updated->{'retitles'}) eq 'HASH') {
               %retitles = %{$updated->{'retitles'}};
           }
           if (ref($updated->{'resdatacopy'}) eq 'HASH') {
               %resdatacopy = %{$updated->{'resdatacopy'}};
           }
       }
       if (ref($info) eq 'HASH') {
           if (ref($info->{'newsubdir'}) eq 'HASH') {
               %newsubdir = %{$info->{'newsubdir'}};
           }
           if (ref($info->{'params'}) eq 'HASH') {
               %params = %{$info->{'params'}};
           }
           if (ref($info->{'before'}) eq 'HASH') {
               %before = %{$info->{'before'}};
           }
           if (ref($info->{'after'}) eq 'HASH') {
               %after = %{$info->{'after'}};
           }
       }
       if (ref($moves) eq 'HASH') {
           if (ref($moves->{'copies'}) eq 'HASH') {
               %copies = %{$moves->{'copies'}};
           }
           if (ref($moves->{'docmoves'}) eq 'HASH') {
               %docmoves = %{$moves->{'docmoves'}};
           }
           if (ref($moves->{'mapmoves'}) eq 'HASH') {
               %mapmoves = %{$moves->{'mapmoves'}};
           }
       }
       foreach my $key (keys(%copies),keys(%docmoves)) {
           my @allcopies;
           if (exists($copies{$key})) {
               if (ref($copies{$key}) eq 'HASH') {
                   my %added;
                   foreach my $innerkey (keys(%{$copies{$key}})) {
                       if (($innerkey ne '') && (!$added{$innerkey})) {
                           push(@allcopies,$innerkey);
                           $added{$innerkey} = 1;
                       }
                   }
                   undef(%added);
               }
           }
           if ($key eq $oldurl) {
               if ((exists($docmoves{$key}))) {
                   unless (grep(/^\Q$oldurl\E$/,@allcopies)) {
                       push(@allcopies,$oldurl);
                   }
               }
           }
           if (@allcopies > 0) {
               foreach my $item (@allcopies) {
                   my ($relpath,$oldsubdir,$fname) = 
                       ($item =~ m{^(/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(default|\d+)/.*/)([^/]+)$});
                   if ($fname ne '') {
                       my $content = &Apache::lonnet::getfile($item);
                       unless ($content eq '-1') {
                           my $storefn;
                           if (($key eq $oldurl) && (exists($docmoves{$key}))) {
                               $storefn = $docmoves{$key};
                           } else {
                               $storefn = $relpath;
                               $storefn =~s{^/uploaded/$match_domain/$match_courseid/}{};
                               if ($prefixchg && $before{'doc'} && $after{'doc'}) {
                                   $storefn =~ s/^\Q$before{'doc'}\E/$after{'doc'}/;
                               }
                               if ($newsubdir{$key}) {
                                   $storefn =~ s#^(docs|supplemental)/\Q$oldsubdir\E/#$1/$newsubdir{$key}/#;
                               }
                           }
                           &copy_dependencies($item,$storefn,$relpath,$errors,\$content);
                           my $copyurl = 
                               &Apache::lonclonecourse::writefile($env{'request.course.id'},
                                                                  $storefn.$fname,$content);
                           if ($copyurl eq '/adm/notfound.html') {
                               if (exists($docmoves{$oldurl})) {
                                   return &mt('Paste failed: an error occurred copying the file.');
                               } elsif (ref($errors) eq 'HASH') {
                                   $errors->{$item} = 1;
                               }
                           }
                       }
                 }                  }
             }              }
           }
       }
       foreach my $key (keys(%mapmoves)) {
           my $storefn=$key;
           $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
           if ($prefixchg && $before{'map'} && $after{'map'}) {
               $storefn =~ s/^\Q$before{'map'}\E/$after{'map'}/;
           }
           if ($newsubdir{$key}) {
               $storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
           }
           my $mapcontent = &Apache::lonnet::getfile($key);
           if ($mapcontent eq '-1') {
               if (ref($errors) eq 'HASH') {
                   $errors->{$key} = 1;
               }
         } else {          } else {
             $$message .= 'replication of embedded file - '.$embed_file.' in '.$url.' failed, reason -'.$rtncode."<br />\n";              my $newmap =
                   &Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn,
                                                      $mapcontent);
               if ($newmap eq '/adm/notfound.html') {
                   if (ref($errors) eq 'HASH') {
                       $errors->{$key} = 1;
                   }
               }
         }          }
     }      }
     return;      my %updates;
 }      if ($is_map) {
           if (ref($updated) eq 'HASH') {
               foreach my $type (keys(%{$updated})) {
                   if (ref($updated->{$type}) eq 'HASH') {
                       foreach my $key (keys(%{$updated->{$type}})) {
                           $updates{$key} = 1;
                       }
                   }
               }
           }
           foreach my $key (keys(%updates)) {
               my (%torewrite,%toretitle,%toremove,%remparam,%currparam,%zombie,%newdb);
               if (ref($rewrites{$key}) eq 'HASH') {
                   %torewrite = %{$rewrites{$key}};
               }
               if (ref($retitles{$key}) eq 'HASH') {
                   %toretitle = %{$retitles{$key}};
               }
               if (ref($removefrommap{$key}) eq 'HASH') {
                   %toremove = %{$removefrommap{$key}};
               }
               if (ref($removeparam{$key}) eq 'HASH') {
                   %remparam = %{$removeparam{$key}};
               }
               if (ref($zombies{$key}) eq 'HASH') {
                   %zombie = %{$zombies{$key}};
               }
               if (ref($dbcopies{$key}) eq 'HASH') {
                   foreach my $idx (keys(%{$dbcopies{$key}})) {
                       if (ref($dbcopies{$key}{$idx}) eq 'HASH') {
                           my ($newurl,$result,$errtext) =
                               &dbcopy($dbcopies{$key}{$idx},$cdom,$cnum,\%lockerrors);
                           if ($result eq 'ok') {
                               $newdb{$idx} = $newurl;
                           } elsif (ref($errors) eq 'HASH') {
                               $errors->{$key} = 1;
                           }
                           push(@msgs,$errtext);
                       }
                   }
               }
               if (ref($resdatacopy{$key}) eq 'HASH') {
                   if ($newsubdir{$key}) {
   
 sub store_template {                  }
     my ($contents,$tempexport,$count,$content_type) = @_;                  foreach my $idx (keys(%{$resdatacopy{$key}})) {
     if ($contents) {                      if (ref($resdatacopy{$key}{$idx}) eq 'HASH') {
         if ($tempexport) {                          my $srcurl = $resdatacopy{$key}{$idx}{'src'};
             if (!-e $tempexport.'/resources') {                          if ($srcurl =~ m{^/res/lib/templates/(\w+)\.problem$}) {
                 mkdir($tempexport.'/resources',0700);                              my $template = $1;
                               if (($resdatacopy{$key}{$idx}{'cdom'} =~ /^$match_domain$/) &&
                                   ($resdatacopy{$key}{$idx}{'cnum'} =~ /^$match_courseid$/)) {
                                   my $srcdom = $resdatacopy{$key}{$idx}{'cdom'};
                                   my $srcnum = $resdatacopy{$key}{$idx}{'cnum'};
                                   my ($newmapname) = ($key =~ m{/([^/]+)$});
                                   my ($srcfolder,$srccontainer) = split(/\./,$newmapname);
                                   my $srcmapinfo = $srcfolder.':'.$idx;
                                   if ($srccontainer eq 'page') {
                                       $srcmapinfo .= ':1';
                                   }
                                   if ($newsubdir{$key}) {
                                       $newmapname =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
                                   }
                                   &copy_templated_files($srcurl,$srcdom,$srcnum,$srcmapinfo,$cdom,
                                                         $cnum,$template,$idx,$newmapname);
                               }
                           }
                       }
                   }
               }
               if (ref($params{$key}) eq 'HASH') {
                   %currparam = %{$params{$key}};
               }
               my ($errtext,$fatal) = &LONCAPA::map::mapread($key);
               if ($fatal) {
                   return ($errtext);
               }
               for (my $i=0; $i<@LONCAPA::map::zombies; $i++) {
                   if (defined($LONCAPA::map::zombies[$i])) {
                       my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::zombies[$i]);
                       if ($zombie{$i} eq $src) {
                           undef($LONCAPA::map::zombies[$i]);
                       }
                   }
               }
               my $total = scalar(@LONCAPA::map::order) - 1;
               for (my $i=$total; $i>=0; $i--) {
                   my $idx = $LONCAPA::map::order[$i];
                   if (defined($LONCAPA::map::resources[$idx])) {
                       my $changed;
                       my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::resources[$idx]);
                       if ((exists($toremove{$idx})) && 
                           ($toremove{$idx} eq &LONCAPA::map::qtescape($src))) {
                           splice(@LONCAPA::map::order,$i,1);
                           if (ref($currparam{$idx}) eq 'ARRAY') {
                               foreach my $name (@{$currparam{$idx}}) {
                                   &LONCAPA::map::delparameter($idx,$name);
                               }
                           }
                           next;
                       }
                       my $origsrc = $src;
                       if ((exists($toretitle{$idx})) && ($toretitle{$idx} eq $src)) {
                           if ($title =~ m{^\d+\Q___&amp;&amp;&amp;___\E$match_username\Q___&amp;&amp;&amp;___\E$match_domain\Q___&amp;&amp;&amp;___\E(.+)$}) {
                               $changed = 1;
                           }
                       }
                       if ((exists($torewrite{$idx})) && ($torewrite{$idx} eq $src)) {
                           $src =~ s{^/(uploaded|adm|public)/$match_domain/$match_courseid/}{/$1/$cdom/$cnum/};
                           if ($origsrc =~ m{^/uploaded/}) {
                               if ($prefixchg && $before{'map'} && $after{'map'}) {
                                   if ($src =~ /\.(page|sequence)$/) {
                                       $src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before{'map'}\E#$1$after{'map'}#;
                                   } else {
                                       $src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before{'doc'}\E#$1$after{'doc'}#;
                                   }
                               }
                               if ($origsrc =~ /\.(page|sequence)$/) {
                                   if ($newsubdir{$origsrc}) {
                                       $src =~ s#^(/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_)(\d+)#$1$newsubdir{$origsrc}#;
                                   }
                               } elsif ($newsubdir{$key}) {
                                   $src =~ s#^(/uploaded/$match_domain/$match_courseid/\w+/)(\d+)#$1$newsubdir{$key}#;
                               }
                           }
                           $changed = 1;
                       } elsif ($newdb{$idx} ne '') {
                           $src = $newdb{$idx};
                           $changed = 1;
                       }
                       if ($changed) {
                           $LONCAPA::map::resources[$idx] = join(':',($title,&LONCAPA::map::qtunescape($src),$ext,$type));
                       }
                   }
             }              }
             if (!-e $tempexport.'/resources/'.$count) {              foreach my $idx (keys(%remparam)) {
                 mkdir($tempexport.'/resources/'.$count,0700);                  if (ref($remparam{$idx}) eq 'ARRAY') {
                       foreach my $name (@{$remparam{$idx}}) {   
                           &LONCAPA::map::delparameter($idx,$name);
                       }
                   }
             }              }
             my $destination = $tempexport.'/resources/'.$count.'/'.$content_type.'.xml';              if (values(%lockerrors) > 0) {
             my $storetemplate;                  $lockmsg = join('<br />',values(%lockerrors));
             if ($storetemplate = Apache::File->new('>'.$destination)) {  
                 print $storetemplate $contents;  
                 close($storetemplate);  
             }              }
             if ($content_type eq 'external') {              my $storefn;
                 return 'resources/'.$count.'/'.$content_type.'.html';              if ($key eq $oldurl) {
                   $storefn = $url;
                   $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
             } else {              } else {
                 return 'resources/'.$count.'/'.$content_type.'.xml';                  $storefn = $key;
                   $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
                   if ($prefixchg && $before{'map'} && $after{'map'}) {
                       $storefn =~ s/^\Q$before{'map'}\E/$after{'map'}/;
                   }
                   if ($newsubdir{$key}) {
                       $storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
                   }
               }
               my $report;
               if ($folder !~ /^supplemental/) {
                   $report = 1;
               }
               (my $outtext,$errtext) =
                   &LONCAPA::map::storemap("/uploaded/$cdom/$cnum/$storefn",1,$report);
               if ($errtext) {
                   if ($caller eq 'paste') {
                       return (&mt('Paste failed: an error occurred saving the folder or page.'));
                   }
             }              }
         }          }
     }      }
       return ('ok',\@msgs,$lockmsg);
 }  }
   
 # Imports the given (name, url) resources into the course  sub copy_dependencies {
 # coursenum, coursedom, and folder must precede the list      my ($item,$storefn,$relpath,$errors,$contentref) = @_;
 sub group_import {      my $content;
     my $coursenum = shift;      if (ref($contentref)) {
     my $coursedom = shift;          $content = $$contentref;
     my $folder = shift;      } else {
     my $container = shift;          $content = &Apache::lonnet::getfile($item);
     my $caller = shift;      }
     while (@_) {      unless ($content eq '-1') {
  my $name = shift;          my $mm = new File::MMagic;
  my $url = shift;          my $mimetype = $mm->checktype_contents($content);
         if (($url =~ m#^/uploaded/$coursedom/$coursenum/(default_\d+\.)(page|sequence)$#) && ($caller eq 'londocs')) {          if ($mimetype eq 'text/html') {
             my $errtext = '';              my (%allfiles,%codebase,$state);
             my $fatal = 0;              my $res = &Apache::lonnet::extract_embedded_items(undef,\%allfiles,\%codebase,\$content);
             my $newmapstr = '<map>'."\n".              if ($res eq 'ok') {
                             '<resource id="1" src="" type="start"></resource>'."\n".                  my ($numexisting,$numpathchanges,$existing);
                             '<link from="1" to="2" index="1"></link>'."\n".                  (undef,$numexisting,$numpathchanges,$existing) =
                             '<resource id="2" src="" type="finish"></resource>'."\n".                      &Apache::loncommon::ask_for_embedded_content(
                             '</map>';                          '/adm/coursedocs',$state,\%allfiles,\%codebase,
             $env{'form.output'}=$newmapstr;                          {'error_on_invalid_names'   => 1,
             my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom,                           'ignore_remote_references' => 1,
                                                 'output',$1.$2);                           'docs_url'                 => $item,
             if ($result != m|^/uploaded/|) {                           'context'                  => 'paste'});
                 $errtext.='Map not saved: A network error occured when trying to save the new map. ';                  if ($numexisting > 0) {
                 $fatal = 2;                      if (ref($existing) eq 'HASH') {
                           foreach my $dep (keys(%{$existing})) {
                               my $depfile = $dep;
                               unless ($depfile =~ m{^\Q$relpath\E}) {
                                   $depfile = $relpath.$dep;
                               }
                               my $depcontent = &Apache::lonnet::getfile($depfile);
                               unless ($depcontent eq '-1') {
                                   my $storedep = $dep;
                                   $storedep =~ s{^\Q$relpath\E}{};
                                   my $dep_url =
                                       &Apache::lonclonecourse::writefile(
                                           $env{'request.course.id'},
                                           $storefn.$storedep,$depcontent);
                                   if ($dep_url eq '/adm/notfound.html') {
                                       if (ref($errors) eq 'HASH') {
                                           $errors->{$depfile} = 1;
                                       }
                                   } else {
                                       &copy_dependencies($depfile,$storefn,$relpath,$errors,\$depcontent);
                                   }
                               }
                           }
                       }
                   }
             }              }
             if ($fatal) {          }
                 return ($errtext,$fatal);      }
       return;
   }
   
   my %parameter_type = ( 'randompick'     => 'int_pos',
          'hiddenresource' => 'string_yesno',
          'encrypturl'     => 'string_yesno',
          'randomorder'    => 'string_yesno',);
   my $valid_parameters_re = join('|',keys(%parameter_type));
   # set parameters
   sub update_parameter {
       if ($env{'form.changeparms'} eq 'all') {
           my (@allidx,@allmapidx,%allchecked,%currchecked);
           %allchecked = (
                            'hiddenresource' => {},
                            'encrypturl'     => {},
                            'randompick'     => {},
                            'randomorder'    => {},
                         );
           foreach my $which (keys(%allchecked)) {
               $env{'form.all'.$which} =~ s/,$//;
               if ($which eq 'randompick') {
                   foreach my $item (split(/,/,$env{'form.all'.$which})) {
                       my ($res,$value) = split(/:/,$item);
                       if ($value =~ /^\d+$/) {
                           $allchecked{$which}{$res} = $value;
                       }
                   }
               } else {
                   if ($env{'form.all'.$which}) {
                       map { $allchecked{$which}{$_} = 1; } split(/,/,$env{'form.all'.$which});
                   }
             }              }
         }          }
  if ($url) {          my $haschanges = 0;
     my $idx = &Apache::lonratedt::getresidx($url);          foreach my $res (@LONCAPA::map::order) {
     $Apache::lonratedt::order[$#Apache::lonratedt::order+1]=$idx;              my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
     my $ext = 'false';              $name=&LONCAPA::map::qtescape($name);
     if ($url=~/^http:\/\//) { $ext = 'true'; }              $url=&LONCAPA::map::qtescape($url);
     $url =~ s/:/\&colon;/g;              next unless ($name && $url);
     $name =~ s/:/\&colon;/g;              my $is_map;
     $Apache::lonratedt::resources[$idx] =               if ($url =~ m{/uploaded/.+\.(page|sequence)$}) {
  join ':', ($name, $url, $ext, 'normal', 'res');                  $is_map = 1;
  }              }
               foreach my $which (keys(%allchecked)) {
                   if (($which eq 'randompick' || $which eq 'randomorder')) {
                       next if (!$is_map);
                   } 
                   my $oldvalue = 0;
                   my $newvalue = 0;
                   if ($allchecked{$which}{$res}) {
                       $newvalue = $allchecked{$which}{$res};
                   }
                   my $current = (&LONCAPA::map::getparameter($res,'parameter_'.$which))[0];
                   if ($which eq 'randompick') {
                       if ($current =~ /^(\d+)$/) {
                           $oldvalue = $1;
                       }
                   } else {
                       if ($current =~ /^yes$/i) {
                           $oldvalue = 1;
                       }
                   }
                   if ($oldvalue ne $newvalue) {
                       $haschanges = 1;
                       if ($newvalue) {
                           my $storeval = 'yes';
                           if ($which eq 'randompick') {
                               $storeval = $newvalue;
                           }
                           &LONCAPA::map::storeparameter($res,'parameter_'.$which,
                                                         $storeval,
                                                         $parameter_type{$which});
                           &remember_parms($res,$which,'set',$storeval);
                       } elsif ($oldvalue) {
                           &LONCAPA::map::delparameter($res,'parameter_'.$which);
                           &remember_parms($res,$which,'del');
                       }
                   }
               }
           }
           return $haschanges;
       } else {
           my $haschanges = 0;
           return $haschanges if ($env{'form.changeparms'} !~ /^($valid_parameters_re)$/);
   
           my $which = $env{'form.changeparms'};
           my $idx = $env{'form.setparms'};
           my $oldvalue = 0;
           my $newvalue = 0;
           my $current = (&LONCAPA::map::getparameter($idx,'parameter_'.$which))[0];
           if ($which eq 'randompick') {
               if ($current =~ /^(\d+)$/) {
                   $oldvalue = $1;
               }
           } elsif ($current =~ /^yes$/i) {
               $oldvalue = 1;
           }
           if ($env{'form.'.$which.'_'.$idx}) {
       $newvalue = ($which eq 'randompick') ? $env{'form.rpicknum_'.$idx}
                                            : 1;
           }
           if ($oldvalue ne $newvalue) {
               $haschanges = 1;
               if ($newvalue) {
                   my $storeval = 'yes';
                   if ($which eq 'randompick') {
                       $storeval = $newvalue;
                   }
           &LONCAPA::map::storeparameter($idx, 'parameter_'.$which, $storeval,
                 $parameter_type{$which});
           &remember_parms($idx,$which,'set',$storeval);
               } else {
           &LONCAPA::map::delparameter($idx,'parameter_'.$which);
           &remember_parms($idx,$which,'del');
               }
           }
           return $haschanges;
     }      }
     return &storemap($coursenum, $coursedom, $folder.'.'.$container);  
 }  }
   
 sub breadcrumbs {  sub handle_edit_cmd {
     my ($where)=@_;      my ($coursenum,$coursedom) =@_;
     &Apache::lonhtmlcommon::clear_breadcrumbs();      my $haschanges = 0;
     my (@folders);      if ($env{'form.cmd'} eq '') {
     if ($env{'form.pagepath'}) {          return $haschanges; 
         @folders = split('&',$env{'form.pagepath'});      }
     } else {      my ($cmd,$idx)=split('_',$env{'form.cmd'});
         @folders=split('&',$env{'form.folderpath'});  
     }      my $ratstr = $LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
     my $folderpath;      my ($title, $url, @rrest) = split(':', $ratstr);
     my $cpinfo='';  
     if ($env{'form.markedcopy_url'}) {      if ($cmd eq 'remove') {
        $cpinfo='&markedcopy_url='.   if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
                &escape($env{'form.markedcopy_url'}).      ($url!~/$LONCAPA::assess_page_seq_re/)) {
                '&markedcopy_title='.      &Apache::lonnet::removeuploadedurl($url);
                &escape($env{'form.markedcopy_title'});   } else {
     }      &LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
     while (@folders) {   }
  my $folder=shift(@folders);   splice(@LONCAPA::map::order, $idx, 1);
  my $foldername=shift(@folders);          $haschanges = 1;
  if ($folderpath) {$folderpath.='&';}      } elsif ($cmd eq 'cut') {
  $folderpath.=$folder.'&'.$foldername;   &LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
  my $url='/adm/coursedocs?folderpath='.   splice(@LONCAPA::map::order, $idx, 1);
     &escape($folderpath);          $haschanges = 1;
     &Apache::lonhtmlcommon::add_breadcrumb(      } elsif ($cmd eq 'up'
       {'href'=>$url.$cpinfo,       && ($idx) && (defined($LONCAPA::map::order[$idx-1]))) {
        'title'=>&unescape($foldername),   @LONCAPA::map::order[$idx-1,$idx] = @LONCAPA::map::order[$idx,$idx-1];
        'text'=>'<font size="+1">'.          $haschanges = 1;
    &unescape($foldername).'</font>'      } elsif ($cmd eq 'down'
        });       && defined($LONCAPA::map::order[$idx+1])) {
           @LONCAPA::map::order[$idx+1,$idx] = @LONCAPA::map::order[$idx,$idx+1];
             $haschanges = 1;
       } elsif ($cmd eq 'rename') {
    my $comment = &LONCAPA::map::qtunescape($env{'form.title'});
    if ($comment=~/\S/) {
       $LONCAPA::map::resources[$LONCAPA::map::order[$idx]]=
    $comment.':'.join(':', $url, @rrest);
    }
   # Devalidate title cache
    my $renamed_url=&LONCAPA::map::qtescape($url);
    &Apache::lonnet::devalidate_title_cache($renamed_url);
           $haschanges = 1;
       } elsif ($cmd eq 'setalias') {
           my $newvalue = $env{'form.alias'};
           if ($newvalue ne '') {
               unless (Apache::lonnet::get_symb_from_alias($newvalue)) {
                   &LONCAPA::map::storeparameter($idx,'parameter_0_mapalias',$newvalue,
                                                 'string');
                   &remember_parms($idx,'mapalias','set',$newvalue);
                   $haschanges = 1;
               }
           }
       } elsif ($cmd eq 'delalias') {
           my $current = (&LONCAPA::map::getparameter($idx,'parameter_0_mapalias'))[0];  
           if ($current ne '') {
               &LONCAPA::map::delparameter($idx,'parameter_0_mapalias');
               &remember_parms($idx,'mapalias','del');
               $haschanges = 1;
           }
     }      }
     return &Apache::lonhtmlcommon::breadcrumbs(undef,undef,0,'nohelp',      return $haschanges;
        'LC_docs_path');  
 }  }
   
 sub editor {  sub editor {
     my ($r,$coursenum,$coursedom,$folder,$allowed,$upload_output)=@_;      my ($r,$coursenum,$coursedom,$folder,$allowed,$upload_output,$crstype,
     my $errtext='';          $supplementalflag,$orderhash,$iconpath,$pathitem,$ltitoolsref,
     my $fatal=0;          $canedit,$hostname,$navmapref,$hiddentop)=@_;
     my $container='sequence';      my ($randompick,$ishidden,$isencrypted,$plain,$is_random_order,$container);
     if ($env{'form.pagepath'}) {      if ($allowed) {
         $container='page';          (my $breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,
            $is_random_order,$container) =
               &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
           $r->print($breadcrumbtrail);
       } elsif ($env{'form.folderpath'} =~ /\:1$/) {
           $container = 'page'; 
       } else {
           $container = 'sequence';
     }      }
     ($errtext,$fatal)=  
               &mapread($coursenum,$coursedom,$folder.'.'.$container);      my $jumpto;
     if ($#Apache::lonratedt::order<1) {  
  my $idx=&Apache::lonratedt::getresidx();      unless ($supplementalflag) {
  if ($idx<=0) { $idx=1; }          $jumpto = "uploaded/$coursedom/$coursenum/$folder.$container";
         $Apache::lonratedt::order[0]=$idx;  
         $Apache::lonratedt::resources[$idx]='';  
     }      }
     if (defined($env{'form.markcopy'})) {  
 # Mark for copying      unless ($allowed) {
  my ($title,$url)=split(':',$Apache::lonratedt::resources[$Apache::lonratedt::order[$env{'form.markcopy'}]]);          $randompick = -1;
  $env{'form.markedcopy_title'}=$title;  
  $env{'form.markedcopy_url'}=$url;  
     }      }
     $r->print(&breadcrumbs($folder));  
     if ($fatal) {      my ($errtext,$fatal);
    $r->print('<p><font color="red">'.$errtext.'</font></p>');      if (($folder eq '') && (!$supplementalflag)) {
           if (@LONCAPA::map::order) {
               undef(@LONCAPA::map::order);
               undef(@LONCAPA::map::resources);
               undef(@LONCAPA::map::resparms);
               undef(@LONCAPA::map::zombies);
           }
           $folder = 'default';
           $container = 'sequence'; 
     } else {      } else {
           ($errtext,$fatal) = &mapread($coursenum,$coursedom,
        $folder.'.'.$container);
           return $errtext if ($fatal);
       }
   
       if ($#LONCAPA::map::order<1) {
    my $idx=&LONCAPA::map::getresidx();
    if ($idx<=0) { $idx=1; }
           $LONCAPA::map::order[0]=$idx;
           $LONCAPA::map::resources[$idx]='';
       }
   
 # ------------------------------------------------------------ Process commands  # ------------------------------------------------------------ Process commands
   
 # ---------------- if they are for this folder and user allowed to make changes  # ---------------- if they are for this folder and user allowed to make changes
  if (($allowed) && ($env{'form.folder'} eq $folder)) {      if (($allowed && $canedit) && ($env{'form.folder'} eq $folder)) {
 # set parameters and change order  # set parameters and change order
     if (defined($env{'form.setparms'})) {   &snapshotbefore();
  my $idx=$env{'form.setparms'};  
 # set parameters  
  if ($env{'form.randpick_'.$idx}) {  
     &Apache::lonratedt::storeparameter($idx,'parameter_randompick',$env{'form.randpick_'.$idx},'int_pos');  
  } else {  
     &Apache::lonratedt::delparameter($idx,'parameter_randompick');  
  }  
  if ($env{'form.hidprs_'.$idx}) {  
     &Apache::lonratedt::storeparameter($idx,'parameter_hiddenresource','yes','string_yesno');  
  } else {  
     &Apache::lonratedt::delparameter($idx,'parameter_hiddenresource');  
  }  
  if ($env{'form.encprs_'.$idx}) {  
     &Apache::lonratedt::storeparameter($idx,'parameter_encrypturl','yes','string_yesno');  
  } else {  
     &Apache::lonratedt::delparameter($idx,'parameter_encrypturl');  
  }  
   
  if ($env{'form.newpos'}) {   if (&update_parameter()) {
       ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container,1);
       return $errtext if ($fatal);
    }
   
    if ($env{'form.newpos'} && $env{'form.currentpos'}) {
 # change order  # change order
       my $res = splice(@LONCAPA::map::order,$env{'form.currentpos'}-1,1);
       splice(@LONCAPA::map::order,$env{'form.newpos'}-1,0,$res);
   
     my $newpos=$env{'form.newpos'}-1;      ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
     my $currentpos=$env{'form.currentpos'}-1;      return $errtext if ($fatal);
     my $i;   }
     my @neworder=();  
     if ($newpos>$currentpos) {  
 # moving stuff up  
  for ($i=0;$i<$currentpos;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i];  
  }  
  for ($i=$currentpos;$i<$newpos;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i+1];  
  }  
                         $neworder[$newpos]=$Apache::lonratedt::order[$currentpos];  
  for ($i=$newpos+1;$i<=$#Apache::lonratedt::order;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i];  
  }  
     } else {  
 # moving stuff down  
  for ($i=0;$i<$newpos;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i];  
  }  
  $neworder[$newpos]=$Apache::lonratedt::order[$currentpos];  
  for ($i=$newpos+1;$i<$currentpos+1;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i-1];  
  }  
  for ($i=$currentpos+1;$i<=$#Apache::lonratedt::order;$i++) {  
     $neworder[$i]=$Apache::lonratedt::order[$i];  
  }  
     }  
     @Apache::lonratedt::order=@neworder;  
  }  
 # store the changed version  
   
  ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);   if ($env{'form.pastemarked'}) {
  if ($fatal) {              my %paste_errors;
     $r->print('<p><font color="red">'.$errtext.'</font></p>');              my ($paste_res,$save_error,$pastemsgarray,$lockerror) =
     return;                  &do_paste_from_buffer($coursenum,$coursedom,$folder,$container,
  }                                        \%paste_errors);
               if (ref($pastemsgarray) eq 'ARRAY') {
     }                  if (@{$pastemsgarray} > 0) {
     if ($env{'form.pastemarked'}) {                      $r->print('<p class="LC_info">'.
 # paste resource to end of list                                join('<br />',@{$pastemsgarray}).
                 my $url=$env{'form.markedcopy_url'};                                '</p>');
  my $title=$env{'form.markedcopy_title'};                  }
 # Maps need to be copied first              }
  if (($url=~/\.(page|sequence)$/) || ($url=~/^\/uploaded\//)) {              if ($lockerror) {
     $title=&mt('Copy of').' '.$title;                  $r->print('<p class="LC_error">'.
                     my $newid=$$.time;                            $lockerror.
     $url=~/^(.+)\.(\w+)$/;                            '</p>');
     my $newurl=$1.$newid.'.'.$2;              }
     my $storefn=$newurl;              if ($save_error ne '') {
                     $storefn=~s/^\/\w+\/\w+\/\w+\///;                  return $save_error; 
     &Apache::loncreatecourse::writefile              }
  ($env{'request.course.id'},$storefn,              if ($paste_res) {
  &Apache::lonnet::getfile($url));                  my %errortext = &Apache::lonlocal::texthash (
     $url=$newurl;                                      fail      => 'Storage of folder contents failed',
  }                                      failread  => 'Reading folder contents failed',
  $title=~s/\</\&lt\;/g;                                      failstore => 'Storage of folder contents failed',
  $title=~s/\>/\&gt\;/g;                                  );
  $title=~s/\:/\&colon;/g;                  if ($errortext{$paste_res}) {
  my $ext='false';                      $r->print('<p class="LC_error">'.$errortext{$paste_res}.'</p>');
  if ($url=~/^http\:\/\//) { $ext='true'; }                  }
  $url=~s/\:/\&colon;/g;              }
 # Now insert the URL at the bottom              if (keys(%paste_errors) > 0) {
                 my $newidx=&Apache::lonratedt::getresidx($url);                  $r->print('<p class="LC_warning">'."\n".
  $Apache::lonratedt::resources[$newidx]=                            &mt('The following files are either dependencies of a web page or references within a folder and/or composite page which could not be copied during the paste operation:')."\n".
     $title.':'.$url.':'.$ext.':normal:res';                            '<ul>'."\n");
  $Apache::lonratedt::order[1+$#Apache::lonratedt::order]=$newidx;                  foreach my $key (sort(keys(%paste_errors))) {
 # Store the result                      $r->print('<li>'.$key.'</li>'."\n");
  ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);                  }
  if ($fatal) {                  $r->print('</ul></p>'."\n");
     $r->print('<p><font color="red">'.$errtext.'</font></p>');              }
     return;   } elsif ($env{'form.clearmarked'}) {
  }              my $output = &do_buffer_empty();
               if ($output) {
                   $r->print('<p class="LC_info">'.$output.'</p>');
               }
           }
   
     }   $r->print($upload_output);
             $r->print($upload_output);  
     if ($env{'form.cmd'}) {  # Rename, cut, copy or remove a single resource
                 my ($cmd,$idx)=split(/\_/,$env{'form.cmd'});   if (&handle_edit_cmd($coursenum,$coursedom)) {
                 if ($cmd eq 'del') {              my $contentchg;
     my (undef,$url)=split(':',$Apache::lonratedt::resources[$Apache::lonratedt::order[$idx]]);              if ($env{'form.cmd'} =~ m{^(remove|cut|setalias|delalias)_}) {
     if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&                  $contentchg = 1;
  ($url!~/\.(page|sequence|problem|exam|quiz|assess|survey|form|library|task)$/)) {              }
  &Apache::lonnet::removeuploadedurl($url);      ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container,$contentchg);
     } else {      return $errtext if ($fatal);
  &Apache::lonratedt::makezombie($Apache::lonratedt::order[$idx]);   }
     }  
     for (my $i=$idx;$i<$#Apache::lonratedt::order;$i++) {  # Cut, copy and/or remove multiple resources
                         $Apache::lonratedt::order[$i]=          if ($env{'form.multichange'}) {
                           $Apache::lonratedt::order[$i+1];              my %allchecked = (
                     }                                 cut     => {},
                     $#Apache::lonratedt::order--;                                 remove  => {},
                 } elsif ($cmd eq 'cut') {                               );
     my (undef,$url)=split(':',$Apache::lonratedt::resources[$Apache::lonratedt::order[$idx]]);              my $needsupdate;
     &Apache::lonratedt::makezombie($Apache::lonratedt::order[$idx]);              foreach my $which (keys(%allchecked)) {
     for (my $i=$idx;$i<$#Apache::lonratedt::order;$i++) {                  $env{'form.multi'.$which} =~ s/,$//;
                         $Apache::lonratedt::order[$i]=                  if ($env{'form.multi'.$which}) {
                           $Apache::lonratedt::order[$i+1];                      map { $allchecked{$which}{$_} = 1; } split(/,/,$env{'form.multi'.$which});
                     }                      if (ref($allchecked{$which}) eq 'HASH') {
                     $#Apache::lonratedt::order--;                          $needsupdate += scalar(keys(%{$allchecked{$which}}));
                 } elsif ($cmd eq 'up') {                      }
   if (($idx) && (defined($Apache::lonratedt::order[$idx-1]))) {  
                     my $i=$Apache::lonratedt::order[$idx-1];  
                     $Apache::lonratedt::order[$idx-1]=  
  $Apache::lonratedt::order[$idx];  
                     $Apache::lonratedt::order[$idx]=$i;  
    }  
                 } elsif ($cmd eq 'down') {  
    if (defined($Apache::lonratedt::order[$idx+1])) {  
                     my $i=$Apache::lonratedt::order[$idx+1];  
                     $Apache::lonratedt::order[$idx+1]=  
  $Apache::lonratedt::order[$idx];  
                     $Apache::lonratedt::order[$idx]=$i;  
    }  
                 } elsif ($cmd eq 'rename') {  
                     my $ratstr = $Apache::lonratedt::resources[$Apache::lonratedt::order[$idx]];  
                     my ($rtitle,@rrest)=split(/\:/,  
                        $Apache::lonratedt::resources[  
        $Apache::lonratedt::order[$idx]]);  
                     my $comment=  
                      &HTML::Entities::decode($env{'form.title'});  
                     $comment=~s/\</\&lt\;/g;  
                     $comment=~s/\>/\&gt\;/g;  
                     $comment=~s/\:/\&colon;/g;  
     if ($comment=~/\S/) {  
  $Apache::lonratedt::resources[  
        $Apache::lonratedt::order[$idx]]=  
             $comment.':'.join(':',@rrest);  
     }  
                 }                  }
 # Store the changed version  
  ($errtext,$fatal)=&storemap($coursenum,$coursedom,  
     $folder.'.'.$container);  
  if ($fatal) {  
     $r->print('<p><font color="red">'.$errtext.'</font></p>');  
     return;  
  }  
             }              }
               if ($needsupdate) {
                   my $haschanges = 0;
                   my %curr_groups = &Apache::longroup::coursegroups();
                   my $total = scalar(@LONCAPA::map::order) - 1; 
                   for (my $i=$total; $i>=0; $i--) {
                       my $res = $LONCAPA::map::order[$i];
                       my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
                       $name=&LONCAPA::map::qtescape($name);
                       $url=&LONCAPA::map::qtescape($url);
                       next unless $url;
                       my %denied =
                           &action_restrictions($coursenum,$coursedom,$url,
                                                $env{'form.folderpath'},\%curr_groups);
                       foreach my $which (keys(%allchecked)) {
                           next if ($denied{$which});
                           next unless ($allchecked{$which}{$res});
                           if ($which eq 'remove') {
                               if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
                                   ($url!~/$LONCAPA::assess_page_seq_re/)) {
                                   &Apache::lonnet::removeuploadedurl($url);
                               } else {
                                   &LONCAPA::map::makezombie($res);
                               }
                               splice(@LONCAPA::map::order,$i,1);
                               $haschanges ++;
                           } elsif ($which eq 'cut') {
                               &LONCAPA::map::makezombie($res);
                               splice(@LONCAPA::map::order,$i,1);
                               $haschanges ++;
                           }
                       }
                   }
                   if ($haschanges) {
                       ($errtext,$fatal) = 
                           &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
                       return $errtext if ($fatal);
                   }
               }
           }
   
 # Group import/search  # Group import/search
     if ($env{'form.importdetail'}) {   if ($env{'form.importdetail'}) {
  my @imports;      my @imports;
  &Apache::lonnet::logthis("imp detail ".$env{'form.importdetail'});      foreach my $item (split(/\&/,$env{'form.importdetail'})) {
  foreach (split(/\&/,$env{'form.importdetail'})) {   if (defined($item)) {
     if (defined($_)) {      my ($name,$url,$residx)=
  my ($name,$url)=split(/\=/,$_);   map { &unescape($_); } split(/\=/,$item);
  $name=&unescape($name);                      if ($url =~ m{^\Q/uploaded/$coursedom/$coursenum/\E(default|supplemental)_new\.(sequence|page)$}) {
  $url=&unescape($url);                          my ($suffix,$errortxt,$locknotfreed) =
  push @imports, $name, $url;                              &new_timebased_suffix($coursedom,$coursenum,'map',$1,$2);
     }                          if ($locknotfreed) {
  }                              $r->print($locknotfreed);
 # Store the changed version                          }
  ($errtext,$fatal)=group_import($coursenum, $coursedom, $folder,                          if ($suffix) {
        $container,'londocs',@imports);                              $url =~ s/_new\./_$suffix./; 
  if ($fatal) {                          } else {
     $r->print('<p><font color="red">'.$errtext.'</font></p>');                              return $errortxt;
     return;                          }
                       } elsif ($url =~ m{^/adm/$match_domain/$match_username/new/(smppg|bulletinboard)$}) {
                           my $type = $1;
                           my ($suffix,$errortxt,$locknotfreed) =
                               &new_timebased_suffix($coursedom,$coursenum,$type);
                           if ($locknotfreed) {
                               $r->print($locknotfreed);
                           }
                           if ($suffix) {
                               $url =~ s{^(/adm/$match_domain/$match_username)/new}{$1/$suffix};
                           } else {
                               return $errortxt;
                           }
                       } elsif ($url =~ m{^/adm/$coursedom/$coursenum/new/ext\.tool}) {
                           my ($suffix,$errortxt,$locknotfreed) =
                               &new_timebased_suffix($coursedom,$coursenum,'exttool');
                           if ($locknotfreed) {
                               $r->print($locknotfreed);
                           }
                           if ($suffix) {
                               $url =~ s{^(/adm/$coursedom/$coursenum)/new}{$1/$suffix};
                           } else {
                               return $errortxt;
                           }
                       } elsif ($url =~ m{^/uploaded/$coursedom/$coursenum/(docs|supplemental)/(default|\d+)/new.html$}) {
                           if ($supplementalflag) {
                               next unless ($1 eq 'supplemental');
                               if ($folder eq 'supplemental') {
                                   next unless ($2 eq 'default');
                               } else {
                                   next unless ($folder eq 'supplemental_'.$2);
                               }
                           } else {
                               next unless ($1 eq 'docs');
                               if ($folder eq 'default') {
                                   next unless ($2 eq 'default');
                               } else {
                                   next unless ($folder eq 'default_'.$2);
                               }
                           }
                       }
       push(@imports, [$name, $url, $residx]);
  }   }
       }
               ($errtext,$fatal,my $fixuperrors) =
                   &group_import($coursenum, $coursedom, $folder,$container,
                                 'londocs',$ltitoolsref,@imports);
       return $errtext if ($fatal);
               if ($fixuperrors) {
                   $r->print($fixuperrors);
             }              }
    }
 # Loading a complete map  # Loading a complete map
    if ($env{'form.loadmap'}) {   if ($env{'form.loadmap'}) {
                if ($env{'form.importmap'}=~/\w/) {      if ($env{'form.importmap'}=~/\w/) {
           foreach (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$env{'form.importmap'}))) {   foreach my $res (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$env{'form.importmap'}))) {
       my ($title,$url,$ext,$type)=split(/\:/,$_);      my ($title,$url,$ext,$type)=split(/\:/,$res);
                       my $idx=&Apache::lonratedt::getresidx($url);      my $idx=&LONCAPA::map::getresidx($url);
                       $Apache::lonratedt::resources[$idx]=$_;      $LONCAPA::map::resources[$idx]=$res;
                       $Apache::lonratedt::order      $LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx;
           [$#Apache::lonratedt::order+1]=$idx;   }
           }   ($errtext,$fatal)=&storemap($coursenum,$coursedom,
 # Store the changed version      $folder.'.'.$container,1);
            ($errtext,$fatal)=&storemap($coursenum,$coursedom,   return $errtext if ($fatal);
    $folder.'.'.$container);      } else {
           if ($fatal) {   $r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>');
       $r->print('<p><font color="red">'.$errtext.'</font></p>');  
       return;  
           }  
                } else {  
                    $r->print('<p><font color="red">'.&mt('No map selected.').'</font></p>');  
                }  
            }  
        }  
 # ---------------------------------------------------------------- End commands  
 # ---------------------------------------------------------------- Print screen  
         my $idx=0;  
  my $shown=0;  
         $r->print('<table>');  
         foreach (@Apache::lonratedt::order) {  
            my ($name,$url)=split(/\:/,$Apache::lonratedt::resources[$_]);  
    $name=&Apache::lonratsrv::qtescape($name);  
    $url=&Apache::lonratsrv::qtescape($url);  
            unless ($name) {  $name=(split(/\//,$url))[-1]; }  
            unless ($name) { $idx++; next; }  
            $r->print(&entryline($idx,$name,$url,$folder,$allowed,$_,$coursenum));  
            $idx++;  
    $shown++;  
         }  
  unless ($shown) {  
     $r->print('<tr><td>'.&mt('Currently no documents.').'</td></tr>');  
  }  
         $r->print("\n</table>\n");  
  if ($env{'form.markedcopy_url'}) {  
     $r->print(<<ENDPASTE);  
 <p><form name="pasteform" action="/adm/coursedocs" method="post">  
 <input type="hidden" name="markedcopy_url" value="$env{'form.markedcopy_url'}" />  
 <input type="hidden" name="markedcopy_title" value="$env{'form.markedcopy_title'}" />  
 ENDPASTE  
             $r->print(  
    '<input type="submit" name="pastemarked" value="'.&mt('Paste').  
       '" /> '.&Apache::loncommon::filedescription(  
  (split(/\./,$env{'form.markedcopy_url'}))[-1]).': '.  
       $env{'form.markedcopy_title'});  
             if ($container eq 'page') {  
  $r->print(<<PAGEINFO);  
 <input type="hidden" name="pagepath" value="$env{'form.pagepath'}" />  
 <input type="hidden" name="pagesymb" value="$env{'form.pagesymb'}" />  
 PAGEINFO  
             } else {  
  $r->print(<<FOLDERINFO);  
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />  
 FOLDERINFO  
     }      }
     $r->print('</form></p>');  
  }   }
    &log_differences($plain);
       }
   # ---------------------------------------------------------------- End commands
   # ---------------------------------------------------------------- Print screen
       my $idx=0;
       my $shown=0;
       if (($ishidden) || ($isencrypted) || ($randompick>=0) || ($is_random_order)) {
    $r->print('<div class="LC_Box">'.
             '<ol class="LC_docs_parameters"><li class="LC_docs_parameters_title">'.&mt('Parameters:').'</li>'.
     ($randompick>=0?'<li>'.&mt('randomly pick [quant,_1,resource]',$randompick).'</li>':'').
     ($ishidden?'<li>'.&mt('contents hidden').'</li>':'').
     ($isencrypted?'<li>'.&mt('URLs hidden').'</li>':'').
     ($is_random_order?'<li>'.&mt('random order').'</li>':'').
     '</ol>');
           if ($randompick>=0) {
               $r->print('<p class="LC_warning">'
                    .&mt('Caution: this folder is set to randomly pick a subset'
                        .' of resources. Adding or removing resources from this'
                        .' folder will change the set of resources that the'
                        .' students see, resulting in spurious or missing credit'
                        .' for completed problems, not limited to ones you'
                        .' modify. Do not modify the contents of this folder if'
                        .' it is in active student use.')
                    .'</p>'
               );
           }
           if ($is_random_order) {
               $r->print('<p class="LC_warning">'
                    .&mt('Caution: this folder is set to randomly order its'
                        .' contents. Adding or removing resources from this folder'
                        .' will change the order of resources shown.')
                    .'</p>'
               );
           }
           $r->print('</div>');
       }
   
       my ($to_show,$output,@allidx,@allmapidx,%filters,%lists,%curr_groups);
       %filters =  (
                     canremove      => [],
                     cancut         => [],
                     cancopy        => [],
                     hiddenresource => [],
                     encrypturl     => [],
                     randomorder    => [],
                     randompick     => [],
                   );
       %curr_groups = &Apache::longroup::coursegroups();
       &Apache::loncommon::start_data_table_count(); #setup a row counter 
       foreach my $res (@LONCAPA::map::order) {
           my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
           $name=&LONCAPA::map::qtescape($name);
           $url=&LONCAPA::map::qtescape($url);
           unless ($name) {  $name=(split(/\//,$url))[-1]; }
           unless ($name) { $idx++; next; }
           push(@allidx,$res);
           if ($url =~ m{/uploaded/.+\.(page|sequence)$}) {
               push(@allmapidx,$res);
           }
   
           $output .= &entryline($idx,$name,$url,$folder,$allowed,$res,
                                 $coursenum,$coursedom,$crstype,
                                 $pathitem,$supplementalflag,$container,
                                 \%filters,\%curr_groups,$ltitoolsref,$canedit,
                                 $isencrypted,$navmapref,$hostname);
           $idx++;
           $shown++;
       }
       &Apache::loncommon::end_data_table_count();
   
       my $need_save;
       if ($allowed || ($supplementalflag && $folder eq 'supplemental')) {
           my $toolslink;
           if ($allowed) {
               $toolslink = '<table><tr><td>'
                          .&Apache::loncommon::help_open_menu('Navigation Screen',
                                                              'Navigation_Screen',undef,'RAT')
                          .'</td><td class="LC_middle">'.&mt('Tools:').'</td>'
                          .'<td align="left"><ul id="LC_toolbar">'
                          .'<li><a href="/adm/coursedocs?forcesupplement=1&amp;command=editsupp" '
                          .'id="LC_content_toolbar_edittoplevel" '
                          .'class="LC_toolbarItem" '
                          .'title="'.&mt('Supplemental Content Editor').'">'
                          .'</a></li></ul></td></tr></table><br />';
           }
           if ($shown) {
               if ($allowed) {
                   $to_show = &Apache::loncommon::start_scrollbox('900px','880px','400px','contentscroll')
                             .&Apache::loncommon::start_data_table(undef,'contentlist')
                             .&Apache::loncommon::start_data_table_header_row()
                             .'<th colspan="2">'.&mt('Move').'</th>'
                             .'<th colspan="3">'.&mt('Actions').'</th>'
                             .'<th>'.&mt('Document').'</th>';
                   if ($folder !~ /^supplemental/) {
                       $to_show .= '<th colspan="2">'.&mt('Settings').'</th>';
                   }
                   $to_show .= &Apache::loncommon::end_data_table_header_row();
                   if ($folder !~ /^supplemental/) {
                       $lists{'canhide'} = join(',',@allidx);
                       $lists{'canrandomlyorder'} = join(',',@allmapidx);
                       my @possfilters = ('canremove','cancut','cancopy','hiddenresource','encrypturl',
                                          'randomorder','randompick');
                       foreach my $item (@possfilters) {
                           if (ref($filters{$item}) eq 'ARRAY') {
                               if (@{$filters{$item}} > 0) {
                                   $lists{$item} = join(',',@{$filters{$item}});
                               }
                           }
                       }
                       if (@allidx > 0) {
                           my $path;
                           if ($env{'form.folderpath'}) {
                               $path =
                                   &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
                           }
                           if (@allidx > 1) {
                               $to_show .=
                                   &Apache::loncommon::continue_data_table_row().
                                   '<td colspan="2">&nbsp;</td>'.
                                   '<td>'.
                                   &multiple_check_form('actions',\%lists,$canedit).
                                   '</td>'.
                                   '<td colspan="3">&nbsp;</td>'.
                                   '<td colspan="2">'.
                                   &multiple_check_form('settings',\%lists,$canedit).
                                   '</td>'.
                                   &Apache::loncommon::end_data_table_row();
                                $need_save = 1;
                           }
                       }
                   }
                   $to_show .= $output.' '
                              .&Apache::loncommon::end_data_table()
                              .'<br style="line-height:2px;" />'
                              .&Apache::loncommon::end_scrollbox();
               } else {
                   $to_show .= $toolslink
                              .&Apache::loncommon::start_data_table('LC_tableOfContent')
                              .$output.' '
                              .&Apache::loncommon::end_data_table();
               }
           } else {
               if (!$allowed) {
                   $to_show .= $toolslink;
               }
               my $noresmsg;
               if ($allowed && $hiddentop && !$supplementalflag) {
                   $noresmsg = &mt('Main Content Hidden'); 
               } else {
                   $noresmsg = &mt('Currently empty');
               }
               $to_show .= &Apache::loncommon::start_scrollbox('400px','380px','200px','contentscroll')
                          .'<div class="LC_info" id="contentlist">'
                          .$noresmsg
                          .'</div>'
                          .&Apache::loncommon::end_scrollbox();
           }
       } else {
           if ($shown) {
               $to_show = '<div>'
                         .&Apache::loncommon::start_data_table('LC_tableOfContent')
                         .$output
                         .&Apache::loncommon::end_data_table()
                         .'</div>';
           } else {
               $to_show = '<div class="LC_info" id="contentlist">'
                         .&mt('Currently empty')
                         .'</div>'
           }
     }      }
       my $tid = 1;
       if ($supplementalflag) {
           $tid = 2;
       }
       if ($allowed) {
           my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container";
           $r->print(&generate_edit_table($tid,$orderhash,$to_show,$iconpath,
                                          $jumpto,$readfile,$need_save,"$folder.$container",$canedit));
           if ($canedit) {
               &print_paste_buffer($r,$container,$folder,$coursedom,$coursenum);
           }
       } else {
           $r->print($to_show);
       }
       return;
   }
   
   sub multiple_check_form {
       my ($caller,$listsref,$canedit) = @_;
       return unless (ref($listsref) eq 'HASH');
       my $disabled;
       unless ($canedit) {
           $disabled = 'disabled="disabled"'; 
       }
       my $output =
       '<form action="/adm/coursedocs" method="post" name="togglemult'.$caller.'">'.
       '<span class="LC_nobreak" style="font-size:x-small;font-weight:bold;">'.
       '<label><input type="radio" name="showmultpick" value="0" onclick="javascript:togglePick('."'$caller','0'".');" checked="checked" />'.&mt('one').'</label>'.('&nbsp;'x2).'<label><input type="radio" name="showmultpick" value="1" onclick="javascript:togglePick('."'$caller','1'".');" />'.&mt('multiple').'</label></span><span id="more'.$caller.'" class="LC_nobreak LC_docs_ext_edit"></span></form>'.
       '<div id="multi'.$caller.'" style="display:none;margin:0;padding:0;border:0">'.
       '<form action="/adm/coursedocs" method="post" name="cumulative'.$caller.'">'."\n".
       '<fieldset id="allfields'.$caller.'" style="display:none"><legend style="font-size:x-small;">'.&mt('check/uncheck all').'</legend>'."\n";
       if ($caller eq 'settings') {
           $output .= 
               '<table><tr>'.
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak"><label>'.
               '<input type="checkbox" name="hiddenresourceall" id="hiddenresourceall" onclick="propagateState(this.form,'."'hiddenresource'".')"'.$disabled.' />'.&mt('Hidden').
               '</label></span></td>'.
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak"><label><input type="checkbox" name="randompickall" id="randompickall" onclick="updatePick(this.form,'."'all','check'".');propagateState(this.form,'."'randompick'".');propagateState(this.form,'."'rpicknum'".');"'.$disabled.' />'.&mt('Randomly Pick').'</label><span id="rpicktextall"></span><input type="hidden" name="rpicknumall" id="rpicknumall" value="" />'.
               '</span></td>'.
               '</tr>'."\n".
               '<tr>'.
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak"><label><input type="checkbox" name="encrypturlall" id="encrypturlall" onclick="propagateState(this.form,'."'encrypturl'".')"'.$disabled.' />'.&mt('URL hidden').'</label></span></td><td class="LC_docs_entry_parameter"><span class="LC_nobreak"><label><input type="checkbox" name="randomorderall" id="randomorderall" onclick="propagateState(this.form,'."'randomorder'".')"'.$disabled.' />'.&mt('Random Order').
               '</label></span>'.
               '</td></tr></table>'."\n";
       } else {
           $output .=
               '<table><tr>'.
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak LC_docs_remove">'.
               '<label><input type="checkbox" name="removeall" id="removeall" onclick="propagateState(this.form,'."'remove'".')"'.$disabled.' />'.&mt('Remove').
               '</label></span></td>'.
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak LC_docs_cut">'.
               '<label><input type="checkbox" name="cut" id="cutall" onclick="propagateState(this.form,'."'cut'".');"'.$disabled.' />'.&mt('Cut').
               '</label></span></td>'."\n".
               '<td class="LC_docs_entry_parameter">'.
               '<span class="LC_nobreak LC_docs_copy">'.
               '<label><input type="checkbox" name="copyall" id="copyall" onclick="propagateState(this.form,'."'copy'".')"'. $disabled.' />'.&mt('Copy').
               '</label></span></td>'.
               '</tr></table>'."\n";
       }
       $output .= 
           '</fieldset>'.
           '<input type="hidden" name="allidx" value="'.$listsref->{'canhide'}.'" />';
       if ($caller eq 'settings') {
           $output .= 
           '<input type="hidden" name="allmapidx" value="'.$listsref->{'canrandomlyorder'}.'" />'."\n".
           '<input type="hidden" name="currhiddenresource" value="'.$listsref->{'hiddenresource'}.'" />'."\n".
           '<input type="hidden" name="currencrypturl" value="'.$listsref->{'encrypturl'}.'" />'."\n".
           '<input type="hidden" name="currrandomorder" value="'.$listsref->{'randomorder'}.'" />'."\n".
           '<input type="hidden" name="currrandompick" value="'.$listsref->{'randompick'}.'" />'."\n";
       } elsif ($caller eq 'actions') {
           $output .=
           '<input type="hidden" name="allremoveidx" id="allremoveidx" value="'.$listsref->{'canremove'}.'" />'.
           '<input type="hidden" name="allcutidx" id="allcutidx" value="'.$listsref->{'cancut'}.'" />'.
           '<input type="hidden" name="allcopyidx" id="allcopyidx" value="'.$listsref->{'cancopy'}.'" />';
       }
       $output .= 
           '</form>'.
           '</div>';
       return $output;
 }  }
   
 sub process_file_upload {  sub process_file_upload {
     my ($upload_output,$coursenum,$coursedom,$allfiles,$codebase,$uploadcmd) = @_;      my ($upload_output,$coursenum,$coursedom,$allfiles,$codebase,$uploadcmd,$crstype) = @_;
 # upload a file, if present  # upload a file, if present
     my $parseaction;      my $filesize = length($env{'form.uploaddoc'});
    if ($env{'form.parserflag'}) {      if (!$filesize) {
           $$upload_output = '<div class="LC_error">'.
                              &mt('Unable to upload [_1]. (size = [_2] bytes)',
                             '<span class="LC_filename">'.$env{'form.uploaddoc.filename'}.'</span>',
                             $filesize).'<br />'.
                             &mt('Either the file you attempted to upload was empty, or your web browser was unable to read its contents.').'<br />'.
                             '</div>';
           return;
       }
       my $quotatype = 'unofficial';
       if ($crstype eq 'Community') {
           $quotatype = 'community';
       } elsif ($crstype eq 'Placement') {
           $quotatype = 'placement';
       } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.coursecode'}) {
           $quotatype = 'official';
       } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.textbook'}) {
           $quotatype = 'textbook';
       }
       if (&Apache::loncommon::get_user_quota($coursenum,$coursedom,'course',$quotatype)) {
           $filesize = int($filesize/1000); #expressed in kb
           $$upload_output = &Apache::loncommon::excess_filesize_warning($coursenum,$coursedom,'course',
                                                                         $env{'form.uploaddoc.filename'},$filesize,
                                                                         'upload',$quotatype);
           return if ($$upload_output);
       }
       my ($parseaction,$showupload,$nextphase,$mimetype);
       if ($env{'form.parserflag'}) {
         $parseaction = 'parse';          $parseaction = 'parse';
     }      }
     my $phase_status;  
     my $folder=$env{'form.folder'};      my $folder=$env{'form.folder'};
     if ($folder eq '') {      if ($folder eq '') {
         $folder='default';          $folder='default';
Line 1275  sub process_file_upload { Line 3739  sub process_file_upload {
         my $errtext='';          my $errtext='';
         my $fatal=0;          my $fatal=0;
         my $container='sequence';          my $container='sequence';
         if ($env{'form.pagepath'}) {          if ($env{'form.folderpath'} =~ /:1$/) {
             $container='page';              $container='page';
         }          }
         ($errtext,$fatal)=          ($errtext,$fatal)=
               &mapread($coursenum,$coursedom,$folder.'.'.$container);              &mapread($coursenum,$coursedom,$folder.'.'.$container);
         if ($#Apache::lonratedt::order<1) {          if ($#LONCAPA::map::order<1) {
             $Apache::lonratedt::order[0]=1;              $LONCAPA::map::order[0]=1;
             $Apache::lonratedt::resources[1]='';              $LONCAPA::map::resources[1]='';
         }  
         if ($fatal) {  
             return 'failed';  
         }          }
         my $destination = 'docs/';          my $destination = 'docs/';
         if ($folder =~ /^supplemental/) {          if ($folder =~ /^supplemental/) {
Line 1296  sub process_file_upload { Line 3757  sub process_file_upload {
         } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {          } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
             $destination .=  $2.'/';              $destination .=  $2.'/';
         }          }
 # this is for a course, not a user, so set coursedoc flag          if ($fatal) {
 # probably the only place in the system where this should be "1"              $$upload_output = '<div class="LC_error" id="uploadfileresult">'.&mt('The uploaded file has not been stored as an error occurred reading the contents of the current folder.').'</div>';
         my $newidx=&Apache::lonratedt::getresidx();              return;
           }
   # this is for a course, not a user, so set context to coursedoc.
           my $newidx=&LONCAPA::map::getresidx();
         $destination .= $newidx;          $destination .= $newidx;
         my $url=&Apache::lonnet::userfileupload('uploaddoc',1,$destination,          my $url=&Apache::lonnet::userfileupload('uploaddoc','coursedoc',$destination,
  $parseaction,$allfiles,   $parseaction,$allfiles,
  $codebase);   $codebase,undef,undef,undef,undef,
                                                   undef,undef,\$mimetype);
           if ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E.*/([^/]+)$}) {
               my $stored = $1;
               $showupload = '<p>'.&mt('Uploaded [_1]','<span class="LC_filename">'.
                             $stored.'</span>').'</p>';
           } else {
               my ($filename) = ($env{'form.uploaddoc.filename'} =~ m{([^/]+)$});
               
               $$upload_output = '<div class="LC_error" id="uploadfileresult">'.&mt('Unable to save file [_1].','<span class="LC_filename">'.$filename.'</span>').'</div>';
               return;
           }
         my $ext='false';          my $ext='false';
         if ($url=~/^http\:\/\//) { $ext='true'; }          if ($url=~m{^http://}) { $ext='true'; }
         $url=~s/\:/\&colon;/g;   $url     = &LONCAPA::map::qtunescape($url);
         my $comment=$env{'form.comment'};          my $comment=$env{'form.comment'};
         $comment=~s/\</\&lt\;/g;   $comment = &LONCAPA::map::qtunescape($comment);
         $comment=~s/\>/\&gt\;/g;  
         $comment=~s/\:/\&colon;/g;  
         if ($folder=~/^supplemental/) {          if ($folder=~/^supplemental/) {
               $comment=time.'___&&&___'.$env{'user.name'}.'___&&&___'.                $comment=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
                   $env{'user.domain'}.'___&&&___'.$comment;                    $env{'user.domain'}.'___&&&___'.$comment;
         }          }
   
         $Apache::lonratedt::resources[$newidx]=          $LONCAPA::map::resources[$newidx]=
                   $comment.':'.$url.':'.$ext.':normal:res';      $comment.':'.$url.':'.$ext.':normal:res';
         $Apache::lonratedt::order[$#Apache::lonratedt::order+1]= $newidx;          $LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx;
         ($errtext,$fatal)=&storemap($coursenum,$coursedom,          ($errtext,$fatal)=&storemap($coursenum,$coursedom,
     $folder.'.'.$container);      $folder.'.'.$container,1);
         if ($fatal) {          if ($fatal) {
             $$upload_output .= '<p><font color="red">'.$errtext.'</font></p>';              $$upload_output = '<div class="LC_error" id="uploadfileresult">'.$errtext.'</div>';
             return 'failed';              return;
         } else {          } else {
             if ($parseaction eq 'parse') {              if ($parseaction eq 'parse' && $mimetype eq 'text/html') {
                 my $total_embedded = keys(%{$allfiles});                  $$upload_output = $showupload;
                   my $total_embedded = scalar(keys(%{$allfiles}));
                 if ($total_embedded > 0) {                  if ($total_embedded > 0) {
                     my $num = 0;                      my $uploadphase = 'upload_embedded';
                     $$upload_output .= 'This file contains embedded multimedia objects, which need to be uploaded to LON-CAPA.<br />                      my $primaryurl = &HTML::Entities::encode($url,'<>&"');
    <form name="upload_embedded" action="/adm/coursedocs"      my $state = &embedded_form_elems($uploadphase,$primaryurl,$newidx); 
                   method="post" enctype="multipart/form-data">                      my ($embedded,$num) =
    <input type="hidden" name="folderpath" value="'.$env{'form.folderpath'}.'" />   <input type="hidden" name="cmd" value="upload_embedded" />                          &Apache::loncommon::ask_for_embedded_content(
    <input type="hidden" name="newidx" value="'.$newidx.'" />                              '/adm/coursedocs',$state,$allfiles,$codebase,{'docs_url' => $url});
    <input type="hidden" name="primaryurl" value="'.&escape($url).'" />                      if ($embedded) {
    <input type="hidden" name="phasetwo" value="'.$total_embedded.'" />';                          if ($num) {
                     $$upload_output .= '<b>Upload embedded files</b>:<br />                              $$upload_output .=
    <table>';           '<p>'.&mt('This file contains embedded multimedia objects, which need to be uploaded.').'</p>'.$embedded;
                     foreach my $embed_file (keys(%{$allfiles})) {                              $nextphase = $uploadphase;
                         $$upload_output .= '<tr><td>'.$embed_file.  
           '<input name="embedded_item_'.$num.'" type="file" />  
            <input name="embedded_orig_'.$num.'" type="hidden" value="'.&escape($embed_file).'" />';  
                         my $attrib;  
                         if (@{$$allfiles{$embed_file}} > 1) {  
                             $attrib = join(':',@{$$allfiles{$embed_file}});  
                         } else {                          } else {
                             $attrib = $$allfiles{$embed_file}[0];                              $$upload_output .= $embedded;
                         }  
                         $$upload_output .=  
            '<input name="embedded_attrib_'.$num.'" type="hidden" value="'.$attrib.'" />';  
                         if (exists($$codebase{$embed_file})) {  
                             $$upload_output .=   
           '<input name="codebase_'.$num.'" type="hidden" value="'.&escape($$codebase{$embed_file}).'" />';  
                         }                          }
                         $$upload_output .= '</td></tr>';                      } else {
                         $num ++;                          $$upload_output .= &mt('Embedded item(s) already present, so no additional upload(s) required').'<br />';
                     }                      }
                     $phase_status = 'phasetwo';  
                     $$upload_output .= '</table><br />  
    <input type ="submit" value="Complete upload" />  
    </form>';  
                 } else {                  } else {
                     $$upload_output .= 'No embedded items identified<br />';                      $$upload_output .= &mt('No embedded items identified').'<br />';
                 }                  }
                   $$upload_output = '<div id="uploadfileresult">'.$$upload_output.'</div>';
               } elsif ((&Apache::loncommon::is_archive_file($mimetype)) &&
                        ($env{'form.uploaddoc.filename'} =~ /\.(zip|tar|bz2|gz|tar.gz|tar.bz2|tgz)$/i)) {
                   $nextphase = 'decompress_uploaded';
                   my $position = scalar(@LONCAPA::map::order)-1;
                   my $noextract = &return_to_editor();
                   my $archiveurl = &HTML::Entities::encode($url,'<>&"');
                   my %archiveitems = (
                       folderpath => $env{'form.folderpath'},
                       cmd        => $nextphase,
                       newidx     => $newidx,
                       position   => $position,
                       phase      => $nextphase,
                       comment    => $comment,
                   );
                   my ($destination,$dir_root) = &embedded_destination($coursenum,$coursedom);
                   my @current = &get_dir_list($url,$coursenum,$coursedom,$newidx); 
                   $$upload_output = $showupload.
                                     &Apache::loncommon::decompress_form($mimetype,
                                         $archiveurl,'/adm/coursedocs',$noextract,
                                         \%archiveitems,\@current);
             }              }
         }          }
     }      }
     return $phase_status;      return $nextphase;
 }  }
   
 sub process_secondary_uploads {  sub get_dir_list {
     my ($upload_output,$coursedom,$coursenum,$formname,$num,$newidx) = @_;      my ($url,$coursenum,$coursedom,$newidx) = @_;
     my $folder=$env{'form.folder'};      my ($destination,$dir_root) = &embedded_destination();
     my $destination = 'docs/';      my ($dirlistref,$listerror) =  
     if ($folder =~ /^supplemental/) {          &Apache::lonnet::dirlist("$dir_root/$destination/$newidx",$coursedom,$coursenum,1);
         $destination = 'supplemental/';      my @dir_lines;
     }      my $dirptr=16384;
     if (($folder eq 'default') || ($folder eq 'supplemental')) {      if (ref($dirlistref) eq 'ARRAY') {
         $destination .= 'default/';          foreach my $dir_line (sort
     } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {                            {
         $destination .=  $2.'/';                                my ($afile)=split('&',$a,2);
                                 my ($bfile)=split('&',$b,2);
                                 return (lc($afile) cmp lc($bfile));
                             } (@{$dirlistref})) {
               my ($filename,$dom,undef,$testdir,undef,undef,undef,undef,$size,undef,$mtime,undef,undef,undef,$obs,undef)=split(/\&/,$dir_line,16);
               $filename =~ s/\s+$//;
               next if ($filename =~ /^\.\.?$/); 
               my $isdir = 0;
               if ($dirptr&$testdir) {
                   $isdir = 1;
               }
               push(@dir_lines, [$filename,$dom,$isdir,$size,$mtime,$obs]);
           }
     }      }
     $destination .= $newidx;      return @dir_lines;
     my ($url,$filename);  }
     $url=&Apache::lonnet::userfileupload($formname.$num,1,$destination);  
     ($filename) = ($url =~ m-^/uploaded/$coursedom/$coursenum/$destination/(.+)$-);  sub is_supplemental_title {
     return $filename;      my ($title) = @_;
       return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/);
 }  }
   
 # --------------------------------------------------------------- An entry line  # --------------------------------------------------------------- An entry line
   
 sub entryline {  sub entryline {
     my ($index,$title,$url,$folder,$allowed,$residx,$coursenum)=@_;      my ($index,$title,$url,$folder,$allowed,$residx,$coursenum,$coursedom,
     $title=~s/\&colon\;/\:/g;          $crstype,$pathitem,$supplementalflag,$container,$filtersref,$currgroups,
     $title=&HTML::Entities::encode(&HTML::Entities::decode(          $ltitoolsref,$canedit,$isencrypted,$navmapref,$hostname)=@_;
      &unescape($title)),'"<>&\'');      my ($foldertitle,$renametitle,$oldtitle);
     my $renametitle=$title;      if (&is_supplemental_title($title)) {
     my $foldertitle=$title;   ($title,$foldertitle,$renametitle) = &Apache::loncommon::parse_supplemental_title($title);
     my $pagetitle=$title;      } else {
     my $orderidx=$Apache::lonratedt::order[$index];   $title=&HTML::Entities::encode($title,'"<>&\'');
     if ($title=~ /^(\d+)___&amp;&amp;&amp;___(\w+)___&amp;&amp;&amp;___(\w+)___&amp;&amp;&amp;___(.*)$/ ) {    $renametitle=$title;
  $foldertitle=&Apache::lontexconvert::msgtexconverted($4);   $foldertitle=$title;
  $renametitle=$4;  
  $title='<i>'.&Apache::lonlocal::locallocaltime($1).'</i> '.  
     &Apache::loncommon::plainname($2,$3).': <br />'.  
     $foldertitle;  
     }      }
   
       my ($disabled,$readonly,$js_lt);
       unless ($canedit) {
           $disabled = 'disabled="disabled"';
           $readonly = 1;
       }
   
       my $orderidx=$LONCAPA::map::order[$index];
   
     $renametitle=~s/\\/\\\\/g;      $renametitle=~s/\\/\\\\/g;
     $renametitle=~s/\&quot\;/\\\"/g;      $renametitle=~s/\&quot\;/\\\"/g;
     my $line='<tr>';      $renametitle=~s/"/%22/g;
       $renametitle=~s/ /%20/g;
       $oldtitle = $renametitle;
       $renametitle=~s/\&#39;/\\\'/g;
       my $line=&Apache::loncommon::start_data_table_row();
       my ($form_start,$form_end,$form_common,$form_param);
 # Edit commands  # Edit commands
     my $container;      my ($esc_path, $path, $symb, $curralias);
     my $folderpath;  
     if ($env{'form.folderpath'}) {      if ($env{'form.folderpath'}) {
         $container = 'sequence';   $esc_path=&escape($env{'form.folderpath'});
  $folderpath=&escape($env{'form.folderpath'});   $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
  # $htmlfoldername=&HTML::Entities::encode($env{'form.foldername'},'<>&"');   # $htmlfoldername=&HTML::Entities::encode($env{'form.foldername'},'<>&"');
     }      }
     my ($pagepath,$pagesymb);      my $isexternal;
     if ($env{'form.pagepath'}) {      if ($residx) {
         $container = 'page';          my $currurl = $url;
         $pagepath=&escape($env{'form.pagepath'});          $currurl =~ s{^http(|s)(&colon;|:)//}{/adm/wrapper/ext/};
         $pagesymb=&escape($env{'form.pagesymb'});          if ($currurl =~ m{^/adm/wrapper/ext/}) {
     }              $isexternal = 1;
     my $cpinfo='';          }
     if ($env{'form.markedcopy_url'}) {          if (!$supplementalflag) {
        $cpinfo='&markedcopy_url='.              my $path = 'uploaded/'.
                &escape($env{'form.markedcopy_url'}).                         $env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.
                '&markedcopy_title='.                         $env{'course.'.$env{'request.course.id'}.'.num'}.'/';
                &escape($env{'form.markedcopy_title'});              $symb = &Apache::lonnet::encode_symb($path.$folder.".$container",
                                                    $residx,
                                                    &Apache::lonnet::declutter($currurl));
           }
       }
       my ($renamelink,%lt,$ishash);
       if (ref($filtersref) eq 'HASH') {
           $ishash = 1;
     }      }
   
     if ($allowed) {      if ($allowed) {
           $form_start = '
      <form action="/adm/coursedocs" method="post">
   ';
           $form_common=(<<END);
      <input type="hidden" name="folderpath" value="$path" />
      <input type="hidden" name="symb" value="$symb" />
   END
           $form_param=(<<END);
      <input type="hidden" name="setparms" value="$orderidx" />
      <input type="hidden" name="changeparms" value="0" />
   END
           $form_end = '</form>';
   
  my $incindex=$index+1;   my $incindex=$index+1;
  my $selectbox='';   my $selectbox='';
  if (($folder!~/^supplemental/) &&   if (($#LONCAPA::map::order>0) &&
     ($#Apache::lonratedt::order>0) &&   
     ((split(/\:/,      ((split(/\:/,
      $Apache::lonratedt::resources[$Apache::lonratedt::order[0]]))[1]        $LONCAPA::map::resources[$LONCAPA::map::order[0]]))[1]
      ne '') &&        ne '') &&
     ((split(/\:/,      ((split(/\:/,
      $Apache::lonratedt::resources[$Apache::lonratedt::order[1]]))[1]        $LONCAPA::map::resources[$LONCAPA::map::order[1]]))[1]
      ne '')) {       ne '')) {
     $selectbox=      $selectbox=
  '<input type="hidden" name="currentpos" value="'.$incindex.'" />'.   '<input type="hidden" name="currentpos" value="'.$incindex.'" />'.
  '<select name="newpos" onChange="this.form.submit()">';   '<select name="newpos" onchange="this.form.submit()"'.$disabled.'>';
     for (my $i=1;$i<=$#Apache::lonratedt::order+1;$i++) {      for (my $i=1;$i<=$#LONCAPA::map::order+1;$i++) {
  if ($i==$incindex) {   if ($i==$incindex) {
     $selectbox.='<option value="" selected="1">('.$i.')</option>';      $selectbox.='<option value="" selected="selected">('.$i.')</option>';
  } else {   } else {
     $selectbox.='<option value="'.$i.'">'.$i.'</option>';      $selectbox.='<option value="'.$i.'">'.$i.'</option>';
  }   }
     }      }
     $selectbox.='</select>';      $selectbox.='</select>';
  }   }
  my %lt=&Apache::lonlocal::texthash(   %lt=&Apache::lonlocal::texthash(
                 'up' => 'Move Up',                  'up' => 'Move Up',
  'dw' => 'Move Down',   'dw' => 'Move Down',
  'rm' => 'Remove',   'rm' => 'Remove',
                 'ct' => 'Cut',                  'ct' => 'Cut',
  'rn' => 'Rename',   'rn' => 'Rename',
  'cp' => 'Copy');   'cp' => 'Copy',
  my $nocopy=0;                  'da' => 'Unset alias', 
         if ($url=~/\.(page|sequence)$/) {                  'sa' => 'Set alias',
     foreach (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$url))) {                  'ex' => 'External Resource',
  my ($title,$url,$ext,$type)=split(/\:/,$_);                  'et' => 'External Tool',
  if (($url=~/\.(page|sequence)/) && ($type ne 'zombie')) {                  'ed' => 'Edit',
     $nocopy=1;                  'pr' => 'Preview',
     last;                  'sv' => 'Save',
  }                  'ul' => 'URL',
     }                  'ti' => 'Title',
                   'er' => 'Editing rights unavailable for your current role.', 
                   );
    my %denied = &action_restrictions($coursenum,$coursedom,$url,
                                             $env{'form.folderpath'},
                                             $currgroups);
           my ($copylink,$cutlink,$removelink);
    my $skip_confirm = 0;
           my $confirm_removal = 0;
    if ( $folder =~ /^supplemental/
        || ($url =~ m{( /smppg$
       |/syllabus$
       |/aboutme$
       |/navmaps$
       |/bulletinboard$
                               |/ext\.tool$
       |\.html$)}x)
                || $isexternal) {
       $skip_confirm = 1;
  }   }
         my $copylink='&nbsp;';          if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
         if ($env{'form.pagepath'}) {              ($url!~/$LONCAPA::assess_page_seq_re/)) {
            unless ($nocopy) {              $confirm_removal = 1;
                $copylink=(<<ENDCOPY);          }
 <a href='javascript:markcopy("$pagepath","$index","$renametitle","page","$pagesymb");'>          if ($url =~ /$LONCAPA::assess_re/) {
 <font size="-2" color="#000099">$lt{'cp'}</font></a></td>              $curralias = (&LONCAPA::map::getparameter($orderidx,'parameter_0_mapalias'))[0];
           }
   
    if ($denied{'copy'}) {
               $copylink=(<<ENDCOPY)
   <span style="visibility: hidden;">$lt{'cp'}</span>
 ENDCOPY  ENDCOPY
             }  
             $line.=(<<END);  
 <form name="entry_$index" action="/adm/coursedocs" method="post">  
 <input type="hidden" name="pagepath" value="$env{'form.pagepath'}" />  
 <input type="hidden" name="pagesymb" value="$env{'form.pagesymb'}" />  
 <input type="hidden" name="markedcopy_url" value="$env{'form.markedcopy_url'}" />  
 <input type="hidden" name="markedcopy_title" value="$env{'form.markedcopy_title'}" />  
 <input type="hidden" name="setparms" value="$orderidx" />  
 <td><table border='0' cellspacing='2' cellpadding='0'>  
 <tr><td bgcolor="#DDDDDD">  
 <a href='/adm/coursedocs?cmd=up_$index&pagepath=$pagepath&pagesymb=$pagesymb$cpinfo'>  
 <img src="${iconpath}move_up.gif" alt='$lt{'up'}' border='0' /></a></td></tr>  
 <tr><td bgcolor="#DDDDDD">  
 <a href='/adm/coursedocs?cmd=down_$index&pagepath=$pagepath&pagesymb=$pagesymb$cpinfo'>  
 <img src="${iconpath}move_down.gif" alt='$lt{'dw'}' border='0' /></a></td></tr>  
 </table></td>  
 <td>$selectbox  
 </td><td bgcolor="#DDDDDD">  
 <a href='javascript:removeres("$pagepath","$index","$renametitle","page","$pagesymb");'>  
 <font size="-2" color="#990000">$lt{'rm'}</font></a>  
 <a href='javascript:cutres("$pagepath","$index","$renametitle","page","$pagesymb");'>  
 <font size="-2" color="#550044">$lt{'ct'}</font></a>  
 <a href='javascript:changename("$pagepath","$index","$renametitle","page","$pagesymb");'>  
 <font size="-2" color="#009900">$lt{'rn'}</font></a>  
 $copylink  
 END  
         } else {          } else {
            unless ($nocopy) {              my $formname = 'edit_copy_'.$orderidx;
                $copylink=(<<ENDCOPY);              my $js = "javascript:checkForSubmit(document.forms.renameform,'copy','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder');";
 <a href='javascript:markcopy("$folderpath","$index","$renametitle","sequence");'>      $copylink=(<<ENDCOPY);
 <font size="-2" color="#000099">$lt{'cp'}</font></a></td>  <form name="$formname" method="post" action="/adm/coursedocs">
   $form_common
   <input type="checkbox" name="copy" id="copy_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','copy');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_copy">$lt{'cp'}</a>
   $form_end
 ENDCOPY  ENDCOPY
               if (($ishash) && (ref($filtersref->{'cancopy'}) eq 'ARRAY')) {
                   push(@{$filtersref->{'cancopy'}},$orderidx);
             }              }
             $line.=(<<END);           }
 <form name="entry_$index" action="/adm/coursedocs" method="post">   if ($denied{'cut'}) {
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />              $cutlink=(<<ENDCUT);
 <input type="hidden" name="markedcopy_url" value="$env{'form.markedcopy_url'}" />  <span style="visibility: hidden;">$lt{'ct'}</span>
 <input type="hidden" name="markedcopy_title" value="$env{'form.markedcopy_title'}" />  ENDCUT
 <input type="hidden" name="setparms" value="$orderidx" />          } else {
 <td><table border='0' cellspacing='2' cellpadding='0'>              my $formname = 'edit_cut_'.$orderidx;
 <tr><td bgcolor="#DDDDDD">              my $js = "javascript:checkForSubmit(document.forms.renameform,'cut','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder');";
 <a href='/adm/coursedocs?cmd=up_$index&folderpath=$folderpath$cpinfo'>      $cutlink=(<<ENDCUT);
 <img src="${iconpath}move_up.gif" alt='$lt{'up'}' border='0' /></a></td></tr>  <form name="$formname" method="post" action="/adm/coursedocs">
 <tr><td bgcolor="#DDDDDD">  $form_common
 <a href='/adm/coursedocs?cmd=down_$index&folderpath=$folderpath$cpinfo'>  <input type="hidden" name="skip_$orderidx" id="skip_cut_$orderidx" value="$skip_confirm" />
 <img src="${iconpath}move_down.gif" alt='$lt{'dw'}' border='0' /></a></td></tr>  <input type="checkbox" name="cut" id="cut_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','cut');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_cut">$lt{'ct'}</a>
 </table></td>  $form_end
 <td>$selectbox  ENDCUT
 </td><td bgcolor="#DDDDDD">              if (($ishash) && (ref($filtersref->{'cancut'}) eq 'ARRAY')) {
 <a href='javascript:removeres("$folderpath","$index","$renametitle","sequence");'>                  push(@{$filtersref->{'cancut'}},$orderidx);
 <font size="-2" color="#990000">$lt{'rm'}</font></a>              }
 <a href='javascript:cutres("$folderpath","$index","$renametitle","sequence");'>          }
 <font size="-2" color="#550044">$lt{'ct'}</font></a>          if ($denied{'remove'}) {
 <a href='javascript:changename("$folderpath","$index","$renametitle","sequence");'>              $removelink=(<<ENDREM);
 <font size="-2" color="#009900">$lt{'rn'}</font></a>  <span style="visibility: hidden;">$lt{'rm'}</a>
   ENDREM
           } else {
               my $formname = 'edit_remove_'.$orderidx;
               my $js = "javascript:checkForSubmit(document.forms.renameform,'remove','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder',$confirm_removal);";
               $removelink=(<<ENDREM);
   <form name="$formname" method="post" action="/adm/coursedocs">
   $form_common
   <input type="hidden" name="skip_$orderidx" id="skip_remove_$orderidx" value="$skip_confirm" />
   <input type="hidden" name="confirm_rem_$orderidx" id="confirm_removal_$orderidx" value="$confirm_removal" />
   <input type="checkbox" name="remove" id="remove_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','remove');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_remove">$lt{'rm'}</a>
   $form_end
   ENDREM
               if (($ishash) && (ref($filtersref->{'canremove'}) eq 'ARRAY')) {
                   push(@{$filtersref->{'canremove'}},$orderidx);
               }
           }
           $renamelink=(<<ENDREN);
   <a href='javascript:changename("$esc_path","$index","$oldtitle");' class="LC_docs_rename">$lt{'rn'}</a>
   ENDREN
           my ($uplink,$downlink);
           if ($canedit) {
               $uplink = "/adm/coursedocs?cmd=up_$index&amp;folderpath=$esc_path&amp;symb=$symb";
               $downlink = "/adm/coursedocs?cmd=down_$index&amp;folderpath=$esc_path&amp;symb=$symb";
           } else {
               $uplink = "javascript:alert('".&js_escape($lt{'er'})."');";
               $downlink = $uplink;
           }
    $line.=(<<END);
   <td>
   <div class="LC_docs_entry_move">
     <a href="$uplink">
       <img src="${iconpath}move_up.gif" alt="$lt{'up'}" class="LC_icon" />
     </a>
   </div>
   <div class="LC_docs_entry_move">
     <a href="$downlink">
       <img src="${iconpath}move_down.gif" alt="$lt{'dw'}" class="LC_icon" />
     </a>
   </div>
   </td>
   <td>
      $form_start
      $form_param
      $form_common
      $selectbox
      $form_end
   </td>
   <td class="LC_docs_entry_commands LC_nobreak">
   $removelink
   $cutlink
 $copylink  $copylink
   </td>
 END  END
         }  
     }      }
 # Figure out what kind of a resource this is  # Figure out what kind of a resource this is
     my ($extension)=($url=~/\.(\w+)$/);      my ($extension)=($url=~/\.(\w+)$/);
     my $uploaded=($url=~/^\/*uploaded\//);      my $uploaded=($url=~/^\/*uploaded\//);
     my $icon=&Apache::loncommon::icon($url);      my $icon=&Apache::loncommon::icon($url);
     my $isfolder=0;      my $isfolder;
     my $ispage=0;      my $ispage;
     my $folderarg;      my $containerarg;
     my $pagearg;      my $folderurl;
     my $pagefile;  
     if ($uploaded) {      if ($uploaded) {
  if ($extension eq 'sequence') {          if (($extension eq 'sequence') || ($extension eq 'page')) {
     $icon=$iconpath.'/folder_closed.gif';              $url=~/\Q$coursenum\E\/([\/\w]+)\.\Q$extension\E$/;
     $url=~/$coursenum\/([\/\w]+)\.sequence$/;              $containerarg = $1;
     $url='/adm/coursedocs?';      if ($extension eq 'sequence') {
     $folderarg=$1;          $icon=$iconpath.'navmap.folder.closed.gif';
     $isfolder=1;                  $isfolder=1;
         } elsif ($extension eq 'page') {              } else {
             $icon=$iconpath.'/page.gif';                  $icon=$iconpath.'page.gif';
             $url=~/$coursenum\/([\/\w]+)\.page$/;                  $ispage=1;
             $pagearg=$1;              }
             $url='/adm/coursedocs?';              $folderurl = &Apache::lonnet::declutter($url);
             $ispage=1;              if ($allowed) {
                   $url='/adm/coursedocs?';
               } else {
                   $url='/adm/supplemental?';
               }
  } else {   } else {
     &Apache::lonnet::allowuploaded('/adm/coursedoc',$url);      &Apache::lonnet::allowuploaded('/adm/coursedoc',$url);
  }   }
     }      }
     $url=~s-^http(\&colon\;|:)//-/adm/wrapper/ext/-;  
     if ((!$isfolder) && ($residx) && ($folder!~/supplemental/) && (!$ispage)) {      my ($editlink,$extresform,$anchor,$hiddenres,$nomodal);
  my $symb=&Apache::lonnet::symbclean(      my $orig_url = $url;
           &Apache::lonnet::declutter('uploaded/'.      $orig_url=~s{http(&colon;|:)//https(&colon;|:)//}{https$2//};
            $env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.      $url=~s{^http(|s)(&colon;|:)//}{/adm/wrapper/ext/};
            $env{'course.'.$env{'request.course.id'}.'.num'}.'/'.$folder.      if (!$supplementalflag && $residx && $symb) {
            '.sequence').          if ((!$isfolder) && (!$ispage)) {
            '___'.$residx.'___'.      (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
    &Apache::lonnet::declutter($url));      $url=&Apache::lonnet::clutter($url);
  (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);      if ($url=~/^\/*uploaded\//) {
  $url=&Apache::lonnet::clutter($url);          $url=~/\.(\w+)$/;
  if ($url=~/^\/*uploaded\//) {          my $embstyle=&Apache::loncommon::fileembstyle($1);
     $url=~/\.(\w+)$/;          if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
     my $embstyle=&Apache::loncommon::fileembstyle($1);      $url='/adm/wrapper'.$url;
     if (($embstyle eq 'img') || ($embstyle eq 'emb')) {          } elsif ($embstyle eq 'ssi') {
       #do nothing with these
           } elsif ($url!~/\.(sequence|page)$/) {
       $url='/adm/coursedocs/showdoc'.$url;
           }
       } elsif ($url=~m{^(|/adm/wrapper)/ext/([^#]+)}) {
                   my $wrapped = $1;
                   my $exturl = $2;
                   if ($wrapped eq '') {
                       $url='/adm/wrapper'.$url;
                   }
                   if (($ENV{'SERVER_PORT'} == 443) && ($exturl !~ /^https:/)) {
                       $nomodal = 1;
                   }
       } elsif ($url=~m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
  $url='/adm/wrapper'.$url;   $url='/adm/wrapper'.$url;
     } elsif ($embstyle eq 'ssi') {              } elsif ($url eq "/public/$coursedom/$coursenum/syllabus") {
  #do nothing with these                  if (($ENV{'SERVER_PORT'} == 443) &&
     } elsif ($url!~/\.(sequence|page)$/) {                      ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
  $url='/adm/coursedocs/showdoc'.$url;                      unless (&Apache::lonnet::uses_sts()) {
     }                          $url .= '?usehttp=1';
  } elsif ($url=~m|^/ext/|) {                       }
     $url='/adm/wrapper'.$url;                      $nomodal = 1;
  }                  }
  $url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb);              }
  if ($container eq 'page') {              if (&Apache::lonnet::symbverify($symb,$url)) {
     my $symb=$env{'form.pagesymb'};                  my $shownsymb = $symb;
                           if ($isexternal) {
     $url=&Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);                      if ($url =~ /^([^#]+)#([^#]+)$/) {
     $url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb);                          $url = $1;
                           $anchor = $2;
                           my $escan = &escape('#');
                           $shownsymb =~ s/^([^\#]+)#([^\#]+)$/$1$escan$2/;
                       }
                   }
                   unless ($env{'request.role.adv'}) {
                       if ((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i) {
                           $url = '';
                       }
                       if (&Apache::lonnet::EXT('resource.0.hiddenresource',$symb) =~ /^yes$/i) {
                           $url = '';
                           $hiddenres = 1;
                       }
                   }
                   if ($url ne '') {
                       $url.=(($url=~/\?/)?'&':'?').'symb='.&escape($shownsymb);
                   }
               } elsif (!$env{'request.role.adv'}) {
                   my $checkencrypt;
                   if (((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i) ||
                         $isencrypted || (&Apache::lonnet::EXT('resource.0.encrypturl',$symb) =~ /^yes$/i)) {
                       $checkencrypt = 1;
                   } elsif (ref($navmapref)) {
                       unless (ref($$navmapref)) {
                           $$navmapref = Apache::lonnavmaps::navmap->new();
                       }
                       if (ref($$navmapref)) {
                           if (lc($$navmapref->get_mapparam($symb,undef,"0.encrypturl")) eq 'yes') {
                               $checkencrypt = 1;       
                           }
                       }
                   }
                   if ($checkencrypt) {
                       my $shownsymb = &Apache::lonenc::encrypted($symb);
                       my $shownurl = &Apache::lonenc::encrypted($url);
                       if (&Apache::lonnet::symbverify($shownsymb,$shownurl)) {
                           $url = $shownurl.(($shownurl=~/\?/)?'&':'?').'symb='.&escape($shownsymb);
                           if ($env{'request.enc'} ne '') {
                               delete($env{'request.enc'});
                           }
                       } else {
                           $url='';
                       }
                   } else {
                       $url='';
                   }
               } else {
                   $url='';
               }
  }   }
       } elsif ($supplementalflag) {
           if ($isexternal) {
               if ($url =~ /^([^#]+)#([^#]+)$/) {
                   $url = $1;
                   $anchor = $2;
                   if (($url =~ m{^(|/adm/wrapper)/ext/(?!https:)}) && ($ENV{'SERVER_PORT'} == 443)) {
                       unless (&Apache::lonnet::uses_sts()) {
                           if ($hostname ne '') {
                               $url = 'http://'.$hostname.$url;
                           }
                           $url .= (($url =~ /\?/) ? '&amp;':'?').'usehttp=1';
                       }
                       $nomodal = 1;
                   }
               }
           } elsif ($url =~ m{^\Q/public/$coursedom/$coursenum/syllabus\E}) {
               if (($ENV{'SERVER_PORT'} == 443) &&
                   ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
                   unless (&Apache::lonnet::uses_sts()) {
                       if ($hostname ne '') {
                           $url = 'http://'.$hostname.$url;
                       }
                       $url .= (($url =~ /\?/) ? '&amp;':'?').'usehttp=1';
                   }
                   $nomodal = 1;
               }
           }
     }      }
     my $parameterset='&nbsp;';      my ($rand_pick_text,$rand_order_text,$hiddenfolder);
     if ($isfolder || $extension eq 'sequence') {      my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
       if ($isfolder || $ispage || $extension eq 'sequence' || $extension eq 'page') {
  my $foldername=&escape($foldertitle);   my $foldername=&escape($foldertitle);
  my $folderpath=$env{'form.folderpath'};   my $folderpath=$env{'form.folderpath'};
  if ($folderpath) { $folderpath.='&' };   if ($folderpath) { $folderpath.='&' };
  $folderpath.=$folderarg.'&'.$foldername;          if (!$allowed && $supplementalflag) {
  $url.='folderpath='.&escape($folderpath).$cpinfo;              $folderpath.=$containerarg.'&'.$foldername;
  $parameterset='<label>'.&mt('Randomly Pick: ').              $url.='folderpath='.&escape($folderpath);
     '<input type="text" size="4" onChange="this.form.submit()" name="randpick_'.$orderidx.'" value="'.          } else {
     (&Apache::lonratedt::getparameter($orderidx,              my $rpicknum = (&LONCAPA::map::getparameter($orderidx,
                                               'parameter_randompick'))[0].                                                          'parameter_randompick'))[0];
                                               '" />'.              my $randorder = ((&LONCAPA::map::getparameter($orderidx,
 '<font size="-2"><a href="javascript:void(0)">'.&mt('Store').'</a></font></label>';                                                'parameter_randomorder'))[0]=~/^yes$/i);
                      my $hiddenmap = ((&LONCAPA::map::getparameter($orderidx,
     }                                                'parameter_hiddenresource'))[0]=~/^yes$/i);
     if ($ispage) {              my $encryptmap = ((&LONCAPA::map::getparameter($orderidx,
         my $pagename=&escape($pagetitle);                                                'parameter_encrypturl'))[0]=~/^yes$/i);
         my $pagepath;              unless ($hiddenmap) {
         my $folderpath=$env{'form.folderpath'};                  if (ref($navmapref)) {
         if ($folderpath) { $pagepath = $folderpath.'&' };                      unless (ref($$navmapref)) {
         $pagepath.=$pagearg.'&'.$pagename;                          $$navmapref = Apache::lonnavmaps::navmap->new();
  my $symb=$env{'form.pagesymb'};                      }
  if (!$symb) {                      if (ref($$navmapref)) {
     my $path='uploaded/'.                          if (lc($$navmapref->get_mapparam(undef,$folderurl,"0.hiddenresource")) eq 'yes') {
  $env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.                              my @resources = $$navmapref->retrieveResources($folderurl,$filterFunc,1,1);
  $env{'course.'.$env{'request.course.id'}.'.num'}.'/';                              unless (@resources) {
     $symb=&Apache::lonnet::encode_symb($path.$folder.'.sequence',                                  $hiddenmap = 1;
        $residx,                                  unless ($env{'request.role.adv'}) {  
        $path.$pagearg.'.page');                                      $url = '';
  }                                      $hiddenfolder = 1;
  $url.='pagepath='.&escape($pagepath).                                  }
     '&pagesymb='.&escape($symb).$cpinfo;                              }
     }                          }
     $line.='<td bgcolor="#FFFFBB"><a href="'.$url.'"><img src="'.$icon.                      }
  '" border="0"></a></td>'.                  }
         "<td bgcolor='#FFFFBB'><a href=\"$url\">$title</a></td>";              }
               unless ($encryptmap) {
                   if ((ref($navmapref)) && (ref($$navmapref))) {
                       if (lc($$navmapref->get_mapparam(undef,$folderurl,"0.encrypturl")) eq 'yes') {
                           $encryptmap = 1;
                       }
                   }
               }
   
   # Append randompick number, hidden, and encrypted with ":" to foldername,
   # so it gets transferred between levels
       $folderpath.=$containerarg.'&'.$foldername.
                            ':'.$rpicknum.':'.$hiddenmap.':'.$encryptmap.':'.$randorder.':'.$ispage;
               unless ($url eq '') {
                   $url.='folderpath='.&escape($folderpath);
               }
               my $rpckchk;
               if ($rpicknum) {
                   $rpckchk = ' checked="checked"';
                   if (($ishash) && (ref($filtersref->{'randompick'}) eq 'ARRAY')) {
                       push(@{$filtersref->{'randompick'}},$orderidx.':'.$rpicknum);
                   }
               }
               my $formname = 'edit_randompick_'.$orderidx;
       $rand_pick_text = 
   '<form action="/adm/coursedocs" method="post" name="'.$formname.'">'."\n".
   $form_param."\n".
   $form_common."\n".
   '<span class="LC_nobreak"><label><input type="checkbox" name="randompick_'.$orderidx.'" id="randompick_'.$orderidx.'" onclick="'."updatePick(this.form,'$orderidx','check');".'"'.$rpckchk.$disabled.' /> '.&mt('Randomly Pick').'</label><input type="hidden" name="rpicknum_'.$orderidx.'" id="rpicknum_'.$orderidx.'" value="'.$rpicknum.'" /><span id="randompicknum_'.$orderidx.'">';
               if ($rpicknum ne '') {
                   $rand_pick_text .= ':&nbsp;<a href="javascript:updatePick('."document.$formname,'$orderidx','link'".')">'.$rpicknum.'</a>';
               }
               $rand_pick_text .= '</span></span>'.
                                  $form_end;
               my $ro_set;
               if ($randorder) {
                   $ro_set = 'checked="checked"';
                   if (($ishash) && (ref($filtersref->{'randomorder'}) eq 'ARRAY')) {
                       push(@{$filtersref->{'randomorder'}},$orderidx);
                   }
               }
               $formname = 'edit_rorder_'.$orderidx;
       $rand_order_text = 
   '<form action="/adm/coursedocs" method="post" name="'.$formname.'">'."\n".
   $form_param."\n".
   $form_common."\n".
   '<span class="LC_nobreak"><label><input type="checkbox" name="randomorder_'.$orderidx.'" id="randomorder_'.$orderidx.'" onclick="checkForSubmit(this.form,'."'randomorder','settings'".');" '.$ro_set.$disabled.' /> '.&mt('Random Order').' </label></span>'.
   $form_end; 
           }
       } elsif ($supplementalflag && !$allowed) {
           my $isexttool;
           if ($url=~m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
               $url='/adm/wrapper'.$url;
               $isexttool = 1;
           }
           $url .= ($url =~ /\?/) ? '&amp;':'?';
           $url .= 'folderpath='.&HTML::Entities::encode($esc_path,'<>&"');
           if ($title) {
               $url .= '&amp;title='.&HTML::Entities::encode($renametitle,'<>&"');
           }
           if ((($isexternal) || ($isexttool)) && $orderidx) {
               $url .= '&amp;idx='.$orderidx;
           }
           if ($anchor ne '') {
               $url .= '&amp;anchor='.&HTML::Entities::encode($anchor,'"<>&');
           }
       }
       my ($tdalign,$tdwidth);
       if ($allowed) {
           my $fileloc =
               &Apache::lonnet::declutter(&Apache::lonnet::filelocation('',$orig_url));
           if ($isexternal) {
               ($editlink,$extresform) =
                   &Apache::lonextresedit::extedit_form(0,$residx,$orig_url,$title,$pathitem,
                                                        undef,undef,undef,undef,undef,undef,
                                                        undef,$disabled);
           } elsif ($orig_url =~ m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
               ($editlink,$extresform) =
                   &Apache::lonextresedit::extedit_form(0,$residx,$orig_url,$title,$pathitem,
                                                        undef,undef,undef,'tool',$coursedom,
                                                        $coursenum,$ltitoolsref,$disabled);
           } elsif (!$isfolder && !$ispage) {
               my ($cfile,$home,$switchserver,$forceedit,$forceview) = 
                   &Apache::lonnet::can_edit_resource($fileloc,$coursenum,$coursedom,$orig_url);
               if (($cfile ne '') && ($symb ne '' || $supplementalflag)) {
                   my $suppanchor;
                   if ($supplementalflag) {
                       $suppanchor = $anchor;
                   }
                   my $jscall =
                       &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,
                                                               $switchserver,
                                                               $forceedit,
                                                               undef,$symb,
                                                               &escape($env{'form.folderpath'}),
                                                               $renametitle,$hostname,
                                                               '','',1,$suppanchor);
                   if ($jscall) {
                       $editlink = '<a class="LC_docs_ext_edit" href="javascript:'.
                                   $jscall.'" >'.&mt('Edit').'</a>&nbsp;'."\n";
                   }
               }
           }
           $tdalign = ' align="right" valign="top"';
           $tdwidth = ' width="80%"';
       }
       my $reinit;
       if ($crstype eq 'Community') {
           $reinit = &mt('(re-initialize community to access)');
       } else {
           $reinit = &mt('(re-initialize course to access)');
       }
       $line.='<td class="LC_docs_entry_commands"'.$tdalign.'><span class="LC_nobreak">'.$editlink.$renamelink;
       if ($orig_url =~ /$LONCAPA::assess_re/) {
           $line.= '<br />';
           if ($curralias ne '') {
               $line.='<span class="LC_nobreak"><a href="javascript:delalias('."'$esc_path','$orderidx'".');" class="LC_docs_alias">'.
                      $lt{'da'}.'</a></span>';
           } else {
               $line.='<span class="LC_nobreak"><a href="javascript:setalias('."'$esc_path','$orderidx'".');" class="LC_docs_alias">'.
                      $lt{'sa'}.'</a></span>';
           }
       }
       $line.='</td><td>';
       my $link;
       if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) {
          $line.='<a href="'.$url.'"><img src="'.$icon.'" alt="" class="LC_icon" /></a>';
       } elsif ($url) {
          if ($anchor ne '') {
              if ($supplementalflag) {
                  $anchor = '&amp;anchor='.&HTML::Entities::encode($anchor,'"<>&');
              } else {
                  $anchor = '#'.&HTML::Entities::encode($anchor,'"<>&');
              }
          }
          if ((!$supplementalflag) && ($nomodal) && ($hostname ne '')) {
              $link = 'http://'.$hostname.$url;
          } else {
              $link = $url;
          }
          $link = &js_escape($link.(($url=~/\?/)?'&amp;':'?').'inhibitmenu=yes'.$anchor);
          if ($nomodal) {
              $line.='<a href="#" onclick="javascript:window.open('."'$link','syllabuspreview','height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1')".'; return false;" />'.
                     '<img src="'.$icon.'" alt="" class="LC_icon" border="0" /></a>';
          } else {
              $line.=&Apache::loncommon::modal_link($link,
                                                    '<img src="'.$icon.'" alt="" class="LC_icon" />',600,500);
          }
       } else {
          $line.='<img src="'.$icon.'" alt="" class="LC_icon" />';
       }
       $line.='</span></td><td'.$tdwidth.'>';
       if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) {
          $line.='<a href="'.$url.'">'.$title.'</a>';
       } elsif ($url) {
          if ($nomodal) {
              $line.='<a href="#" onclick="javascript:window.open('."'$link','syllabuspreview','height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1')".'; return false;" />'.
                     $title.'</a>';
          } else {
              $line.=&Apache::loncommon::modal_link($link,$title,600,500);
          }
       } elsif (($hiddenfolder) || ($hiddenres)) {
          $line.=$title.' <span class="LC_warning LC_docs_reinit_warn">('.&mt('Hidden').')</span>';
       } else {
          $line.=$title.' <span class="LC_docs_reinit_warn">'.$reinit.'</span>';
       }
       if (($allowed) && ($curralias ne '')) {
           $line .= '<br /><span class="LC_docs_alias_name">('.$curralias.')</span>';
       } else {
           $line .= $extresform;
       }
       $line .= '</td>';
       $rand_pick_text = '&nbsp;' if ($rand_pick_text eq '');
       $rand_order_text = '&nbsp;' if ($rand_order_text eq '');
     if (($allowed) && ($folder!~/^supplemental/)) {      if (($allowed) && ($folder!~/^supplemental/)) {
   my %lt=&Apache::lonlocal::texthash(    my %lt=&Apache::lonlocal::texthash(
        'hd' => 'Hidden',         'hd' => 'Hidden',
        'ec' => 'URL hidden');         'ec' => 'URL hidden');
  my $enctext=          my ($enctext,$hidtext);
     ((&Apache::lonratedt::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i?' checked="1"':'');          if ((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i) {
  my $hidtext=              $enctext = ' checked="checked"';
     ((&Apache::lonratedt::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i?' checked="1"':'');              if (($ishash) && (ref($filtersref->{'encrypturl'}) eq 'ARRAY')) {
                   push(@{$filtersref->{'encrypturl'}},$orderidx);
               }
           }
           if ((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i) {
               $hidtext = ' checked="checked"';
               if (($ishash) && (ref($filtersref->{'randomorder'}) eq 'ARRAY')) {
                   push(@{$filtersref->{'hiddenresource'}},$orderidx);
               }
           }
           my $formhidden = 'edit_hiddenresource_'.$orderidx;
           my $formurlhidden = 'edit_encrypturl_'.$orderidx;
  $line.=(<<ENDPARMS);   $line.=(<<ENDPARMS);
 <td bgcolor="#BBBBFF"><font size='-2'>    <td class="LC_docs_entry_parameter">
 <nobr><label><input type="checkbox" name="hidprs_$orderidx" onClick="this.form.submit()" $hidtext /> $lt{'hd'}</label></nobr></td>      <form action="/adm/coursedocs" method="post" name="$formhidden">
 <td bgcolor="#BBBBFF"><font size='-2'>      $form_param
 <nobr><label><input type="checkbox" name="encprs_$orderidx" onClick="this.form.submit()" $enctext /> $lt{'ec'}</label></nobr></td>      $form_common
 <td bgcolor="#BBBBFF"><font size="-2">$parameterset</font></td>      <label><input type="checkbox" name="hiddenresource_$orderidx" id="hiddenresource_$orderidx" onclick="checkForSubmit(this.form,'hiddenresource','settings');" $hidtext $disabled /> $lt{'hd'}</label>
       $form_end
       <br />
       <form action="/adm/coursedocs" method="post" name="$formurlhidden">
       $form_param
       $form_common
       <label><input type="checkbox" name="encrypturl_$orderidx" id="encrypturl_$orderidx" onclick="checkForSubmit(this.form,'encrypturl','settings');" $enctext $disabled /> $lt{'ec'}</label>
       $form_end
     </td>
     <td class="LC_docs_entry_parameter">$rand_pick_text<br />
                                         $rand_order_text</td>
 ENDPARMS  ENDPARMS
     }      }
     $line.="</form></tr>";      $line.=&Apache::loncommon::end_data_table_row();
     return $line;      return $line;
 }  }
   
 # ---------------------------------------------------------------- tie the hash  sub action_restrictions {
       my ($cnum,$cdom,$url,$folderpath,$currgroups) = @_;
       my %denied = (
                      cut    => 0,
                      copy   => 0,
                      remove => 0,
                    );
       if ($url=~ m{^/res/.+\.(page|sequence)$}) {
           # no copy for published maps
           $denied{'copy'} = 1;
       } elsif ($url=~m{^/res/lib/templates/([^/]+)\.problem$}) {
           unless ($1 eq 'simpleproblem') {
               $denied{'copy'} = 1;
           }
           $denied{'cut'} = 1;
       } elsif ($url eq "/uploaded/$cdom/$cnum/group_allfolders.sequence") {
           if ($folderpath =~ /^default&[^\&]+$/) {
               if ((ref($currgroups) eq 'HASH') && (keys(%{$currgroups}) > 0)) {
                   $denied{'remove'} = 1;
               }
               $denied{'cut'} = 1;
               $denied{'copy'} = 1;
           }
       } elsif ($url =~ m{^\Q/uploaded/$cdom/$cnum/group_folder_\E(\w+)\.sequence$}) {
           my $group = $1;
           if ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+$/) {
               if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
                   $denied{'remove'} = 1;
               }
           }
           $denied{'cut'} = 1;
           $denied{'copy'} = 1;
       } elsif ($url =~ m{^\Q/adm/$cdom/$cnum/\E(\w+)/smppg$}) {
           my $group = $1;
           if ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+\&\Qgroup_folder_$group\E\&[^\&]+$/) {
               if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
                   my %groupsettings = &Apache::longroup::get_group_settings($currgroups->{$group});
                   if (keys(%groupsettings) > 0) {
                       $denied{'remove'} = 1;
                   }
                   $denied{'cut'} = 1;
                   $denied{'copy'} = 1;
               }
           }
       } elsif ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+\&group_folder_(\w+)\&/) {
           my $group = $1;
           if ($url =~ /group_boards_\Q$group\E/) {
               if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
                   my %groupsettings = &Apache::longroup::get_group_settings($currgroups->{$group});
                   if (keys(%groupsettings) > 0) {
                       if (ref($groupsettings{'functions'}) eq 'HASH') {
                           if ($groupsettings{'functions'}{'discussion'} eq 'on') {
                               $denied{'remove'} = 1;
                           }
                       }
                   }
                   $denied{'cut'} = 1;
                   $denied{'copy'} = 1;
               }
           }
       }
       return %denied;
   }
   
   sub new_timebased_suffix {
       my ($dom,$num,$type,$area,$container) = @_;
       my ($prefix,$namespace,$idtype,$errtext,$locknotfreed);
       if ($type eq 'paste') {
           $prefix = $type;
           $namespace = 'courseeditor';
           $idtype = 'addcode';
       } elsif ($type eq 'map') {
           $prefix = 'docs';
           if ($area eq 'supplemental') {
               $prefix = 'supp';
           }
           $prefix .= $container;
           $namespace = 'uploadedmaps';
       } else {
           $prefix = $type;
           $namespace = 'templated';
       }
       my ($suffix,$freedlock,$error) =
           &Apache::lonnet::get_timebased_id($prefix,'num',$namespace,$dom,$num,$idtype);
       if (!$suffix) {
           if ($type eq 'paste') {
               $errtext = &mt('Failed to acquire a unique timestamp-based suffix when adding to the paste buffer.');
           } elsif ($type eq 'map') {
               $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new folder/page.');
           } elsif ($type eq 'smppg') {
               $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new simple page.');
           } elsif ($type eq 'exttool') {
               $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new external tool.');
           } else {
               $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new discussion board.');
           }
           if ($error) {
               $errtext .= '<br />'.$error;
           }
       }
       if ($freedlock ne 'ok') {
           $locknotfreed =
               '<div class="LC_error">'.
               &mt('There was a problem removing a lockfile.').' ';
           if ($type eq 'paste') {
               if ($freedlock eq 'nolock') {
                   $locknotfreed =
                       '<div class="LC_error">'.
                       &mt('A lockfile was not released when you added content to the clipboard earlier in this session.').' '.
    
                       &mt('As a result addition of items to the clipboard will be unavailable until your next log-in.');
               } else { 
                   $locknotfreed .=
                       &mt('This will prevent addition of items to the clipboard until your next log-in.');
               }
           } elsif ($type eq 'map') {
               $locknotfreed .=
                   &mt('This will prevent creation of additional folders or composite pages in this course.');
           } elsif ($type eq 'smppg') {
               $locknotfreed .=
                   &mt('This will prevent creation of additional simple pages in this course.');
           } elsif ($type eq 'exttool') {
               $locknotfreed .=
                   &mt('This will prevent creation of additional external tools in this course.');
           } else {
               $locknotfreed .=
                   &mt('This will prevent creation of additional discussion boards in this course.');
           }
           unless ($type eq 'paste') {
               $locknotfreed .=
                   ' '.&mt('Please contact the [_1]helpdesk[_2] for assistance.',
                           '<a href="/adm/helpdesk" target="_helpdesk">','</a>');
           }
           $locknotfreed .= '</div>';
       }
       return ($suffix,$errtext,$locknotfreed);
   }
   
   =pod
   
   =item tiehash()
   
   tie the hash
   
   =cut
   
 sub tiehash {  sub tiehash {
     my ($mode)=@_;      my ($mode)=@_;
Line 1667  sub tiehash { Line 4672  sub tiehash {
                 $hashtied=1;                  $hashtied=1;
     }      }
  }   }
     }          }
 }  }
   
 sub untiehash {  sub untiehash {
Line 1676  sub untiehash { Line 4681  sub untiehash {
     return OK;      return OK;
 }  }
   
 # --------------------------------------------------------------- check on this  
   
   
 sub checkonthis {  sub checkonthis {
     my ($r,$url,$level,$title)=@_;      my ($r,$url,$level,$title,$checkstale)=@_;
     $url=&unescape($url);      $url=&unescape($url);
     $alreadyseen{$url}=1;      $alreadyseen{$url}=1;
     $r->rflush();      $r->rflush();
     if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {      if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {
        $r->print("\n<br />");         $r->print("\n<br />");
          if ($level==0) {
              $r->print("<br />");
          }
        for (my $i=0;$i<=$level*5;$i++) {         for (my $i=0;$i<=$level*5;$i++) {
            $r->print('&nbsp;');             $r->print('&nbsp;');
        }         }
        $r->print('<a href="'.$url.'" target="cat">'.         $r->print('<a href="'.$url.'" target="cat">'.
  ($title?$title:$url).'</a> ');   ($title?$title:$url).'</a> ');
        if ($url=~/^\/res\//) {         if ($url=~/^\/res\//) {
             my $updated;
             if (($checkstale) && ($url !~ m{^/res/lib/templates/}) &&
                 ($url !~ /\.\d+\.\w+$/)) {
                 $updated = &Apache::lonnet::remove_stale_resfile($url);
             }
   my $result=&Apache::lonnet::repcopy(    my $result=&Apache::lonnet::repcopy(
                               &Apache::lonnet::filelocation('',$url));                                &Apache::lonnet::filelocation('',$url));
           if ($result eq 'ok') {            if ($result eq 'ok') {
              $r->print('<font color="green">'.&mt('ok').'</font>');               $r->print('<span class="LC_success">'.&mt('ok').'</span>');
                if ($updated) {
                    $r->print('<br />');
                    for (my $i=0;$i<=$level*5;$i++) {
                        $r->print('&nbsp;');
                    }
                    $r->print('- '.&mt('Outdated copy removed'));
                }
              $r->rflush();               $r->rflush();
              &Apache::lonnet::countacc($url);               &Apache::lonnet::countacc($url);
              $url=~/\.(\w+)$/;               $url=~/\.(\w+)$/;
Line 1704  sub checkonthis { Line 4725  sub checkonthis {
                  for (my $i=0;$i<=$level*5;$i++) {                   for (my $i=0;$i<=$level*5;$i++) {
                      $r->print('&nbsp;');                       $r->print('&nbsp;');
                  }                   }
                  $r->print('- '.&mt('Rendering').': ');                   $r->print('- '.&mt('Rendering:').' ');
  my ($errorcount,$warningcount)=split(/:/,   my ($errorcount,$warningcount)=split(/:/,
        &Apache::lonnet::ssi_body($url,         &Apache::lonnet::ssi_body($url,
        ('grade_target'=>'web',         ('grade_target'=>'web',
Line 1712  sub checkonthis { Line 4733  sub checkonthis {
                  if (($errorcount) ||                   if (($errorcount) ||
                      ($warningcount)) {                       ($warningcount)) {
      if ($errorcount) {       if ($errorcount) {
                         $r->print('<img src="/adm/lonMisc/bomb.gif" /><font color="red"><b>'.                          $r->print('<img src="/adm/lonMisc/bomb.gif" alt="'.&mt('bomb').'" /><span class="LC_error">'.
   $errorcount.' '.                            &mt('[quant,_1,error]',$errorcount).'</span>');
   &mt('error(s)').'</b></font> ');  
                      }                       }
      if ($warningcount) {       if ($warningcount) {
                         $r->print('<font color="blue">'.                          $r->print('<span class="LC_warning">'.
   $warningcount.' '.                            &mt('[quant,_1,warning]',$warningcount).'</span>');
   &mt('warning(s)').'</font>');  
                      }                       }
                  } else {                   } else {
                      $r->print('<font color="green">'.&mt('ok').'</font>');                       $r->print('<span class="LC_success">'.&mt('ok').'</span>');
                  }                   }
                  $r->rflush();                   $r->rflush();
              }               }
      my $dependencies=       my $dependencies=
                 &Apache::lonnet::metadata($url,'dependencies');                  &Apache::lonnet::metadata($url,'dependencies');
              foreach (split(/\,/,$dependencies)) {               foreach my $dep (split(/\,/,$dependencies)) {
  if (($_=~/^\/res\//) && (!$alreadyseen{$_})) {   if (($dep=~/^\/res\//) && (!$alreadyseen{$dep})) {
                     &checkonthis($r,$_,$level+1);                      &checkonthis($r,$dep,$level+1,'',$checkstale);
                  }                   }
              }               }
           } elsif ($result eq 'unavailable') {            } elsif ($result eq 'unavailable') {
              $r->print('<font color="red"><b>'.&mt('connection down').'</b></font>');               $r->print('<span class="LC_error">'.&mt('connection down').'</span>');
           } elsif ($result eq 'not_found') {            } elsif ($result eq 'not_found') {
       unless ($url=~/\$/) {        unless ($url=~/\$/) {
   $r->print('<font color="red"><b>'.&mt('not found').'</b></font>');    $r->print('<span class="LC_error">'.&mt('not found').'</span>');
       } else {        } else {
   $r->print('<font color="yellow"><b>'.&mt('unable to verify variable URL').'</b></font>');    $r->print('<span class="LC_error">'.&mt('unable to verify variable URL').'</span>');
       }        }
           } else {            } else {
              $r->print('<font color="red"><b>'.&mt('access denied').'</b></font>');               $r->print('<span class="LC_error">'.&mt('access denied').'</span>');
           }            }
       }            if (($updated) && ($result ne 'ok')) {
    }                $r->print('<br />'.&mt('Outdated copy removed'));
             }
          }
       }
 }  }
   
   
 #  
 # ----------------------------------------------------------------- List Symbs  =pod
 #   
   =item list_symbs()
   
   List Content Identifiers
   
   =cut
   
 sub list_symbs {  sub list_symbs {
     my ($r) = @_;      my ($r) = @_;
   
     $r->print(&Apache::loncommon::start_page('Symb List'));      my $crstype = &Apache::loncommon::course_type();
       $r->print(&Apache::loncommon::start_page('List of Content Identifiers'));
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Identifiers'));
       $r->print(&startContentScreen('tools'));
     my $navmap = Apache::lonnavmaps::navmap->new();      my $navmap = Apache::lonnavmaps::navmap->new();
     $r->print("<pre>\n");      if (!defined($navmap)) {
     foreach my $res ($navmap->retrieveResources()) {          $r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'.
  $r->print($res->compTitle()."\t".$res->symb()."\n");                    '<div class="LC_error">'.
                     &mt('Unable to retrieve information about course contents').
                     '</div>');
           &Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'});
       } else {
           $r->print('<h4 class="LC_info">'.&mt("$crstype Content Identifiers").'</h4>'.
                     &Apache::loncommon::start_data_table().
                     &Apache::loncommon::start_data_table_header_row().
                     '<th>'.&mt('Title').'</th><th>'.&mt('Identifier').'</th>'.
                     &Apache::loncommon::end_data_table_header_row()."\n");
           my $count;
           foreach my $res ($navmap->retrieveResources()) {
               $r->print(&Apache::loncommon::start_data_table_row().
                         '<td>'.$res->compTitle().'</td>'.
                         '<td>'.$res->symb().'</td>'.
                         &Apache::loncommon::end_data_table_row());
               $count ++;
           }
           if (!$count) {
               $r->print(&Apache::loncommon::start_data_table_row().
                         '<td colspan="2">'.&mt("$crstype is empty").'</td>'.
                         &Apache::loncommon::end_data_table_row()); 
           }
           $r->print(&Apache::loncommon::end_data_table());
       }
       $r->print(&endContentScreen());
   }
   
   sub short_urls {
       my ($r,$canedit) = @_;
       my $crstype = &Apache::loncommon::course_type();
       my $formname = 'shortenurl';
       $r->print(&Apache::loncommon::start_page('Display/Set Shortened URLs'));
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Shortened URLs'));
       $r->print(&startContentScreen('tools'));
       my ($navmap,$errormsg) =
           &Apache::loncourserespicker::get_navmap_object($crstype,'shorturls');
       my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
       my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
       my (%maps,%resources,%titles);
       if (!ref($navmap)) {
           $r->print($errormsg.
                     &endContentScreen());
           return '';
       } else {
           $r->print('<h4 class="LC_info">'.&mt('Tiny URLs for deep-linking into course').'</h4>'."\n");
           $r->rflush();
           my $readonly;
           if ($canedit) {
               my ($numnew,$errors) = &Apache::loncommon::make_short_symbs($cdom,$cnum,$navmap);
               if ($numnew) {
                   $r->print('<p class="LC_info">'.&mt('Created [quant,_1,URL]',$numnew).'</p>');
               }
               if ((ref($errors) eq 'ARRAY') && (@{$errors} > 0)) {
                   $r->print(&mt('The following errors occurred when processing your request to create shortened URLs:').'<br /><ul>');
                   foreach my $error (@{$errors}) {
                       $r->print('<li>'.$error.'</li>');
                   }
                   $r->print('</ul><br />');
               }
           } else {
               $readonly = 1;
           }
           my %currtiny = &Apache::lonnet::dump('tiny',$cdom,$cnum);
           $r->print(&Apache::loncourserespicker::create_picker($navmap,'shorturls',$formname,$crstype,undef,
                                                                undef,undef,undef,undef,undef,\%currtiny,$readonly));
     }      }
     $r->print("\n</pre>\n");      $r->print(&endContentScreen());
     $r->print('<a href="/adm/coursedocs">'.&mt('Return to DOCS').'</a>');  
 }  }
   
   sub contentverifyform {
       my ($r) = @_;
       my $crstype = &Apache::loncommon::course_type();
       $r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Content'));
       $r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Content'));
       $r->print(&startContentScreen('tools'));
       $r->print('<h4 class="LC_info">'.&mt($crstype.' content verification').'</h4>');
       $r->print('<form method="post" action="/adm/coursedocs"><p>'.
                 &mt('Include a check if files copied from elsewhere are up to date (will increase verification time)?').
                 '&nbsp;<span class="LC_nobreak">'.
                 '<label><input type="radio" name="checkstale" value="0" checked="checked" />'.
                 &mt('No').'</label>'.('&nbsp;'x2).
                 '<label><input type="radio" name="checkstale" value="1" />'.
                 &mt('Yes').'</label></span></p><p>'.
                 '<input type="submit" value="'.&mt('Verify content').' "/>'.
                 '<input type="hidden" value="1" name="tools" />'.
                 '<input type="hidden" value="1" name="verify" /></p></form>');
       $r->print(&endContentScreen());
       return;
   }
   
 #  
 # -------------------------------------------------------------- Verify Content  
 #   
 sub verifycontent {  sub verifycontent {
     my ($r) = @_;      my ($r,$checkstale) = @_;
     my $type = &Apache::loncommon::course_type();      my $crstype = &Apache::loncommon::course_type();
    my $loaderror=&Apache::lonnet::overloaderror($r);      $r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Content'));
    if ($loaderror) { return $loaderror; }      $r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Content'));
    $r->print(&Apache::loncommon::start_page('Verify '.$type.' Documents'));      $r->print(&startContentScreen('tools'));
       $r->print('<h4 class="LC_info">'.&mt($crstype.' content verification').'</h4>'); 
    $hashtied=0;     $hashtied=0;
    undef %alreadyseen;     undef %alreadyseen;
    %alreadyseen=();     %alreadyseen=();
    &tiehash();     &tiehash();
    foreach (keys %hash) {     
        if ($hash{$_}=~/\.(page|sequence)$/) {     foreach my $key (keys(%hash)) {
    if (($_=~/^src_/) && ($alreadyseen{&unescape($hash{$_})})) {         if ($hash{$key}=~/\.(page|sequence)$/) {
        $r->print('<hr /><font color="red">'.     if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) {
  &mt('The following sequence or page is included more than once in your '.$type.': ').         $r->print('<hr /><span class="LC_error">'.
  &unescape($hash{$_}).'</font><br />'.   &mt('The following sequence or page is included more than once in your '.$crstype.':').' '.
  &mt('Note that grading records for problems included in this sequence or folder will overlap.<hr />'));   &unescape($hash{$key}).'</span><br />'.
    &mt('Note that grading records for problems included in this sequence or folder will overlap.').'<hr />');
    }     }
        }         }
        if (($_=~/^src\_(.+)$/) && (!$alreadyseen{&unescape($hash{$_})})) {         if (($key=~/^src\_(.+)$/) && (!$alreadyseen{&unescape($hash{$key})})) {
            &checkonthis($r,$hash{$_},0,$hash{'title_'.$1});             &checkonthis($r,$hash{$key},0,$hash{'title_'.$1},$checkstale);
        }         }
    }     }
    &untiehash();     &untiehash();
    $r->print('<h1>'.&mt('Done').'.</h1>'.'<a href="/adm/coursedocs">'.     $r->print('<p class="LC_success">'.&mt('Done').'</p>');
      &mt('Return to DOCS').'</a>');      $r->print(&endContentScreen());
 }  }
   
   
 # -------------------------------------------------------------- Check Versions  
   
 sub devalidateversioncache {  sub devalidateversioncache {
     my $src=shift;      my $src=shift;
     &Apache::lonnet::devalidate_cache_new('courseresversion',$env{'request.course.id'}.'_'.      &Apache::lonnet::devalidate_cache_new('courseresversion',$env{'request.course.id'}.'_'.
Line 1807  sub devalidateversioncache { Line 4918  sub devalidateversioncache {
 }  }
   
 sub checkversions {  sub checkversions {
     my ($r) = @_;      my ($r,$canedit) = @_;
     my $type = &Apache::loncommon::course_type();      my $crstype = &Apache::loncommon::course_type();
     $r->print(&Apache::loncommon::start_page("Check $type Document Versions"));      $r->print(&Apache::loncommon::start_page("Check $crstype Resource Versions"));
       $r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $crstype Resource Versions"));
       $r->print(&startContentScreen('tools'));
   
     my $header='';      my $header='';
     my $startsel='';      my $startsel='';
     my $monthsel='';      my $monthsel='';
Line 1825  sub checkversions { Line 4939  sub checkversions {
   
     $hashtied=0;      $hashtied=0;
     &tiehash();      &tiehash();
     my %newsetversions=();      if ($canedit) {
     if ($env{'form.setmostrecent'}) {          my %newsetversions=();
  $haschanged=1;          if ($env{'form.setmostrecent'}) {
  foreach (keys %hash) {      $haschanged=1;
     if ($_=~/^ids\_(\/res\/.+)$/) {      foreach my $key (keys(%hash)) {
  $newsetversions{$1}='mostrecent';          if ($key=~/^ids\_(\/res\/.+)$/) {
                 &devalidateversioncache($1);      $newsetversions{$1}='mostrecent';
     }                      &devalidateversioncache($1);
  }          }
     } elsif ($env{'form.setcurrent'}) {  
  $haschanged=1;  
  foreach (keys %hash) {  
     if ($_=~/^ids\_(\/res\/.+)$/) {  
  my $getvers=&Apache::lonnet::getversion($1);  
  if ($getvers>0) {  
     $newsetversions{$1}=$getvers;  
     &devalidateversioncache($1);  
  }  
     }      }
  }          } elsif ($env{'form.setcurrent'}) {
     } elsif ($env{'form.setversions'}) {      $haschanged=1;
  $haschanged=1;      foreach my $key (keys(%hash)) {
  foreach (keys %env) {          if ($key=~/^ids\_(\/res\/.+)$/) {
     if ($_=~/^form\.set_version_(.+)$/) {      my $getvers=&Apache::lonnet::getversion($1);
  my $src=$1;      if ($getvers>0) {
  if (($env{$_}) && ($env{$_} ne $setversions{$src})) {          $newsetversions{$1}=$getvers;
     $newsetversions{$src}=$env{$_};          &devalidateversioncache($1);
     &devalidateversioncache($src);      }
  }          }
     }      }
  }          } elsif ($env{'form.setversions'}) {
     }      $haschanged=1;
     if ($haschanged) {      foreach my $key (keys(%env)) {
         if (&Apache::lonnet::put('resourceversions',\%newsetversions,          if ($key=~/^form\.set_version_(.+)$/) {
   $env{'course.'.$env{'request.course.id'}.'.domain'},      my $src=$1;
   $env{'course.'.$env{'request.course.id'}.'.num'}) eq 'ok') {      if (($env{$key}) && ($env{$key} ne $setversions{$src})) {
     $r->print('<h1>'.&mt('Your Version Settings have been Stored').'</h1>');          $newsetversions{$src}=$env{$key};
  } else {          &devalidateversioncache($src);
     $r->print('<h1><font color="red">'.&mt('An Error Occured while Attempting to Store your Version Settings').'</font></h1>');      }
  }          }
  &mark_hash_old();      }
           }
           if ($haschanged) {
               if (&Apache::lonnet::put('resourceversions',\%newsetversions,
                $env{'course.'.$env{'request.course.id'}.'.domain'},
                $env{'course.'.$env{'request.course.id'}.'.num'}) eq 'ok') {
           $r->print(&Apache::loncommon::confirmwrapper(
                       &Apache::lonhtmlcommon::confirm_success(&mt('Your Version Settings have been Saved'))));
       } else {
           $r->print(&Apache::loncommon::confirmwrapper(
                       &Apache::lonhtmlcommon::confirm_success(&mt('An Error Occured while Attempting to Save your Version Settings'),1)));
       }
       &mark_hash_old();
           }
           &changewarning($r,'');
     }      }
     &changewarning($r,'');  
     if ($env{'form.timerange'} eq 'all') {      if ($env{'form.timerange'} eq 'all') {
 # show all documents  # show all documents
  $header=&mt('All Documents in '.$type);   $header=&mt('All content in '.$crstype);
  $allsel=1;   $allsel=' selected="selected"';
  foreach (keys %hash) {   foreach my $key (keys(%hash)) {
     if ($_=~/^ids\_(\/res\/.+)$/) {      if ($key=~/^ids\_(\/res\/.+)$/) {
  my $src=$1;   my $src=$1;
  $changes{$src}=1;   $changes{$src}=1;
     }      }
Line 1883  sub checkversions { Line 5001  sub checkversions {
  %changes=&Apache::lonnet::dump   %changes=&Apache::lonnet::dump
  ('versionupdate',$env{'course.'.$env{'request.course.id'}.'.domain'},   ('versionupdate',$env{'course.'.$env{'request.course.id'}.'.domain'},
                      $env{'course.'.$env{'request.course.id'}.'.num'});                       $env{'course.'.$env{'request.course.id'}.'.num'});
  my $firstkey=(keys %changes)[0];   my $firstkey=(keys(%changes))[0];
  unless ($firstkey=~/^error\:/) {   unless ($firstkey=~/^error\:/) {
     unless ($env{'form.timerange'}) {      unless ($env{'form.timerange'}) {
  $env{'form.timerange'}=604800;   $env{'form.timerange'}=604800;
Line 1892  sub checkversions { Line 5010  sub checkversions {
  .&mt('seconds');   .&mt('seconds');
     if ($env{'form.timerange'}==-1) {      if ($env{'form.timerange'}==-1) {
  $seltext='since start of course';   $seltext='since start of course';
  $startsel='selected';   $startsel=' selected="selected"';
  $env{'form.timerange'}=time;   $env{'form.timerange'}=time;
     }      }
     $starttime=time-$env{'form.timerange'};      $starttime=time-$env{'form.timerange'};
     if ($env{'form.timerange'}==2592000) {      if ($env{'form.timerange'}==2592000) {
  $seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')';   $seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
  $monthsel='selected';   $monthsel=' selected="selected"';
     } elsif ($env{'form.timerange'}==604800) {      } elsif ($env{'form.timerange'}==604800) {
  $seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')';   $seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
  $weeksel='selected';   $weeksel=' selected="selected"';
     } elsif ($env{'form.timerange'}==86400) {      } elsif ($env{'form.timerange'}==86400) {
  $seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';   $seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
  $daysel='selected';   $daysel=' selected="selected"';
     }      }
     $header=&mt('Content changed').' '.$seltext;      $header=&mt('Content changed').' '.$seltext;
  } else {   } else {
Line 1915  sub checkversions { Line 5033  sub checkversions {
   $env{'course.'.$env{'request.course.id'}.'.domain'},    $env{'course.'.$env{'request.course.id'}.'.domain'},
   $env{'course.'.$env{'request.course.id'}.'.num'});    $env{'course.'.$env{'request.course.id'}.'.num'});
     my %lt=&Apache::lonlocal::texthash      my %lt=&Apache::lonlocal::texthash
       ('st' => 'Version changes since start of '.$type,        ('st' => 'Version changes since start of '.$crstype,
        'lm' => 'Version changes since last Month',         'lm' => 'Version changes since last Month',
        'lw' => 'Version changes since last Week',         'lw' => 'Version changes since last Week',
        'sy' => 'Version changes since Yesterday',         'sy' => 'Version changes since Yesterday',
                'al' => 'All Resources (possibly large output)',                 'al' => 'All Resources (possibly large output)',
                  'cd' => 'Change display', 
        'sd' => 'Display',         'sd' => 'Display',
        'fi' => 'File',         'fi' => 'File',
        'md' => 'Modification Date',         'md' => 'Modification Date',
                'mr' => 'Most recently published Version',                 'mr' => 'Most recently published Version',
        've' => 'Version used in '.$type,         've' => 'Version used in '.$crstype,
                'vu' => 'Set Version to be used in '.$type,                 'vu' => 'Set Version to be used in '.$crstype,
 'sv' => 'Set Versions to be used in '.$type.' according to Selections below',  'sv' => 'Set Versions to be used in '.$crstype.' according to Selections below',
 'sm' => 'Keep all Resources up-to-date with most recent Versions (default)',  'sm' => 'Keep all Resources up-to-date with most recent Versions (default)',
 'sc' => 'Set all Resource Versions to current Version (Fix Versions)',  'sc' => 'Set all Resource Versions to current Version (Fix Versions)',
        'di' => 'Differences');         'di' => 'Differences',
          'save' => 'Save changes',
                  'vers' => 'Version choice(s) for specific resources', 
          'act' => 'Actions');
       my ($disabled,$readonly);
       unless ($canedit) {
           $disabled = 'disabled="disabled"';
           $readonly = 1;
       }
     $r->print(<<ENDHEADERS);      $r->print(<<ENDHEADERS);
   <h4 class="LC_info">$header</h4>
 <form action="/adm/coursedocs" method="post">  <form action="/adm/coursedocs" method="post">
 <input type="hidden" name="versions" value="1" />  <input type="hidden" name="versions" value="1" />
 <input type="submit" name="setmostrecent" value="$lt{'sm'}" />  <div class="LC_left_float">
 <input type="submit" name="setcurrent" value="$lt{'sc'}" /><hr />  <fieldset>
   <legend>$lt{'cd'}</legend>
 <select name="timerange">  <select name="timerange">
 <option value='all' $allsel>$lt{'al'}</option>  <option value='all'$allsel>$lt{'al'}</option>
 <option value="-1" $startsel>$lt{'st'}</option>  <option value="-1"$startsel>$lt{'st'}</option>
 <option value="2592000" $monthsel>$lt{'lm'}</option>  <option value="2592000"$monthsel>$lt{'lm'}</option>
 <option value="604800" $weeksel>$lt{'lw'}</option>  <option value="604800"$weeksel>$lt{'lw'}</option>
 <option value="86400" $daysel>$lt{'sy'}</option>  <option value="86400"$daysel>$lt{'sy'}</option>
 </select>  </select>
 <input type="submit" name="display" value="$lt{'sd'}" />  <input type="submit" name="display" value="$lt{'sd'}" />
 <h3>$header</h3>  </fieldset>
 <input type="submit" name="setversions" value="$lt{'sv'}" />  </div>
 <table border="0">  <div class="LC_left_float">
   <fieldset>
   <legend>$lt{'act'}</legend>
   $lt{'sm'}: <input type="submit" name="setmostrecent" value="Go" $disabled /><br />
   $lt{'sc'}: <input type="submit" name="setcurrent" value="Go" $disabled />
   </fieldset>
   </div>
   <br clear="all" />
   <hr />
   <h4>$lt{'vers'}</h4>
 ENDHEADERS  ENDHEADERS
     foreach (sort keys %changes) {      #number of columns for version history
  if ($changes{$_}>$starttime) {      my %changedbytime;
     my ($root,$extension)=($_=~/^(.*)\.(\w+)$/);      foreach my $key (keys(%changes)) {
     my $currentversion=&Apache::lonnet::getversion($_);          #excludes not versionable problems from resource version history:
     if ($currentversion<0) {          next if ($key =~ /^\/res\/lib\/templates/);
  $currentversion=&mt('Could not be determined.');          my $chg;
     }          if ($env{'form.timerange'} eq 'all') {
     my $linkurl=&Apache::lonnet::clutter($_);              my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
     $r->print(              $chg = &Apache::lonnet::metadata($root.'.'.$extension,'lastrevisiondate');
       '<tr><td colspan="5"><br /><br /><font size="+1"><b>'.          } else {
       &Apache::lonnet::gettitle($linkurl).              $chg = $changes{$key};
                       '</b></font></td></tr>'.              next if ($chg < $starttime);
                       '<tr><td>&nbsp;&nbsp;&nbsp;</td>'.          }
                       '<td colspan="4">'.          push(@{$changedbytime{$chg}},$key);
                       '<a href="'.$linkurl.'" target="cat">'.$linkurl.      }
       '</a></td></tr>'.      if (keys(%changedbytime) == 0) {
                       '<tr><td></td>'.          &untiehash();
                       '<td title="'.$lt{'md'}.'">'.          $r->print(&mt('No content changes in imported content in specified time frame').
       &Apache::lonlocal::locallocaltime(                    &endContentScreen());
                            &Apache::lonnet::metadata($root.'.'.$extension,          return;
                                                      'lastrevisiondate')      }
                                                         ).      $r->print(
                       '</td>'.         '<input type="submit" name="setversions" value="'.$lt{'save'}.'"'.$disabled.' />'.
                       '<td title="'.$lt{'mr'}.'"><nobr>Most Recent: '.          &Apache::loncommon::start_data_table().
                       '<font size="+1">'.$currentversion.'</font>'.          &Apache::loncommon::start_data_table_header_row().
                       '</nobr></td>'.          '<th>'.&mt('Resources').'</th>'.
                       '<td title="'.$lt{'ve'}.'"><nobr>In '.$type.': '.          "<th>$lt{'mr'}</th>".
                       '<font size="+1">');          "<th>$lt{'ve'}</th>".
 # Used in course          "<th>$lt{'vu'}</th>".
     my $usedversion=$hash{'version_'.$linkurl};          '<th>'.&mt('History').'</th>'.
     if (($usedversion) && ($usedversion ne 'mostrecent')) {          &Apache::loncommon::end_data_table_header_row()
  $r->print($usedversion);      );
     } else {      foreach my $chg (sort {$b <=> $a } keys(%changedbytime)) {
  $r->print($currentversion);          foreach my $key (sort(@{$changedbytime{$chg}})) {
     }              my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
     $r->print('</font></nobr></td><td title="'.$lt{'vu'}.'">'.              my $currentversion=&Apache::lonnet::getversion($key);
                       '<nobr>Use: ');              if ($currentversion<0) {
 # Set version                  $currentversion='<span class="LC_error">'.&mt('Could not be determined.').'</span>';
     $r->print(&Apache::loncommon::select_form($setversions{$linkurl},              }
       'set_version_'.$linkurl,              my $linkurl=&Apache::lonnet::clutter($key);
       ('select_form_order' =>              $r->print(
        ['',1..$currentversion,'mostrecent'],                  &Apache::loncommon::start_data_table_row().
        '' => '',                  '<td><b>'.&Apache::lonnet::gettitle($linkurl).'</b><br />'.
        'mostrecent' => 'most recent',                  '<a href="'.$linkurl.'" target="cat">'.$linkurl.'</a></td>'.
        map {$_,$_} (1..$currentversion))));                  '<td align="right">'.$currentversion.'<span class="LC_fontsize_medium"><br />('.
     $r->print('</nobr></td></tr><tr><td></td>');                  &Apache::lonlocal::locallocaltime($chg).')</span></td>'.
     my $lastold=1;                  '<td align="right">'
     for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {              );
  my $url=$root.'.'.$prevvers.'.'.$extension;              # Used in course
  if (&Apache::lonnet::metadata($url,'lastrevisiondate')<              my $usedversion=$hash{'version_'.$linkurl};
     $starttime) {              if (($usedversion) && ($usedversion ne 'mostrecent')) {
     $lastold=$prevvers;                  if ($usedversion != $currentversion) {
  }                      $r->print('<span class="LC_warning">'.$usedversion.'</span>');
     }                  } else {
             #                       $r->print($usedversion);
             # Code to figure out how many version entries should go in                  }
             # each of the four columns              } else {
             my $entries_per_col = 0;                  $r->print($currentversion);
             my $num_entries = ($currentversion-$lastold);              }
             if ($num_entries % 4 == 0) {              $r->print('</td><td title="'.$lt{'vu'}.'">');
                 $entries_per_col = $num_entries/4;              # Set version
             } else {              $r->print(&Apache::loncommon::select_form(
                 $entries_per_col = $num_entries/4 + 1;                        $setversions{$linkurl},
             }                        'set_version_'.$linkurl,
             my $entries_count = 0;                        {'select_form_order' => ['',1..$currentversion,'mostrecent'],
             $r->print('<td valign="top"><font size="-2">');                         '' => '',
             my $cols_output = 1;                        'mostrecent' => &mt('most recent'),
                         map {$_,$_} (1..$currentversion)},'',$readonly));
               my $lastold=1;
               for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
                   my $url=$root.'.'.$prevvers.'.'.$extension;
                   if (&Apache::lonnet::metadata($url,'lastrevisiondate')<$starttime) {
                       $lastold=$prevvers;
                   }
               }
               $r->print('</td>');
               # List all available versions
               $r->print('<td valign="top"><span class="LC_fontsize_medium">');
             for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {              for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {
  my $url=$root.'.'.$prevvers.'.'.$extension;                  my $url=$root.'.'.$prevvers.'.'.$extension;
  $r->print('<nobr><a href="'.&Apache::lonnet::clutter($url).                  $r->print(
   '">'.&mt('Version').' '.$prevvers.'</a> ('.                      '<span class="LC_nobreak">'
   &Apache::lonlocal::locallocaltime(                     .'<a href="'.&Apache::lonnet::clutter($url).'">'
                                 &Apache::lonnet::metadata($url,                     .&mt('Version [_1]',$prevvers).'</a>'
                                                           'lastrevisiondate')                     .' ('.&Apache::lonlocal::locallocaltime(
                                                             ).                           &Apache::lonnet::metadata($url,'lastrevisiondate'))
   ')');                     .')');
  if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {                  if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {
                     $r->print(' <a href="/adm/diff?filename='.                      $r->print(
       &Apache::lonnet::clutter($root.'.'.$extension).                          ' <a href="/adm/diff?filename='.
       '&versionone='.$prevvers.                          &Apache::lonnet::clutter($root.'.'.$extension).
       '">'.&mt('Diffs').'</a>');                          &HTML::Entities::encode('&versionone='.$prevvers,'"<>&').
  }                          '" target="diffs">'.&mt('Diffs').'</a>');
  $r->print('</nobr><br />');  
                 if (++$entries_count % $entries_per_col == 0) {  
                     $r->print('</font></td>');  
                     if ($cols_output != 4) {  
                         $r->print('<td valign="top"><font size="-2">');  
                         $cols_output++;  
                     }  
                 }                  }
     }                  $r->print('</span><br />');
             while($cols_output++ < 4) {  
                 $r->print('</font></td><td><font>')  
             }              }
     $r->print('</font></td></tr>'."\n");              $r->print('</span></td>'.&Apache::loncommon::end_data_table_row());
  }          }
     }      }
     $r->print('</table></form>');      $r->print(
     $r->print('<h1>'.&mt('Done').'.</h1>');          &Apache::loncommon::end_data_table().
           '<input type="submit" name="setversions" value="'.$lt{'save'}.'"'.$disabled.' />'.
           '</form>'
       );
   
     &untiehash();      &untiehash();
       $r->print(&endContentScreen());
       return;
 }  }
   
 sub mark_hash_old {  sub mark_hash_old {
Line 2079  sub changewarning { Line 5224  sub changewarning {
     my $pathvar='folderpath';      my $pathvar='folderpath';
     my $path=&escape($env{'form.folderpath'});      my $path=&escape($env{'form.folderpath'});
     if (!defined($url)) {      if (!defined($url)) {
  if (defined($env{'form.pagepath'})) {  
     $pathvar='pagepath';  
     $path=&escape($env{'form.pagepath'});  
     $path.='&amp;pagesymb='.&escape($env{'form.pagesymb'});  
  }  
  $url='/adm/coursedocs?'.$pathvar.'='.$path;   $url='/adm/coursedocs?'.$pathvar.'='.$path;
     }      }
     my $course_type = &Apache::loncommon::course_type();      my $course_type = &Apache::loncommon::course_type();
     if (!defined($message)) {      if (!defined($message)) {
  $message='Changes will become active for your current session after [_1], or the next time you log in.';   $message='Changes will become active for your current session after [_1], or the next time you log in.';
     }      }
       my $windowname = 'loncapaclient';
       if ($env{'request.lti.login'}) {
           $windowname .= 'lti';
       }
     $r->print("\n\n".      $r->print("\n\n".
 '<script>function reinit(tf) { tf.submit();'.$postexec.' }</script>'."\n".   '<script type="text/javascript">'."\n".
 '<form name="reinitform" method="post" action="/adm/roles" target="loncapaclient">'.  '// <![CDATA['."\n".
   'function reinit(tf) { tf.submit();'.$postexec.' }'."\n".
   '// ]]>'."\n".
   '</script>'."\n".
   '<form name="reinitform" method="post" action="/adm/roles" target="'.$windowname.'">'.
 '<input type="hidden" name="orgurl" value="'.$url.  '<input type="hidden" name="orgurl" value="'.$url.
 '" /><input type="hidden" name="selectrole" value="1" /><h3><font color="red">'.  '" /><input type="hidden" name="selectrole" value="1" /><p class="LC_warning">'.
 &mt($message,' <input type="hidden" name="'.  &mt($message,' <input type="hidden" name="'.
     $env{'request.role'}.'" value="1" /><input type="button" value="'.      $env{'request.role'}.'" value="1" /><input type="button" value="'.
     &mt('re-initializing '.$course_type).'" onClick="reinit(this.form)" />').      &mt('re-initializing '.$course_type).'" onclick="reinit(this.form)" />').
 $help{'Caching'}.'</font></h3></form>'."\n\n");  $help{'Caching'}.'</p></form>'."\n\n");
   }
   
   
   sub init_breadcrumbs {
       my ($form,$text,$help)=@_;
       &Apache::lonhtmlcommon::clear_breadcrumbs();
       &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?tools=1",
       text=>&Apache::loncommon::course_type().' Editor',
       faq=>273,
       bug=>'Instructor Interface',
                                               help => $help});
       &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?".$form.'=1',
       text=>$text,
       faq=>273,
       bug=>'Instructor Interface'});
   }
   
   # subroutine to list form elements
   sub create_list_elements {
      my @formarr = @_;
      my $list = '';
      foreach my $button (@formarr){
           foreach my $picture (keys(%{$button})) {
               $list .= &Apache::lonhtmlcommon::htmltag('li', $picture.' '.$button->{$picture}, {class => 'LC_menubuttons_inline_text', id => ''});
           }
      }
      return $list;
   }
   
   # subroutine to create ul from list elements
   sub create_form_ul {
      my $list = shift;
      my $ul = &Apache::lonhtmlcommon::htmltag('ul',$list, {class => 'LC_ListStyleNormal'});
      return $ul;
   }
   
   #
   # Start tabs
   #
   
   sub startContentScreen {
       my ($mode) = @_;
       my $output = '<ul class="LC_TabContentBigger" id="mainnav">';
       if (($mode eq 'navmaps') || ($mode eq 'supplemental')) {
           $output .= '<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b>&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Overview').'&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n";
           $output .= '<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Search').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n";
           $output .= '<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Index').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n";
           $output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>';
       } else {
           $output .= '<li '.(($mode eq 'docs')?' class="active"':'').' id="tabbededitor"><a href="/adm/coursedocs?forcestandard=1"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Main Content Editor').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n";
           $output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/coursedocs?forcesupplement=1"><b>'.&mt('Supplemental Content Editor').'</b></a></li>'."\n";
           $output .= '<li '.(($mode eq 'tools')?' class="active"':'').'><a href="/adm/coursedocs?tools=1"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Utilities').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>'."\n";
                      '><a href="/adm/coursedocs?tools=1"><b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'.&mt('Content Utilities').'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b></a></li>';
       }
       $output .= "\n".'</ul>'."\n";
       $output .= '<div class="LC_DocsBox" style="clear:both;margin:0;" id="contenteditor">'.
                  '<div id="maincoursedoc" style="margin:0 0;padding:0 0;">'.
                  '<div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">';
       return $output;
   }
   
   #
   # End tabs
   #
   
   sub endContentScreen {
       return '</div></div></div>';
   }
   
   sub supplemental_base {
       return 'supplemental&'.&escape(&mt('Supplemental Content'));
 }  }
   
 # ================================================================ Main Handler  
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
     &Apache::loncommon::content_type($r,'text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
     return OK if $r->header_only;      return OK if $r->header_only;
     my $type = &Apache::loncommon::course_type();  
   
   # get course data
       my $crstype = &Apache::loncommon::course_type();
       my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'};
       my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'};
   
   # get docroot
       my $londocroot = $r->dir_config('lonDocRoot');
   
   # graphics settings
       $iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL').'/');
   
   #
 # --------------------------------------------- Initialize help topics for this  # --------------------------------------------- Initialize help topics for this
     foreach ('Adding_Course_Doc','Main_Course_Documents',      foreach my $topic ('Adding_Course_Doc','Main_Course_Documents',
      'Adding_External_Resource','Navigate_Content',                 'Adding_External_Resource','Adding_External_Tool',
      'Adding_Folders','Docs_Overview', 'Load_Map',                         'Navigate_Content','Adding_Folders','Docs_Overview',
      'Supplemental','Score_Upload_Form','Adding_Pages',                 'Load_Map','Supplemental','Score_Upload_Form',
      'Importing_LON-CAPA_Resource','Uploading_From_Harddrive',                 'Adding_Pages','Importing_LON-CAPA_Resource',
      'Check_Resource_Versions','Verify_Content') {                 'Importing_IMS_Course','Uploading_From_Harddrive',
  $help{$_}=&Apache::loncommon::help_open_topic('Docs_'.$_);                         'Course_Roster','Web_Page','Dropbox','Simple_Problem') {
    $help{$topic}=&Apache::loncommon::help_open_topic('Docs_'.$topic);
     }      }
     # Composite help files      # Composite help files
     $help{'Syllabus'} = &Apache::loncommon::help_open_topic(      $help{'Syllabus'} = &Apache::loncommon::help_open_topic(
     'Docs_About_Syllabus,Docs_Editing_Templated_Pages');      'Docs_About_Syllabus,Docs_Editing_Templated_Pages');
     $help{'Simple Page'} = &Apache::loncommon::help_open_topic(      $help{'Simple Page'} = &Apache::loncommon::help_open_topic(
     'Docs_About_Simple_Page,Docs_Editing_Templated_Pages');      'Docs_About_Simple_Page,Docs_Editing_Templated_Pages');
     $help{'Simple Problem'} = &Apache::loncommon::help_open_topic(  
     'Option_Response_Simple');  
     $help{'Bulletin Board'} = &Apache::loncommon::help_open_topic(      $help{'Bulletin Board'} = &Apache::loncommon::help_open_topic(
     'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages');      'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages');
     $help{'My Personal Info'} = &Apache::loncommon::help_open_topic(      $help{'My Personal Information Page'} = &Apache::loncommon::help_open_topic(
   'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages');    'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages');
       $help{'Group Portfolio'} = &Apache::loncommon::help_open_topic('Docs_About_Group_Files');
     $help{'Caching'} = &Apache::loncommon::help_open_topic('Caching');      $help{'Caching'} = &Apache::loncommon::help_open_topic('Caching');
    
 # does this user have privileges to modify docs      my ($allowed,$canedit,$canview,$noendpage,$disabled);
     my $allowed=&Apache::lonnet::allowed('mdc',$env{'request.course.id'});  # URI is /adm/supplemental when viewing supplemental docs in non-edit mode.
       unless ($r->uri eq '/adm/supplemental') {
           # does this user have privileges to modify content.  
           if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
               $allowed = 1;
               $canedit = 1;
               $canview = 1;
           } elsif (&Apache::lonnet::allowed('cev',$env{'request.course.id'})) {
               $allowed = 1;
               $canview = 1;
           }
       }
       unless ($canedit) {
           $disabled = ' disabled="disabled"';
       }
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['inhibitmenu']);
       if ($env{'form.inhibitmenu'}) {
           unless ($env{'form.inhibitmenu'} eq 'yes') {
               delete($env{'form.inhibitmenu'});
           }
       }
   
   if ($allowed && $env{'form.verify'}) {    if ($allowed && $env{'form.verify'}) {
       &verifycontent($r);        &init_breadcrumbs('verify','Verify Content','Docs_Verify_Content');
         if (!$canedit) {
             &verifycontent($r);
         } elsif (($env{'form.checkstale'} ne '') && ($env{'form.checkstale'} =~ /^\d$/)) {
             &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?tools=1&verify=1&checkstale=$env{'form.checkstale'}",
                                                     text=>'Results',
                                                     faq=>273,
                                                     bug=>'Instructor Interface'});
             &verifycontent($r,$env{'form.checkstale'});
         } else {
             &contentverifyform($r);
         }
   } elsif ($allowed && $env{'form.listsymbs'}) {    } elsif ($allowed && $env{'form.listsymbs'}) {
         &init_breadcrumbs('listsymbs','List Content IDs');
       &list_symbs($r);        &list_symbs($r);
     } elsif ($allowed && $env{'form.shorturls'}) {
         &init_breadcrumbs('shorturls','Set/Display Shortened URLs','Docs_Short_URLs');
         &short_urls($r,$canedit);
     } elsif ($allowed && $env{'form.docslog'}) {
         &init_breadcrumbs('docslog','Show Log');
         my $folder = $env{'form.folder'};
         if ($folder eq '') {
             $folder='default';
         }
         &docs_change_log($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath,$canedit);
   } elsif ($allowed && $env{'form.versions'}) {    } elsif ($allowed && $env{'form.versions'}) {
       &checkversions($r);        &init_breadcrumbs('versions','Check/Set Resource Versions','Docs_Check_Resource_Versions');
   } elsif ($allowed && $env{'form.dumpcourse'}) {        &checkversions($r,$canedit);
     } elsif ($canedit && $env{'form.dumpcourse'}) {
         &init_breadcrumbs('dumpcourse','Copy '.&Apache::loncommon::course_type().' Content to Authoring Space');
       &dumpcourse($r);        &dumpcourse($r);
   } elsif ($allowed && $env{'form.exportcourse'}) {    } elsif ($canedit && $env{'form.exportcourse'}) {
       &exportcourse($r);        &init_breadcrumbs('exportcourse','IMS Export');
         &Apache::imsexport::exportcourse($r);
   } else {    } else {
 # is this a standard course?        if ($canedit && $env{'form.authorrole'}) {
             $noendpage = 1;
             my ($redirect,$error) = &makenewproblem($r,$coursedom,$coursenum);
             if ($redirect) {
                 if (($env{'form.newresourceadd'}) && ($env{'form.folderpath'})) {
                     my $container = 'sequence'; 
                     my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,
                         $is_random_order,$container) =
                         &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
                     my (@folders)=split('&',$env{'form.folderpath'});
                     $env{'form.foldername'}=&unescape(pop(@folders));
                     my $folder=pop(@folders);
                     my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
                                                     $folder.'.'.$container);
                     my $warning;
                     if ($fatal) {
                         if ($container eq 'page') {
                             $warning = &mt('An error occurred retrieving the contents of the current page.');
                         } else {
                             $warning = &mt('An error occurred retrieving the contents of the current folder.');
                         }
                     } else {
                         my $url = $redirect;
                         my $srcfile = $londocroot.$url;
                         $url =~ s{^/priv/}{/res/};
                         my $targetfile = $londocroot.$url;
                         my $nokeyref = &Apache::lonpublisher::getnokey($r->dir_config('lonIncludes'));
                         my $output = &Apache::lonpublisher::batchpublish($r,$srcfile,$targetfile,$nokeyref,1);
                         $env{'form.folder'} = $folder;
                         &snapshotbefore();
                         my $title = &LONCAPA::map::qtunescape($env{'form.newresourcetitle'});
                         my $ext = 'false';
                         my $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
                         $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
                                                           ':'.$ext.':normal:res';
                         push(@LONCAPA::map::order,$newidx);
                         &LONCAPA::map::storeparameter($newidx,'parameter_hiddenresource','yes',
                                                      'string_yesno');
                         &remember_parms($newidx,'hiddenresource','set','yes');
                         ($errtext,$fatal) =
                             &storemap($coursenum, $coursedom, $folder.'.'.$container,1);
                         &log_differences($plain);
                         &mark_hash_old();
                         $r->internal_redirect($redirect);
                         return OK;
                     }
                 } else {
                     $r->internal_redirect($redirect);
                 }
             }
         }
   #
   # Done catching special calls
   # The whole rest is for course and supplemental documents and utilities menu
   # Get the parameters that may be needed
   #
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                                               ['folderpath',
                                                'forcesupplement','forcestandard',
                                                'tools','symb','command','supppath']);
   
       foreach my $item ('forcesupplement','forcestandard','tools') {
           next if ($env{'form.'.$item} eq '');
           unless ($env{'form.'.$item} eq '1') {
               delete($env{'form.'.$item});
           }
       }
   
       if ($env{'form.command'}) {
           unless ($env{'form.command'} =~ /^(direct|directnav|editdocs|editsupp|contents|home)$/) {
               delete($env{'form.command'});
           }
       }
   
       if ($env{'form.symb'}) {
           my ($mapurl,$id,$resurl) = &Apache::lonnet::decode_symb($env{'form.symb'});
           unless (($id =~ /^\d+$/) && (&Apache::lonnet::is_on_map($resurl))) { 
               delete($env{'form.symb'});
           }
       }
   
   # standard=1: this is a "new-style" course with an uploaded map as top level
   # standard=2: this is a "old-style" course, and there is nothing we can do
   
     my $standard=($env{'request.course.uri'}=~/^\/uploaded\//);      my $standard=($env{'request.course.uri'}=~/^\/uploaded\//);
     my $forcestandard = 0;  
     my $forcesupplement;  # Decide whether this should display supplemental or main content or utilities
   # supplementalflag=1: show supplemental documents
   # supplementalflag=0: show standard documents
   # toolsflag=1: show utilities
   
       my $unesc_folderpath = &unescape($env{'form.folderpath'});
       my $supplementalflag=($unesc_folderpath=~/^supplemental/);
       if (($unesc_folderpath=~/^default/) || ($unesc_folderpath eq "")) {
          $supplementalflag=0;
       }
       if ($env{'form.forcesupplement'}) { $supplementalflag=1; }
       if ($env{'form.forcestandard'})   { $supplementalflag=0; }
       unless ($allowed) { $supplementalflag=1; }
       unless ($standard) { $supplementalflag=1; }
       my $toolsflag=0;
       if ($env{'form.tools'}) { $toolsflag=1; }
   
       if ($env{'form.folderpath'} ne '') {
           my @items = split(/\&/,$env{'form.folderpath'});
           my $badpath;
           for (my $i=0; $i<@items; $i++) {
               my $odd = $i%2;
               if (($odd) && (!$supplementalflag) && ($items[$i] !~ /^[^:]*:(|\d+):(|1):(|1):(|1):(|1)$/)) {
                   $badpath = 1;
               } elsif ((!$odd) && ($items[$i] !~ /^(default|supplemental)(|_\d+)$/)) {
                   $badpath = 1;
               }
               last if ($badpath);
           }
           if ($badpath) {
               delete($env{'form.folderpath'});
           }
       }
   
       if ($env{'form.supppath'} ne '') {
           my @items = split(/\&/,$env{'form.supppath'});
           my $badpath;
           for (my $i=0; $i<@items; $i++) {
               my $odd = $i%2;
               if ((!$odd) && ($items[$i] !~ /^supplemental(|_\d+)$/)) {
                   $badpath = 1; 
               }
               last if ($badpath);
           }
           if ($badpath) {
               delete($env{'form.supppath'});
           }
       }
   
     my $script='';      my $script='';
     my $showdoc=0;      my $showdoc=0;
       my $addentries = {};
       my $container;
     my $containertag;      my $containertag;
     my $uploadtag;      my $pathitem;
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},      my %ltitools;
     ['folderpath','pagepath',      my $hiddentop;
      'pagesymb','markedcopy_url',      my $navmap;
      'markedcopy_title']);      my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
     if ($env{'form.folderpath'}) {  
  my (@folderpath)=split('&',$env{'form.folderpath'});  # Do we directly jump somewhere?
  $env{'form.foldername'}=&unescape(pop(@folderpath));     if (($env{'form.command'} eq 'direct') || ($env{'form.command'} eq 'directnav')) {
  $env{'form.folder'}=pop(@folderpath);         if ($env{'form.symb'} ne '') {
     }             $env{'form.folderpath'}=
     if ($env{'form.pagepath'}) {                 &Apache::loncommon::symb_to_docspath($env{'form.symb'},\$navmap);
         my (@pagepath)=split('&',$env{'form.pagepath'});             &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} =>
         $env{'form.pagename'}=&unescape(pop(@pagepath));                 $env{'form.command'}.'_'.$env{'form.symb'}});
         $env{'form.folder'}=pop(@pagepath);         } elsif ($env{'form.supppath'} ne '') {
         $containertag = '<input type="hidden" name="pagepath" value="" />'.             $env{'form.folderpath'}=$env{'form.supppath'};
     '<input type="hidden" name="pagesymb" value="" />';             &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} =>
         $uploadtag = '<input type="hidden" name="pagepath" value="'.$env{'form.pagepath'}.'" />'.                 $env{'form.command'}.'_'.$env{'form.supppath'}});
     '<input type="hidden" name="pagesymb" value="'.$env{'form.pagesymb'}.'" />';  
     }  
     if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {  
        $showdoc='/'.$1;  
     }  
     unless ($showdoc) { # got called from remote  
        if (($env{'form.folder'}=~/^(?:group|default)_/) ||   
           ($env{'form.folder'} =~ m:^\d+/(pages|sequences)/:)) {  
            $forcestandard = 1;  
        }   
        $forcesupplement=($env{'form.folder'}=~/^supplemental_/);  
   
        if ($allowed) {   
          &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);  
          $script=&Apache::lonratedt::editscript('simple');   
        }         }
     } else { # got called in sequence from course     } elsif ($env{'form.command'} eq 'editdocs') {
        $allowed=0;         $env{'form.folderpath'} = &default_folderpath($coursenum,$coursedom,\$navmap);
          &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => $env{'form.command'}});
      } elsif ($env{'form.command'} eq 'editsupp') {
          $env{'form.folderpath'} = &supplemental_base();
          &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/supplemental'});
      } elsif ($env{'form.command'} eq 'contents') {
          &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/navmaps'});
      } elsif ($env{'form.command'} eq 'home') {
          &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/menu'});
      }
   
   
   # Where do we store these for when we come back?
       my $stored_folderpath='docs_folderpath';
       if ($supplementalflag) {
          $stored_folderpath='docs_sup_folderpath';
     }      }
   
 # get course data  # No folderpath, and in edit mode, see if we have something stored
     my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'};      if ((!$env{'form.folderpath'}) && $allowed) {
     my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'};          &Apache::loncommon::restore_course_settings($stored_folderpath,
                                             {'folderpath' => 'scalar'});
   
           if (&unescape($env{'form.folderpath'}) =~ m{^(default|supplemental)&}) {
               if ($supplementalflag) {
                   undef($env{'form.folderpath'}) if ($1 eq 'default'); 
               } else {
                   undef($env{'form.folderpath'}) if ($1 eq 'supplemental');
               }
           } else {
               undef($env{'form.folderpath'});
           }
       }
      
   # If we are not allowed to make changes, all we can see are supplemental docs
       if (!$allowed) {
           unless ($env{'form.folderpath'} =~ /^supplemental/) {
               $env{'form.folderpath'} = &supplemental_base();
           }
       }
   # Make the zeroth entry in supplemental docs page paths, so we can get to top level
       if ($env{'form.folderpath'} =~ /^supplemental_\d+/) {
           $env{'form.folderpath'} = &supplemental_base()
                                     .'&'.
                                     $env{'form.folderpath'};
       }
   # If allowed and user's role is not advanced check folderpath is not hidden  
       if (($allowed) && (!$env{'request.role.adv'}) && 
           ($env{'form.folderpath'} ne '') && (!$supplementalflag)) {
           my $folderurl;
           my @pathitems = split(/\&/,$env{'form.folderpath'});
           my $folder = $pathitems[-2];
           if ($folder eq '') {
               undef($env{'form.folderpath'});
           } else {
               $folderurl = "uploaded/$coursedom/$coursenum/$folder";
               if ((split(/\:/,$pathitems[-1]))[4]) {
                   $folderurl .= '.page';
               } else {
                   $folderurl .= '.sequence';
               }
               unless (ref($navmap)) {
                   $navmap = Apache::lonnavmaps::navmap->new();
               }
               if (ref($navmap)) {
                   if (lc($navmap->get_mapparam(undef,$folderurl,"0.hiddenresource")) eq 'yes') {
                       my @resources = $navmap->retrieveResources($folderurl,$filterFunc,1,1);
                       unless (@resources) {
                           undef($env{'form.folderpath'});
                       }
                   }
               }
           }
       }
   
 # get personal data   
     my $uname=$env{'user.name'};  
     my $udom=$env{'user.domain'};  
     my $plainname=&escape(  
                      &Apache::loncommon::plainname($uname,$udom));  
   
 # graphics settings  # If after all of this, we still don't have any paths, make them
       unless ($env{'form.folderpath'}) {
          if ($supplementalflag) {
             $env{'form.folderpath'}=&supplemental_base();
          } elsif ($allowed) {
             ($env{'form.folderpath'},$hiddentop) = &default_folderpath($coursenum,$coursedom,\$navmap);
          }
       }
   
     $iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL') . "/");  # Store this
       unless ($toolsflag) {
           if (($allowed) && ($env{'form.folderpath'} ne '')) {
               &Apache::loncommon::store_course_settings($stored_folderpath,
                                                         {'folderpath' => 'scalar'});
           }
           my $folderpath;
           if ($env{'form.folderpath'}) {
               $folderpath = $env{'form.folderpath'};
       my (@folders)=split('&',$env{'form.folderpath'});
       $env{'form.foldername'}=&unescape(pop(@folders));
               if ($env{'form.foldername'} =~ /\:1$/) {
                   $container = 'page';
               } else {
                   $container = 'sequence';
               }
       $env{'form.folder'}=pop(@folders);
           } else {
               if ($env{'form.folder'} eq '' ||
                   $env{'form.folder'} eq 'supplemental') {
                   if ($env{'form.folder'} eq 'supplemental') {
                       $folderpath=&supplemental_base();
                   } elsif (!$hiddentop) {
                       $folderpath='default&'.
                                    &escape(&mt('Main Content').':::::');
                   }
               }
           }
           $containertag = '<input type="hidden" name="folderpath" value="" />';
           $pathitem = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />';
           if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {
              $showdoc='/'.$1;
           }
           if ($showdoc) { # got called in sequence from course
       $allowed=0; 
           } else {
               if ($canedit) {
                   &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);
                   $script=&Apache::lonratedt::editscript('simple');
               }
           }
       }
   
   # get personal data
       my $uname=$env{'user.name'};
       my $udom=$env{'user.domain'};
       my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom));
   
     if ($allowed) {      if ($allowed) {
  $script .= &editing_js($udom,$uname);          if ($toolsflag) {
               $script .= &inject_data_js();
               my ($home,$other,%outhash)=&authorhosts();
               if (!$home && $other) {
                   my @hosts;
                   foreach my $aurole (keys(%outhash)) {
                       unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) {
                           push(@hosts,$outhash{$aurole});
                       }
                   }
                   $script .= &dump_switchserver_js(@hosts); 
               }
           } else {
               my $tid = 1;
               my @tabids;
               if ($supplementalflag) {
                   @tabids = ('002','dd2','ee2','ff2');
                   $tid = 2;
               } else {
                   @tabids = ('aa1','bb1','cc1','ff1');
                   unless ($env{'form.folderpath'} =~ /\:1$/) {
                       unshift(@tabids,'001');
                       push(@tabids,('dd1','ee1'));
                   }
               }
               my $tabidstr = join("','",@tabids);
               %ltitools = &Apache::lonnet::get_domain_lti($coursedom,'consumer');
               my $posslti = keys(%ltitools);
               my $hostname = $r->hostname();
       $script .= &editing_js($udom,$uname,$supplementalflag,$coursedom,$coursenum,$posslti,
                                      $londocroot,$canedit,$hostname,\$navmap).
                          &history_tab_js().
                          &inject_data_js().
                          &Apache::lonhtmlcommon::resize_scrollbox_js('docs',$tabidstr,$tid).
                          &Apache::lonextresedit::extedit_javascript(\%ltitools);
               $addentries = {
                               onload   => "javascript:resize_scrollbox('contentscroll','1','1');",
                             };
           }
           $script .= &paste_popup_js(); 
           my $confirm_switch = &mt("Editing requires switching to the resource's home server.").'\n'.
                                &mt('Switch server?');
           
   
     }      }
 # -------------------------------------------------------------------- Body tag  # -------------------------------------------------------------------- Body tag
     $script = '<script type="text/javascript">'."\n".$script."\n".'</script>';      $script = '<script type="text/javascript">'."\n"
     $r->print(&Apache::loncommon::start_page("$type Documents", $script,                .'// <![CDATA['."\n"
      {'force_register' => $showdoc,}).                .$script."\n"
       &Apache::loncommon::help_open_menu('','',273,'RAT'));                .'// ]]>'."\n"
                   .'</script>'."\n"
                 .'<script type="text/javascript" 
                   src="/res/adm/includes/file_upload.js"></script>'."\n";
   
       # Breadcrumbs
       &Apache::lonhtmlcommon::clear_breadcrumbs();
   
       if ($showdoc) {
           $r->print(&Apache::loncommon::start_page("$crstype documents",undef,
                                                   {'force_register' => $showdoc,}));
       } elsif ($toolsflag) {
           my ($breadtext,$breadtitle);
           $breadtext = "$crstype Editor";
           if ($canedit) {
               $breadtitle = 'Editing '.$crstype.' Contents';
           } else {
               $breadtext .= ' (View-only mode)';
               $breadtitle = 'Viewing '.$crstype.' Contents';
           }
           &Apache::lonhtmlcommon::add_breadcrumb({
               href=>"/adm/coursedocs",text=>$breadtext});
           $r->print(&Apache::loncommon::start_page("$crstype Contents", $script)
                    .&Apache::loncommon::help_open_menu('','',273,'RAT')
                    .&Apache::lonhtmlcommon::breadcrumbs(
                        $breadtitle)
                    );
       } elsif ($r->uri eq '/adm/supplemental') {
           my $brcrum = &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype);
           $r->print(&Apache::loncommon::start_page("Supplemental $crstype Content",undef,
                                                   {'bread_crumbs' => $brcrum,}));
       } else {
           my ($breadtext,$breadtitle,$helpitem);
           $breadtext = "$crstype Editor";
           if ($canedit) {
               $breadtitle = 'Editing '.$crstype.' Contents';
               $helpitem = 'Docs_Adding_Course_Doc';
           } else {
               $breadtext .= ' (View-only mode)';
               $breadtitle = 'Viewing '.$crstype.' Contents';
               $helpitem = 'Docs_Viewing_Course_Doc';
           }
           &Apache::lonhtmlcommon::add_breadcrumb({
               href=>"/adm/coursedocs",text=>$breadtext});
           $r->print(&Apache::loncommon::start_page("$crstype Contents", $script,
                                                    {'add_entries'    => $addentries}
                                                   )
                    .&Apache::loncommon::help_open_menu('','',273,'RAT')
                    .&Apache::lonhtmlcommon::breadcrumbs(
                        $breadtitle,
                        $helpitem)
           );
       }
   
   my %allfiles = ();    my %allfiles = ();
   my %codebase = ();    my %codebase = ();
   my ($upload_result,$upload_output);    my ($upload_result,$upload_output,$uploadphase);
   if ($allowed) {    if ($canedit) {
       if (($env{'form.uploaddoc.filename'}) &&                                               ($env{'form.cmd'}=~/^upload_(\w+)/)) {        if (($env{'form.uploaddoc.filename'}) &&
 # Process file upload - phase one - upload and parse primary file.      ($env{'form.cmd'}=~/^upload_(\w+)/)) {
           $upload_result = &process_file_upload(\$upload_output,$coursenum,            my $context = $1; 
  $coursedom,\%allfiles,            # Process file upload - phase one - upload and parse primary file.
  \%codebase,$1);    undef($hadchanges);
           if ($upload_result eq 'phasetwo') {            $uploadphase = &process_file_upload(\$upload_output,$coursenum,$coursedom,
               $r->print($upload_output);                                                \%allfiles,\%codebase,$context,$crstype);
           }            undef($navmap);
       } elsif ($env{'form.phasetwo'}) {    if ($hadchanges) {
           my %newname = ();        &mark_hash_old();
           my %origname = ();    }
           my %attribs = ();            $r->print($upload_output);
           my $updateflag = 0;        } elsif ($env{'form.phase'} eq 'upload_embedded') {
           my $residx = $env{'form.newidx'};            # Process file upload - phase two - upload embedded objects 
           my $primary_url = &unescape($env{'form.primaryurl'});            $uploadphase = 'check_embedded';
 # Process file upload - phase two - gather secondary files.            my $primaryurl = &HTML::Entities::encode($env{'form.primaryurl'},'<>&"');   
           for (my $i=0; $i<$env{'form.phasetwo'}; $i++) {            my $state = &embedded_form_elems($uploadphase,$primaryurl,
               if ($env{'form.embedded_item_'.$i.'.filename'}) {                                             $env{'form.newidx'});
                   my $javacodebase;            my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   $newname{$i} = &process_secondary_uploads(\$upload_output,$coursedom,$coursenum,'embedded_item_',$i,$residx);            my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   $origname{$i} = &unescape($env{'form.embedded_orig_'.$i});            my ($destination,$dir_root) = &embedded_destination();
                   if (exists($env{'form.embedded_codebase_'.$i})) {            my $url_root = '/uploaded/'.$docudom.'/'.$docuname;
                       $javacodebase =  &unescape($env{'form.embedded_codebase_'.$i});              my $actionurl = '/adm/coursedocs';
                       $origname{$i} =~ s#^\Q$javacodebase\E/##;             my ($result,$flag) =
                   }                &Apache::loncommon::upload_embedded('coursedoc',$destination,
                   my @attributes = ();                    $docuname,$docudom,$dir_root,$url_root,undef,undef,undef,$state,
                   if ($env{'form.embedded_attrib_'.$i} =~ /:/) {                    $actionurl);
                       @attributes = split/:/,$env{'form.embedded_attrib_'.$i};            $r->print($result.&return_to_editor());
                   } else {        } elsif ($env{'form.phase'} eq 'check_embedded') {
                       @attributes = ($env{'form.embedded_attrib_'.$i});            # Process file upload - phase three - modify references in HTML file
                   }            $uploadphase = 'modified_orightml';
                   foreach (@attributes) {            my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                       push(@{$attribs{$i}},&unescape($_));            my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   }            my ($destination,$dir_root) = &embedded_destination();
                   if ($javacodebase) {            my $result =
                       $codebase{$i} = $javacodebase;                &Apache::loncommon::modify_html_refs('coursedoc',$destination,
                       $codebase{$i} =~ s#/$##;                                                     $docuname,$docudom,undef,
                       $updateflag = 1;                                                     $dir_root);
                   }            $r->print($result.&return_to_editor());
               }        } elsif ($env{'form.phase'} eq 'decompress_uploaded') {
               unless ($newname{$i} eq $origname{$i}) {            $uploadphase = 'decompress_phase_one';
                   $updateflag = 1;            $r->print(&decompression_phase_one().
               }                      &return_to_editor());
           }        } elsif ($env{'form.phase'} eq 'decompress_cleanup') {
 # Process file upload - phase three - modify primary file            $uploadphase = 'decompress_phase_two';
           if ($updateflag) {            $r->print(&decompression_phase_two().
               my ($content,$rtncode);                      &return_to_editor());
               my $updateflag = 0;  
               my $getstatus = &Apache::lonnet::getuploaded('GET',$primary_url,$coursedom,$coursenum,\$content,\$rtncode);  
               if ($getstatus eq 'ok') {  
                   foreach my $item (keys %newname) {  
                       if ($newname{$item} ne $origname{$item}) {  
                           my $attrib_regexp = '';  
                           if (@{$attribs{$item}} > 1) {  
                               $attrib_regexp = join('|',@{$attribs{$item}});  
                           } else {  
                               $attrib_regexp = $attribs{$item}[0];  
                           }  
                           if ($content =~ m#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#) {  
                           }   
                           $content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#$1$newname{$item}$2#gi;   
                       }  
                       if (exists($codebase{$item})) {  
                           $content =~ s/(codebase\s*=\s*["']?)\Q$codebase{$item}\E(["']?)/$1.$2/i; #' stupid emacs  
                       }  
                   }  
 # Save edited file.  
                   my $saveresult;  
                   my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};  
                   my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};  
                   my $url = &Apache::lonnet::store_edited_file($primary_url,$content,$docudom,$docuname,\$saveresult);  
               } else {  
                   &Apache::lonnet::logthis('retrieval of uploaded file - '.$primary_url.' - for editing, failed: '.$getstatus);   
               }  
           }  
       }        }
   }    }
   
   unless ($showdoc ||  $upload_result eq 'phasetwo') {    if ($allowed && $toolsflag) {
         $r->print(&startContentScreen('tools'));
         $r->print(&generate_admin_menu($crstype,$canedit));
         $r->print(&endContentScreen());
     } elsif ((!$showdoc) && (!$uploadphase)) {
 # -----------------------------------------------------------------------------  # -----------------------------------------------------------------------------
        my %lt=&Apache::lonlocal::texthash(         my %lt=&Apache::lonlocal::texthash(
                 'uplm' => 'Upload a new main '.lc($type).' document',  
                 'upls' => 'Upload a new supplemental '.lc($type).' document',  
                 'impp' => 'Import a document',  
                 'pubd' => 'Published documents',  
  'copm' => 'All documents out of a published map into this folder',   'copm' => 'All documents out of a published map into this folder',
                 'spec' => 'Special documents',                  'upfi' => 'Upload File',
                 'upld' => 'Upload Document',                  'upld' => 'Upload Content',
                 'srch' => 'Search',                  'srch' => 'Search',
                 'impo' => 'Import',                  'impo' => 'Import',
  'book' => 'Import Bookmarks',   'lnks' => 'Import from Stored Links',
                   'impm' => 'Import from Assembled Map',
                   'imcr' => 'Import from Course Resources',
                   'extr' => 'External Resource',
                   'extt' => 'External Tool',
                 'selm' => 'Select Map',                  'selm' => 'Select Map',
                 'load' => 'Load Map',                  'load' => 'Load Map',
                 'reco' => 'Recover Deleted Resources',  
                 'newf' => 'New Folder',                  'newf' => 'New Folder',
                 'newp' => 'New Composite Page',                  'newp' => 'New Composite Page',
                 'extr' => 'External Resource',  
                 'syll' => 'Syllabus',                  'syll' => 'Syllabus',
                 'navc' => 'Navigate Contents',                  'navc' => 'Table of Contents',
                 'sipa' => 'Simple Page',                  'sipa' => 'Simple Course Page',
                 'sipr' => 'Simple Problem',                  'sipr' => 'Simple Problem',
                   'webp' => 'Blank Web Page (editable)',
                   'stpr' => 'Standard Problem',
                   'news' => 'New sub-directory',
                   'crpr' => 'Create Problem',
                 'drbx' => 'Drop Box',                  'drbx' => 'Drop Box',
                 'scuf' => 'Score Upload Form',                  'scuf' => 'External Scores (handgrade, upload, clicker)',
                 'bull' => 'Bulletin Board',                  'bull' => 'Discussion Board',
                 'mypi' => 'My Personal Info',                  'mypi' => 'My Personal Information Page',
  'abou' => 'About User',                  'grpo' => 'Group Portfolio',
                 'imsf' => 'Import IMS package',                  'rost' => 'Course Roster',
                   'abou' => 'Personal Information Page for a User',
                   'imsf' => 'IMS Upload',
                   'imsl' => 'Upload IMS package',
                   'cms'  => 'Origin of IMS package',
                   'se'   => 'Select',
                 'file' =>  'File',                  'file' =>  'File',
                 'title' => 'Title',                  'title' => 'Title',
                   'addp' => 'Add Placeholder to course?',
                   'uste' => 'Use Template?',
                   'fnam' => 'File Name:',
                   'loca' => 'Location:',
                   'dire' => 'Directory:',
                   'cate' => 'Category:',
                   'tmpl' => 'Template:',
                 'comment' => 'Comment',                  'comment' => 'Comment',
                 'parse' => 'If HTML file, upload embedded images/multimedia files'                  'parse' => 'Upload embedded images/multimedia files if HTML file',
   );                  'bb5'      => 'Blackboard 5',
                   'bb6'      => 'Blackboard 6',
                   'angel5'   => 'ANGEL 5.5',
                   'webctce4' => 'WebCT 4 Campus Edition',
                   'yes'      => 'Yes',
                   'no'       => 'No',
                   'er' => 'Editing rights unavailable for your current role.',
           );
 # -----------------------------------------------------------------------------  # -----------------------------------------------------------------------------
   
       # Calculate free quota space for a user or course. A javascript function checks
       # file size to determine if upload should be allowed.
       my $quotatype = 'unofficial';
       if ($crstype eq 'Community') {
           $quotatype = 'community';
       } elsif ($crstype eq 'Placement') {
           $quotatype = 'placement';
       } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.coursecode'}) {
           $quotatype = 'official';
       } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.textbook'}) {
           $quotatype = 'textbook';
       }
       my $disk_quota = &Apache::loncommon::get_user_quota($coursenum,$coursedom,
                        'course',$quotatype); # expressed in MB
       my $current_disk_usage = 0;
       foreach my $subdir ('docs','supplemental') {
           $current_disk_usage += &Apache::lonnet::diskusage($coursedom,$coursenum,
                                  "userfiles/$subdir",1); # expressed in kB
       }
       my $free_space = 1024 * ((1024 * $disk_quota) - $current_disk_usage);
       my $usage = $current_disk_usage/1024; # in MB
       my $quota = $disk_quota;
       my $percent;
       if ($disk_quota == 0) {
           $percent = 100.0;
       } else {
           $percent = 100*($usage/$disk_quota);
       }
       $usage = sprintf("%.2f",$usage);
       $quota = sprintf("%.2f",$quota);
       $percent = sprintf("%.0f",$percent);
       my $quotainfo = '<p>'.&mt('Currently using [_1] of the [_2] available.',
                                 $percent.'%',$quota.' MB').'</p>';
   
    my $fileupload=(<<FIUP);
           $quotainfo
    $lt{'file'}:<br />
    <input type="file" name="uploaddoc" class="flUpload" size="40" $disabled />
           <input type="hidden" id="free_space" value="$free_space" />
   FIUP
   
    my $checkbox=(<<CHBO);
    <!-- <label>$lt{'parse'}?
    <input type="checkbox" name="parserflag" />
    </label> -->
    <label>
    <input type="checkbox" name="parserflag" checked="checked" $disabled /> $lt{'parse'}
    </label>
   CHBO
           my $imsfolder = $env{'form.folder'};
           if ($imsfolder eq '') {
               $imsfolder = 'default';  
           }
           my $imspform=(<<IMSFORM);
           <a class="LC_menubuttons_link" href="javascript:toggleUpload('ims');">
           $lt{'imsf'}</a> $help{'Importing_IMS_Course'}
           <form name="uploadims" action="/adm/imsimportdocs" method="post" enctype="multipart/form-data" target="IMSimport">
           <fieldset id="uploadimsform" style="display: none;">
           <legend>$lt{'imsf'}</legend>
           $fileupload
           <br />
           <p>
           $lt{'cms'}:&nbsp; 
           <select name="source" $disabled>
           <option value="-1" selected="selected">$lt{'se'}</option>
           <option value="bb5">$lt{'bb5'}</option>
           <option value="bb6">$lt{'bb6'}</option>
           <option value="angel5">$lt{'angel5'}</option>
           <option value="webctce4">$lt{'webctce4'}</option>
           </select>
           <input type="hidden" name="folder" value="$imsfolder" />
           </p>
           <input type="hidden" name="phase" value="one" />
           <input type="button" value="$lt{'imsl'}" onclick="makeims(this.form);" $disabled />
           </fieldset>
           </form>
   IMSFORM
   
    my $fileuploadform=(<<FUFORM);
           <a class="LC_menubuttons_link" href="javascript:toggleUpload('doc');">
           $lt{'upfi'}</a> $help{'Uploading_From_Harddrive'}
           <form name="uploaddocument" action="/adm/coursedocs" method="post" enctype="multipart/form-data">
           <fieldset id="uploaddocform" style="display: none;">
           <legend>$lt{'upfi'}</legend>
    <input type="hidden" name="active" value="aa" />
       $fileupload
    <br />
    $lt{'title'}:<br />
    <input type="text" size="60" name="comment" $disabled />
    $pathitem
    <input type="hidden" name="cmd" value="upload_default" />
    <br />
    <span class="LC_nobreak" style="float:left">
    $checkbox
    </span>
           <br clear="all" />
           <input type="submit" value="$lt{'upld'}" $disabled />
           </fieldset>
           </form>
   FUFORM
   
           my $mapimportjs;
           if ($canedit) {
               $mapimportjs = "javascript:openbrowser('mapimportform','importmap','sequence,page','');"; 
           } else {
               $mapimportjs = "javascript:alert('".&js_escape($lt{'er'})."');";
           }
    my $importpubform=(<<SEDFFORM);
           <a class="LC_menubuttons_link" href="javascript:toggleMap('map');">
           $lt{'impm'}</a>$help{'Load_Map'}
    <form action="/adm/coursedocs" method="post" name="mapimportform">
           <fieldset id="importmapform" style="display: none;">
           <legend>$lt{'impm'}</legend>
    <input type="hidden" name="active" value="bb" />
           $lt{'copm'}<br />
           <span class="LC_nobreak">
           <input type="text" name="importmap" size="40" value="" 
           onfocus="this.blur();$mapimportjs" $disabled />
           &nbsp;<a href="$mapimportjs">$lt{'selm'}</a></span><br />
           <input type="submit" name="loadmap" value="$lt{'load'}" $disabled />
           </fieldset>
           </form>
   
   SEDFFORM
           my $importcrsresform;
           my ($numdirs,$pickfile) = 
               &Apache::loncommon::import_crsauthor_form('crsresimportform','coursepath','coursefile',
                                                         "resize_scrollbox('contentscroll','1','0');",
                                                         undef,'res');
           if ($pickfile) {
               $importcrsresform=(<<CRSFORM);
           <a class="LC_menubuttons_link" href="javascript:toggleImportCrsres('res','$numdirs');">
           $lt{'imcr'}</a>$help{'Course_Resources'}
           <form action="/adm/coursedocs" method="post" name="crsresimportform" onsubmit="return validImportCrsRes();">
           <fieldset id="importcrsresform" style="display: none;">
           <legend>$lt{'imcr'}</legend>
           <input type="hidden" name="active" value="bb" />
           $pickfile
           <p>
           $lt{'title'}: <input type="textbox" name="crsrestitle" value="" $disabled />
           </p>
           <input type="hidden" name="importdetail" value="" />
           <input type="submit" name="crsres" value="$lt{'impo'}" $disabled />
           </fieldset>
           </form>
   CRSFORM
           }
   
           my $fromstoredjs;
           if ($canedit) {
               $fromstoredjs = 'open_StoredLinks_Import()'; 
           } else {
               $fromstoredjs = "alert('".&js_escape($lt{'er'})."')";
           }
   
    my @importpubforma = (
    { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/src.png" alt="'.$lt{srch}.'"  onclick="javascript:groupsearch()" />' => $pathitem."<a class='LC_menubuttons_link' href='javascript:groupsearch()'>$lt{'srch'}</a>" },
    { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/res.png" alt="'.$lt{impo}.'"  onclick="javascript:groupimport();"/>' => "<a class='LC_menubuttons_link' href='javascript:groupimport();'>$lt{'impo'}</a>$help{'Importing_LON-CAPA_Resource'}" },
    { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/wishlist.png" alt="'.$lt{lnks}.'" onclick="javascript:'.$fromstoredjs.';" />' => '<a class="LC_menubuttons_link" href="javascript:'.$fromstoredjs.';">'.$lt{'lnks'}.'</a>' },
           { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/sequence.png" alt="'.$lt{impm}.'" onclick="javascript:toggleMap(\'map\');" />' => $importpubform },
           );
           if ($pickfile) {
               push(@importpubforma,{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/res.png" alt="'.$lt{imcr}.'"  onclick="javascript:toggleImportCrsres(\'res\','."'$numdirs'".');"/>' => $importcrsresform});
    }
    $importpubform = &create_form_ul(&create_list_elements(@importpubforma));
           my $extresourcesform =
               &Apache::lonextresedit::extedit_form(0,0,undef,undef,$pathitem,
                                                    $help{'Adding_External_Resource'},
                                                    undef,undef,undef,undef,undef,undef,$disabled);
           my $exttoolform =
               &Apache::lonextresedit::extedit_form(0,0,undef,undef,$pathitem,
                                                    $help{'Adding_External_Tool'},undef,
                                                    undef,'tool',$coursedom,$coursenum,
                                                    \%ltitools,$disabled);
     if ($allowed) {      if ($allowed) {
        my $dumpbut=&dumpbutton();          my $folder = $env{'form.folder'};
        my $exportbut=&exportbutton();          if ($folder eq '') {
        my %lt=&Apache::lonlocal::texthash(              $folder='default';
  'vc' => 'Verify Content',          }
  'cv' => 'Check/Set Resource Versions',          if ($canedit) {
  'ls' => 'List Symbs',      my $output = &update_paste_buffer($coursenum,$coursedom,$folder);
   );              if ($output) {
                   $r->print($output);
        my $folderpath=$env{'form.folderpath'};              }
        if (!$folderpath) {          }
    if ($env{'form.folder'} eq '' ||   $r->print(<<HIDDENFORM);
        $env{'form.folder'} eq 'supplemental') {   <form name="renameform" method="post" action="/adm/coursedocs">
        $folderpath='default&'.     <input type="hidden" name="title" />
    &escape(&mt('Main '.$type.' Documents'));     <input type="hidden" name="cmd" />
    }     <input type="hidden" name="markcopy" />
        }     <input type="hidden" name="copyfolder" />
        unless ($env{'form.pagepath'}) {     $containertag
            $containertag = '<input type="hidden" name="folderpath" value="" />';   </form>
            $uploadtag = '<input type="hidden" name="folderpath" value="'.$folderpath.'" />';   <form name="aliasform" method="post" action="/adm/coursedocs">
        }     <input type="hidden" name="alias" />
      <input type="hidden" name="cmd" />
      $containertag
    </form>
   
   HIDDENFORM
           $r->print(&makesimpleeditform($pathitem)."\n".
                     &makedocslogform($pathitem."\n".
                                      '<input type="hidden" name="folder" value="'.
                                      $env{'form.folder'}.'" />'."\n"));
       }
   
   # Generate the tabs
       my ($mode,$needs_end);
       if (($supplementalflag) && (!$allowed)) {
           my @folders = split('&',$env{'form.folderpath'});
           unless (@folders > 2) {
               &Apache::lonnavdisplay::startContentScreen($r,'supplemental');
               $needs_end = 1;
           }
       } else {
           $r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs')));
           $needs_end = 1;
       }
   
        $r->print(<<ENDCOURSEVERIFY);  #
 <form name="renameform" method="post" action="/adm/coursedocs">      my $hostname = $r->hostname();
 <input type="hidden" name="title" />      my $savefolderpath;
 <input type="hidden" name="cmd" />  
 <input type="hidden" name="markcopy" />      if ($allowed) {
 $containertag  
 </form>  
 <form name="simpleedit" method="post" action="/adm/coursedocs">  
 <input type=hidden name="importdetail" value="">  
 $uploadtag  
 </form>  
 <form action="/adm/coursedocs" method="post" name="courseverify">  
 <table bgcolor="#AAAAAA" width="100%" cellspacing="4" cellpadding="4">  
 <tr><td bgcolor="#DDDDCC">  
 <input type="submit" name="verify" value="$lt{'vc'}" />$help{'Verify_Content'}  
 </td><td bgcolor="#DDDDCC">  
     <input type="submit" name="versions" value="$lt{'cv'}" />$help{'Check_Resource_Versions'}  
 $dumpbut  
 $exportbut  
 </td><td bgcolor="#DDDDCC">  
     <input type="submit" name="listsymbs" value="$lt{'ls'}" />  
 </td></tr></table>  
 </form>  
 ENDCOURSEVERIFY  
        $r->print(&Apache::loncommon::help_open_topic('Docs_Adding_Course_Doc',  
      &mt('Editing the Table of Contents for your '.$type)));  
     }  
 # --------------------------------------------------------- Standard documents  
     $r->print('<table border=2 cellspacing=4 cellpadding=4>');  
     if (($standard) && ($allowed) && (!$forcesupplement)) {  
  $r->print('<tr><td bgcolor="#BBBBBB">');  
 #  '<h2>'.&mt('Main Course Documents').  
 #  ($allowed?' '.$help{'Main_Course_Documents'}:'').'</h2>');  
        my $folder=$env{'form.folder'};         my $folder=$env{'form.folder'};
        if ($folder eq '' || $folder eq 'supplemental') {         if ((($folder eq '') && (!$hiddentop)) || ($supplementalflag)) {
            $folder='default';             $folder='default';
    $env{'form.folderpath'}='default&'.&escape(&mt('Main '.$type.' Documents'));     $savefolderpath = $env{'form.folderpath'};
      $env{'form.folderpath'}='default&'.&escape(&mt('Main Content'));
              $pathitem = '<input type="hidden" name="folderpath" value="'.
          &HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />';
        }         }
        my $postexec='';         my $postexec='';
        if ($folder eq 'default') {         if ($folder eq 'default') {
    $r->print('<script>this.window.name="loncapaclient";</script>');             my $windowname = 'loncapaclient';
              if ($env{'request.lti.login'}) {
                  $windowname .= 'lti';
              }
              $r->print('<script type="text/javascript">'."\n"
                       .'// <![CDATA['."\n"
                       .'this.window.name="'.$windowname.'";'."\n"
                       .'// ]]>'."\n"
                       .'</script>'."\n"
          );
        } else {         } else {
            #$postexec='self.close();';             #$postexec='self.close();';
        }         }
        $hadchanges=0;         my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_new.sequence';
        &editor($r,$coursenum,$coursedom,$folder,$allowed,$upload_output);         my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_new.page';
        if ($hadchanges) {  
    &mark_hash_old()  
        }  
        &changewarning($r,$postexec);  
        my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.  
                      '.sequence';  
        my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.  
                      '.page';  
  my $container='sequence';  
  if ($env{'form.pagepath'}) {  
     $container='page';  
  }  
  my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container;   my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container;
        $r->print(<<ENDFORM);  
 <table cellspacing=4 cellpadding=4><tr>   my $newnavform=(<<NNFORM);
 <th bgcolor="#DDDDDD">$lt{'uplm'}</th>   <form action="/adm/coursedocs" method="post" name="newnav">
 <th bgcolor="#DDDDDD">$lt{'impp'}</th>   <input type="hidden" name="active" value="ff" />
 <th bgcolor="#DDDDDD">$lt{'spec'}</th>   $pathitem
 </tr>   <input type="hidden" name="importdetail" 
 <tr><td bgcolor="#DDDDDD">   value="$lt{'navc'}=/adm/navmaps" />
 $lt{'file'}:<br />   <a class="LC_menubuttons_link" href="javascript:makenew(document.newnav);">$lt{'navc'}</a>
 <form name="uploaddocument" action="/adm/coursedocs" method="post" enctype="multipart/form-data">   $help{'Navigate_Content'}
 <input type="file" name="uploaddoc" size="40">   </form>
 <br />  NNFORM
 $lt{'title'}:<br />   my $newsmppageform=(<<NSPFORM);
 <input type="text" size="50" name="comment">   <form action="/adm/coursedocs" method="post" name="newsmppg">
 $uploadtag   <input type="hidden" name="active" value="ff" />
 <input type="hidden" name="cmd" value="upload_default">   $pathitem
 <br />   <input type="hidden" name="importdetail" value="" />
 <nobr>   <a class="LC_menubuttons_link" href="javascript:makesmppage();"> $lt{'sipa'}</a>
 <label>$lt{'parse'}?   $help{'Simple Page'}
 <input type="checkbox" name="parserflag" />   </form>
 </label>  NSPFORM
 </nobr>  
 <br />   my $newsmpproblemform=(<<NSPROBFORM);
 <br />   <form action="/adm/coursedocs" method="post" name="newsmpproblem">
 <nobr>   <input type="hidden" name="active" value="dd" />
 <input type="submit" value="$lt{'upld'}">   $pathitem
  $help{'Uploading_From_Harddrive'}   <input type="hidden" name="importdetail" value="" />
 </nobr>   <a class="LC_menubuttons_link" href="javascript:makesmpproblem();">$lt{'sipr'}</a>
 </form>   $help{'Simple_Problem'}
 </td>   </form>
 <td bgcolor="#DDDDDD">  
 <form action="/adm/coursedocs" method="post" name="simpleeditdefault">  NSPROBFORM
 $lt{'pubd'}<br />  
 $uploadtag   my $newdropboxform=(<<NDBFORM);
 <input type=button onClick="javascript:groupsearch()" value="$lt{'srch'}" />   <form action="/adm/coursedocs" method="post" name="newdropbox">
 <br />   <input type="hidden" name="active" value="dd" />
 <nobr>   $pathitem
 <input type=button onClick="javascript:groupimport();" value="$lt{'impo'}" />   <input type="hidden" name="importdetail" value="" />
 $help{'Importing_LON-CAPA_Resource'}   <a class="LC_menubuttons_link" href="javascript:makedropbox();">$lt{'drbx'}</a>
 </nobr>          $help{'Dropbox'}
 <br />   </form>
 <input type=button onClick="javascript:groupopen(0,1,1);" value="$lt{'book'}" />  NDBFORM
 <p>  
 <hr />   my $newexuploadform=(<<NEXUFORM);
 $lt{'copm'}<br />   <form action="/adm/coursedocs" method="post" name="newexamupload">
 <input type="text" size="40" name="importmap"><br />   <input type="hidden" name="active" value="dd" />
 <nobr><input type=button    $pathitem
 onClick="javascript:openbrowser('simpleeditdefault','importmap','sequence,page','')"   <input type="hidden" name="importdetail" value="" />
 value="$lt{'selm'}"> <input type="submit" name="loadmap" value="$lt{'load'}">   <a class="LC_menubuttons_link" href="javascript:makeexamupload();">$lt{'scuf'}</a>
 $help{'Load_Map'}</nobr>   $help{'Score_Upload_Form'}
 </p>   </form>
 </form>  NEXUFORM
 <hr />  
 <form action="/adm/groupsort" method="post" name="recover">   my $newbulform=(<<NBFORM);
 <input type="button" name="recovermap" onClick="javascript:groupopen('$readfile',1,0)" value="$lt{'reco'}" />   <form action="/adm/coursedocs" method="post" name="newbul">
 </form>   <input type="hidden" name="active" value="ee" />
 ENDFORM   $pathitem
        unless ($env{'form.pagepath'}) {   <input type="hidden" name="importdetail" value="" />
    $r->print(<<ENDFORM);   <a class="LC_menubuttons_link" href="javascript:makebulboard();" >$lt{'bull'}</a>
 <hr />   $help{'Bulletin Board'}
 <form action="/adm/coursedocs" method="post" name="newext">   </form>
 $uploadtag  NBFORM
 <input type=hidden name="importdetail" value="">  
 <nobr>   my $newaboutmeform=(<<NAMFORM);
 <input name="newext" type="button" onClick="javascript:makenewext('newext');"   <form action="/adm/coursedocs" method="post" name="newaboutme">
 value="$lt{'extr'}" /> $help{'Adding_External_Resource'}   <input type="hidden" name="active" value="ee" />
 </nobr>   $pathitem
 </form>   <input type="hidden" name="importdetail" 
 <br /><form action="/adm/imsimportdocs" method="post" name="ims">   value="$plainname=/adm/$udom/$uname/aboutme" />
 <input type="hidden" name="folder" value="$folder" />   <a class="LC_menubuttons_link" href="javascript:makenew(document.newaboutme);">$lt{'mypi'}</a>
 <input name="imsimport" type="button" value="$lt{'imsf'}" onClick="javascript:makeims();" />   $help{'My Personal Information Page'}
 </nobr>   </form>
 </form>  NAMFORM
 ENDFORM  
        }   my $newaboutsomeoneform=(<<NASOFORM);
        $r->print('</td><td bgcolor="#DDDDDD">');   <form action="/adm/coursedocs" method="post" name="newaboutsomeone">
        unless ($env{'form.pagepath'}) {   <input type="hidden" name="active" value="ee" />
            $r->print(<<ENDFORM);   $pathitem
 <br /><form action="/adm/coursedocs" method="post" name="newfolder">   <input type="hidden" name="importdetail" value="" />
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />   <a class="LC_menubuttons_link" href="javascript:makeabout();">$lt{'abou'}</a>
 <input type=hidden name="importdetail" value="">   </form>
 <nobr>  NASOFORM
 <input name="newfolder" type="button"  
 onClick="javascript:makenewfolder(this.form,'$folderseq');"   my $newrosterform=(<<NROSTFORM);
 value="$lt{'newf'}" />$help{'Adding_Folders'}   <form action="/adm/coursedocs" method="post" name="newroster">
 </nobr>   <input type="hidden" name="active" value="ee" />
 </form>   $pathitem
 <br /><form action="/adm/coursedocs" method="post" name="newpage">   <input type="hidden" name="importdetail" 
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />   value="$lt{'rost'}=/adm/viewclasslist" />
 <input type=hidden name="importdetail" value="">   <a class="LC_menubuttons_link" href="javascript:makenew(document.newroster);">$lt{'rost'}</a>
 <nobr>   $help{'Course_Roster'}
 <input name="newpage" type="button"   </form>
 onClick="javascript:makenewpage(this.form,'$pageseq');"  NROSTFORM
 value="$lt{'newp'}" />$help{'Adding_Pages'}  
 </nobr>          my $newwebpage;
 </form>          if ($folder =~ /^default_?(\d*)$/) {
 <br /><form action="/adm/coursedocs" method="post" name="newsyl">              $newwebpage = "/uploaded/$coursedom/$coursenum/docs/";
 $uploadtag              if ($1) {
 <input type=hidden name="importdetail"                   $newwebpage .= $1;
 value="Syllabus=/public/$coursedom/$coursenum/syllabus">              } else {
 <nobr>                  $newwebpage .= 'default';
 <input name="newsyl" type="submit" value="$lt{'syll'}" />               }
  $help{'Syllabus'}              $newwebpage .= '/new.html';
 </nobr>          }
 </form>          my $newwebpageform =(<<NWEBFORM);
 <br /><form action="/adm/coursedocs" method="post" name="newnav">          <form action="/adm/coursedocs" method="post" name="newwebpage">
 $uploadtag          <input type="hidden" name="active" value="ff" />
 <input type=hidden name="importdetail"           $pathitem
 value="Navigate Content=/adm/navmaps">          <input type="hidden" name="importdetail" value="$newwebpage" />
 <nobr>          <a class="LC_menubuttons_link" href="javascript:makewebpage();">$lt{'webp'}</a>
 <input name="newnav" type="submit" value="$lt{'navc'}" />          $help{'Web_Page'}
 $help{'Navigate_Content'}          </form>
 </nobr>  NWEBFORM
 </form>  
 <br /><form action="/adm/coursedocs" method="post" name="newsmppg">          my @ids=&Apache::lonnet::current_machine_ids();
 $uploadtag          my %select_menus;
 <input type=hidden name="importdetail" value="">          my $numauthor = 0;
 <nobr>          my $numcrsdirs = 0;
 <input name="newsmppg" type="button" value="$lt{'sipa'}"          my $toppath = "/priv/$env{'user.domain'}/$env{'user.name'}"; 
 onClick="javascript:makesmppage();" /> $help{'Simple Page'}          if ($env{'user.author'}) {
 </nobr>              $numauthor ++;
 </form>              $select_menus{'author'}->{'text'} = &Apache::lonnet::plaintext('au');
 <br /><form action="/adm/coursedocs" method="post" name="newsmpproblem">              if (grep(/^\Q$env{'user.home'}\E$/,@ids)) {
 $uploadtag                  my $is_home = 1;
 <input type=hidden name="importdetail" value="">                  my %subdirs;
 <nobr>                  &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
 <input name="newsmpproblem" type="button" value="$lt{'sipr'}"                  $select_menus{'author'}->{'default'} = '/'; 
 onClick="javascript:makesmpproblem();" />$help{'Simple Problem'}                  $select_menus{'author'}->{'select2'}->{'/'} = '/';
 </nobr>                  my @ordered = ('/');
 </form>                  foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
 <br /><form action="/adm/coursedocs" method="post" name="newdropbox">                      $select_menus{'author'}->{'select2'}->{$relpath} = $relpath;
 $uploadtag                            push(@ordered,$relpath);
 <input type=hidden name="importdetail" value="">                  }
 <nobr>                            $select_menus{'author'}->{'order'} = \@ordered;
 <input name="newdropbox" type="button" value="$lt{'drbx'}"              } else {
 onClick="javascript:makedropbox();" />                  $select_menus{'author'}->{'select2'}->{'switch'} = &mt('Switch server required');
 </nobr>                           $select_menus{'author'}->{'default'} = 'switch';
 </form>                   $select_menus{'author'}->{'order'} = ['switch'];
 <br /><form action="/adm/coursedocs" method="post" name="newexamupload">              }
 $uploadtag          }
 <input type=hidden name="importdetail" value="">          my %roleshash = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',
 <nobr>                                                        ['active'],['ca','aa']);
 <input name="newexamupload" type="button" value="$lt{'scuf'}"          my $crshome = $env{'course.'.$env{'request.course.id'}.'.home'};
 onClick="javascript:makeexamupload();" />          my %by_roletype;
 $help{'Score_Upload_Form'}          if (keys(%roleshash)) {
 </nobr>              foreach my $entry (keys(%roleshash)) {
 </form>                  my ($auname,$audom,$roletype) = split(/:/,$entry);
 <br /><form action="/adm/coursedocs" method="post" name="newbul">                  my $key = $entry;
 $uploadtag                  $key =~ s/:/___/g;
 <input type=hidden name="importdetail" value="">                  $by_roletype{$roletype}{$auname.'___'.$audom} = 1;
 <nobr>                  $select_menus{$key}->{'text'} = &Apache::lonnet::plaintext($roletype)." ($audom/$auname)";
 <input name="newbulletin" type="button" value="$lt{'bull'}"                  my $rolehome = &Apache::lonnet::homeserver($auname,$audom);
 onClick="javascript:makebulboard();" />                  if (grep(/^\Q$rolehome\E$/,@ids)) {    
 $help{'Bulletin Board'}                      my $is_home = 1;
 </nobr>                      my (%subdirs,@ordered);
 </form>                      my $toppath="/priv/$audom/$auname";
 <br /><form action="/adm/coursedocs" method="post" name="newaboutme">                      &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
 $uploadtag                      $select_menus{$key}->{'default'} = '/';
 <input type=hidden name="importdetail"                       $select_menus{$key}->{'select2'}->{'/'} = '/';
 value="$plainname=/adm/$udom/$uname/aboutme">                      my @ordered = ('/');
 <nobr>                      foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
 <input name="newaboutme" type="submit" value="$lt{'mypi'}" />                          $select_menus{$key}->{'select2'}->{$relpath} = $relpath;
 $help{'My Personal Info'}                          push(@ordered,$relpath);
 </nobr>                      }
 </form>                      $select_menus{$key}->{'order'} = \@ordered;
 <br /><form action="/adm/coursedocs" method="post" name="newaboutsomeone">                  } else {
 $uploadtag                      $select_menus{$key}->{'select2'}->{'switch'} = &mt('Switch server required');
 <input type=hidden name="importdetail" value="">                      $select_menus{$key}->{'default'} = 'switch';
 <nobr>                      $select_menus{$key}->{'order'} = ['switch'];
 <input name="newaboutsomeone" type="button" value="$lt{'abou'}"                   }
 onClick="javascript:makeabout();" />                  $numauthor ++;
 </nobr>              }
 </form>          }
 ENDFORM          my ($pickdir,$showtitle);
        }          if ($numauthor) {
        if ($env{'form.pagepath'}) {              my @order;
            $r->print(<<ENDBLOCK);              my $defrole;
 <form action="/adm/coursedocs" method="post" name="newsmpproblem">              if ($env{'user.author'}) {
 $uploadtag                  push(@order,'author');
 <input type=hidden name="importdetail" value="">                  $defrole = 'author';
 <nobr>              }
 <input name="newsmpproblem" type="button" value="$lt{'sipr'}"              if (keys(%by_roletype)) {
 onClick="javascript:makesmpproblem();" />$help{'Simple Problem'}                  foreach my $possrole ('ca','aa') {
 </nobr>                      if (ref($by_roletype{$possrole}) eq 'HASH') {
 </form>                          foreach my $author (sort { lc($a) cmp lc($b) } (keys(%{$by_roletype{$possrole}}))) {
 <br /><form action="/adm/coursedocs" method="post" name="newexamupload">                              unless ($defrole) {
 $uploadtag                                  $defrole = $author;
 <input type=hidden name="importdetail" value="">                              }
 <nobr>                              push(@order,$author.'___'.$possrole);
 <input name="newexamupload" type="button" value="$lt{'scuf'}"                          }
 onClick="javascript:makeexamupload();" />                      }
 $help{'Score_Upload_Form'}                  }
 </nobr>              }
 </form>              $select_menus{'course'}->{'text'} = &mt('Course Resource');
 ENDBLOCK              if (grep(/^\Q$crshome\E$/,@ids)) {
        }                  my $is_home = 1;
        $r->print('</td></tr>'."\n".                  my %subdirs;
 '</table>');                  my $toppath="/priv/$coursedom/$coursenum";
        $r->print('</td></tr>');                  &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
     }                  $numcrsdirs = keys(%subdirs);
 # ----------------------------------------------------- Supplemental documents                  $select_menus{'course'}->{'default'} = '/';
     if (!$forcestandard) {                  $select_menus{'course'}->{'select2'}->{'/'} = '/';
        $r->print('<tr><td bgcolor="#BBBBBB">');                  my @ordered = ('/');
 # '<h2>'.&mt('Supplemental Course Documents').                  foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
 #  ($allowed?' '.$help{'Supplemental'}:'').'</h2>');                      $select_menus{'course'}->{'select2'}->{$relpath} = $relpath;
                       push(@ordered,$relpath);
                   }
                   $select_menus{'course'}->{'order'} = \@ordered;
               } else {
                   $select_menus{'course'}->{'select2'}->{'switch'} = &mt('Switch server required');
                   $select_menus{'course'}->{'default'} = 'switch';
                   $select_menus{'course'}->{'order'} = ['switch'];
               }
               push(@order,'course');
               $pickdir = $lt{'loca'}.
                          &Apache::loncommon::linked_select_forms('courseresform','<br />'.$lt{'dire'},
                                                                  $defrole,'authorrole','authorpath',
                                                                  \%select_menus,\@order,'toggleCrsResTitle();',
                                                                  '','priv').'<br />';
               $showtitle = 'none';
           } else {
               my $is_home;
               $showtitle = 'inline';
               if (grep(/^\Q$crshome\E$/,@ids)) {
                   $is_home = 1;
                   $pickdir .= '<input type="hidden" name="authorrole" value="course" />'; 
                   my $toppath="/priv/$coursedom/$coursenum'}";
                   my %subdirs;
                   &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
                   $numcrsdirs = keys(%subdirs); 
                   if ($numcrsdirs) {
                       $pickdir .= &mt('Directory: ').'<select name="authorpath">'."\n".
                                    '<option value="/">/</option>'."\n";
                       foreach my $key (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
                           $pickdir .= '<option value="'.$key.'">'.$key.'</option>'."\n";
                       }
                       $pickdir .= '</select>';
                   } else {
                       $pickdir .= '<input type="hidden" name="authorpath" value="/" />'."\n";   
                   }
               }
           }
   
           my %seltemplate_menus;
           my @files = &Apache::lonhomework::get_template_list('problem');
           my @noexamplelink = ('blank.problem','blank.library','script.library');
           my $currentcategory = '';
           my @ordered = ('');
           my %templatehelp;
           my $defcategory = '';
           my @catorder = ($defcategory);
           $seltemplate_menus{$defcategory}->{'order'} = [''];
           $seltemplate_menus{$defcategory}->{'text'} = '';
           foreach my $file (@files) {
               if (ref($file) eq 'ARRAY') {
                   my ($path,$title,$category,$help) = @{$file};
                   next if ($title !~ /\S/);
                   if (&js_escape($category) ne $currentcategory) {
                       $currentcategory = &js_escape($category);
                       push(@catorder,&js_escape($currentcategory));
                       $seltemplate_menus{$currentcategory}->{'text'} = $category;
                       $seltemplate_menus{$currentcategory}->{'default'} = '';
                       $seltemplate_menus{$currentcategory}->{'select2'}->{''} = '';
                       push(@{$seltemplate_menus{$currentcategory}->{'order'}},'');
                   }
                   if ($path) {
                       $seltemplate_menus{$currentcategory}->{'select2'}->{&js_escape($path)} = $title;
                       push(@{$seltemplate_menus{$currentcategory}->{'order'}},&js_escape($path));
                       if ($help) {
                           $templatehelp{$path} = $help;
                       }
                   }
               }
           }
   
           my $templates = $lt{'cate'}.' '.
                           &Apache::loncommon::linked_select_forms('courseresform','<br />'.$lt{'tmpl'}.' ',
                                                                   $defcategory,'tempcategory','template',
                                                                   \%seltemplate_menus,\@catorder,
                                                                   "resize_scrollbox('contentscroll','1','0');",
                                                                   "toggleExampleText();",'template').'<br />';
           my $templatepreview =  '<a href="#" target="sample" onclick="javascript:getExample(600,420,\'yes\',true);  return false;">'.
                                  '<span id="newresexample">'.&mt('Example').'<span></a>';
           my $crsresform=(<<RESFORM);
           <a class="LC_menubuttons_link" href="javascript:toggleCrsRes('res','$numauthor','$numcrsdirs');">
           $lt{'stpr'}</a>$help{'Course_Resource'}
           <form action="/adm/coursedocs" method="post" name="courseresform">
           <fieldset id="crsresform" style="display:none;">
           <legend>$lt{'stpr'}</legend>
           <input type="hidden" name="active" value="bb" />
           <p>
           $pickdir
           <span class="LC_nobreak">$lt{'news'}?&nbsp;
           <label><input type="radio" name="newsubdir" value="0" onclick="toggleNewsubdir(this.form);" checked="checked" $disabled />No</label>
           &nbsp;
           <label><input type="radio" name="newsubdir" value="1" onclick="toggleNewsubdir(this.form);" $disabled />Yes</label>
           </span><span id="newsubdir"></span>
           <input type="hidden" name="newsubdirname" id="newsubdirname" value="" autocomplete="off" />
           </p>
           $lt{'fnam'}
           <input type="text" size="20" name="newresourcename" autocomplete="off" $disabled />
           <p>
           <div id="newresource" style="display:$showtitle">
           $lt{'addp'}
           <label><input type="radio" name="newresourceadd" value="0" checked="checked" onclick="toggleNewInCourse(this.form);" $disabled />
           $lt{'no'}</label>&nbsp;&nbsp;
           <label><input type="radio" name="newresourceadd" value="1" onclick="toggleNewInCourse(this.form);" $disabled />
           $lt{'yes'}</label>
           <span id="newrestitle"></span>
           <input type="hidden" size="20" name="newresourcetitle" id="newresourcetitle" autocomplete="off" $disabled />
           </div>
           </p>
           <p>
           $lt{'uste'}
           <label><input type="radio" name="newresusetemp" value="0" checked="checked" onclick="toggleWithTemplate(this.form);" $disabled />
           $lt{'no'}</label>&nbsp;&nbsp;
           <label><input type="radio" name="newresusetemp" value="1" onclick="toggleWithTemplate(this.form);" $disabled />
           $lt{'yes'}</label>
           <div id="newrestemplate" style="display:none">
           $templates
           $templatepreview
           </div>
           </p>
           <span class="LC_nobreak">
           <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />
           <input type="submit" name="newcrs" value="$lt{'crpr'}" $disabled />
           </span>
           </fieldset>
           </form>
   
   RESFORM
   
   my $specialdocumentsform;
   my @specialdocumentsforma;
   my $gradingform;
   my @gradingforma;
   my $communityform;
   my @communityforma;
   my $newfolderform;
   my $newfolderb;
   
    my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
   
    my $newpageform=(<<NPFORM);
    <form action="/adm/coursedocs" method="post" name="newpage">
    <input type="hidden" name="folderpath" value="$path" />
    <input type="hidden" name="importdetail" value="" />
    <input type="hidden" name="active" value="ee" />
    <a class="LC_menubuttons_link" href="javascript:makenewpage(document.newpage,'$pageseq');">$lt{'newp'}</a>
    $help{'Adding_Pages'}
    </form>
   NPFORM
   
   
    $newfolderform=(<<NFFORM);
    <form action="/adm/coursedocs" method="post" name="newfolder">
    $pathitem
    <input type="hidden" name="importdetail" value="" />
    <input type="hidden" name="active" value="" />
    <a href="javascript:makenewfolder(document.newfolder,'$folderseq');">$lt{'newf'}</a>$help{'Adding_Folders'}
    </form>
   NFFORM
   
    my $newsylform=(<<NSYLFORM);
    <form action="/adm/coursedocs" method="post" name="newsyl">
    <input type="hidden" name="active" value="ee" />
    $pathitem
    <input type="hidden" name="importdetail" 
    value="$lt{'syll'}=/public/$coursedom/$coursenum/syllabus" />
    <a class="LC_menubuttons_link" href="javascript:makenew(document.newsyl);">$lt{'syll'}</a>
    $help{'Syllabus'}
   
    </form>
   NSYLFORM
   
    my $newgroupfileform=(<<NGFFORM);
    <form action="/adm/coursedocs" method="post" name="newgroupfiles">
    <input type="hidden" name="active" value="ee" />
    $pathitem
    <input type="hidden" name="importdetail"
    value="$lt{'grpo'}=/adm/$coursedom/$coursenum/aboutme" />
    <a class="LC_menubuttons_link" href="javascript:makenew(document.newgroupfiles);">$lt{'grpo'}</a>
    $help{'Group Portfolio'}
    </form>
   NGFFORM
    @specialdocumentsforma=(
    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/page.png" alt="'.$lt{newp}.'"  onclick="javascript:makenewpage(document.newpage,\''.$pageseq.'\');" />'=>$newpageform},
    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="javascript:makenew(document.newsyl);" />'=>$newsylform},
    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/navigation.png" alt="'.$lt{navc}.'" onclick="javascript:makenew(document.newnav);" />'=>$newnavform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simple.png" alt="'.$lt{sipa}.'" onclick="javascript:makesmppage();" />'=>$newsmppageform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/webpage.png" alt="'.$lt{webp}.'" onclick="javascript:makewebpage();" />'=>$newwebpageform},
           );
           $specialdocumentsform = &create_form_ul(&create_list_elements(@specialdocumentsforma));
   
           my @external = (
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="toggleExternal(\'ext\');" />'=>$extresourcesform}
           );
           if (keys(%ltitools)) {
               push(@external,
                    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/exttool.png" alt="'.$lt{extt}.'" onclick="toggleExternal(\'tool\');" />'=>$exttoolform},
               );
           }
           my $externalform = &create_form_ul(&create_list_elements(@external));
   
           my @importdoc = ();
           unless ($container eq 'page') {
               push(@importdoc,
                   {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/ims.png" alt="'.$lt{imsf}.'" onclick="javascript:toggleUpload(\'ims\');" />'=>$imspform}
               );
           }
           push(@importdoc,
               {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/pdfupload.png" alt="'.$lt{upl}.'" onclick="javascript:toggleUpload(\'doc\');" />'=>$fileuploadform}
           );
           $fileuploadform =  &create_form_ul(&create_list_elements(@importdoc));
   
           @gradingforma=(
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.$lt{sipr}.'" onclick="javascript:makesmpproblem();" />'=>$newsmpproblemform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/dropbox.png" alt="'.$lt{drbx}.'" onclick="javascript:makedropbox();" />'=>$newdropboxform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/scoreupfrm.png" alt="'.$lt{scuf}.'" onclick="javascript:makeexamupload();" />'=>$newexuploadform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.$lt{stpr}.'" onclick="javascript:toggleCrsRes(\'res\','."'$numauthor','$numcrsdirs'".');" />'=>$crsresform},
           );
           $gradingform = &create_form_ul(&create_list_elements(@gradingforma));
   
           @communityforma=(
          {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/bchat.png" alt="'.$lt{bull}.'" onclick="javascript:makebulboard();" />'=>$newbulform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="javascript:makebulboard();" />'=>$newaboutmeform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/aboutme.png" alt="'.$lt{abou}.'" onclick="javascript:makeabout();" />'=>$newaboutsomeoneform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/clst.png" alt="'.$lt{rost}.'" onclick="javascript:makenew(document.newroster);" />'=>$newrosterform},
           {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/groupportfolio.png" alt="'.$lt{grpo}.'" onclick="javascript:makenew(document.newgroupfiles);" />'=>$newgroupfileform},
           );
           $communityform = &create_form_ul(&create_list_elements(@communityforma));
   
   my %orderhash = (
                   'aa' => ['Upload',$fileuploadform],
                   'bb' => ['Import',$importpubform],
                   'cc' => ['External',$externalform],
                   'dd' => ['Grading',$gradingform],
                   );
   unless ($container eq 'page') {
       $orderhash{'00'} = ['Newfolder',$newfolderform];
       $orderhash{'ee'} = ['Collaboration',$communityform];
       $orderhash{'ff'} = ['Other',$specialdocumentsform];
   }
   
    $hadchanges=0;
          unless (($supplementalflag || $toolsflag)) {
             my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
                                 $supplementalflag,\%orderhash,$iconpath,$pathitem,
                                 \%ltitools,$canedit,$hostname,\$navmap,$hiddentop);
             undef($navmap);
             if ($error) {
                $r->print('<p><span class="LC_error">'.$error.'</span></p>');
             }
             if ($hadchanges) {
                 unless (&is_hash_old()) {
                     &mark_hash_old();
                 }
     }
   
             &changewarning($r,'');
           }
       }
   
   # Supplemental documents start here
   
        my $folder=$env{'form.folder'};         my $folder=$env{'form.folder'};
        unless ($folder=~/^supplemental/) {         unless ($supplementalflag) {
    $folder='supplemental';     $folder='supplemental';
        }         }
        if ($folder =~ /^supplemental$/ &&         if ($folder =~ /^supplemental$/ &&
    $env{'form.folderpath'} =~ /^default\&/) {     (($env{'form.folderpath'} =~ /^default\&/) || ($env{'form.folderpath'} eq ''))) {
    $env{'form.folderpath'}='supplemental&'.            $env{'form.folderpath'} = &supplemental_base();
        &escape(&mt('Supplemental '.$type.' Documents'));         } elsif ($allowed) {
     $env{'form.folderpath'} = $savefolderpath;
        }         }
        &editor($r,$coursenum,$coursedom,$folder,$allowed);         $pathitem = '<input type="hidden" name="folderpath" value="'.
                       &HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />';
        if ($allowed) {         if ($allowed) {
        my $folderseq=     my $folderseq=
                   '/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_'.time.         '/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_new.sequence';
                      '.sequence';  
    my $supupdocform=(<<SUPDOCFORM);
           $r->print(<<ENDSUPFORM);          <a class="LC_menubuttons_link" href="javascript:toggleUpload('suppdoc');">
 <table cellspacing=4 cellpadding=4><tr>          $lt{'upfi'}</a> $help{'Uploading_From_Harddrive'}
 <th bgcolor="#DDDDDD">$lt{'upls'}</th>   <form action="/adm/coursedocs" method="post" name="supuploaddocument" enctype="multipart/form-data">
 <th bgcolor="#DDDDDD">$lt{'spec'}</th>          <fieldset id="uploadsuppdocform" style="display: none;">
 </tr>          <legend>$lt{'upfi'}</legend>
 <tr><td bgcolor="#DDDDDD">   <input type="hidden" name="active" value="ee" />
 <form action="/adm/coursedocs" method="post" enctype="multipart/form-data">   $fileupload
 <input type="file" name="uploaddoc" size="40">   <br />
 <br />   <br />
 <br />   <span class="LC_nobreak">
 <nobr>   $checkbox
 <label>$lt{'parse'}?   </span>
 <input type="checkbox" name="parserflag" />   <br /><br />
 </label>   $lt{'comment'}:<br />
 </nobr>   <textarea cols="50" rows="4" name="comment"></textarea>
 <br /><br />   <br />
 $lt{'comment'}:<br />   $pathitem
 <textarea cols=50 rows=4 name='comment'>   <input type="hidden" name="cmd" value="upload_supplemental" />
 </textarea>          <input type='submit' value="$lt{'upld'}" />
 <br />          </form>
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />  SUPDOCFORM
 <input type="hidden" name="cmd" value="upload_supplemental">  
 <nobr>   my $supnewfolderform=(<<SNFFORM);
 <input type="submit" value="$lt{'upld'}">   <form action="/adm/coursedocs" method="post" name="supnewfolder">
  $help{'Uploading_From_Harddrive'}   <input type="hidden" name="active" value="" />
 </nobr>          $pathitem
 </form>   <input type="hidden" name="importdetail" value="" />
 </td>   <a class="LC_menubuttons_link" href="javascript:makenewfolder(document.supnewfolder,'$folderseq');">$lt{'newf'}</a> 
 <td bgcolor="#DDDDDD">   $help{'Adding_Folders'}
 <form action="/adm/coursedocs" method="post" name="supnewfolder">   </form>
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />  SNFFORM
 <input type=hidden name="importdetail" value="">  
 <nobr>          my $supextform =
 <input name="newfolder" type="button"              &Apache::lonextresedit::extedit_form(1,0,undef,undef,$pathitem,
 onClick="javascript:makenewfolder(this.form,'$folderseq');"                                                   $help{'Adding_External_Resource'},
 value="$lt{'newf'}" /> $help{'Adding_Folders'}                                                   undef,undef,undef,undef,undef,undef,
 </nobr>                                                   $disabled);
 </form>  
 <br /><form action="/adm/coursedocs" method="post" name="supnewext">          my $supexttoolform =
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />              &Apache::lonextresedit::extedit_form(1,0,undef,undef,$pathitem,
 <input type=hidden name="importdetail" value="">                                                   $help{'Adding_External_Tool'},
 <nobr>                                                   undef,undef,'tool',$coursedom,
 <input name="newext" type="button"                                                    $coursenum,\%ltitools,$disabled);
 onClick="javascript:makenewext('supnewext');"  
 value="$lt{'extr'}" /> $help{'Adding_External_Resource'}   my $supnewsylform=(<<SNSFORM);
 </nobr>   <form action="/adm/coursedocs" method="post" name="supnewsyl">
 </form>   <input type="hidden" name="active" value="ff" />
 <br /><form action="/adm/coursedocs" method="post" name="supnewsyl">          $pathitem
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />   <input type="hidden" name="importdetail" 
 <input type=hidden name="importdetail"    value="Syllabus=/public/$coursedom/$coursenum/syllabus" />
 value="Syllabus=/public/$coursedom/$coursenum/syllabus">   <a class="LC_menubuttons_link" href="javascript:makenew(document.supnewsyl);">$lt{'syll'}</a>
 <nobr>   $help{'Syllabus'}
 <input name="newsyl" type="submit" value="$lt{'syll'}" />   </form>
 $help{'Syllabus'}  SNSFORM
 </nobr>  
 </form>   my $supnewaboutmeform=(<<SNAMFORM);
 <br /><form action="/adm/coursedocs" method="post" name="subnewaboutme">   <form action="/adm/coursedocs" method="post" name="supnewaboutme">
 <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />   <input type="hidden" name="active" value="ff" />
 <input type=hidden name="importdetail"           $pathitem
 value="$plainname=/adm/$udom/$uname/aboutme">   <input type="hidden" name="importdetail" 
 <nobr>   value="$plainname=/adm/$udom/$uname/aboutme" />
 <input name="newaboutme" type="submit" value="$lt{'mypi'}" />   <a class="LC_menubuttons_link" href="javascript:makenew(document.supnewaboutme);">$lt{'mypi'}</a>
 $help{'My Personal Info'}   $help{'My Personal Information Page'}
 </nobr>   </form>
 </form>  SNAMFORM
 </td></tr>  
 </table></td></tr>          my $supwebpage;
 ENDSUPFORM          if ($folder =~ /^supplemental_?(\d*)$/) {
        }              $supwebpage = "/uploaded/$coursedom/$coursenum/supplemental/";
               if ($1) {
                   $supwebpage .= $1;
               } else {
                   $supwebpage .= 'default';
               }
               $supwebpage .= '/new.html';
           }
           my $supwebpageform =(<<SWEBFORM);
           <form action="/adm/coursedocs" method="post" name="supwebpage">
           <input type="hidden" name="active" value="cc" />
           $pathitem
           <input type="hidden" name="importdetail" value="$supwebpage" />
           <a class="LC_menubuttons_link" href="javascript:makewebpage('supp');">$lt{'webp'}</a>
           $help{'Web_Page'}
           </form>
   SWEBFORM
   
   
   my @specialdocs = (
    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="javascript:makenew(document.supnewsyl);" />'
               =>$supnewsylform},
    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="javascript:makenew(document.supnewaboutme);" />'
               =>$supnewaboutmeform},
                   {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/webpage.png" alt="'.$lt{webp}.'" onclick="javascript:makewebpage('."'supp'".');" />'=>$supwebpageform},
   
    );
           my @supexternal = (
               {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="javascript:toggleExternal(\'suppext\')" />'
                =>$supextform});
           if (keys(%ltitools)) {
               push(@supexternal,
                    {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/exttool.png" alt="'.$lt{extt}.'" onclick="javascript:toggleExternal(\'supptool\')" />'
               =>$supexttoolform});
           }
           my @supimportdoc = (
               {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/pdfupload.png" alt="'.$lt{upl}.'" onclick="javascript:toggleUpload(\'suppdoc\');" />'
               =>$supupdocform},
           );
   
   $supupdocform =  &create_form_ul(&create_list_elements(@supimportdoc));
   my %suporderhash = (
    '00' => ['Supnewfolder', $supnewfolderform],
                   'dd' => ['Upload',$supupdocform],
                   'ee' => ['External',&create_form_ul(&create_list_elements(@supexternal))],
                   'ff' => ['Other',&create_form_ul(&create_list_elements(@specialdocs))]
                   );
           if ($supplementalflag) {
              my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
                                  $supplementalflag,\%suporderhash,$iconpath,$pathitem,
                                  \%ltitools,$canedit,$hostname);
              if ($error) {
                 $r->print('<p><span class="LC_error">'.$error.'</span></p>');
              } else {
                  if ($suppchanges) {
                      my %servers = &Apache::lonnet::internet_dom_servers($coursedom);
                      my @ids=&Apache::lonnet::current_machine_ids();
                      foreach my $server (keys(%servers)) {
                          next if (grep(/^\Q$server\E$/,@ids));
                          my $hashid=$coursenum.':'.$coursedom;
                          my $cachekey = &escape('suppcount').':'.&escape($hashid);
                          &Apache::lonnet::remote_devalidate_cache($server,[$cachekey]);
                      }
                      &Apache::lonnet::get_numsuppfiles($coursenum,$coursedom,1);
                      undef($suppchanges);
                  }
              }
           }
       } elsif ($supplementalflag) {
           my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
                               $supplementalflag,'',$iconpath,$pathitem,'','',$hostname);
           if ($error) {
               $r->print('<p><span class="LC_error">'.$error.'</span></p>');
           }
     }      }
   
       if ($needs_end) {
           $r->print(&endContentScreen());
       }
   
     if ($allowed) {      if ($allowed) {
  $r->print('<form method="POST" name="extimport" action="/adm/coursedocs"><input type="hidden" name="title" /><input type="hidden" name="url" /><input type="hidden" name="useform" /></form>');   $r->print('
   <form method="post" name="extimport" action="/adm/coursedocs">
     <input type="hidden" name="title" />
     <input type="hidden" name="url" />
     <input type="hidden" name="useform" />
     <input type="hidden" name="residx" />
   </form>');
     }      }
     $r->print('</table>');    } elsif ($showdoc) {
   } else {  
       unless ($upload_result eq 'phasetwo') {  
 # -------------------------------------------------------- This is showdoc mode  # -------------------------------------------------------- This is showdoc mode
           $r->print("<h1>".&mt('Uploaded Document').' - '.        $r->print("<h1>".&mt('Uploaded Document').' - '.
  &Apache::lonnet::gettitle($r->uri).'</h1><p>'.   &Apache::lonnet::gettitle($r->uri).'</h1><p class="LC_warning">'.
 &mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><p><table>".  &mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>".
           &entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table></p>');                  &entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>');
       }  
   }    }
  }   }
  $r->print(&Apache::loncommon::end_page());   unless ($noendpage) {
        $r->print(&Apache::loncommon::end_page());
    }
  return OK;   return OK;
 }   }
   
   sub embedded_form_elems {
       my ($phase,$primaryurl,$newidx) = @_;
       my $folderpath = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
       $newidx =~s /\D+//g;
       return <<STATE;
       <input type="hidden" name="folderpath" value="$folderpath" />
       <input type="hidden" name="cmd" value="upload_embedded" />
       <input type="hidden" name="newidx" value="$newidx" />
       <input type="hidden" name="phase" value="$phase" />
       <input type="hidden" name="primaryurl" value="$primaryurl" />
   STATE
   }
   
   sub embedded_destination {
       my $folder=$env{'form.folder'};
       my $destination = 'docs/';
       if ($folder =~ /^supplemental/) {
           $destination = 'supplemental/';
       }
       if (($folder eq 'default') || ($folder eq 'supplemental')) {
           $destination .= 'default/';
       } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
           $destination .=  $2.'/';
       }
       my $newidx = $env{'form.newidx'};
       $newidx =~s /\D+//g;
       if ($newidx) {
           $destination .= $newidx;
       }
       my $dir_root = '/userfiles';
       return ($destination,$dir_root);
   }
   
   sub return_to_editor {
       my $actionurl = '/adm/coursedocs';
       return '<p><form name="backtoeditor" method="post" action="'.$actionurl.'" />'."\n". 
              '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /></form>'."\n".
              '<a href="javascript:document.backtoeditor.submit();">'.&mt('Return to Editor').
              '</a></p>';
   }
   
   sub decompression_info {
       my ($destination,$dir_root) = &embedded_destination();
       my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
       my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
       my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
       my $container='sequence';
       my ($pathitem,$hiddenelem);
       my @hiddens = ('newidx','comment','position','folderpath','archiveurl');
       if ($env{'form.folderpath'} =~ /\:1$/) {
           $container='page';
       }
       unshift(@hiddens,$pathitem);
       foreach my $item (@hiddens) {
           if ($item eq 'newidx') {
               next if ($env{'form.'.$item} =~ /\D/);
           }
           if ($env{'form.'.$item}) {
               $hiddenelem .= '<input type="hidden" name="'.$item.'" value="'.
                              &HTML::Entities::encode($env{'form.'.$item},'<>&"').'" />'."\n";
           }
       }
       return ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,
               $hiddenelem);
   }
   
   sub decompression_phase_one {
       my ($dir,$file,$warning,$error,$output);
       my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)=
           &decompression_info();
       if ($env{'form.archiveurl'} !~ m{^/uploaded/\Q$docudom/$docuname/\E(?:docs|supplemental)/(?:default|\d+).*/([^/]+)$}) {
           $error = &mt('Archive file "[_1]" not in the expected location.',$env{'form.archiveurl'});
       } else {
           my $file = $1;
           $output =
               &Apache::loncommon::process_decompression($docudom,$docuname,$file,
                                                         $destination,$dir_root,
                                                         $hiddenelem);
           if ($env{'form.autoextract_camtasia'}) {
               $output .= &remove_archive($docudom,$docuname,$container);
           }
       }
       if ($error) {
           $output .= '<p class="LC_error">'.&mt('Not extracted.').'<br />'.
                      $error.'</p>'."\n";
       }
       if ($warning) {
           $output .= '<p class="LC_warning">'.$warning.'</p>'."\n";
       }
       return $output;
   }
   
   sub decompression_phase_two {
       my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)=
           &decompression_info();
       my $output;
       if ($env{'form.archivedelete'}) {
           $output = &remove_archive($docudom,$docuname,$container);
       }
       $output .= 
           &Apache::loncommon::process_extracted_files('coursedocs',$docudom,$docuname,
                                                       $destination,$dir_root,$hiddenelem);
       return $output;
   }
   
   sub remove_archive {
       my ($docudom,$docuname,$container) = @_;
       my $map = $env{'form.folder'}.'.'.$container;
       my ($output,$delwarning,$delresult,$url);
       my ($errtext,$fatal) = &mapread($docuname,$docudom,$map);
       if ($fatal) {
           if ($container eq 'page') {
               $delwarning = &mt('An error occurred retrieving the contents of the current page.');
           } else {
               $delwarning = &mt('An error occurred retrieving the contents of the current folder.');
           }
           $delwarning .= ' '.&mt('As a result the archive file has not been removed.');
       } else {
           my $currcmd = $env{'form.cmd'};
           my $position = $env{'form.position'};
           my $archiveidx = $position;
           if ($position > 0) {
               if (($env{'form.autoextract_camtasia'}) && (scalar(@LONCAPA::map::order) == 2)) {
                   $archiveidx = $position-1;
               }
               $env{'form.cmd'} = 'remove_'.$archiveidx;
               my ($title,$url,@rrest) =
                   split(/:/,$LONCAPA::map::resources[$LONCAPA::map::order[$archiveidx]]);
               if ($url eq $env{'form.archiveurl'}) {
                   if (&handle_edit_cmd($docuname,$docudom)) {
                       ($errtext,$fatal) = &storemap($docuname,$docudom,$map,1);
                       if ($fatal) {
                           if ($container eq 'page') {
                               $delwarning = &mt('An error occurred updating the contents of the current page.');
                           } else {
                               $delwarning = &mt('An error occurred updating the contents of the current folder.');
                           }
                       } else {
                           $delresult = &mt('Archive file removed.');
                       }
                   }
               } else {
                   $delwarning .=  &mt('Archive file had unexpected item number in folder.').
                                   ' '.&mt('As a result the archive file has not been removed.');
               }
           }
           $env{'form.cmd'} = $currcmd;
       }
       if ($delwarning) {
           $output = '<p class="LC_warning">'.
                      $delwarning.
                      '</p>';
       }
       if ($delresult) {
           $output .= '<p class="LC_info">'.
                      $delresult.
                      '</p>';
       }
       return $output;
   }
   
   sub generate_admin_menu {
       my ($crstype,$canedit) = @_;
       my $lc_crstype = lc($crstype);
       my ($home,$other,%outhash)=&authorhosts();
       my %lt= ( # do not translate here
                                            'vc'   => 'Verify Content',
                                            'cv'   => 'Check/Set Resource Versions',
                                            'ls'   => 'List Resource Identifiers',
                                            'ct'   => 'Display/Set Shortened URLs for Deep-linking',
                                            'imse' => 'Export contents to IMS Archive',
                                            'dcd'  => "Copy $crstype Content to Authoring Space",
               );
       my ($candump,$dumpurl);
       if ($home + $other > 0) {
           $candump = 'F';
           if ($home) {
               $dumpurl = "javascript:injectData(document.courseverify,'dummy','dumpcourse','$lt{'dcd'}')";
           } else {
               my @hosts;
               foreach my $aurole (keys(%outhash)) {
                   unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) {
                       push(@hosts,$outhash{$aurole});
                   }
               }
               if (@hosts == 1) {
                   my $switchto = '/adm/switchserver?otherserver='.$hosts[0].
                                  '&amp;role='.
                                  &HTML::Entities::encode($env{'request.role'},'"<>&').'&amp;origurl='.
                                  &HTML::Entities::encode('/adm/coursedocs?dumpcourse=1','"<>&');
                   $dumpurl = "javascript:dump_needs_switchserver('$switchto')";
               } else {
                   $dumpurl = "javascript:choose_switchserver_window()";
               }
           }
       }
       my @menu=
           ({  categorytitle=>'Administration',
               items =>[
                   {   linktext   => $lt{'vc'},
                       url        => "javascript:injectData(document.courseverify,'dummy','verify','$lt{'vc'}')",
                       permission => 'F',
                       help       => 'Docs_Verify_Content',
                       icon       => 'verify.png',
                       linktitle  => 'Verify contents can be retrieved/rendered',
                   },
                   {   linktext => $lt{'cv'},
                       url => "javascript:injectData(document.courseverify,'dummy','versions','$lt{'cv'}')",
                       permission => 'F',
                       help       => 'Docs_Check_Resource_Versions',
                       icon       => 'resversion.png',
                       linktitle  => "View version information for resources in your $lc_crstype, and fix/unfix use of specific versions",
                   },
                   {   linktext   => $lt{'ls'},
                       url        => "javascript:injectData(document.courseverify,'dummy','listsymbs','$lt{'ls'}')",
                       permission => 'F',
                       #help => '',
                       icon       => 'symbs.png',
                       linktitle  => "List the unique identifier used for each resource instance in your $lc_crstype"
                   },
                   {   linktext   => $lt{'ct'},
                       url        => "javascript:injectData(document.courseverify,'dummy','shorturls','$lt{'ct'}')",
                       permission => 'F',
                       help       => 'Docs_Short_URLs',
                       icon       => 'shorturls.png',
                       linktitle  => "Set shortened URLs for a resource or folder in your $lc_crstype for use in deep-linking"
                   },
                   ]
           });
       if ($canedit) {
           push(@menu,
           {   categorytitle=>'Export',
               items =>[
                   {   linktext   => $lt{'imse'},
                       url => "javascript:injectData(document.courseverify,'dummy','exportcourse','$lt{'imse'}')",
                       permission => 'F',
                       help       => 'Docs_Export_Course_Docs',
                       icon       => 'imsexport.png',
                       linktitle  => $lt{'imse'},
                   },
                   {   linktext   => $lt{'dcd'},
                       url        => $dumpurl,
                       permission => $candump,
                       help       => 'Docs_Dump_Course_Docs',
                       icon       => 'dump.png',
                       linktitle  => $lt{'dcd'},
                   },
                   ]
           });
       }
       return '<form action="/adm/coursedocs" method="post" name="courseverify">'."\n".
              '<input type="hidden" id="dummy" />'."\n".
              &Apache::lonhtmlcommon::generate_menu(@menu)."\n".
              '</form>';
   }
   
   sub generate_edit_table {
       my ($tid,$orderhash_ref,$to_show,$iconpath,$jumpto,$readfile,
           $need_save,$copyfolder,$canedit) = @_;
       return unless(ref($orderhash_ref) eq 'HASH');
       my %orderhash = %{$orderhash_ref};
       my ($form, $activetab, $active, $disabled);
       if (($env{'form.active'} ne '') && ($env{'form.active'} ne '00')) {
           $activetab = $env{'form.active'};
       }
       unless ($canedit) {
           $disabled = ' disabled="disabled"';
       }
       my $backicon = $iconpath.'clickhere.gif';
       my $backtext = &mt('Exit Editor');
       $form = '<div class="LC_Box" style="margin:0;">'.
               '<ul id="navigation'.$tid.'" class="LC_TabContent">'."\n".
               '<li class="goback">'.
               '<a href="javascript:toContents('."'$jumpto'".');">'.
               '<img src="'.$backicon.'" class="LC_icon" style="border: none; vertical-align: top;"'.
               '  alt="'.$backtext.'" />'.$backtext.'</a></li>'."\n".
               '<li>'.
               '<a href="javascript:groupopen('."'$readfile'".',1);">'.
               &mt('Undo Delete').'</a></li>'."\n";
       if ($env{'form.docslog'}) {
           $form .= '<li class="active">';
       } else {
           $form .= '<li>';
       }
       $form .= '<a href="javascript:toggleHistoryDisp(1);">'.
                &mt('History').'</a></li>'."\n";
       if ($env{'form.docslog'}) {
           $form .= '<li><a href="javascript:toggleHistoryDisp(0);">'.
                    &mt('Edit').'</a></li>'."\n";
       }
       foreach my $name (reverse(sort(keys(%orderhash)))) {
           if($name ne '00'){
               if($activetab eq '' || $activetab ne $name){
                  $active = '';
               }elsif($activetab eq $name){
                  $active = 'class="active"';
               }
               $form .= '<li style="float:right" '.$active
                   .' onclick="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"><a href="javascript:;"><b>'.&mt(${$orderhash{$name}}[0]).'</b></a></li>'."\n";
           } else {
       $form .= '<li style="float:right">'.${$orderhash{$name}}[1].'</li>'."\n";
   
    }
       }
       $form .= '</ul>'."\n";
       $form .= '<div id="content'.$tid.'" style="padding: 0 0; margin: 0 0; overflow: hidden; clear:right">'."\n";
   
       if ($to_show ne '') {
           my $saveform;
           if ($need_save) {
               my $button = &mt('Make changes');
               my $path;
               if ($env{'form.folderpath'}) {
                   $path =
                       &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
               }
               $saveform = <<"END";
   <div id="multisave" style="display:none; clear:both;" >
   <form name="saveactions" method="post" action="/adm/coursedocs" onsubmit="return checkSubmits();">
   <input type="hidden" name="folderpath" value="$path" />
   <input type="hidden" name="symb" value="$env{'form.symb'}" />
   <input type="hidden" name="allhiddenresource" value="" />
   <input type="hidden" name="allencrypturl" value="" />
   <input type="hidden" name="allrandompick" value="" />
   <input type="hidden" name="allrandomorder" value="" />
   <input type="hidden" name="changeparms" value="" />
   <input type="hidden" name="multiremove" value="" />
   <input type="hidden" name="multicut" value="" />
   <input type="hidden" name="multicopy" value="" />
   <input type="hidden" name="multichange" value="" />
   <input type="hidden" name="copyfolder" value="$copyfolder" />
   <input type="submit" name="savemultiples" value="$button" $disabled />
   </form>
   </div>
   END
           }
           $form .= '<div style="padding:0;margin:0;float:left">'.$to_show.'</div>'.$saveform."\n";
       }
       foreach my $field (keys(%orderhash)){
    if($field ne '00'){
               if($activetab eq '' || $activetab ne $field){
                   $active = 'style="display: none;float:left"';
               }elsif($activetab eq $field){
                   $active = 'style="display:block;float:left"';
               }
               $form .= '<div id="'.$field.$tid.'"'
                       .' class="LC_ContentBox" '.$active.'>'.${$orderhash{$field}}[1]
                       .'</div>'."\n";
           }
       }
       unless ($env{'form.docslog'}) {
           $form .= '</div></div>'."\n";
       }
       return $form;
   }
   
 sub editing_js {  sub editing_js {
     my ($udom,$uname) = @_;      my ($udom,$uname,$supplementalflag,$coursedom,$coursenum,$posslti,
     my $now = time();          $londocroot,$canedit,$hostname,$navmapref) = @_;
       my %js_lt = &Apache::lonlocal::texthash(
                                             p_mnf => 'Name of New Folder',
                                             t_mnf => 'New Folder',
                                             p_mnp => 'Name of New Page',
                                             t_mnp => 'New Page',
                                             p_mxu => 'Title for the External Score',
                                             p_msp => 'Name of Simple Course Page',
                                             p_msb => 'Title for the Problem',
                                             p_mdb => 'Title for the Drop Box',
                                             p_mbb => 'Title for the Discussion Board',
                                             p_mwp => 'Title for Web Page',
                                             p_mnr => 'Title for the Resource',
                                             p_mab => "Enter user:domain for User's Personal Information Page",
                                             p_mab2 => 'Personal Information Page of ',
                                             p_mab_alrt1 => 'Not a valid user:domain',
                                             p_mab_alrt2 => 'Please enter both user and domain in the format user:domain',
                                             p_chn => 'New Title',
                                             p_rmr1 => 'WARNING: Removing a resource makes associated grades and scores inaccessible!',
                                             p_rmr2a => 'Remove',
                                             p_rmr2b => '?',
                                             p_rmr3a => 'Remove those',
                                             p_rmr3b => 'items?',
                                             p_rmr4  => 'WARNING: Removing a resource uploaded to a course cannot be undone via "Undo Delete".',
                                             p_rmr5  => 'Push "Cancel" and then use "Cut" instead if you might need to undo this change.',
                                             p_ctr1a => 'WARNING: Cutting a resource makes associated grades and scores inaccessible!',
                                             p_ctr1b => 'Grades remain inaccessible if resource is pasted into another folder.',
                                             p_ctr2a => 'Cut',
                                             p_ctr2b => '?',
                                             p_ctr3a => 'Cut those',
                                             p_ctr3b => 'items?',
                                             setal   => 'Enter a (unique) alias',
                                             delal   => 'Are you sure you want to eliminate the alias?',
                                             rpck    => 'Enter number to pick (e.g., 3)',
                                             imsfile => 'You must choose an IMS package for import',
                                             imscms  => 'You must select which Course Management System was the source of the IMS package',
                                             invurl  => 'Invalid URL',
                                             titbl   => 'Title is blank',
                                             more    => '(More ...)',
                                             less    => '(Less ...)',
                                             noor    => 'No actions selected or changes to settings specified.',
                                             noch    => 'No changes to settings specified.',
                                             noac    => 'No actions selected.',
                                             nofi    => 'No file selected',
                                             tinc    => 'Title in course',
                                             sunm    => 'Sub-directory name',
                                             edri    => 'Editing rights unavailable for your current role.',
                                           );
       &js_escape(\%js_lt);
       my $crstype = &Apache::loncommon::course_type();
       my $docs_folderpath = &HTML::Entities::encode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.folderpath'},'<>&"');
       my $main_container_page;
       if (&HTML::Entities::decode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.folderpath'}) =~ /\:1$/) {
           $main_container_page = 1;
       }
       my $backtourl;
       my $toplevelmain = &escape(&default_folderpath($coursenum,$coursedom,$navmapref));
       my $toplevelsupp = &supplemental_base();
   
       if ($env{'docs.exit.'.$env{'request.course.id'}} =~ /^direct_(.+)$/) {
           my $caller = $1;
           if ($caller =~ /^supplemental/) {
               $backtourl = '/adm/supplemental?folderpath='.&escape($caller);
           } else {
               my ($map,$id,$res)=&Apache::lonnet::decode_symb($caller);
               $res = &Apache::lonnet::clutter($res);
               if (&Apache::lonnet::is_on_map($res)) {
                   my ($url,$anchor);
                   if ($res =~ /^([^#]+)#([^#]+)$/) {
                       $url = $1;
                       $anchor = $2;
                       if (($caller =~ m{^([^#]+)\Q#$anchor\E$})) {
                           $caller = $1.&escape('#').$anchor;
                       }
                   } else {
                       $url = $res;
                   }
                   $backtourl = &HTML::Entities::encode(&Apache::lonnet::clutter($url),'<>&"');
                   if ($backtourl =~ m{^\Q/uploaded/$coursedom/$coursenum/\Edefault_\d+\.sequence$}) {
                       $backtourl .= '?navmap=1';
                   } else {
                       $backtourl .= '?symb='.
                                     &HTML::Entities::encode($caller,'<>&"');
                   }
                   if ($backtourl =~ m{^\Q/public/$coursedom/$coursenum/syllabus\E}) {
                       if (($ENV{'SERVER_PORT'} == 443) &&
                           ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
                           unless (&Apache::lonnet::uses_sts()) {
                               if ($hostname ne '') {
                                   $backtourl = 'http://'.$hostname.$backtourl;
                               }
                               $backtourl .= (($backtourl =~ /\?/) ? '&amp;':'?').'usehttp=1';
                           }
                       }
                   } elsif ($backtourl =~ m{^/adm/wrapper/ext/(?!https:)}) {
                       if (($ENV{'SERVER_PORT'} == 443) && ($hostname ne '')) {
                           unless (&Apache::lonnet::uses_sts()) {
                               if ($hostname ne '') {
                                   $backtourl = 'http://'.$hostname.$backtourl;
                               }
                               $backtourl .= (($backtourl =~ /\?/) ? '&amp;':'?').'usehttp=1';
                           }
                       }
                   }
                   if ($anchor ne '') {
                       $backtourl .= '#'.&HTML::Entities::encode($anchor,'<>&"');
                   }
                   $backtourl = &Apache::loncommon::escape_single($backtourl);
               } else {
                   $backtourl = '/adm/navmaps';
               }
           }
       } elsif ($env{'docs.exit.'.$env{'request.course.id'}} eq '/adm/menu') {
           $backtourl = '/adm/menu';
       } elsif ($supplementalflag) {
           $backtourl = '/adm/supplemental';
       } else {
           $backtourl = '/adm/navmaps';
       }
   
     return <<ENDNEWSCRIPT;      my $fieldsets = "'doc'";
       unless ($main_container_page) {
           $fieldsets .=",'ims'";
       }
       my $extfieldsets = "'ext'";
       if ($posslti) {
           $extfieldsets .= ",'tool'";
       }
       if ($supplementalflag) {
           $fieldsets = "'suppdoc'";
           $extfieldsets = "'suppext'";
           if ($posslti) {
               $extfieldsets .= ",'supptool'";
           }
       }
   
       my $jsmakefunctions;
       if ($canedit) {
           $jsmakefunctions = <<ENDNEWSCRIPT;
 function makenewfolder(targetform,folderseq) {  function makenewfolder(targetform,folderseq) {
     var foldername=prompt('Name of New Folder','New Folder');      var foldername=prompt('$js_lt{"p_mnf"}','$js_lt{"t_mnf"}');
     if (foldername) {      if (foldername) {
        targetform.importdetail.value=escape(foldername)+"="+folderseq;         targetform.importdetail.value=escape(foldername)+"="+folderseq;
         targetform.submit();          targetform.submit();
Line 2733  function makenewfolder(targetform,folder Line 7338  function makenewfolder(targetform,folder
 }  }
   
 function makenewpage(targetform,folderseq) {  function makenewpage(targetform,folderseq) {
     var pagename=prompt('Name of New Page','New Page');      var pagename=prompt('$js_lt{"p_mnp"}','$js_lt{"t_mnp"}');
     if (pagename) {      if (pagename) {
         targetform.importdetail.value=escape(pagename)+"="+folderseq;          targetform.importdetail.value=escape(pagename)+"="+folderseq;
         targetform.submit();          targetform.submit();
     }      }
 }  }
   
 function makenewext(targetname) {  
     this.document.forms.extimport.useform.value=targetname;  
     window.open('/adm/rat/extpickframe.html');  
 }  
   
 function makeexamupload() {  function makeexamupload() {
    var title=prompt('Listed Title for the Uploaded Score');     var title=prompt('$js_lt{"p_mxu"}');
    if (title) {      if (title) {
     this.document.forms.newexamupload.importdetail.value=      this.document.forms.newexamupload.importdetail.value=
  escape(title)+'=/res/lib/templates/examupload.problem';   escape(title)+'=/res/lib/templates/examupload.problem';
     this.document.forms.newexamupload.submit();      this.document.forms.newexamupload.submit();
Line 2755  function makeexamupload() { Line 7355  function makeexamupload() {
 }  }
   
 function makesmppage() {  function makesmppage() {
    var title=prompt('Listed Title for the Page');     var title=prompt('$js_lt{"p_msp"}');
    if (title) {      if (title) {
     this.document.forms.newsmppg.importdetail.value=      this.document.forms.newsmppg.importdetail.value=
  escape(title)+'=/adm/$udom/$uname/$now/smppg';   escape(title)+'=/adm/$udom/$uname/new/smppg';
     this.document.forms.newsmppg.submit();      this.document.forms.newsmppg.submit();
    }     }
 }  }
   
   function makewebpage(type) {
      var title=prompt('$js_lt{"p_mwp"}');
      var formname;
      if (type == 'supp') {
          formname = this.document.forms.supwebpage;
      } else {
          formname = this.document.forms.newwebpage;
      }
      if (title) {
          var webpage = formname.importdetail.value; 
          formname.importdetail.value = escape(title)+'='+webpage;
          formname.submit();
      }
   }
   
 function makesmpproblem() {  function makesmpproblem() {
    var title=prompt('Listed Title for the Problem');     var title=prompt('$js_lt{"p_msb"}');
    if (title) {      if (title) {
     this.document.forms.newsmpproblem.importdetail.value=      this.document.forms.newsmpproblem.importdetail.value=
  escape(title)+'=/res/lib/templates/simpleproblem.problem';   escape(title)+'=/res/lib/templates/simpleproblem.problem';
     this.document.forms.newsmpproblem.submit();      this.document.forms.newsmpproblem.submit();
Line 2773  function makesmpproblem() { Line 7388  function makesmpproblem() {
 }  }
   
 function makedropbox() {  function makedropbox() {
    var title=prompt('Listed Title for the Drop Box');     var title=prompt('$js_lt{"p_mdb"}');
    if (title) {      if (title) {
     this.document.forms.newdropbox.importdetail.value=      this.document.forms.newdropbox.importdetail.value=
         escape(title)+'=/res/lib/templates/DropBox.problem';          escape(title)+'=/res/lib/templates/DropBox.problem';
     this.document.forms.newdropbox.submit();      this.document.forms.newdropbox.submit();
Line 2782  function makedropbox() { Line 7397  function makedropbox() {
 }  }
   
 function makebulboard() {  function makebulboard() {
    var title=prompt('Listed Title for the Bulletin Board');     var title=prompt('$js_lt{"p_mbb"}');
    if (title) {     if (title) {
     this.document.forms.newbul.importdetail.value=      this.document.forms.newbul.importdetail.value=
  escape(title)+'=/adm/$udom/$uname/$now/bulletinboard';   escape(title)+'=/adm/$udom/$uname/new/bulletinboard';
     this.document.forms.newbul.submit();      this.document.forms.newbul.submit();
    }     }
 }  }
   
 function makeabout() {  function makeabout() {
    var user=prompt("Enter user:domain for User's 'About Me' Page");     var user=prompt("$js_lt{'p_mab'}");
    if (user) {     if (user) {
        var comp=new Array();         var comp=new Array();
        comp=user.split(':');         comp=user.split(':');
        if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) {         if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) {
    if ((comp[0]) && (comp[1])) {     if ((comp[0]) && (comp[1])) {
        this.document.forms.newaboutsomeone.importdetail.value=         this.document.forms.newaboutsomeone.importdetail.value=
    'About '+escape(user)+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme';     '$js_lt{"p_mab2"}'+escape(user)+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme';
        this.document.forms.newaboutsomeone.submit();                 this.document.forms.newaboutsomeone.submit();
    } else {             } else {
                alert("Not a valid user:domain");                 alert("$js_lt{'p_mab_alrt1'}");
            }             }
        } else {         } else {
            alert("Please enter both user and domain in the format user:domain");              alert("$js_lt{'p_mab_alrt2'}");
        }         }
    }      }
 }  }
   
 function makeims() {  function makenew(targetform) {
     var caller = document.forms.ims.folder.value;      targetform.submit();
     var newlocation = "/adm/imsimportdocs?folder="+caller+"&phase=one";  
     newWindow = window.open("","IMSimport","HEIGHT=700,WIDTH=750,scrollbars=yes");  
     newWindow.location.href = newlocation;  
 }  }
   
   function changename(folderpath,index,oldtitle) {
       var title=prompt('$js_lt{"p_chn"}',oldtitle);
       if (title) {
           this.document.forms.renameform.markcopy.value='';
           this.document.forms.renameform.title.value=title;
           this.document.forms.renameform.cmd.value='rename_'+index;
           this.document.forms.renameform.folderpath.value=folderpath;
           this.document.forms.renameform.submit();
       }
   }
   
 function finishpick() {  function setalias(folderpath,index) {
     var title=this.document.forms.extimport.title.value;      var alias = prompt('$js_lt{"setal"}');
     var url=this.document.forms.extimport.url.value;      if ((alias != null) && (alias != '')) {
     var form=this.document.forms.extimport.useform.value;          this.document.forms.aliasform.alias.value=alias;
     eval          this.document.forms.aliasform.cmd.value='setalias_'+index;
      ('this.document.forms.'+form+'.importdetail.value="'+title+'='+url+          this.document.forms.aliasform.folderpath.value=folderpath;
     '";this.document.forms.'+form+'.submit();');          this.document.forms.aliasform.submit();
       }
 }  }
   
 function changename(folderpath,index,oldtitle,container,pagesymb) {  function delalias(folderpath,index) {
     var title=prompt('New Title',oldtitle);      if (confirm('$js_lt{"delal"}')) {
     if (title) {          this.document.forms.aliasform.cmd.value='delalias_'+index;
  this.document.forms.renameform.title.value=title;          this.document.forms.aliasform.folderpath.value=folderpath;
  this.document.forms.renameform.cmd.value='rename_'+index;          this.document.forms.aliasform.submit();
         if (container == 'sequence') {      }
     this.document.forms.renameform.folderpath.value=folderpath;  }
         }  
         if (container == 'page') {  ENDNEWSCRIPT
             this.document.forms.renameform.pagepath.value=folderpath;      } else {
             this.document.forms.renameform.pagesymb.value=pagesymb;          $jsmakefunctions = <<ENDNEWSCRIPT;
   
   function makenewfolder() {
       alert("$js_lt{'edri'}");
   }
   
   function makenewpage() {
       alert("$js_lt{'edri'}");
   }
   
   function makeexamupload() {
       alert("$js_lt{'edri'}");
   }
   
   function makesmppage() {
       alert("$js_lt{'edri'}");
   }
   
   function makewebpage(type) {
       alert("$js_lt{'edri'}");
   }
   
   function makesmpproblem() {
       alert("$js_lt{'edri'}");
   }
   
   function makedropbox() {
       alert("$js_lt{'edri'}");
   }
   
   function makebulboard() {
       alert("$js_lt{'edri'}");
   }
   
   function makeabout() {
       alert("$js_lt{'edri'}");
   }
   
   function changename() {
       alert("$js_lt{'edri'}");
   }
   
   function setalias() {
       alert("$js_lt{'edri'}");
   }
   
   function delalias() {
       alert("$js_lt{'edri'}");
   }
   
   function makenew() {
       alert("$js_lt{'edri'}");
   }
   
   function groupimport() {
       alert("$js_lt{'edri'}");
   }
   
   function groupsearch() {
       alert("$js_lt{'edri'}");
   }
   
   function groupopen(url,recover) {
      var options="scrollbars=1,resizable=1,menubar=0";
      idxflag=1;
      idx=open("/adm/groupsort?inhibitmenu=yes&mode=simple&recover="+recover+"&readfile="+url,"idxout",options);
      idx.focus();
   }
   
   ENDNEWSCRIPT
   
       }
       return <<ENDSCRIPT;
   
   $jsmakefunctions
   
   function toggleUpload(caller) {
       var blocks = Array($fieldsets);
       for (var i=0; i<blocks.length; i++) {
           var disp = 'none';
           if (caller == blocks[i]) {
               var curr = document.getElementById('upload'+caller+'form').style.display;
               if (curr == 'none') {
                   disp='block';
               }
         }          }
         this.document.forms.renameform.submit();          document.getElementById('upload'+blocks[i]+'form').style.display=disp;
     }      }
       resize_scrollbox('contentscroll','1','1');
       return;
 }  }
   
 function removeres(folderpath,index,oldtitle,container,pagesymb) {  function toggleExternal(caller) {
     if (confirm('WARNING: Removing a resource makes associated grades and scores inaccessible!\\nRemove "'+oldtitle+'"?')) {      var blocks = Array($extfieldsets);
  this.document.forms.renameform.cmd.value='del_'+index;      for (var i=0; i<blocks.length; i++) {
         if (container == 'sequence') {          var disp = 'none';
             this.document.forms.renameform.folderpath.value=folderpath;          if (caller == blocks[i]) {
         }              var curr = document.getElementById('external'+caller+'form').style.display;
         if (container == 'page') {              if (curr == 'none') {
             this.document.forms.renameform.pagepath.value=folderpath;                  disp='block';
             this.document.forms.renameform.pagesymb.value=pagesymb;              }
           }
           document.getElementById('external'+blocks[i]+'form').style.display=disp;
           if ((caller == 'tool') || (caller == 'supptool')) {
               if (disp == 'block') {
                   if (document.getElementById('LC_exttoolid')) {
                       var toolselector = document.getElementById('LC_exttoolid');
                       var suppflag = 0;
                       if (caller == 'supptool') {
                           suppflag = 1;
                       }
                       currForm = document.getElementById('new'+caller);
                       updateExttool(toolselector,currForm,suppflag);
                   }
               }
         }          }
         this.document.forms.renameform.submit();  
     }      }
       resize_scrollbox('contentscroll','1','1');
       return;
 }  }
   
 function cutres(folderpath,index,oldtitle,container,pagesymb) {  function toggleMap(caller) {
     if (confirm('WARNING: Cutting a resource makes associated grades and scores inaccessible!\\nGrades remain inaccessible if resource is pasted into another folder.\\nCut "'+oldtitle+'"?')) {      var disp = 'none';
  this.document.forms.renameform.cmd.value='cut_'+index;      if (document.getElementById('importmapform')) {
  this.document.forms.renameform.markcopy.value=index;          if (caller == 'map') {
         if (container == 'sequence') {              var curr = document.getElementById('importmapform').style.display;
             this.document.forms.renameform.folderpath.value=folderpath;              if (curr == 'none') {
         }                  disp='block';
         if (container == 'page') {              }
             this.document.forms.renameform.pagepath.value=folderpath;  
             this.document.forms.renameform.pagesymb.value=pagesymb;  
         }          }
         this.document.forms.renameform.submit();          document.getElementById('importmapform').style.display=disp;
           resize_scrollbox('contentscroll','1','1');
       }
       return;
   }
   
   function toggleCrsRes(caller,numauthorrole,numcrsdirs) {
       var disp = 'none';
       if (document.getElementById('crsresform')) {
           if (caller == 'res') {
               var curr = document.getElementById('crsresform').style.display;
               if (curr == 'none') {
                   disp='block';
                   numauthor = parseInt(numauthorrole);
                   if (numauthor > 0) {
                       document.courseresform.authorrole.selectedIndex = 0;
                       select1priv_changed();
                       document.courseresform.authorpath.selectedIndex = 0;
                       document.courseresform.newresourceadd.selectedIndex = 0;
                       toggleNewInCourse(document.courseresform);
                       if (document.getElementById('newresource')) {
                           document.getElementById('newresource').style.display = 'none';
                       }
                   } else {
                       if (numcrsdirs) {
                           document.courseresform.authorpath.selectedIndex = 0;
                       }
                   }
                   if (document.courseresform.newresusetemp.length) {
                       document.courseresform.newresusetemp[0].checked = true;
                       toggleWithTemplate(document.courseresform);
                   }
                   document.courseresform.newresourcename.value = ''; 
               }
           }
           if (document.courseresform.newsubdir.length) {
               for (var j=0; j<document.courseresform.newsubdir.length; j++) {
                   if (document.courseresform.newsubdir[j].value == 0) {
                       document.courseresform.newsubdir[j].checked = true;
                   }
                   break;
               }
               if (document.getElementById('newsubdirname')) {
                   document.getElementById('newsubdirname').type = "hidden";
                   document.getElementById('newsubdirname').value = "";
               }
               if (document.getElementById('newsubdir')) {
                   document.getElementById('newsubdir').innerHTML = "";
               }
           }
           document.getElementById('crsresform').style.display=disp;
           resize_scrollbox('contentscroll','1','0');
     }      }
       return;
 }  }
   
 function markcopy(folderpath,index,oldtitle,container,pagesymb) {  function toggleNewsubdir(form) {
     this.document.forms.renameform.markcopy.value=index;      if (form.newsubdir.length) {
     if (container == 'sequence') {          for (var j=0; j<form.newsubdir.length; j++) {
  this.document.forms.renameform.folderpath.value=folderpath;              if (form.newsubdir[j].checked) {
     }                  if (document.getElementById('newsubdirname')) {
     if (container == 'page') {                      if (form.newsubdir[j].value == '1') {
  this.document.forms.renameform.pagepath.value=folderpath;                          document.getElementById('newsubdirname').type = "text"; 
  this.document.forms.renameform.pagesymb.value=pagesymb;                          if (document.getElementById('newsubdir')) {
                               document.getElementById('newsubdir').innerHTML = '<br />$js_lt{'sunm'}';
                           }
                       } else {
                           document.getElementById('newsubdirname').type = "hidden";
                           document.getElementById('newsubdirname').value = "";
                           document.getElementById('newsubdir').innerHTML = "";
                       }
                   }
                   break;
               }
           }
     }      }
     this.document.forms.renameform.submit();  
 }  }
   
 ENDNEWSCRIPT  function toggleCrsResTitle() {
       if (document.getElementById('newresource')) {
           if (document.courseresform.authorrole.options[document.courseresform.authorrole.selectedIndex].value == 'course') {
               document.getElementById('newresource').style.display = 'inline';
               document.courseresform.newresourceadd[0].checked = true;
               toggleNewInCourse(document.courseresform);
           } else {
               document.getElementById('newresource').style.display = 'none';
           }
       } 
   }
   
   function toggleNewInCourse(form) {
       if (form.newresourceadd.length) {
           for (var i=0; i<form.newresourceadd.length; i++) {
               if (form.newresourceadd[i].checked) {
                   if (document.getElementById('newresourcetitle')) {
                       if (form.newresourceadd[i].value == '1') {
                           document.getElementById('newresourcetitle').type = 'text';
                           if (document.getElementById('newrestitle')) {
                               document.getElementById('newrestitle').innerHTML = "<br />$js_lt{'tinc'}";
                           }
                       } else {
                           document.getElementById('newresourcetitle').type = 'hidden';
                           document.getElementById('newresourcetitle').value = '';
                           if (document.getElementById('newrestitle')) { 
                               document.getElementById('newrestitle').innerHTML = '';
                           }
                       }
                   }
                   break;
               }
           }
       }
   }
   
   function toggleWithTemplate(form) {
       if (form.newresusetemp.length) {
           for (var i=0; i<form.newresusetemp.length; i++) {
               if (form.newresusetemp[i].checked) {
                   if (document.getElementById('newrestemplate')) { 
                       if (form.newresusetemp[i].value == '1') {
                           document.getElementById('newrestemplate').style.display = 'inline';
                           toggleExampleText();
                       } else {
                           form.tempcategory.selectedIndex = 0;
                           select1template_changed();
                           document.getElementById('newrestemplate').style.display = 'none';
                       }
                   }
               }
           }
       }
   }
   
   function toggleExampleText() {
       if (document.getElementById('newresexample')) {
           var url = document.courseresform.template.options[document.courseresform.template.selectedIndex].value;
           if (url == '') {
               document.getElementById('newresexample').style.fontWeight = 'normal';
           } else {
               document.getElementById('newresexample').style.fontWeight = 'bold';
           }
       }
   }
   
   function getExample(width,height,scrolling,transparency) {
       var url;
       if (document.courseresform.newresusetemp.length) {
           for (var i=0; i<document.courseresform.newresusetemp.length; i++) {
               if (document.courseresform.newresusetemp[i].checked) {
                   if (document.courseresform.newresusetemp[i].value == '1') {
                       var url = document.courseresform.template.options[document.courseresform.template.selectedIndex].value;
                       if (url == '') {
                           alert('Pick a category and template');
                       } else {
                           url = url.replace("$londocroot",""); 
                           url += '?inhibitmenu=yes';
                       }
                   }
                   break;
               }
           }
       }
       if (url != '') {
           openMyModal(url,width,height,scrolling,transparency,'');
       }
   }
   
   function toggleImportCrsres(caller,dircount) {
       var disp = 'none';
       if (document.getElementById('importcrsresform')) {
           if (caller == 'res') {
               var numdirs = parseInt(dircount);
               var curr = document.getElementById('importcrsresform').style.display;
               if (curr == 'none') {
                   disp='block';
                   if (numdirs > 1) {
                       select1res_changed();
                   }
               }
           }
           document.getElementById('importcrsresform').style.display=disp;
           resize_scrollbox('contentscroll','1','0');
       }
       return;
   }
   
   function makeims(imsform) {
       if ((imsform.uploaddoc.value == '')  || (!imsform.uploaddoc.value)) {
           alert("$js_lt{'imsfile'}");
           return;
       }
       if (imsform.source.selectedIndex == 0) {
           alert("$js_lt{'imscms'}");
           return;
       }
       newWindow = window.open('', 'IMSimport',"HEIGHT=700,WIDTH=750,scrollbars=yes");
       imsform.submit();
   }
   
   function updatePick(targetform,index,caller) {
       var pickitem;
       var picknumitem;
       var picknumtext;
       if (index == 'all') {
           pickitem = document.getElementById('randompickall');
           picknumitem = document.getElementById('rpicknumall');
           picknumtext = document.getElementById('rpicktextall');
       } else {
           pickitem = document.getElementById('randompick_'+index);
           picknumitem = document.getElementById('rpicknum_'+index);
           picknumtext = document.getElementById('randompicknum_'+index);
       }
       if (pickitem.checked) {
           var picknum=prompt('$js_lt{"rpck"}',picknumitem.value);
           if (picknum == '' || picknum == null) {
               if (caller == 'check') {
                   pickitem.checked=false;
                   if (index == 'all') {
                       picknumtext.innerHTML = '';
                       if (caller == 'link') {
                           propagateState(targetform,'rpicknum');
                       }
                   } else {
                       checkForSubmit(targetform,'randompick','settings');
                   }
               }
           } else {
               picknum.toString();
               var regexdigit=/^\\d+\$/;
               if (regexdigit.test(picknum)) {
                   picknumitem.value = picknum;
                   if (index == 'all') {
                       picknumtext.innerHTML = '&nbsp;<a href="javascript:updatePick(document.cumulativesettings,\\'all\\',\\'link\\');">'+picknum+'</a>';
                       if (caller == 'link') {
                           propagateState(targetform,'rpicknum');
                       }
                   } else {
                       picknumtext.innerHTML = '&nbsp;<a href="javascript:updatePick(document.edit_randompick_'+index+',\\''+index+'\\',\\'link\\');">'+picknum+'</a>';
                       checkForSubmit(targetform,'randompick','settings');
                   }
               } else {
                   if (caller == 'check') {
                       if (index == 'all') {
                           picknumtext.innerHTML = '';
                           if (caller == 'link') {
                               propagateState(targetform,'rpicknum');
                           }
                       } else {
                           pickitem.checked=false;
                           checkForSubmit(targetform,'randompick','settings');
                       }
                   }
                   return;
               }
           }
       } else {
           picknumitem.value = '';
           picknumtext.innerHTML = '';
           if (index == 'all') {
               if (caller == 'link') {
                   propagateState(targetform,'rpicknum');
               }
           } else {
               checkForSubmit(targetform,'randompick','settings');
           }
       }
   }
   
   function propagateState(form,param) {
       if (document.getElementById(param+'all')) {
           var setcheck = 0;
           var rpick = 0;
           if (param == 'rpicknum') {
               if (document.getElementById('randompickall')) {
                   if (document.getElementById('randompickall').checked) {
                       if (document.getElementById('rpicknumall')) {
                           rpick = document.getElementById('rpicknumall').value;
                       }
                   }
               }
           } else {
               if (document.getElementById(param+'all').checked) {
                   setcheck = 1;
               }
           }
           var allidxlist;
           if ((param == 'remove') || (param == 'cut') || (param == 'copy')) {
               if (document.getElementById('all'+param+'idx')) {
                   allidxlist = document.getElementById('all'+param+'idx').value;
               }
               var actions = new Array ('remove','cut','copy');
               for (var i=0; i<actions.length; i++) {
                   if (actions[i] != param) {
                       if (document.getElementById(actions[i]+'all')) {
                           document.getElementById(actions[i]+'all').checked = false; 
                       }
                   }
               }
           }
           if ((param == 'encrypturl') || (param == 'hiddenresource')) {
               allidxlist = form.allidx.value;
           }
           if ((param == 'randompick') || (param == 'rpicknum') || (param == 'randomorder')) {
               allidxlist = form.allmapidx.value;
           }
           if ((allidxlist != '') && (allidxlist != null)) {
               var allidxs = allidxlist.split(',');
               if (allidxs.length > 1) {
                   for (var i=0; i<allidxs.length; i++) {
                       if (document.getElementById(param+'_'+allidxs[i])) {
                           if (param == 'rpicknum') {
                               if (document.getElementById('randompick_'+allidxs[i])) {
                                   if (document.getElementById('randompick_'+allidxs[i]).checked) {
                                       document.getElementById(param+'_'+allidxs[i]).value = rpick;
                                       if (rpick > 0) {
                                           document.getElementById('randompicknum_'+allidxs[i]).innerHTML = ':&nbsp;<a href="javascript:updatePick(document.edit_randompick_'+allidxs[i]+',\\''+allidxs[i]+'\\',\\'link\\')">'+rpick+'</a>';
                                       } else {
                                           document.getElementById('randompicknum_'+allidxs[i]).innerHTML =  '';
                                       }
                                   }
                               }
                           } else {
                               if (setcheck == 1) {
                                   document.getElementById(param+'_'+allidxs[i]).checked = true;
                               } else {
                                   document.getElementById(param+'_'+allidxs[i]).checked = false;
                                   if (param == 'randompick') {
                                       document.getElementById('randompicknum_'+allidxs[i]).innerHTML =  '';
                                   }
                               }
                           }
                       }
                   }
                   if (setcheck == 1) {
                       if ((param == 'remove') || (param == 'cut') || (param == 'copy')) {
                           var actions = new Array('copy','cut','remove');
                           for (var i=0; i<actions.length; i++) {
                               var otheractions;
                               var otheridxs;
                               if (actions[i] === param) {
                                   continue;
                               } else {
                                   if (document.getElementById('all'+actions[i]+'idx')) {
                                       otheractions = document.getElementById('all'+actions[i]+'idx').value;
                                       otheridxs = otheractions.split(',');
                                       if (otheridxs.length > 1) {
                                           for (var j=0; j<otheridxs.length; j++) {
                                               if (document.getElementById(actions[i]+'_'+otheridxs[j])) {
                                                   document.getElementById(actions[i]+'_'+otheridxs[j]).checked = false;
                                               }
                                           }
                                       }
                                   }
                               }
                           } 
                       }
                   }
               }
           }
       }
       return;
   }
   
   function checkForSubmit(targetform,param,context,idx,folderpath,index,oldtitle,skip_confirm,container,folder,confirm_removal) {
       var canedit = '$canedit';
       if (canedit == '') {
           alert("$js_lt{'edri'}");
           return;
       }
       var dosettings;
       var doaction;
       var control = document.togglemultsettings;
       if (context == 'actions') {
           control = document.togglemultactions;
           doaction = 1; 
       } else {
           dosettings = 1;
       }
       if (control) {
           if (control.showmultpick.length) {
               for (var i=0; i<control.showmultpick.length; i++) {
                   if (control.showmultpick[i].checked) {
                       if (control.showmultpick[i].value == 1) {
                           if (context == 'settings') {
                               dosettings = 0;
                           } else {
                               doaction = 0;
                           }
                       }
                   }
               }
           }
       }
       if (context == 'settings') {
           if (dosettings == 1) {
               targetform.changeparms.value=param;
               targetform.submit();
           }
       }
       if (context == 'actions') {
           if (doaction == 1) {
               targetform.cmd.value=param+'_'+index;
               targetform.folderpath.value=folderpath;
               targetform.markcopy.value=idx+':'+param;
               targetform.copyfolder.value=folder+'.'+container;
               if (param == 'remove') {
                   var doremove = 0;
                   if (skip_confirm) {
                       if (confirm_removal) {
                           if (confirm('$js_lt{"p_rmr4"}\\n$js_lt{"p_rmr5"}\\n\\n$js_lt{"p_rmr2a"} "'+oldtitle+'"$js_lt{"p_rmr2b"}')) {
                               doremove = 1;
                           }
                       } else {
                           doremove = 1;
                       }
                   } else {
                       if (confirm('$js_lt{"p_rmr1"}\\n\\n$js_lt{"p_rmr2a"} "'+oldtitle+'" $js_lt{"p_rmr2b"}')) {
                           doremove = 1;
                       }
                   }
                   if (doremove) {
                       targetform.markcopy.value='';
                       targetform.copyfolder.value='';
                       targetform.submit();
                   }
               }
               if (param == 'cut') {
                   if (skip_confirm || confirm('$js_lt{"p_ctr1a"}\\n$js_lt{"p_ctr1b"}\\n\\n$js_lt{"p_ctr2a"} "'+oldtitle+'" $js_lt{"p_ctr2b"}')) {
                       targetform.submit();
                       return;
                   }
               }
               if (param == 'copy') {
                   targetform.submit();
                   return;
               }
               targetform.markcopy.value='';
               targetform.copyfolder.value='';
               targetform.cmd.value='';
               targetform.folderpath.value='';
               return;
           } else {
               if (document.getElementById(param+'_'+idx)) {
                   item = document.getElementById(param+'_'+idx);
                   if (item.type == 'checkbox') {
                       if (item.checked) {
                           item.checked = false;
                       } else {
                           item.checked = true;
                           singleCheck(item,idx,param);
                       }
                   }
               }
           }
       }
       return;
   }
   
   function singleCheck(caller,idx,action) {
       actions = new Array('cut','copy','remove');
       if (caller.checked) {
           for (var i=0; i<actions.length; i++) {
               if (actions[i] != action) {
                   if (document.getElementById(actions[i]+'_'+idx)) {
                       if (document.getElementById(actions[i]+'_'+idx).checked) {
                           document.getElementById(actions[i]+'_'+idx).checked = false;
                       }
                   }
               }
           }
       }
       return;
   }
   
   function unselectInactive(nav) {
   currentNav = document.getElementById(nav);
   currentLis = currentNav.getElementsByTagName('LI');
   for (i = 0; i < currentLis.length; i++) {
           if (currentLis[i].className == 'goback') {
               currentLis[i].className = 'goback';
           } else {
       if (currentLis[i].className == 'right active' || currentLis[i].className == 'right') {
    currentLis[i].className = 'right';
       } else {
    currentLis[i].className = 'i';
       }
           }
   }
   }
   
   function hideAll(current, nav, data) {
   unselectInactive(nav);
   if (current) { 
       if (current.className == 'right'){
           current.className = 'right active'
       } else {
           current.className = 'active';
       }
   }
   currentData = document.getElementById(data);
   currentDivs = currentData.getElementsByTagName('DIV');
   for (i = 0; i < currentDivs.length; i++) {
    if(currentDivs[i].className == 'LC_ContentBox'){
    currentDivs[i].style.display = 'none';
    }
   }
   }
   
   function openTabs(pageId) {
    tabnav = document.getElementById(pageId).getElementsByTagName('UL');
    if(tabnav.length > 2 ){
    currentNav = document.getElementById(tabnav[1].id);
    currentLis = currentNav.getElementsByTagName('LI');
    for(i = 0; i< currentLis.length; i++){
    if(currentLis[i].className == 'active') {
    funcString = currentLis[i].onclick.toString();
    tab = funcString.split('"');
                                   if(tab.length < 2) {
                                      tab = funcString.split("'");
                                   }
    currentData = document.getElementById(tab[1]);
           currentData.style.display = 'block';
    }
    }
    }
   }
   
   function showPage(current, pageId, nav, data) {
           currstate = current.className;
    hideAll(current, nav, data);
    openTabs(pageId);
    unselectInactive(nav);
           if ((currstate == 'active') || (currstate == 'right active')) {
               if (currstate == 'active') {
           current.className = '';
               } else {
                   current.className = 'right';
               }
               activeTab = ''; 
               toggleExternal();
               toggleUpload();
               toggleMap();
               toggleCrsRes();
               toggleImportCrsres();
               resize_scrollbox('contentscroll','1','0');
               return;
           } else {
               current.className = 'active';
           }
    currentData = document.getElementById(pageId);
    currentData.style.display = 'block';
           activeTab = pageId;
           toggleExternal();
           toggleUpload();
           toggleMap();
           toggleCrsRes();
           toggleImportCrsres();
           if (nav == 'mainnav') {
               var storedpath = "$docs_folderpath";
               var storedpage = "$main_container_page";
               var reg = new RegExp("^supplemental");
               if (pageId == 'mainCourseDocuments') {
                   if (storedpage == 1) {
                       document.simpleedit.folderpath.value = '';
                       document.uploaddocument.folderpath.value = '';
                   } else {
                       if (reg.test(storedpath)) {
                           document.simpleedit.folderpath.value = '$toplevelmain';
                           document.uploaddocument.folderpath.value = '$toplevelmain';
                           document.newext.folderpath.value = '$toplevelmain';
                       } else {
                           document.simpleedit.folderpath.value = storedpath;
                           document.uploaddocument.folderpath.value = storedpath;
                           document.newext.folderpath.value = storedpath;
                       }
                   }
               } else {
                   if (reg.test(storedpath)) {
                       document.simpleedit.folderpath.value = storedpath;
                       document.supuploaddocument.folderpath.value = storedpath;
                       document.supnewext.folderpath.value = storedpath;
                   } else {
                       document.simpleedit.folderpath.value = '$toplevelsupp';
                       document.supuploaddocument.folderpath.value = '$toplevelsupp';
                       document.supnewext.folderpath.value = '$toplevelsupp';
                   }
               }
           }
           resize_scrollbox('contentscroll','1','0');
    return false;
   }
   
   function toContents(jumpto) {
       var newurl = '$backtourl';
       if ((newurl == '/adm/navmaps') && (jumpto != '')) {
           newurl = newurl+'?postdata='+jumpto;
       }
       location.href=newurl;
   }
   
   function togglePick(caller,value) {
       var disp = 'none';
       if (document.getElementById('multi'+caller)) {
           var curr = document.getElementById('multi'+caller).style.display;
           if (value == 1) {
               disp='block';
           }
           if (curr == disp) {
               return; 
           }
           document.getElementById('multi'+caller).style.display=disp;
           if (value == 1) {
               document.getElementById('more'+caller).innerHTML = '&nbsp;&nbsp;<a href="javascript:toggleCheckUncheck(\\''+caller+'\\',1);" style="text-decoration:none;">$js_lt{'more'}</a>'; 
           } else {
               document.getElementById('more'+caller).innerHTML = '';
           }
           if (caller == 'actions') { 
               setClass(value);
               setBoxes(value);
           }
       }
       var showButton = multiSettings();
       if (showButton != 1) {
           showButton = multiActions();
       }
       if (document.getElementById('multisave')) {
           if (showButton == 1) {
               document.getElementById('multisave').style.display='block';
           } else {
               document.getElementById('multisave').style.display='none';
           }
       }
       resize_scrollbox('contentscroll','1','1');
       return;
   }
   
   function toggleCheckUncheck(caller,more) {
       if (more == 1) {
           document.getElementById('more'+caller).innerHTML = '&nbsp;&nbsp;<a href="javascript:toggleCheckUncheck(\\''+caller+'\\',0);" style="text-decoration:none;">$js_lt{'less'}</a>';
           document.getElementById('allfields'+caller).style.display='block';
       } else {
           document.getElementById('more'+caller).innerHTML = '&nbsp;&nbsp;<a href="javascript:toggleCheckUncheck(\\''+caller+'\\',1);" style="text-decoration:none;">$js_lt{'more'}</a>';
           document.getElementById('allfields'+caller).style.display='none';
       }
       resize_scrollbox('contentscroll','1','1');
   }
   
   function multiSettings() {
       var inuse = 0;
       var settingsform = document.togglemultsettings;
       if (settingsform.showmultpick.length > 1) {
           for (var i=0; i<settingsform.showmultpick.length; i++) {
               if (settingsform.showmultpick[i].checked) {
                   if (settingsform.showmultpick[i].value == 1) {
                       inuse = 1;  
                   }
               }
           }
       }
       return inuse;
   }
   
   function multiActions() {
       var inuse = 0;
       var actionsform = document.togglemultactions;
       if (actionsform.showmultpick.length > 1) {
           for (var i=0; i<actionsform.showmultpick.length; i++) {
               if (actionsform.showmultpick[i].checked) {
                   if (actionsform.showmultpick[i].value == 1) {
                       inuse = 1;
                   }
               }
           }
       }
       return inuse;
   } 
   
   function checkSubmits() {
       var numchanges = 0;
       var form = document.saveactions;
       var doactions = multiActions();
       var cutwarnings = 0;
       var remwarnings = 0;
       var removalinfo = 0;
       if (doactions == 1) {
           var remidxlist = document.cumulativeactions.allremoveidx.value;
           if ((remidxlist != '') && (remidxlist != null)) {
               var remidxs = remidxlist.split(',');
               for (var i=0; i<remidxs.length; i++) {
                   if (document.getElementById('remove_'+remidxs[i])) {
                       if (document.getElementById('remove_'+remidxs[i]).checked) {
                           form.multiremove.value += remidxs[i]+',';
                           numchanges ++;
                           if (document.getElementById('skip_remove_'+remidxs[i])) {
                               if (document.getElementById('skip_remove_'+remidxs[i]).value == 0) {
                                   remwarnings ++;
                               }
                           }
                           if (document.getElementById('confirm_removal_'+remidxs[i])) {
                               if (document.getElementById('confirm_removal_'+remidxs[i]).value == 1) {
                                   removalinfo ++;
                               }
                           }
                       }
                   }
               }
           }
           var cutidxlist = document.cumulativeactions.allcutidx.value;
           if ((cutidxlist != '') && (cutidxlist != null)) {
               var cutidxs = cutidxlist.split(',');
               for (var i=0; i<cutidxs.length; i++) {
                   if (document.getElementById('cut_'+cutidxs[i])) {
                       if (document.getElementById('cut_'+cutidxs[i]).checked == true) {
                           form.multicut.value += cutidxs[i]+',';
                           numchanges ++;
                           if (document.getElementById('skip_cut_'+cutidxs[i])) {
                               if (document.getElementById('skip_cut_'+cutidxs[i]).value == 0) {
                                   cutwarnings ++;
                               }
                           }
                       }
                   }
               }
           }
           var copyidxlist = document.cumulativeactions.allcopyidx.value;
           if ((copyidxlist != '') && (copyidxlist != null)) {
               var copyidxs = copyidxlist.split(',');
               for (var i=0; i<copyidxs.length; i++) {
                   if (document.getElementById('copy_'+copyidxs[i])) {
                       if (document.getElementById('copy_'+copyidxs[i]).checked) {
                           form.multicopy.value += copyidxs[i]+',';
                           numchanges ++;
                       }
                   }
               }
           }
           if (numchanges > 0) {
               form.multichange.value = numchanges;
           }
       }
       var dosettings = multiSettings();
       var haschanges = 0;
       if (dosettings == 1) {
           form.allencrypturl.value = '';
           form.allhiddenresource.value = '';
           form.changeparms.value = 'all';
           var patt=new RegExp(",\$");
           var allidxlist = document.cumulativesettings.allidx.value;
           if ((allidxlist != '') && (allidxlist != null)) {
               var allidxs = allidxlist.split(',');
               if (allidxs.length > 1) {
                   for (var i=0; i<allidxs.length; i++) {
                       if (document.getElementById('hiddenresource_'+allidxs[i])) {
                           if (document.getElementById('hiddenresource_'+allidxs[i]).checked) {
                               form.allhiddenresource.value += allidxs[i]+',';
                           }
                       }
                       if (document.getElementById('encrypturl_'+allidxs[i])) {
                           if (document.getElementById('encrypturl_'+allidxs[i]).checked) {
                               form.allencrypturl.value += allidxs[i]+',';
                           }
                       }
                   }
                   form.allhiddenresource.value = form.allhiddenresource.value.replace(patt,"");
                   form.allencrypturl.value = form.allencrypturl.value.replace(patt,"");
               }
           }
           form.allrandompick.value = '';
           form.allrandomorder.value = '';
           var allmapidxlist = document.cumulativesettings.allmapidx.value;
           if ((allmapidxlist != '') && (allmapidxlist != null)) {
               var allmapidxs = allmapidxlist.split(',');
               for (var i=0; i<allmapidxs.length; i++) {
                   var randompick = document.getElementById('randompick_'+allmapidxs[i]);
                   var rpicknum = document.getElementById('rpicknum_'+allmapidxs[i]);
                   var randorder = document.getElementById('randomorder_'+allmapidxs[i]);
                   if ((randompick.checked) && (rpicknum.value != '')) {
                       form.allrandompick.value += allmapidxs[i]+':'+rpicknum.value+',';
                   }
                   if (randorder.checked) {
                       form.allrandomorder.value += allmapidxs[i]+',';
                   }
               }
               form.allrandompick.value = form.allrandompick.value.replace(patt,"");
               form.allrandomorder.value = form.allrandomorder.value.replace(patt,"");
           }
           if (document.cumulativesettings.currhiddenresource.value != form.allhiddenresource.value) {
               haschanges = 1;
           }
           if (document.cumulativesettings.currencrypturl.value != form.allencrypturl.value) {
               haschanges = 1;
           }
           if (document.cumulativesettings.currrandomorder.value != form.allrandomorder.value) {
               haschanges = 1;
           }
           if (document.cumulativesettings.currrandompick.value != form.allrandompick.value) {
               haschanges = 1;
           }
       }
       if (doactions == 1) {
           if (numchanges > 0) {
               if ((cutwarnings > 0) || (remwarnings > 0) || (removalinfo > 0)) {
                   if (remwarnings > 0) {
                       if (!confirm('$js_lt{"p_rmr1"}\\n\\n$js_lt{"p_rmr3a"} '+remwarnings+' $js_lt{"p_rmr3b"}')) {
                           return false;
                       }
                   }
                   if (removalinfo > 0) {
                       if (!confirm('$js_lt{"p_rmr4"}\\n$js_lt{"p_rmr5"}\\n\\n$js_lt{"p_rmr3a"} '+removalinfo+' $js_lt{"p_rmr3b"}')) {
                           return false;
                       }
                   }
                   if (cutwarnings > 0) {
                       if (!confirm('$js_lt{"p_ctr1a"}\\n$js_lt{"p_ctr1b"}\\n\\n$js_lt{"p_ctr3a"} '+cutwarnings+' $js_lt{"p_ctr3b"}')) {
                           return false;
                       }
                   }
               }
               form.submit();
               return true;
           }
       }
       if (dosettings == 1) {
           if (haschanges == 1) {
               form.submit();
               return true;
           }
       }
       if ((dosettings == 1) && (doactions == 1)) {
           alert("$js_lt{'noor'}");
       } else {
           if (dosettings == 1) {
               alert("$js_lt{'noch'}");
           } else {
               alert("$js_lt{'noac'}");
           }
       }
       return false;
   }
   
   function setClass(value) {
       var cutclass = 'LC_docs_cut';
       var copyclass = 'LC_docs_copy';
       var removeclass = 'LC_docs_remove';
       var cutreg = new RegExp("\\\\b"+cutclass+"\\\\b");
       var copyreg = new RegExp("\\\\b"+copyclass+"\\\\b");
       var removereg = new RegExp("\\\\"+removeclass+"\\\\b");
       var links = document.getElementsByTagName('a');
       for (var i=0; i<links.length; i++) {
           var classes = links[i].className;
           if (cutreg.test(classes)) {
               links[i].className = cutclass;
               if (value == 1) {
                   links[i].className += " LC_menubuttons_link";
               }
           } else {
               if (copyreg.test(classes)) {
                   links[i].className = copyclass;
                   if (value == 1) {
                       links[i].className += " LC_menubuttons_link";
                   } 
               } else {
                   if (removereg.test(classes)) {
                       links[i].className = removeclass;
                       if (value == 1) {
                           links[i].className += " LC_menubuttons_link";
                       }
                   }
               }
           }
       }
       return;
   }
   
   function setBoxes(value) {
       var remidxlist = document.cumulativeactions.allremoveidx.value;
       if ((remidxlist != '') && (remidxlist != null)) {
           var remidxs = remidxlist.split(',');
           for (var i=0; i<remidxs.length; i++) {
               if (document.getElementById('remove_'+remidxs[i])) {
                   var item = document.getElementById('remove_'+remidxs[i]);
                   if (value == 1) {
                       item.className = 'LC_docs_remove';
                   } else {
                       item.className = 'LC_hidden';
                   }
               }
           }
       }
       var cutidxlist = document.cumulativeactions.allcutidx.value;
       if ((cutidxlist != '') && (cutidxlist != null)) {
           var cutidxs = cutidxlist.split(',');
           for (var i=0; i<cutidxs.length; i++) {
               if (document.getElementById('cut_'+cutidxs[i])) {
                   var item = document.getElementById('cut_'+cutidxs[i]);
                   if (value == 1) {
                       item.className = 'LC_docs_cut';
                   } else {
                       item.className = 'LC_hidden';
                   }
               }
           }
       }
       var copyidxlist = document.cumulativeactions.allcopyidx.value;
       if ((copyidxlist != '') && (copyidxlist != null)) {
           var copyidxs = copyidxlist.split(',');
           for (var i=0; i<copyidxs.length; i++) {
               if (document.getElementById('copy_'+copyidxs[i])) {
                   var item = document.getElementById('copy_'+copyidxs[i]);
                   if (value == 1) {
                       item.className = 'LC_docs_copy';
                   } else {
                       item.className = 'LC_hidden';
                   }
               }
           }
       }
       return;
   }
   
   function validImportCrsRes() {
       var path =  document.crsresimportform.coursepath.options[document.crsresimportform.coursepath.selectedIndex].value;
       var fname = document.crsresimportform.coursefile.options[document.crsresimportform.coursefile.selectedIndex].value;
       if ((fname == '') || (fname == null)) {
           alert("$js_lt{'nofi'}");
           return false;
       }
       var url = '/res/$coursedom/$coursenum/';
       if (path && path != '/') {
           url += path+'/';
       }
       if (fname != '') {
           url += fname;
       }
       var title = document.crsresimportform.crsrestitle.value;
       document.crsresimportform.importdetail.value=escape(title)+'='+escape(url);
       return true;
 }  }
   
   function validateNewRes(caller) {
       if (caller == 'single') {
           var role = document.courseresform.authorrole.options[document.courseresform.authorrole.selectedIndex].value; 
           var authorpath = document.courseresform.authorpath.options[document.courseresform.authorpath.selectedIndex].value;
           var resname = document.courseresform.newresourcename.value;
       }
   }
   
   ENDSCRIPT
   }
   
   sub history_tab_js {
       return <<"ENDHIST";
   function toggleHistoryDisp(choice) {
       document.docslogform.docslog.value = choice;
       document.docslogform.submit();
       return;
   }
   
   ENDHIST
   }
   
   sub inject_data_js {
       return <<ENDINJECT;
   
   function injectData(current, hiddenField, name, value) {
           currentElement = document.getElementById(hiddenField);
           currentElement.name = name;
           currentElement.value = value;
           current.submit();
   }
   
   ENDINJECT
   }
   
   sub dump_switchserver_js {
       my @hosts = @_;
       my %js_lt = &Apache::lonlocal::texthash(
           dump => 'Copying content to Authoring Space requires switching server.',
           swit => 'Switch server?',
       );
       my %html_js_lt = &Apache::lonlocal::texthash(
           swit => 'Switch server?',
           duco => 'Copying Content to Authoring Space',
           yone => 'You need to switch to a server housing an Authoring Space for which you are author or co-author.',
           chos => 'Choose server',
       );
       &js_escape(\%js_lt);
       &html_escape(\%html_js_lt);
       &js_escape(\%html_js_lt);
       my $role = $env{'request.role'};
       my $js = <<"ENDSWJS";
   <script type="text/javascript">
   function write_switchserver() {
       var server;
       if (document.setserver.posshosts.length > 0) {
           for (var i=0; i<document.setserver.posshosts.length; i++) {
               if (document.setserver.posshosts[i].checked) {
                   server = document.setserver.posshosts[i].value;
               }
          }
          opener.document.location.href="/adm/switchserver?otherserver="+server+"&role=$role&origurl=/adm/coursedocs";
       }
       window.close();
   }
   </script>
   
   ENDSWJS
   
       my $startpage = &Apache::loncommon::start_page('Choose server',$js,
                                                      {'only_body' => 1,
                                                       'js_ready'  => 1,});
       my $endpage = &Apache::loncommon::end_page({'js_ready'  => 1});
   
       my $hostpicker;
       my $count = 0;
       foreach my $host (sort(@hosts)) {
           my $checked;
           if ($count == 0) {
               $checked = ' checked="checked"';
           }
           $hostpicker .= '<label><input type="radio" name="posshosts" value="'.
                          $host.'"'.$checked.' />'.$host.'</label>&nbsp;&nbsp;';
           $count++;
       }
       
       return <<"ENDSWITCHJS";
   
   function dump_needs_switchserver(url) {
       if (url!='' && url!= null) {
           if (confirm("$js_lt{'dump'}\\n$js_lt{'swit'}")) {
               go(url);
           }
       }
       return;
   }
   
   function choose_switchserver_window() {
       newWindow = window.open('','ChooseServer','height=400,width=500,scrollbars=yes')
       newWindow.document.open();
       newWindow.document.writeln('$startpage');
       newWindow.document.write('<h3>$html_js_lt{'duco'}<\\/h3>\\n'+
          '<p>$html_js_lt{'yone'}<\\/p>\\n'+
          '<div class="LC_left_float"><fieldset><legend>$html_js_lt{'chos'}<\\/legend>\\n'+
          '<form name="setserver" method="post" action="" \\/>\\n'+
          '$hostpicker\\n'+
          '<br \\/><br \\/>\\n'+
          '<input type="button" name="makeswitch" value="$html_js_lt{'swit'}" '+
          'onclick="write_switchserver();" \\/>\\n'+
          '<\\/form><\\/fieldset><\\/div><br clear="all" \\/>\\n');
       newWindow.document.writeln('$endpage');
       newWindow.document.close();
       newWindow.focus();
   }
   
   ENDSWITCHJS
   }
   
   sub makedocslogform {
       my ($formelems,$docslog) = @_;
       return <<"LOGSFORM";
    <form action="/adm/coursedocs" method="post" name="docslogform">
      <input type="hidden" name="docslog" value="$docslog" />
      $formelems
    </form>
   LOGSFORM
   }
   
   sub makesimpleeditform {
       my ($formelems) = @_;
       return <<"SIMPFORM";
    <form name="simpleedit" method="post" action="/adm/coursedocs">
      <input type="hidden" name="importdetail" value="" />
      $formelems
    </form>
   SIMPFORM
   }
   
   sub makenewproblem {
       my ($r,$coursedom,$coursenum) = @_;
   # Creating a new problem
       my ($redirect,$error);
       if ($env{'form.authorrole'}) {
           my ($newsubdir,$filename);
           if ($env{'form.newsubdir'}) {
               if ($env{'form.newsubdirname'} ne '') {
                   $newsubdir = $env{'form.newsubdirname'};
               }
           }
           if ($env{'form.newresourcename'}) {
               $filename = $env{'form.newresourcename'};
               $filename =~ s/\.(\d+)(\.\w+)$/$2/;
               $filename =~ s/`//g;
               $filename =~ s{/\.\./}{_}g;
               $filename =~ s/\.+/./g;
               $filename =~ s{/+}{_}g;
               if ($filename ne '') {
                   my ($name,$ext) = ($filename =~ /(.+)\.([^.]+)$/);
                   if (($ext) && ($ext ne '.problem')) {
                       $filename = $name.'.problem';
                   } elsif ($ext eq '') {
                       $filename .= '.problem';
                   }
                   my $docroot = $r->dir_config('lonDocRoot');
                   my @ids=&Apache::lonnet::current_machine_ids();
                   if ($env{'form.authorrole'} eq 'author') {
                       if ($env{'user.author'}) {
                           if ($env{'user.home'} && grep(/^\Q$env{'user.home'}\E$/,@ids)) {
                               my $url = "/priv/$env{'user.domain'}/$env{'user.name'}";
                               my $path = $docroot.$url;
                               my $subdir = $env{'form.authorpath'};
                               $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
                           }
                       }
                   } elsif ($env{'form.authorrole'} eq 'course') {
                       my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
                       if ($chome && grep(/^\Q$chome\E$/,@ids)) {
                           my $url = "/priv/$coursedom/$coursenum";
                           my $path=$docroot.$url;
                           my $subdir = $env{'form.authorpath'};
                           $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
                           if ($redirect) {
                               my $rightsfile = 'default.rights';
                               my $sourcerights = "$path/$rightsfile";
                               my $targetrights = $docroot."/res/$coursedom/$coursenum/$rightsfile";
                               my $now = time;
                               if (!-e $sourcerights) {
                                   my $cid = $coursedom.'_'.$coursenum;
                                   if (open(my $fh,">$sourcerights")) {
                                       print $fh <<END;
   <accessrule effect="deny" realm="" type="course" role="" />
   <accessrule effect="allow" realm="$cid" type="course" role="" />
   END
                                       close($fh);
                                   }
                               }
                               if (!-e "$sourcerights.meta") {
                                   if (open(my $fh,">$sourcerights.meta")) {
                                       my $author=$env{'environment.firstname'}.' '.
                                                  $env{'environment.middlename'}.' '.
                                                  $env{'environment.lastname'}.' '.
                                                  $env{'environment.generation'};
                                       $author =~ s/\s+$//;
                                       print $fh <<"END";
   
   <abstract></abstract>
   <author>$author</author>
   <authorspace>$coursenum:$coursedom</authorspace>
   <copyright>private</copyright>
   <creationdate>$now</creationdate>
   <customdistributionfile></customdistributionfile>
   <dependencies></dependencies>
   <domain>$coursedom</domain>
   <highestgradelevel>0</highestgradelevel>
   <keywords></keywords>
   <language>notset </language>
   <lastrevisiondate>$now</lastrevisiondate>
   <lowestgradelevel>0</lowestgradelevel>
   <mime>rights</mime>
   <modifyinguser>$env{'user.name'}:$env{'user.domain'}</modifyinguser>
   <notes></notes>
   <obsolete></obsolete>
   <obsoletereplacement></obsoletereplacement>
   <owner>$coursenum:$coursedom</owner>
   <rule>deny:::course,allow:$cid::course</rule>
   <sourceavail></sourceavail>
   <standards></standards>
   <subject></subject>
   <title></title>
   END
                                       close($fh);
                                   }
                               }
                               if ((-e $sourcerights) && (-e "$sourcerights.meta")) {
                                   if (!-e "$docroot/res/$coursedom") {
                                       mkdir("$docroot/res/$coursedom",0755);
                                   }
                                   if (!-e "$docroot/res/$coursedom/$coursenum") {
                                       mkdir("$docroot/res/$coursedom/$coursenum",0755);
                                   }
                                   if ((-e "$docroot/res/$coursedom/$coursenum") && (!-e $targetrights)) {
                                       my $nokeyref = &Apache::lonpublisher::getnokey($r->dir_config('lonIncludes'));
                                       my $output = &Apache::lonpublisher::batchpublish($r,$sourcerights,$targetrights,$nokeyref,1);
                                   }
                               }
                               my $source = $docroot.$redirect;
                               if (!-e "$source.meta") {
                                   my $cid = $coursedom.'_'.$coursenum;
                                   my $now = time;
                                   if (open(my $fh,">$source.meta")) {
                                       my $author=$env{'environment.firstname'}.' '.
                                                  $env{'environment.middlename'}.' '.
                                                  $env{'environment.lastname'}.' '.
                                                  $env{'environment.generation'};
                                       $author =~ s/\s+$//;
                                       my $title = $env{'form.newresourcetitle'};
                                       $title =~ s/^\s+|\s+$//g;
                                       print $fh <<END;
   
   <abstract></abstract>
   <author>$author</author>
   <authorspace>$coursenum:$coursedom</authorspace>
   <copyright>custom</copyright>
   <creationdate>$now</creationdate>
   <customdistributionfile>/res/$coursedom/$coursenum/default.rights</customdistributionfile>
   <dependencies></dependencies>
   <domain>$coursedom</domain>
   <highestgradelevel>0</highestgradelevel>
   <keywords></keywords>
   <language>notset </language>
   <lastrevisiondate>$now</lastrevisiondate>
   <lowestgradelevel>0</lowestgradelevel>
   <mime>problem</mime>
   <modifyinguser>$coursenum:$coursedom</modifyinguser>
   <notes></notes>
   <obsolete></obsolete>
   <obsoletereplacement></obsoletereplacement>
   <owner>$coursenum:$coursedom</owner>
   <sourceavail></sourceavail>
   <standards></standards>
   <subject></subject>
   <title>$title</title>
   END
                                       close($fh);
                                   }
                               }
                           }
                       }
                   } else {
                       my ($auname,$audom,$role) = split('___',$env{'form.authorrole'});
                       my $rolehome = &Apache::lonnet::homeserver($auname,$audom);
                       if (grep(/^\Q$rolehome\E$/,@ids)) {
                           my $now = time;
                           if (exists($env{'user.role.'.$role.'./'.$audom.'/'.$auname})) {
                               my ($start,$end) = split(/\./,$env{'user.role.'.$role.'./'.$audom.'/'.$auname});
                               if (($start <= $now) && (($end == 0) || ($end >= $now))) { 
                                   my $url = "/priv/$audom/$auname";  
                                   my $path = $r->dir_config('lonDocRoot').$url;
                                   my $subdir = $env{'form.authorpath'};
                                   $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
                               }
                           }
                       }
                   }
               }
           }
       }
       return ($redirect,$error);
   }
   
   sub finishnewprob {
       my ($url,$path,$subdir,$newsubdir,$filename,$context) = @_;
       unless (-d $path) {
           unless (mkdir($path,02770)) {
               return;
           }
       }
       my $redirect;
       if ($subdir ne '/') {
           $subdir = &cleandir($subdir);
           if (($subdir ne '') && (-d "$path/$subdir")) {
               $path .= "/$subdir";
               $url .= "/$subdir";
           }
       }
       my $dest;
       if ($newsubdir ne '') {
           $newsubdir = &cleandir($newsubdir);
       }
       if ($newsubdir ne '') {
           if (-d "$path/$newsubdir") {
               $dest = "$path/$newsubdir/$filename";
           } else {
               my $dirok;
               unless (-e "$path/$newsubdir") {
                   if (mkdir("$path/$newsubdir",02770)) {
                       if (chmod(02770,"$path/$newsubdir")) {
                           $dirok = 1;
                       }
                   }
               }
               if ($dirok) {
                   $dest = "$path/$newsubdir/$filename";
               }
           }
           if (($dest ne '') && (!-e $dest)) {
               $redirect = "$url/$newsubdir/$filename";
           }
       } else {
           $dest = "$path/$filename";
           if (($dest ne '') && (!-e $dest)) {
               $redirect = "$url/$filename";
           }
       }
       if ((!-e $dest) && ($context ne 'upload')) {
           my $template = $env{'form.template'};
           my $copyfrom;
           if ($template ne '') {
               my %templates;
               my @files = &Apache::lonhomework::get_template_list('problem');
               foreach my $poss (@files) {
                   if (ref($poss) eq 'ARRAY') {
                       if ($template eq $poss->[0]) {
                           $templates{$template} = 1;
                           last;
                       }
                   }
               }
               if ($templates{$template}) {
                   $copyfrom = $template;
               }
           }
           if ($filename =~ /\.problem$/) {
               unless ($copyfrom) {
                   $copyfrom = $Apache::lonnet::perlvar{'lonIncludes'}.'/templates/blank.problem';
               }
               &File::Copy::copy($copyfrom,$dest);
           }
       }
       return $redirect;
   }
   
   sub cleandir {
       my ($dir) = @_;
       $dir =~ s/^\s+//;
       $dir =~ s/\s+$//;
       $dir =~ s/\.+//g;
       $dir =~ s/[\#\?&%\":]//g;
       return $dir;
   }
   
 1;  1;
 __END__  __END__
   
   
   =head1 NAME
   
   Apache::londocs.pm
   
   =head1 SYNOPSIS
   
   This is part of the LearningOnline Network with CAPA project
   described at http://www.lon-capa.org.
   
   =head1 SUBROUTINES
   
   =over
   
   =item %help=()
   
   Available help topics
   
   =item mapread()
   
   Mapread read maps into LONCAPA::map:: global arrays
   @order and @resources, determines status
   sets @order - pointer to resources in right order
   sets @resources - array with the resources with correct idx
   
   =item authorhosts()
   
   Return hash with valid author names
   
   =item clean()
   
   =item dumpcourse()
   
       Actually dump course
   
   =item group_import()
   
       Imports the given (name, url) resources into the course
       coursenum, coursedom, and folder must precede the list
   
   =item breadcrumbs()
   
   =item log_docs()
   
   =item docs_change_log()
   
   =item update_paste_buffer()
   
   =item print_paste_buffer()
   
   =item do_paste_from_buffer()
   
   =item do_buffer_empty() 
   
   =item clear_from_buffer()
   
   =item get_newmap_url()
   
   =item dbcopy()
   
   =item uniqueness_check()
   
   =item contained_map_check()
   
   =item url_paste_fixups()
   
   =item apply_fixups()
   
   =item copy_dependencies()
   
   =item update_parameter()
   
   =item handle_edit_cmd()
   
   =item editor()
   
   =item process_file_upload()
   
   =item process_secondary_uploads()
   
   =item is_supplemental_title()
   
   =item entryline()
   
   =item tiehash()
   
   =item untiehash()
   
   =item checkonthis()
   
   check on this
   
   =item verifycontent()
   
   Verify Content
   
   =item devalidateversioncache() 
   
   =item checkversions()
   
   Check Versions
   
   =item mark_hash_old()
   
   =item is_hash_old()
   
   =item changewarning()
   
   =item init_breadcrumbs()
   
   Breadcrumbs for special functions
   
   =item create_list_elements()
   
   =item create_form_ul()
   
   =item startContentScreen() 
   
   =item endContentScreen()
   
   =item supplemental_base()
   
   =item embedded_form_elems()
   
   =item embedded_destination()
   
   =item return_to_editor()
   
   =item decompression_info()
   
   =item decompression_phase_one()
   
   =item decompression_phase_two()
   
   =item remove_archive()
   
   =item generate_admin_menu()
   
   =item generate_edit_table()
   
   =item editing_js()
   
   =item history_tab_js()
   
   =item inject_data_js()
   
   =item dump_switchserver_js()
   
   =item resize_scrollbox_js()
   
   =item makedocslogform()
   
   =item makesimpleeditform()
   
   =back
   
   =cut

Removed from v.1.237  
changed lines
  Added in v.1.660


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