Diff for /loncom/interface/lonrequestcourse.pm between versions 1.13 and 1.26

version 1.13, 2009/08/15 01:59:04 version 1.26, 2009/08/27 00:06:18
Line 116  use LONCAPA qw(:DEFAULT :match); Line 116  use LONCAPA qw(:DEFAULT :match);
   
 sub handler {  sub handler {
     my ($r) = @_;      my ($r) = @_;
       &Apache::loncommon::content_type($r,'text/html');
       $r->send_http_header;
     if ($r->header_only) {      if ($r->header_only) {
         &Apache::loncommon::content_type($r,'text/html');  
         $r->send_http_header;  
         return OK;          return OK;
     }      }
     &Apache::loncommon::content_type($r,'text/html');  
     $r->send_http_header;  
   
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['action','showdom','cnum']);
     &Apache::lonhtmlcommon::clear_breadcrumbs();      &Apache::lonhtmlcommon::clear_breadcrumbs();
     my $dom = &get_course_dom();      my $dom = &get_course_dom();
     my $action = $env{'form.action'};      my $action = $env{'form.action'};
     my $state = $env{'form.state'};      my $state = $env{'form.state'};
   
     my %stored;      my %stored;
     my $jscript;      my $jscript;
     if ((defined($state)) && (defined($action))) {      my ($uname,$udom,$result,$warning);
         my %elements =  &form_elements($dom);      if ($action eq 'display') {
         if (($action eq 'view') && ($state ne 'crstype')) {          if (($dom eq $env{'request.role.domain'}) && (&Apache::lonnet::allowed('ccc',$dom))) {
             if (defined($env{'form.request_id'})) {              my $namespace = 'courserequestqueue';
                 %stored = &retrieve_settings($dom,$env{'form.request_id'});              if ($env{'form.cnum'} ne '') {
                   my $cnum = $env{'form.cnum'};
                   my $reqkey = $cnum.'_approval';
                   my $namespace = 'courserequestqueue';
                   my $domconfig = &Apache::lonnet::get_domainconfiguser($dom);
                   my %queued =
                       &Apache::lonnet::get($namespace,[$reqkey],$dom,$domconfig);
                   if (ref($queued{$reqkey}) eq 'HASH') {
                       $uname = $queued{$reqkey}{'ownername'};
                       $udom  = $queued{$reqkey}{'ownerdom'};
                       if (($udom =~ /^$match_domain$/) && ($uname =~ /^$match_username$/)) {
                           $result = &retrieve_settings($dom,$cnum,$udom,$uname);
                       } else {
                           $warning = &mt('Invalid username or domain for course requestor');
                       }
                   } else {
                       $warning = &mt('No information was found for this course request.');
                   }
               } else {
                   $warning = &mt('No course request ID provided.');
             }              }
           } else {
               $warning = &mt('You do not have rights to view course request information.');
         }          }
       } elsif ((defined($state)) && (defined($action))) {
           if (($action eq 'view') && ($state eq 'details')) {
               if ((defined($env{'form.showdom'})) && (defined($env{'form.cnum'}))) {
                   my $result = &retrieve_settings($env{'form.showdom'},$env{'form.cnum'});
               }
           }
           my %elements =  &form_elements($dom);
         my $elementsref = {};          my $elementsref = {};
         if (ref($elements{$action}) eq 'HASH') {          if (ref($elements{$action}) eq 'HASH') {
             if (ref($elements{$action}{$state}) eq 'HASH') {              if (ref($elements{$action}{$state}) eq 'HASH') {
                 $elementsref = $elements{$action}{$state};                  $elementsref = $elements{$action}{$state};
             }              }
         }          }
           if (($state eq 'courseinfo') && ($env{'form.clonedom'} eq '')) {
               $env{'form.clonedom'} = $dom;
           }
         $jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored);          $jscript = &Apache::lonhtmlcommon::set_form_elements($elementsref,\%stored);
     }      }
   
Line 154  sub handler { Line 183  sub handler {
     my $loaditems = &onload_action($action,$state);      my $loaditems = &onload_action($action,$state);
   
     my %states;      my %states;
     $states{'view'} = ['pick_request','details','review','process'];      $states{'display'} = ['details'];
       $states{'view'} = ['pick_request','details','cancel','removal'];
     $states{'log'} = ['filter','display'];      $states{'log'} = ['filter','display'];
     $states{'new'} = ['courseinfo','enrollment','personnel','review','process'];      $states{'new'} = ['courseinfo','enrollment','personnel','review','process'];
   
     if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) {      if (($action eq 'new') && ($env{'form.crstype'} eq 'official')) {
         unless ($env{'form.state'} eq 'crstype') {          unless ($env{'form.state'} eq 'crstype') {
             unshift (@{$states{'new'}},'codepick');              unshift(@{$states{'new'}},'codepick');
         }          }
     }      }
   
Line 173  sub handler { Line 204  sub handler {
                  crstype       => 'Course Request Action',                   crstype       => 'Course Request Action',
                  codepick      => 'Category',                   codepick      => 'Category',
                  courseinfo    => 'Description',                   courseinfo    => 'Description',
                  enrollment    => 'Enrollment',                   enrollment    => 'Access Dates',
                  personnel     => 'Personnel',                   personnel     => 'Personnel',
                  review        => 'Review',                   review        => 'Review',
                  process       => 'Result',                   process       => 'Result',
                  pick_request  => 'Display Summary',                   pick_request  => 'Display Summary',
                    details       => 'Request Details',
                    cancel        => 'Cancel Request',
                    removal       => 'Outcome',
                 );                  );
   
       if (($env{'form.crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) {
           $trail{'enrollment'} = 'Enrollment';
       } 
   
     my $page = 0;      my $page = 0;
     my $crumb;      my $crumb;
     if (defined($action)) {      if (defined($action)) {
Line 237  sub handler { Line 275  sub handler {
         }          }
     } elsif ($action eq 'view') {      } elsif ($action eq 'view') {
         if ($state eq 'crstype') {          if ($state eq 'crstype') {
            &print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb);              &print_main_menu($r,\%can_request,\%states,$dom,$jscript,'',$crumb);
           } else {
               &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,
                                       $loaditems,$crumb);
           }
       } elsif ($action eq 'display') {
           if ($warning ne '') {
               my $args = { only_body => 1 };
               $r->print(&header('Course Requests','','',$args).$crumb.
                         '<h3>'.&mt('Course Request Details').'</h3>'.
                         '<div class="LC_warning">'.$warning.'</div>'.
                         &close_popup_form());
         } else {          } else {
            &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,              &request_administration($r,$action,$state,$page,\%states,$dom,$jscript,
                                    $loaditems,$crumb);                                      $loaditems,$crumb,$uname,$udom);
         }          }
     } elsif ($action eq 'log') {      } elsif ($action eq 'log') {
         &print_request_logs($jscript,$loaditems,$crumb);          &print_request_logs($jscript,$loaditems,$crumb);
Line 251  sub handler { Line 300  sub handler {
 }  }
   
 sub header {  sub header {
     my ($bodytitle,$jscript,$loaditems,$jsextra) = @_;      my ($bodytitle,$jscript,$loaditems,$jsextra,$args) = @_;
     if ($jscript) {      if ($jscript) {
         $jscript = '<script type="text/javascript">'."\n".          $jscript = '<script type="text/javascript">'."\n".
                    '// <![CDATA['."\n".                     '// <![CDATA['."\n".
                    $jscript."\n".'// ]]>'."\n".'</script>'."\n";                     $jscript."\n".'// ]]>'."\n".'</script>'."\n";
     }      }
     if ($loaditems) {      if ($loaditems) {
         $loaditems = {'add_entries' => $loaditems,};          if (ref($args) eq 'HASH') {
         return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra,$loaditems);              my %loadhash = (
     } else {                               'add_entries' => $loaditems,
         return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra);                             );
               my %arghash = (%loadhash,%{$args});
               $args = \%arghash;                  
           } else {
               $args = {'add_entries' => $loaditems,};
           }
     }      }
       return &Apache::loncommon::start_page($bodytitle,$jscript.$jsextra,$args);
 }  }
   
 sub form_elements {  sub form_elements {
Line 273  sub form_elements { Line 328  sub form_elements {
             crstype => {              crstype => {
                 crstype => 'selectbox',                  crstype => 'selectbox',
                 action  => 'selectbox',                  action  => 'selectbox',
                   origcnum => 'hidden', 
             },              },
             courseinfo => {              courseinfo => {
                 cdescr           => 'text',                  cdescr           => 'text',
Line 297  sub form_elements { Line 353  sub form_elements {
                 no_end_date      => 'checkbox',                  no_end_date      => 'checkbox',
             },              },
             personnel => {              personnel => {
                 persontotal => 'hidden',  
                 addperson   => 'checkbox',                   addperson   => 'checkbox', 
             },              },
             review => {              review => {
Line 355  sub form_elements { Line 410  sub form_elements {
             for (my $i=0; $i<$env{'form.sectotal'}; $i++) {              for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
                 $extras{'sec_'.$i} = 'checkbox',                  $extras{'sec_'.$i} = 'checkbox',
                 $extras{'secnum_'.$i} = 'text',                  $extras{'secnum_'.$i} = 'text',
                 $extras{'loncapasec_'.$i} = 'checkbox',                  $extras{'loncapasec_'.$i} = 'text',
             }              }
         }          }
         my $crosslisttotal = $env{'form.crosslisttotal'};          my $crosslisttotal = $env{'form.crosslisttotal'};
         if (!defined($crosslisttotal)) {          if ($env{'form.addcrosslist'}) {
               $crosslisttotal ++;
           }
           if (!$crosslisttotal) {
             $crosslisttotal = 1;              $crosslisttotal = 1;
         }          }
         if ($crosslisttotal > 0) {          for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {
             for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {              if ($numtitles) {
                 if ($numtitles) {                  $extras{'crosslist_'.$i.'_'.$lastitem} = 'text';
                     $extras{'crosslist_'.$i.'_'.$lastitem} = 'text';              }
                 }              if (@codetitles > 0) {
                 if (@codetitles > 0) {                  foreach my $item (@codetitles) {
                     foreach my $item (@codetitles) {                      $extras{'crosslist_'.$i.'_'.$item} = 'selectbox';
                         $extras{'crosslist_'.$i.'_'.$item} = 'selectbox';  
                     }  
                 }                  }
                 $extras{'crosslist_'.$i} = 'checkbox';  
                 $extras{'crosslist_'.$i.'_instsec'} = 'text',  
                 $extras{'crosslist_'.$i.'_lcsec'} = 'text',  
             }              }
               $extras{'crosslist_'.$i} = 'checkbox';
               $extras{'crosslist_'.$i.'_instsec'} = 'text',
               $extras{'crosslist_'.$i.'_lcsec'} = 'text',
         }          }
         my %mergedhash = (%{$elements{'new'}{'enrollment'}},%extras);          my %mergedhash = (%{$elements{'new'}{'enrollment'}},%extras);
         %{$elements{'new'}{'enrollment'}} = %mergedhash;          %{$elements{'new'}{'enrollment'}} = %mergedhash;
     }      }
     my %people;      my %people;
     my $persontotal = $env{'form.persontotal'};      my $persontotal = $env{'form.persontotal'};
     if (!defined($persontotal)) {      if ($env{'form.addperson'}) {
           $persontotal ++;
       }
       if ((!defined($persontotal)) || (!$persontotal)) {
         $persontotal = 1;          $persontotal = 1;
     }      }
     for (my $i=0; $i<$persontotal; $i++) {      for (my $i=0; $i<$persontotal; $i++) {
Line 395  sub form_elements { Line 454  sub form_elements {
         $people{'person_'.$i.'_role'}      = 'selectbox',          $people{'person_'.$i.'_role'}      = 'selectbox',
         $people{'person_'.$i.'_sec'}       = 'selectbox',          $people{'person_'.$i.'_sec'}       = 'selectbox',
         $people{'person_'.$i.'_newsec'}    = 'text',          $people{'person_'.$i.'_newsec'}    = 'text',
         $people{'person_'.$i.'_sections'}  = 'hidden',  
     }      }
     my %personnelhash = (%{$elements{'new'}{'personnel'}},%people);      my %personnelhash = (%{$elements{'new'}{'personnel'}},%people);
     %{$elements{'new'}{'personnel'}} = %personnelhash;      %{$elements{'new'}{'personnel'}} = %personnelhash;
Line 415  sub check_can_request { Line 473  sub check_can_request {
     my ($dom,$can_request) = @_;      my ($dom,$can_request) = @_;
     my $canreq = 0;      my $canreq = 0;
     my ($types,$typename) = &course_types();      my ($types,$typename) = &course_types();
       my @options = ('approval','validate','autolimit');
       my $optregex = join('|',@options);
     if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) {      if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) {
         foreach my $type (@{$types}) {          foreach my $type (@{$types}) {
             if (&Apache::lonnet::usertools_access($env{'user.name'},              if (&Apache::lonnet::usertools_access($env{'user.name'},
Line 430  sub check_can_request { Line 490  sub check_can_request {
                 if (@curr > 0) {                  if (@curr > 0) {
                     $canreq ++;                      $canreq ++;
                     unless ($dom eq $env{'user.domain'}) {                      unless ($dom eq $env{'user.domain'}) {
                         if (grep(/^\Q$dom\E$/,@curr)) {                          if (grep(/^\Q$dom\E:($optregex)(=?\d*)$/,@curr)) {
                             $can_request->{$type} = 1;                              $can_request->{$type} = 1;
                         }                          }
                     }                      }
Line 553  END Line 613  END
   
     my $formname = 'requestcrs';      my $formname = 'requestcrs';
     my $nexttext = &mt('Next');      my $nexttext = &mt('Next');
     $r->print('<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'.      $r->print(
                 '<div><form name="'.$formname.'" method="post" action="/adm/requestcourse">'.
               &Apache::lonhtmlcommon::start_pick_box().                &Apache::lonhtmlcommon::start_pick_box().
               &Apache::lonhtmlcommon::row_title('Action').'                &Apache::lonhtmlcommon::row_title('Action').'
 <input type="hidden" name="showdom" value="'.$dom.'" />  <input type="hidden" name="showdom" value="'.$dom.'" />
Line 587  END Line 648  END
 }  }
   
 sub request_administration {  sub request_administration {
     my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb) = @_;      my ($r,$action,$state,$page,$states,$dom,$jscript,$loaditems,$crumb,$uname,$udom) = @_;
     my $js;      my $js;
     if (($action eq 'new') || ($action eq 'view')) {      if (($action eq 'new') || (($action eq 'view') && ($state eq 'pick_request'))) {
         $js =  <<END;          $js =  <<END;
   
 function nextPage(formname,nextstate) {  function nextPage(formname,nextstate) {
     formname.state.value= nextstate;      formname.state.value= nextstate;
     formname.submit();      formname.submit();
 }  }
   
   END
       }
       if (($action eq 'new') || ($action eq 'view')) {
           $js .= <<END;   
   
 function backPage(formname,prevstate) {  function backPage(formname,prevstate) {
     formname.state.value = prevstate;      formname.state.value = prevstate;
     formname.submit();      formname.submit();
Line 611  END Line 678  END
         $r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb);          $r->print(&header('Request a course',$js.$jscript,$loaditems,$jsextra).$crumb);
         &print_request_form($r,$action,$state,$page,$states,$dom);          &print_request_form($r,$action,$state,$page,$states,$dom);
     } elsif ($action eq 'view') {      } elsif ($action eq 'view') {
         $r->print(&header('Manage course requests',$js.$jscript,$loaditems).$crumb);          my $jsextra;
           my $formname = 'requestcrs';
           my $prev = $states->{$action}[$page-1];
           my $next = $states->{$action}[$page+1];
           if ($state eq 'pick_request') {
               $next = $states->{$action}[$page+1];
               $jsextra = &viewrequest_javascript($formname,$next);
           } elsif ($state eq 'details') {
               $jsextra = &viewdetails_javascript($formname);
   
           } elsif ($state eq 'cancel') {
               $jsextra = &viewcancel_javascript($formname);
           }
           $r->print(&header('Manage course requests',$js.$jscript.$jsextra,$loaditems).
                     $crumb);
           my $form = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />';
         if ($state eq 'pick_request') {          if ($state eq 'pick_request') {
             $r->print(&print_request_status($dom));              $r->print('<h3>'.&mt('Pending course requests').'</h3><div>'."\n".$form."\n".
                         &print_request_status($dom).'</form>');
           } elsif ($state eq 'details') {
               my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk);
               my $origcnum = $env{'form.cnum'};
               if ($origcnum eq '') {
                   $origcnum = $env{'form.origcnum'};   
               }
               if ($env{'form.crstype'} eq 'official') {
                   &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
                                                            \%cat_order,\@code_order);
               }
               $r->print('<h3>'.&mt('Course Request Details').'</h3><div>'."\n".$form."\n".
                         &print_review($dom,\@codetitles,\%cat_titles,\%cat_order,
                                       \@code_order)."\n".
                         '<input name="origcnum" value="'.$origcnum.'" type="hidden" />'."\n");
               my @excluded = &get_excluded_elements($dom,$states,'new','review');
               push(@excluded,'origcnum');
               $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>');
               my $other = 'modify';
               my %navtxt = &Apache::lonlocal::texthash (
                                                         prev => 'Back',
                                                         other => 'Modify Request',
                                                         next => 'Cancel Request',
                                                        );
               &display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},
                                   $state,$other,$navtxt{'other'});
               $r->print('</form>');
           } elsif ($state eq 'cancel') {
               my ($result,$output) = &print_cancel_request($dom,$env{'form.origcnum'});
               $r->print('<h3>'.&mt('Cancel course request').'</h3><div>'."\n".$form."\n".
                         $output);
               my @excluded = &get_excluded_elements($dom,$states,'view','cancel');
               $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</div>');
               my %navtxt = &Apache::lonlocal::texthash (
                                                         prev => 'Back',
                                                         next => 'Confirm Cancellation',
                                                        );
               if ($result eq 'ok') {
                   &display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,
                                       $navtxt{'next'},$state);
               } else {
                   &display_navbuttons($r,$formname,$prev,$navtxt{'prev'},undef,'',$state);
               }
               $r->print('</form>');
           } elsif ($state eq 'removal') {
               my $cnum = $env{'form.origcnum'};
               my $statuskey = 'status:'.$dom.':'.$cnum;
               my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey],
                                                      $env{'user.domain'},$env{'user.name'});
               my $currstatus = $userreqhash{$statuskey};
               my ($result,$error); 
               if (($currstatus eq 'approval') || ($currstatus eq 'pending')) { 
                   my %status = (
                                    $statuskey => 'cancelled',
                                );
                   my $statusresult = &Apache::lonnet::put('courserequests',\%status);
                   if ($statusresult eq 'ok') {
                       my $delresult = 
                           &Apache::lonnet::del_dom('courserequestqueue',
                                                    [$cnum.'_'.$currstatus],$dom);
                       if ($delresult eq 'ok') {
                           $result = 'ok';
                       } else {
                           $error = &mt('An error occurred when updating the pending requests queue: [_1]',$delresult);
                       }
                   } else {
                       $error = &mt("An error occurred when updating the status of this request in the requestor's records: [_1]",$statusresult);
                   }
               } else {
                   $error = &mt('The current status of this request could not be verified as pending approval/institutional action.');  
               }
               $r->print('<h3>'.&mt('Request Cancellation').'</h3><div>'."\n".$form."\n".
                         '<input type="hidden" name="state" value="'.$state.'" />'."\n".
                         '<input type="hidden" name="action" value="'.$action.'" />'."\n".
                         '<input type="hidden" name="showdom" value="'.$dom.'" />'."\n".
                         '<input type="hidden" name="orignum" value="'.$cnum.'" />'."\n");
               if ($result eq 'ok') {
                   $r->print(&mt('Your course request has been cancelled.'));
               } else {
                   $r->print('<div class="LC_error">'.
                             &mt('The request cancellation process was not complete.').
                             '<br />'.$error.'</div>');
               }
               $r->print('</form>');
           }
       } elsif ($action eq 'display') {
           my $formname = 'requestcrs';
           my (@codetitles,%cat_titles,%cat_order,@code_order,$instcode,$code_chk);
           if ($env{'form.crstype'} eq 'official') {
               &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
                                                        \%cat_order,\@code_order);
         }          }
           $r->print(&header('Course Request','','','',{ 'only_body' => 1}).
                     $crumb."\n".'<h3>'.&mt('Course Request Details').'</h3>'.
                     &print_review($dom,\@codetitles,\%cat_titles,\%cat_order,
                                   \@code_order,$uname,$udom)."\n".'</div>'.
                     &close_popup_form());
     } elsif ($action eq 'log') {      } elsif ($action eq 'log') {
         $r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb);          $r->print(&coursereq_log('View request log',$jscript,$loaditems).$crumb);
     }      }
Line 622  END Line 800  END
     return;      return;
 }  }
   
   sub close_popup_form {
       my $close= &mt('Close Window');
       return << "END";
   <p><form name="displayreq" action="" method="post">
   <input type="button" name="closeme" value="$close" onclick="javascript:self.close();" />
   </form></p>
   END
   }
   
 sub print_request_form {  sub print_request_form {
     my ($r,$action,$state,$page,$states,$dom) = @_;      my ($r,$action,$state,$page,$states,$dom) = @_;
     my $formname = 'requestcrs';      my $formname = 'requestcrs';
Line 655  sub print_request_form { Line 842  sub print_request_form {
             }              }
             if ($instcode ne '') {              if ($instcode ne '') {
                 $code_chk = &Apache::lonnet::auto_validate_instcode('',$dom,$instcode);                  $code_chk = &Apache::lonnet::auto_validate_instcode('',$dom,$instcode);
                 if ($code_chk eq 'ok') {                  if ($code_chk eq 'valid') {
                     $message = '<div class="LC_info">'.                      $message = '<div class="LC_info">'.
                                &mt('The chosen course category [_1] is valid.','<b>'.                                 &mt('The chosen course category [_1] is valid.','<b>'.
                                $instcode.'</b>').'</div>';                                 $instcode.'</b>').'</div>';
Line 671  sub print_request_form { Line 858  sub print_request_form {
                 $message = '<div class="LC_warning">'.                  $message = '<div class="LC_warning">'.
                            &mt('No course was found matching your choice of institutional course category.');                             &mt('No course was found matching your choice of institutional course category.');
             }              }
             unless ($code_chk eq 'ok') {              unless ($code_chk eq 'valid') {
                 $prev = 'crstype';                  $prev = 'crstype';
             }              }
             $r->print($message);              $r->print($message);
Line 689  sub print_request_form { Line 876  sub print_request_form {
                 $r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker.                  $r->print('<div>'.&Apache::lonhtmlcommon::start_pick_box().$codepicker.
                           &Apache::lonhtmlcommon::end_pick_box().'</div>');                            &Apache::lonhtmlcommon::end_pick_box().'</div>');
             } else {              } else {
                 $r->print(&courseinfo_form($dom,$formname,$crstype));                  $next = $states->{$action}[$page+2];
                   $r->print(&courseinfo_form($dom,$formname,$crstype,$next));
             }              }
         } else {          } else {
             $r->print(&courseinfo_form($dom,$formname,$crstype));              if ($crstype eq 'official') {
                   $next = $states->{$action}[$page+2];
               }
               $r->print(&courseinfo_form($dom,$formname,$crstype,$next));
         }          }
     } elsif ($prev eq 'codepick') {      } elsif ($prev eq 'codepick') {
         $r->print(&courseinfo_form($dom,$formname,$crstype));          if ($env{'form.instcode'} eq '') {
               $prev = $states->{$action}[$page-2];
           }
           $r->print(&courseinfo_form($dom,$formname,$crstype,$next));
     } elsif ($state eq 'enrollment') {      } elsif ($state eq 'enrollment') {
         if ($crstype eq 'official') {          if ($crstype eq 'official') {
             &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,              &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
Line 706  sub print_request_form { Line 900  sub print_request_form {
     } elsif ($state eq 'personnel') {      } elsif ($state eq 'personnel') {
         $r->print(&print_personnel_menu($dom,$formname,$crstype));          $r->print(&print_personnel_menu($dom,$formname,$crstype));
     } elsif ($state eq 'review') {      } elsif ($state eq 'review') {
           my $cnum;
           if ($env{'form.origcnum'} =~ /^($match_courseid)$/) {
               $cnum = $env{'form.origcnum'};
           } else {
               $cnum = &Apache::lonnet::generate_coursenum($dom);
           }
         &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,          &Apache::lonnet::auto_possible_instcodes($dom,\@codetitles,\%cat_titles,
                                                  \%cat_order,\@code_order);                                                   \%cat_order,\@code_order);
         $r->print(&print_review($formname,$dom,\@codetitles,\%cat_titles,\%cat_order,          $r->print('<p>'.&mt('Review the details of the course request before submission.').'</p>'.
                                 \@code_order));                    &print_review($dom,\@codetitles,\%cat_titles,\%cat_order,\@code_order).
                     '<input type="hidden" name="cnum" value="'.$cnum.'" />');
         $navtxt{'next'} = &mt('Submit course request');          $navtxt{'next'} = &mt('Submit course request');
     }  elsif ($state eq 'process') {      }  elsif ($state eq 'process') {
         if ($crstype eq 'official') {          if ($crstype eq 'official') {
Line 719  sub print_request_form { Line 920  sub print_request_form {
         my $result = &print_request_outcome($dom,\@codetitles,\@code_order);          my $result = &print_request_outcome($dom,\@codetitles,\@code_order);
         $r->print($result);          $r->print($result);
     }      }
       my @excluded = &get_excluded_elements($dom,$states,$action,$state);
       if ($state eq 'personnel') {
           push(@excluded,'persontotal');
       }
       $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>');
       &display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'},$state);
       return;
   }
   
   sub get_excluded_elements {
       my ($dom,$states,$action,$state) = @_;
     my @excluded = ('counter');      my @excluded = ('counter');
     my %elements = &form_elements($dom);      my %elements = &form_elements($dom);
     if (ref($states) eq 'HASH') {      if (ref($states) eq 'HASH') {
Line 729  sub print_request_form { Line 941  sub print_request_form {
                 for (my $i=$numitems-1; $i>=0; $i--) {                  for (my $i=$numitems-1; $i>=0; $i--) {
                     if (ref($elements{$action}) eq 'HASH') {                      if (ref($elements{$action}) eq 'HASH') {
                         if (ref($elements{$action}{$items[$i]}) eq 'HASH') {                          if (ref($elements{$action}{$items[$i]}) eq 'HASH') {
                             foreach my $key (keys(%{$elements{$action}{$items[$i]}})) {                               foreach my $key (keys(%{$elements{$action}{$items[$i]}})) {
                                 push(@excluded,$key);                                  push(@excluded,$key);
                             }                              }
                         }                          }
Line 742  sub print_request_form { Line 954  sub print_request_form {
     if (grep(/^instcode_/,@excluded)) {      if (grep(/^instcode_/,@excluded)) {
         push(@excluded,'instcode');          push(@excluded,'instcode');
     }      }
     $r->print(&Apache::lonhtmlcommon::echo_form_input(\@excluded).'</form>');      return @excluded;
     &display_navbuttons($r,$formname,$prev,$navtxt{'prev'},$next,$navtxt{'next'});  
     return;  
 }  }
   
 sub print_enrollment_menu {  sub print_enrollment_menu {
Line 755  sub print_enrollment_menu { Line 965  sub print_enrollment_menu {
   
     my %accesstitles = (      my %accesstitles = (
                           'start' => 'Default start access',                            'start' => 'Default start access',
                            'end'   => 'Default end accss',                             'end'   => 'Default end access',
                        );                         );
     my %enrolltitles = (      my %enrolltitles = (
                            'start' => 'Start auto-enrollment',                             'start' => 'Start auto-enrollment',
Line 766  sub print_enrollment_menu { Line 976  sub print_enrollment_menu {
             my ($section_form,$crosslist_form,$autoenroll_form);              my ($section_form,$crosslist_form,$autoenroll_form);
             $section_form = &inst_section_selector($dom,$instcode);              $section_form = &inst_section_selector($dom,$instcode);
             my $crosslisttotal = $env{'form.crosslisttotal'};              my $crosslisttotal = $env{'form.crosslisttotal'};
             if (!defined($crosslisttotal)) {              if (!$crosslisttotal) {
                 $crosslisttotal = 1;                  $crosslisttotal = 1;
             }              }
             if ($env{'form.addcrosslist'}) {              if ($env{'form.addcrosslist'}) {
Line 832  sub inst_section_selector { Line 1042  sub inst_section_selector {
                     &Apache::loncommon::start_data_table().                      &Apache::loncommon::start_data_table().
                     &Apache::loncommon::start_data_table_row().                      &Apache::loncommon::start_data_table_row().
                     '<th>'.&mt('Include?').'<input type="hidden" name="sectotal" '.                      '<th>'.&mt('Include?').'<input type="hidden" name="sectotal" '.
                     'value="'.$sectotal.'"</th>'.                      'value="'.$sectotal.'"  /></th>'.
                     '<th>'.&mt('Institutional Section').'</th>'.                      '<th>'.&mt('Institutional Section').'</th>'.
                     '<th>'.&mt('LON-CAPA section').'</th>'.                      '<th>'.&mt('LON-CAPA section').'</th>'.
                     &Apache::loncommon::end_data_table_row();                      &Apache::loncommon::end_data_table_row();
         for (my $i=0; $i<@sections; $i++) {          for (my $i=0; $i<@sections; $i++) {
             my $colflag = $i%2;              my $colflag = $i%2;
               my $checked = ' checked="checked"';
               if ($env{'form.origcnum'}) {
                   $checked='';
               }
             $output .= &Apache::loncommon::start_data_table_row().              $output .= &Apache::loncommon::start_data_table_row().
                        '<td><input type="checkbox" name="sec_'.$i.                         '<td><input type="checkbox" name="sec_'.$i.
                        '" checked="checked" /></td>'.                         '"'.$checked.' value="1" /></td>'.
                        '<td>'.$sections[$i].                         '<td>'.$sections[$i].
                        '<input type="hidden" name="secnum_'.$i.'" value="'.                         '<input type="hidden" name="secnum_'.$i.'" value="'.
                        $sections[$i].'" /></td>'.                         $sections[$i].'" /></td>'.
Line 855  sub inst_section_selector { Line 1069  sub inst_section_selector {
 }  }
   
 sub date_setting_table {  sub date_setting_table {
     my ($starttime,$endtime,$formname,$suffix,%datetitles) = @_;      my ($starttime,$endtime,$formname,$prefix,%datetitles) = @_;
     my ($perpetual,$table);      my ($perpetual,$table);
     my $startform = &Apache::lonhtmlcommon::date_setter($formname,'start'.$suffix,      my $startform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'start',
                                                         $starttime,'','','',1,'','','',1);                                                          $starttime,'','','',1,'','','',1);
     my $endform = &Apache::lonhtmlcommon::date_setter($formname,'end'.$suffix,      my $endform = &Apache::lonhtmlcommon::date_setter($formname,$prefix.'end',
                                                       $endtime,'','','',1,'','','',1);                                                        $endtime,'','','',1,'','','',1);
     if ($suffix eq 'access') {      if ($prefix eq 'access') {
         $perpetual = ' <span class="LC_nobreak"><label>'.          $perpetual = ' <span class="LC_nobreak"><label>'.
                      '<input type="checkbox" name="no_end_date" />'.                       '<input type="checkbox" name="no_end_date" />'.
                      &mt('No end date').'</label></span>';                       &mt('No end date').'</label></span>';
Line 879  sub print_personnel_menu { Line 1093  sub print_personnel_menu {
     my ($dom,$formname,$crstype) = @_;      my ($dom,$formname,$crstype) = @_;
     my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box();      my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box();
     my $persontotal = $env{'form.persontotal'};      my $persontotal = $env{'form.persontotal'};
     if (!defined($persontotal)) {      if ((!defined($persontotal)) || (!$persontotal)) {
         $persontotal = 1;          $persontotal = 1;
     }      }
     if ($env{'form.addperson'}) {      if ($env{'form.addperson'}) {
Line 965  sub print_personnel_menu { Line 1179  sub print_personnel_menu {
                                $existmult.'>'."\n".$existops.'</select>'.('&nbsp;' x3);                                 $existmult.'>'."\n".$existops.'</select>'.('&nbsp;' x3);
         }          }
         $sectionselector .= $newtitle.          $sectionselector .= $newtitle.
             '<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'.              '<input type="text" name="person_'.$i.'_newsec" size="15" value="" />'."\n";
             '<input type="hidden" name="person_'.$i.'_sections" value="" />'."\n";  
            
         $output .=           $output .= 
             &Apache::lonhtmlcommon::row_title(&mt('Additional Personnel').'<br />'.              &Apache::lonhtmlcommon::row_title(&mt('Additional Personnel').'<br />'.
                                               '<span class="LC_nobreak">'.$userlink.                                                '<span class="LC_nobreak">'.$userlink.
Line 992  sub print_personnel_menu { Line 1204  sub print_personnel_menu {
   
 sub print_request_status {  sub print_request_status {
     my ($dom) = @_;      my ($dom) = @_;
     my %requests = &Apache::lonnet::dumpstore('courserequests',$env{'user.domain'},      my %statusinfo = &Apache::lonnet::dump('courserequests',$env{'user.domain'},
                                               $env{'user.name'});                                             $env{'user.name'},'^status:'.$dom);
     my ($output,$formname,%queue_by_date);      my ($output,$formname,%queue_by_date,%typenames);
     foreach my $key (keys(%requests)) {      if ($env{'form.crstype'} eq 'any') {
         if (ref($requests{$key}) eq 'HASH') {          %typenames = &Apache::lonlocal::texthash (
             my ($cdom,$cnum) = split('_',$key);                                                     official   => 'Official course',
             next if ($cdom ne $dom);                                                     unofficial => 'Unofficial course',
             my $entry;                                                     community  => 'Community',
             my $timestamp = $requests{$key}{'timestamp'};                                                   );
             my $crstype = $requests{$key}{'crstype'};      }
             my $status = $requests{$key}{'status'};      foreach my $key (keys(%statusinfo)) {
             next unless (($env{'form.crstype'} eq 'all') ||           if (($statusinfo{$key} eq 'approval') || ($statusinfo{$key} eq 'pending')) { 
                          ($env{'form.crstype'} eq $crstype));              (undef,my($cdom,$cnum)) = split(':',$key);
             next unless (($status eq 'approval') || ($status eq 'pending'));              next if ($cdom ne $dom);   
             if (ref($requests{$key}{'details'}) eq 'HASH') {              my $requestkey = $cdom.'_'.$cnum;
                 $entry = $key.':'.$crstype.':'.$requests{$key}{'details'}{'cdescr'};              if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
                 if ($crstype eq 'official') {                  my %history = &Apache::lonnet::restore($requestkey,'courserequests',
                     $entry .= ':'.$requests{$key}{'details'}{'instcode'};                                                          $env{'user.domain'},$env{'user.name'});
                 }                  my $entry;
             }                  my $timestamp = $history{'reqtime'};
             if ($entry ne '') {                  my $crstype = $history{'crstype'};
                 if (exists($queue_by_date{$timestamp})) {                  my $disposition = $history{'disposition'};
                     if (ref($queue_by_date{$timestamp}) eq 'ARRAY') {                  next if ((exists($history{'status'})) && ($history{'status'} eq 'created'));
                         push(@{$queue_by_date{$timestamp}},$entry);                  next unless (($env{'form.crstype'} eq 'any') || 
                               ($env{'form.crstype'} eq $crstype));
                   next unless (($disposition eq 'approval') || 
                                ($disposition eq 'pending'));
                   if (ref($history{'details'}) eq 'HASH') {
                       $entry = $requestkey.':'.$crstype.':'.
                                &escape($history{'details'}{'cdescr'});
                       if ($crstype eq 'official') {
                           $entry .= ':'.&escape($history{'details'}{'instcode'}); 
                       }
                   }
                   if ($entry ne '') {
                       if (exists($queue_by_date{$timestamp})) {
                           if (ref($queue_by_date{$timestamp}) eq 'ARRAY') {
                               push(@{$queue_by_date{$timestamp}},$entry);
                           }
                       } else {
                           @{$queue_by_date{$timestamp}} = ($entry);
                     }                      }
                 } else {  
                     @{$queue_by_date{$timestamp}} = ($entry);  
                 }                  }
             }              }
         }          }
     }      }
     $formname = 'requestcrs';      $formname = 'requestcrs';
     my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date));      my @sortedtimes = sort {$a <=> $b} (keys(%queue_by_date));
     $output = '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'."\n".      $output = '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".
               '<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n".  
               '<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n".                '<input type="hidden" name="state" value="'.$env{'form.state'}.'" />'."\n".
               '<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n";                '<input type="hidden" name="crstype" value="'.$env{'form.crstype'}.'" />'."\n".
                 '<input type="hidden" name="showdom" value="" />'."\n".
                 '<input type="hidden" name="cnum" value="" />'."\n";
     if (@sortedtimes > 0) {      if (@sortedtimes > 0) {
         $output .= &Apache::loncommon::start_data_table().          $output .= &Apache::loncommon::start_data_table().
                    &Apache::loncommon::start_data_table_header_row().                     &Apache::loncommon::start_data_table_header_row().
                    '<th>'.&mt('Action').'</th>'.                     '<th>'.&mt('Action').'</th>'.
                    '<th>'.&mt('Description').'</th>';                     '<th>'.&mt('Course Description').'</th>'.
         if ($env{'form.crstype'} eq 'all') {                     '<th>'.&mt('Domain').'</th>';
           if ($env{'form.crstype'} eq 'any') {
             $output .= '<th>'.&mt('Type').'</th>';              $output .= '<th>'.&mt('Type').'</th>';
         }          }
         if (($env{'form.crstype'} eq 'all') || ($env{'form.crstype'} eq 'official')) {          if (($env{'form.crstype'} eq 'any') || ($env{'form.crstype'} eq 'official')) {
             $output .= '<th>'.&mt('Institutional Code').'</th>';              $output .= '<th>'.&mt('Institutional Code').'</th>';
         }          }
         $output .= '<th>'.&mt('Date requested').'</th>'.          $output .= '<th>'.&mt('Date requested').'</th>'.
Line 1050  sub print_request_status { Line 1280  sub print_request_status {
                     my ($key,$type,$desc,$instcode) = split(':',$request);                      my ($key,$type,$desc,$instcode) = split(':',$request);
                     my ($cdom,$cnum) = split('_',$key);                      my ($cdom,$cnum) = split('_',$key);
                     $output .= &Apache::loncommon::start_data_table_row().                      $output .= &Apache::loncommon::start_data_table_row().
      '<td><input type="button" value="'.&mt('Select').'" onclick="javascript:viewrequest('."'$cdom','$cnum'".')" /></td>'.       '<td><input type="button" value="'.&mt('Select').'" onclick="javascript:chooseRequest('."'$cdom','$cnum'".')" /></td>'.
      '<td>'.$desc.'</td>';       '<td>'.&unescape($desc).'</td>'.
                     if ($env{'form.crstype'} eq 'all') {       '<td>'.$cdom.'</td>';
                         $output .= '<td>'.&course_types($type).'</td>';                      if ($env{'form.crstype'} eq 'any') {
                           my $typename = $typenames{$type};
                           if ($typename eq '') {
                               $typename = &mt('Unknown type');
                           }
                           $output .= '<td>'.$typename.'</td>';
                     }                      }
                     if (($env{'form.crstype'} eq 'all') ||                       if (($env{'form.crstype'} eq 'any') || 
                         ($env{'form.crstype'} eq 'official')) {                          ($env{'form.crstype'} eq 'official')) {
                         $output .= '<td>'.$instcode.'</td>';                          my $showinstcode;
                           if ($type eq 'official') {
                               $showinstcode = &unescape($instcode);
                           } else {
                               $showinstcode = &mt('Not applicable');
                           }
                           $output .= '<td>'.$showinstcode.'</td>';
                     }                      }
                     $output .= '<td>'.$showtime.'</td>'.                      $output .= '<td>'.$showtime.'</td>'.
                                &Apache::loncommon::end_data_table_row();                                 &Apache::loncommon::end_data_table_row();
Line 1069  sub print_request_status { Line 1310  sub print_request_status {
         $output .= '<div>'.&mt('You have no matching course requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>';          $output .= '<div>'.&mt('You have no matching course requests awaiting approval by a Domain Coordinator or held in a queue pending administrative action at your institution.').'</div>';
     }      }
     $output .= '      $output .= '
 <input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" />  <br /><input type="button" name="prev" value="'.&mt('Back').'" onclick="javascript:backPage(document.'.$formname.",'crstype'".')" />
 </form>';  </form></div>';
     return $output;      return $output;
 }  }
   
   sub print_cancel_request {
       my ($dom,$cnum) = @_;
       my $requestkey = $dom.'_'.$cnum;
       my ($result,$output);
       if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
           my %history = &Apache::lonnet::restore($requestkey,'courserequests',
                                                  $env{'user.domain'},$env{'user.name'});
           my $timestamp = $history{'reqtime'};
           my $crstype = $history{'crstype'};
           my $status = $history{'status'};
           if (($status eq 'cancelled') || ($status eq 'created')) { 
               if ($status eq 'cancelled') {
                   $output = &mt('This request has already been cancelled.');
               } elsif ($status eq 'created') {
                   $output = &mt('This request has already been processed, and a course created.');
               }
               $output = &mt('No further action will be taken');
           } elsif (ref($history{'details'}) eq 'HASH') {
               my ($types,$typename) = &course_types();
               my $showtype = $crstype;
               if (defined($typename->{$crstype})) {
                   $showtype = $typename->{$crstype}; 
               }
               $output = '<p>'.&Apache::loncommon::start_data_table().
                         &Apache::loncommon::start_data_table_header_row().
                         '<th>'.&mt('Description').'</th><th>'.&mt('Requested').'</th>'.
                         '<th>'.&mt('Type').'</th>'.
                         &Apache::loncommon::end_data_table_header_row().
                         &Apache::loncommon::start_data_table_row().
                         '<td>'.$history{details}{'cdescr'}.'</td><td>'.
                         &Apache::lonlocal::locallocaltime($timestamp).'</td>'.
                         '<td>'.$showtype.'</td>'.
                         &Apache::loncommon::end_data_table_row().
                         &Apache::loncommon::end_data_table().
                         '<br /><div class="LC_warning">'.
                         &mt('Cancelling the request will remove it from the queue of pending course requests').'</div>';
               $result = 'ok';
           } else {
               $output = '<div class="LC_error">'.&mt('No record exists for the course ID').'</div>';
           }
       } else {
           $output = '<div class="LC_error">'.&mt('Invalid course ID').'</div>';
       }
       return ($result,$output);
   }
   
   sub viewrequest_javascript {
       my ($formname,$next) = @_;
       return <<"ENDJS";
   
   function chooseRequest(cdom,cnum) {
       document.$formname.showdom.value = cdom;
       document.$formname.cnum.value = cnum;
       nextPage(document.$formname,'$next');
   }
   
   ENDJS
   }
   
   sub viewdetails_javascript {
       my ($formname) = @_;
       return << "ENDJS";
   
   function nextPage(formname,nextstate) {
       if (nextstate == "modify") { 
           formname.state.value = "personnel";
           formname.action.value = "new";
       } else {
           formname.state.value = nextstate;
       }
       formname.submit();
   }
   
   function backPage(formname,prevstate) {
       formname.state.value = prevstate;
       formname.submit();
   }
   
   ENDJS
   }
   
   sub viewcancel_javascript {
       my $alert = &mt('Are you sure you want to cancel this request?\\n'.
                       'Your request will be removed.');
       return << "ENDJS";
   function nextPage(formname,nextstate) {
       if (confirm('$alert')) {
           formname.state.value = nextstate;
           formname.submit();
       }
       return;
   }
   
   ENDJS
   }
   
 sub print_request_logs {  sub print_request_logs {
     my ($jscript,$loaditems,$crumb) = @_;      my ($jscript,$loaditems,$crumb) = @_;
     return;      return;
 }  }
   
 sub print_review {  sub print_review {
     my ($formname,$dom,$codetitles,$cat_titles,$cat_order,$code_order) = @_;      my ($dom,$codetitles,$cat_titles,$cat_order,$code_order,$uname,$udom) = @_;
     my ($types,$typename) = &course_types();      my ($types,$typename) = &course_types();
     my ($owner,$ownername,$owneremail);      my ($owner,$ownername,$owneremail);
     $owner = $env{'user.name'}.':'.$env{'user.domain'};      if ($uname eq '' || $udom eq '') {
     $ownername = &Apache::loncommon::plainname($env{'user.name'},          $uname = $env{'user.name'};
                                                $env{'user.domain'},'first');          $udom = $env{'user.domain'};
     my %emails = &Apache::loncommon::getemails();      }
       $owner = $uname.':'.$udom;
       $ownername = &Apache::loncommon::plainname($uname,$udom,'first');
       my %emails = &Apache::loncommon::getemails($uname,$udom);
     foreach my $email ('permanentemail','critnotification','notification') {      foreach my $email ('permanentemail','critnotification','notification') {
         $owneremail = $emails{$email};          $owneremail = $emails{$email};
         last if ($owneremail ne '');          last if ($owneremail ne '');
Line 1100  sub print_review { Line 1440  sub print_review {
             $crstypename = $typename->{$env{'form.crstype'}};              $crstypename = $typename->{$env{'form.crstype'}};
         }          }
     }      }
       my $category = 'Course';
       if ($env{'form.crstype'} eq 'community') {
           $category = 'Community';
       }
   
     $inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>';      $inst_headers = '<th>'.&mt('Description').'</th><th>'.&mt('Type').'</th>';
     $inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>';      $inst_values = '<td>'.$env{'form.cdescr'}.'</td><td>'.$crstypename.'</td>';
   
       my $enrollrow_title = &mt('Default Access Dates').'<br />'.
                             '('.&Apache::lonnet::plaintext('st',$category).')';
     if ($env{'form.crstype'} eq 'official') {      if ($env{'form.crstype'} eq 'official') {
         if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) {          if ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH')) {
             foreach my $title (@{$codetitles}) {              foreach my $title (@{$codetitles}) {
Line 1120  sub print_review { Line 1466  sub print_review {
             }              }
         }          }
         if (&Apache::lonnet::auto_run('',$dom)) {          if (&Apache::lonnet::auto_run('',$dom)) {
               $enrollrow_title = &mt('Enrollment');
             $enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'.              $enroll_headers = '<th>'.&mt('Automatic Adds').'</th>'.
                               '<th>'.&mt('Automatic Drops').'</th>'.                                '<th>'.&mt('Automatic Drops').'</th>'.
                               '<th>'.&mt('Enrollment Starts').'</th>'.                                '<th>'.&mt('Enrollment Starts').'</th>'.
Line 1158  sub print_review { Line 1505  sub print_review {
                                &mt('Institutional course/section').'</th>'.                                 &mt('Institutional course/section').'</th>'.
                                '<th>'.&mt('LON-CAPA section').'</th></tr>';                                 '<th>'.&mt('LON-CAPA section').'</th></tr>';
             my $xlistinfo;              my $xlistinfo;
             if ($env{'form.crosslisttotal'}) {              my $crosslisttotal = $env{'form.crosslisttotal'};
                 for (my $i=0; $i<$env{'form.crosslisttotal'}; $i++) {              if (!$crosslisttotal) {
                     if ($env{'form.crosslist_'.$i}) {                  $crosslisttotal = 1;
                         $xlistinfo .= '<tr><td>';              }
                         if (ref($code_order) eq 'ARRAY') {              for (my $i=0; $i<$crosslisttotal; $i++) {
                             if (@{$code_order} > 0) {                  if ($env{'form.crosslist_'.$i}) {
                                 foreach my $item (@{$code_order}) {                      $xlistinfo .= '<tr><td>';
                                     $xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item};                      if (ref($code_order) eq 'ARRAY') {
                                 }                          if (@{$code_order} > 0) {
                               foreach my $item (@{$code_order}) {
                                   $xlistinfo .= $env{'form.crosslist_'.$i.'_'.$item};
                             }                              }
                         }                          }
                         $xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.'</td><td>';  
                         if ($env{'form.crosslist_'.$i.'_lcsec'}) {  
                             $xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'};  
                         } else {  
                             $xlistinfo .= &mt('None');  
                         }  
                         $xlistinfo .= '</td></tr>';  
                     }                      }
                       $xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'}.'</td><td>';
                       if ($env{'form.crosslist_'.$i.'_lcsec'}) {
                           $xlistinfo .= $env{'form.crosslist_'.$i.'_lcsec'};
                       } else {
                           $xlistinfo .= &mt('None');
                       }
                       $xlistinfo .= '</td></tr>';
                 }                  }
             }              }
             if ($xlistinfo eq '') {              if ($xlistinfo eq '') {
                 $xlistinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>';                  $xlistinfo = '<tr><td colspan="2">'.&mt('None').'</td></tr>';
             }              }
             $section_values .= $xlistinfo.'</table></td>';              $section_values .= $xlistinfo;
         }          }
           $section_values .= '</table></td>';
     }      }
   
     my %ctxt = &clone_text();      my %ctxt = &clone_text();
     $inst_headers .= '<th>'.&mt('Clone From').'</th>';      $inst_headers .= '<th>'.&mt('Clone From').'</th>';
     if (($env{'form.clonecrs'} =~ /^$match_name$/) &&       if (($env{'form.clonecrs'} =~ /^$match_name$/) && 
         ($env{'form.clonedom'} =~ /^$match_domain$/)) {          ($env{'form.clonedom'} =~ /^$match_domain$/)) {
         my %coursehash =           my $canclone = &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'},
             &Apache::lonnet::courseiddump($env{'form.clonedom'},'.',1,'.','.',                             $env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'});
                                           $env{'form.clonecrs'},undef,undef,'.');          if ($canclone) {
         my $cloneid = $env{'form.clonedom'}.'_'.$env{'form.clonecrs'};              my %courseenv = &Apache::lonnet::userenvironment($env{'form.clonedom'},
         if (ref($coursehash{$cloneid}) eq 'HASH') {                                $env{'form.clonecrs'},('description','internal.coursecode'));
             $inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>';              if (keys(%courseenv) > 0) {
             my $clonedesc = $coursehash{$cloneid}{'description'};                  $inst_headers .= '<th>'.$ctxt{'dsh'}.'</th>';
             my $cloneinst = $coursehash{$cloneid}{'inst_code'};                  $inst_values .= '<td>'.$courseenv{'description'}.'&nbsp;';
                   my $cloneinst = $courseenv{'internal.coursecode'};
             $inst_values .= '<td>'.$clonedesc.'&nbsp;';                  if ($cloneinst ne '') {
             if ($cloneinst ne '') {                      $inst_values .= $cloneinst.' '.&mt('in').' '.$env{'form.clonedom'};
                 $inst_values .= &mt('([_1] in [_2])',$cloneinst,$env{'form.clonedom'});                   } else {
             } else {                      $inst_values .= &mt('from').' '.$env{'form.clonedom'};
                 $inst_values .= &mt('(from [_1])',$env{'form.clonedom'});                  }
             }                  $inst_values .= '</td><td>';
             $inst_values .= '</td><td>';                  if ($env{'form.datemode'} eq 'preserve') {
             if ($env{'form.datemode'} eq 'preserve') {                      $inst_values .= $ctxt{'prd'}; 
                 $inst_values .= $ctxt{'pcd'};                   } elsif ($env{'form.datemode'} eq 'shift') {
             } elsif ($env{'form.datemode'} eq 'shift') {                      $inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'});
                 $inst_values .= &mt('Shift dates by [_1] days',$env{'form.dateshift'});                  } else {
             } else {                      $inst_values .= $ctxt{'ncd'};
                 $inst_values .= $ctxt{'ncd'};                  }
             }                  $inst_values .= '</td>';
             $inst_values .= '</td>';               } else {
         } else {                   $inst_values .= '<td>'.&mt('Unknown').'</td>';
             $inst_values .= '<td>'.&mt('Unknown').'</td>';               }
         }           } else {
                $inst_values .= '<td>'.&mt('Not permitted'),'</td>';
            }
     } else {      } else {
         $inst_values .= '<td>'.&mt('None').'</td>';          $inst_values .= '<td>'.&mt('None').'</td>';
     }      }
Line 1243  sub print_review { Line 1595  sub print_review {
                          '<td>'.&mt('None').'</td></tr>';                           '<td>'.&mt('None').'</td></tr>';
     for (my $i=0; $i<$env{'form.persontotal'}; $i++) {      for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
         if ($env{'form.person_'.$i.'_uname'} ne '') {          if ($env{'form.person_'.$i.'_uname'} ne '') {
               my @allsecs = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec');
               my $newsec = $env{'form.person_'.$i.'_newsec'};
               $newsec =~ s/^\s+//;
               $newsec =~s/\s+$//;
               my @newsecs = split(/[\s,;]+/,$newsec);
               foreach my $sec (@newsecs) {
                   next if ($sec =~ /\W/);
                   next if ($newsec eq 'none');
                   if ($sec ne '') {
                       unless (grep(/^\Q$sec\E$/,@allsecs)) {
                           push(@allsecs,$sec); 
                       }
                   }
               }
               my $showsec;
               if (@allsecs) {
                   $showsec = join(', ',@allsecs);
               }
               if ($showsec eq '') {
                   $showsec = &mt('None');
               }
               if ($env{'form.person_'.$i.'_role'} eq 'cc') {
                   $showsec = &mt('None');
               }
             $personnel_values .=               $personnel_values .= 
                 '<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '.                  '<tr><td>'.$env{'form.person_'.$i.'_firstname'}.' '.
                 $env{'form.person_'.$i.'_lastname'}.'</td>'.                  $env{'form.person_'.$i.'_lastname'}.'</td>'.
Line 1250  sub print_review { Line 1626  sub print_review {
                 $env{'form.person_'.$i.'_dom'}.'</td>'.                  $env{'form.person_'.$i.'_dom'}.'</td>'.
                 '<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'},                  '<td>'.&Apache::lonnet::plaintext($env{'form.person_'.$i.'_role'},
                                                   $container).'</td>'.                                                    $container).'</td>'.
                 '<td>'.$env{'form.person_'.$i.'_sections'}.'</td></tr>';                  '<td>'.$showsec.'</td></tr>';
         }          }
     }      }
     my $output =  '<p>'.&mt('Review the details of the course request before submission.').'</p>'.        my $output =  
                   '<div>'.&Apache::lonhtmlcommon::start_pick_box().                    '<div>'.&Apache::lonhtmlcommon::start_pick_box().
                   &Apache::lonhtmlcommon::row_title(&mt('Owner')).                    &Apache::lonhtmlcommon::row_title(&mt('Owner')).
                   '<table class="LC_innerpickbox"><tr>'.                    '<table class="LC_innerpickbox"><tr>'.
Line 1269  sub print_review { Line 1645  sub print_review {
                   '<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n".                    '<table class="LC_innerpickbox"><tr>'.$inst_headers.'</tr>'."\n".
                   '<tr>'.$inst_values.'</tr></table>'."\n".                    '<tr>'.$inst_values.'</tr></table>'."\n".
                   &Apache::lonhtmlcommon::row_closure().                    &Apache::lonhtmlcommon::row_closure().
                   &Apache::lonhtmlcommon::row_title(&mt('Enrollment')).                    &Apache::lonhtmlcommon::row_title($enrollrow_title).
                   '<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n".                    '<table class="LC_innerpickbox"><tr>'.$enroll_headers.'</tr>'."\n".
                   '<tr>'.$enroll_values.'</tr></table>'."\n".                    '<tr>'.$enroll_values.'</tr></table>'."\n".
                   &Apache::lonhtmlcommon::row_closure();                    &Apache::lonhtmlcommon::row_closure();
Line 1283  sub print_review { Line 1659  sub print_review {
                '<table class="LC_innerpickbox"><tr>'.$personnel_headers.'</tr>'."\n".                 '<table class="LC_innerpickbox"><tr>'.$personnel_headers.'</tr>'."\n".
                $personnel_values.'</table>'."\n".                 $personnel_values.'</table>'."\n".
                &Apache::lonhtmlcommon::row_closure(1).                 &Apache::lonhtmlcommon::row_closure(1).
                &Apache::lonhtmlcommon::end_pick_box();                 &Apache::lonhtmlcommon::end_pick_box().'</div>';
     my $cnum = &Apache::lonnet::generate_coursenum($dom);  
     $output .= '<input type="hidden" name="cnum" value="'.$cnum.'" />';  
     return $output;      return $output;
 }  }
   
Line 1302  sub dates_from_form { Line 1676  sub dates_from_form {
 }  }
   
 sub courseinfo_form {  sub courseinfo_form {
     my ($dom,$formname,$crstype) = @_;      my ($dom,$formname,$crstype,$next) = @_;
     my $output = '<div>'.&Apache::lonhtmlcommon::start_pick_box().      my $nodescr = &mt('You must provide a (brief) course description.');
                  &Apache::lonhtmlcommon::row_title('Course Description').      my $js_validate = <<"ENDJS";
   <script type="text/javascript">
   // <![CDATA['
   
   function validateForm() {
       if ((document.$formname.cdescr.value == "")  || (document.$formname.cdescr.value == "undefined")) {
           alert('$nodescr');
           return;
       }
       nextPage(document.$formname,'$next');
   }
   // ]]
   </script>
   
   ENDJS
   
       my $output .= $js_validate."\n".'<div>'.&Apache::lonhtmlcommon::start_pick_box().
                     &Apache::lonhtmlcommon::row_title('Course Description').
                  '<input type="text" size="40" name="cdescr" />';                   '<input type="text" size="40" name="cdescr" />';
     my ($home_server_pick,$numlib) =      my ($home_server_pick,$numlib) =
         &Apache::loncommon::home_server_form_item($dom,'chome',          &Apache::loncommon::home_server_form_item($dom,'chome',
                                                   'default','hide');                                                    'default','hide');
     if ($numlib > 1) {      if ($numlib > 1) {
         $output .= &Apache::lonhtmlcommon::row_closure().          $output .= &Apache::lonhtmlcommon::row_closure().
                    &Apache::lonhtmlcommon::row_title(                     &Apache::lonhtmlcommon::row_title(&mt('Home Server for Course'));
                        &mt('Home Server for Course'));  
     }      }
     $output .= $home_server_pick.      $output .= $home_server_pick.
                &Apache::lonhtmlcommon::row_closure(1).                 &Apache::lonhtmlcommon::row_closure(1).
Line 1351  sub clone_form { Line 1741  sub clone_form {
     return $output;      return $output;
 }  }
   
 sub clone_text {   sub clone_text {
     return &Apache::lonlocal::texthash(      return &Apache::lonlocal::texthash(
                'cid'  => 'Course ID',                 'cid'  => 'Course ID',
                'dmn'  => 'Domain',                 'dmn'  => 'Domain',
Line 1451  sub coursecode_form { Line 1841  sub coursecode_form {
   
 sub get_course_dom {  sub get_course_dom {
     my $codedom = &Apache::lonnet::default_login_domain();      my $codedom = &Apache::lonnet::default_login_domain();
       if ($env{'form.showdom'} ne '') {
           if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {
               return $env{'form.showdom'};
           }
       }
     if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) {      if (($env{'user.domain'} ne '') && ($env{'user.domain'} ne 'public')) {
           my ($types,$typename) = &course_types();
           if (ref($types) eq 'ARRAY') {
               foreach my $type (@{$types}) {
                   if (&Apache::lonnet::usertools_access($env{'user.name'},
                                                         $env{'user.domain'},$type,
                                                         undef,'requestcourses')) {
                       return $env{'user.domain'};
                   }
               }
               my @possible_doms;
               foreach my $type (@{$types}) {
                   my $dom_str = $env{'environment.reqcrsotherdom.'.$type};
                   if ($dom_str ne '') {
                       my @domains = split(',',$dom_str);
                       foreach my $entry (@domains) {
                           my ($extdom,$extopt) = split(':',$entry);
                           if ($extdom eq $env{'request.role.domain'}) {
                               return $extdom;
                           } 
                           unless(grep(/^\Q$extdom\E$/,@possible_doms)) {
                               push(@possible_doms,$extdom);
                           }
                       }
                   }
               }
               if (@possible_doms) {
                   @possible_doms = sort(@possible_doms);
                   return $possible_doms[0];
               }
           }
         $codedom = $env{'user.domain'};          $codedom = $env{'user.domain'};
         if ($env{'request.role.domain'} ne '') {          if ($env{'request.role.domain'} ne '') {
             $codedom = $env{'request.role.domain'};              $codedom = $env{'request.role.domain'};
         }          }
     }      }
     if ($env{'form.showdom'} ne '') {  
         if (&Apache::lonnet::domain($env{'form.showdom'}) ne '') {  
             $codedom = $env{'form.showdom'};  
         }  
     }  
     return $codedom;      return $codedom;
 }  }
   
 sub display_navbuttons {  sub display_navbuttons {
     my ($r,$formname,$prev,$prevtext,$next,$nexttext) = @_;      my ($r,$formname,$prev,$prevtext,$next,$nexttext,$state,$other,$othertext) = @_;
     $r->print('<div class="LC_navbuttons">');      $r->print('<div class="LC_navbuttons">');
     if ($prev) {      if ($prev) {
         $r->print('          $r->print('<input type="button" name="previous" value = "'.$prevtext.'" '.
       <input type="button" name="previous" value = "'.$prevtext.'"                    'onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/>'.
     onclick="javascript:backPage(document.'.$formname.','."'".$prev."'".')"/>                    ('&nbsp;'x3));
    &nbsp;&nbsp;&nbsp;');  
     } elsif ($prevtext) {      } elsif ($prevtext) {
         $r->print('          $r->print('<input type="button" name="previous" value = "'.$prevtext.'" '.
       <input type="button" name="previous" value = "'.$prevtext.'"                    'onclick="javascript:history.back()"/>'.('&nbsp;'x3));
     onclick="javascript:history.back()"/>  
    &nbsp;&nbsp;&nbsp;');  
     }      }
     if ($next) {      if ($state eq 'details') {
           $r->print(' <input type="button" name="other" value="'.$othertext.'" '.
                     'onclick="javascript:nextPage(document.'.$formname.','."'".$other."'".
                     ')" />');
       }
       if ($state eq 'courseinfo') {
           $r->print('<input type="button" name="next" value="'.$nexttext.'" '.
                     'onclick="javascript:validateForm();" />');
       } elsif ($next) {
         $r->print('          $r->print('
       <input type="button" name="next" value="'.$nexttext.'"        <input type="button" name="next" value="'.$nexttext.'" '.
  onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />');        'onclick="javascript:nextPage(document.'.$formname.','."'".$next."'".')" />');
     }      }
     $r->print('</div>');      $r->print('</div>');
 }  }
Line 1491  sub print_request_outcome { Line 1916  sub print_request_outcome {
     my ($dom,$codetitles,$code_order) = @_;      my ($dom,$codetitles,$code_order) = @_;
     my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend,      my ($output,$cnum,$now,$req_notifylist,$crstype,$enrollstart,$enrollend,
         %sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig,);          %sections,%crosslistings,%personnel,@baduname,@missingdom,%domconfig,);
       my $sectotal = $env{'form.sectotal'};
       my $crosslisttotal = 0;
     $cnum = $env{'form.cnum'};      $cnum = $env{'form.cnum'};
     unless ($cnum =~ /^$match_courseid$/) {      unless ($cnum =~ /^$match_courseid$/) {
         $output = &mt('Invalid LON-CAPA course number for the new course')."\n";           $output = &mt('Invalid LON-CAPA course number for the new course')."\n"; 
Line 1505  sub print_request_outcome { Line 1932  sub print_request_outcome {
     }      }
     $now = time;      $now = time;
     $crstype = $env{'form.crstype'};      $crstype = $env{'form.crstype'};
       my @instsections;
     if ($crstype eq 'official') {      if ($crstype eq 'official') {
         if (&Apache::lonnet::auto_run('',$dom)) {          if (&Apache::lonnet::auto_run('',$dom)) {
             ($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend');              ($enrollstart,$enrollend)=&dates_from_form('enrollstart','enrollend');
Line 1512  sub print_request_outcome { Line 1940  sub print_request_outcome {
         for (my $i=0; $i<$env{'form.sectotal'}; $i++) {          for (my $i=0; $i<$env{'form.sectotal'}; $i++) {
             if ($env{'form.sec_'.$i}) {              if ($env{'form.sec_'.$i}) {
                 if ($env{'form.secnum_'.$i} ne '') {                  if ($env{'form.secnum_'.$i} ne '') {
                     $sections{$i}{'inst'} = $env{'form.secnum_'.$i};                      my $sec = $env{'form.secnum_'.$i};
                       $sections{$i}{'inst'} = $sec;
                       if (($sec ne '') && (!grep(/^\Q$sec\E$/,@instsections))) {
                           push(@instsections,$sec);
                       }
                     $sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i};                      $sections{$i}{'loncapa'} = $env{'form.loncapasec_'.$i};
                 }                  }
             }              }
Line 1527  sub print_request_outcome { Line 1959  sub print_request_outcome {
                         }                          }
                     }                      }
                 }                  }
                 $xlistinfo .= $env{'form.crosslist_'.$i.'_instsec'};                  $crosslistings{$i}{'instcode'} = $xlistinfo;
                 $crosslistings{$i}{'inst'} = $xlistinfo;                  if ($xlistinfo ne '') {
                       $crosslisttotal ++;
                   }
                   $crosslistings{$i}{'instsec'} = $env{'form.crosslist_'.$i.'_instsec'}; 
                 $crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'};                  $crosslistings{$i}{'loncapa'} = $env{'form.crosslist_'.$i.'_lcsec'};
             }              }
         }          }
       } else {
           $enrollstart = '';
           $enrollend = '';
     }      }
   
     for (my $i=0; $i<$env{'form.persontotal'}; $i++) {      for (my $i=0; $i<$env{'form.persontotal'}; $i++) {
         my $uname = $env{'form.person_'.$i.'_uname'};          my $uname = $env{'form.person_'.$i.'_uname'};
         my $udom = $env{'form.person_'.$i.'_uname'};          my $udom = $env{'form.person_'.$i.'_dom'};
         if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) {          if (($uname =~ /^$match_username$/) && ($udom =~ /^$match_domain$/)) {
             if (&Apache::lonnet::domain($udom) ne '') {              if (&Apache::lonnet::domain($udom) ne '') {
                 unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') {                  unless (ref($personnel{$uname.':'.$udom}) eq 'HASH') {
Line 1548  sub print_request_outcome { Line 1985  sub print_request_outcome {
                 }                  }
                 my $role = $env{'form.person_'.$i.'_role'};                  my $role = $env{'form.person_'.$i.'_role'};
                 unless ($role eq '') {                  unless ($role eq '') {
                     if (ref(@{$personnel{$uname.':'.$udom}{'roles'}}) eq 'ARRAY') {                      if (ref($personnel{$uname.':'.$udom}{'roles'}) eq 'ARRAY') {
                         my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}};                          my @curr_roles = @{$personnel{$uname.':'.$udom}{'roles'}};
                         unless (grep(/^\Q$role\E$/,@curr_roles)) {                          unless (grep(/^\Q$role\E$/,@curr_roles)) {
                             push(@{$personnel{$uname.':'.$udom}{'roles'}},$role);                              push(@{$personnel{$uname.':'.$udom}{'roles'}},$role);
Line 1559  sub print_request_outcome { Line 1996  sub print_request_outcome {
                     if ($role eq 'cc') {                      if ($role eq 'cc') {
                         @{$personnel{$uname.':'.$udom}{$role}{'usec'}} = ();                          @{$personnel{$uname.':'.$udom}{$role}{'usec'}} = ();
                     } else {                      } else {
                         my @currsec;                          my @currsec = &Apache::loncommon::get_env_multiple('form.person_'.$i.'_sec');
                         if ($env{'form.person_'.$i.'_sections'} ne '') {                          my $newsec = $env{'form.person_'.$i.'_newsec'};
                             my @sections = split(',',$env{'form.person_'.$i.'_sections'});                          $newsec =~ s/^\s+//;
                             foreach my $sec (@sections) {                          $newsec =~s/\s+$//;
                                 next if ($sec eq '');                          my @newsecs = split(/[\s,;]+/,$newsec);
                                 if (@currsec > 0) {                          foreach my $sec (@newsecs) {
                                     unless(grep(/^\Q$sec\E$/,@currsec)) {                              next if ($sec =~ /\W/);
                                         push(@currsec,$sec);                              next if ($newsec eq 'none');
                                     }                              if ($sec ne '') {
                                   unless (grep(/^\Q$sec\E$/,@currsec)) {
                                       push(@currsec,$sec);
                                 }                                  }
                             }                              }
                         }                          }
Line 1582  sub print_request_outcome { Line 2021  sub print_request_outcome {
         }          }
     }      }
     my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend');      my ($accessstart,$accessend) = &dates_from_form('accessstart','accessend');
       my $autodrops = 0;
       if ($env{'form.autodrops'}) {
           $autodrops = $env{'form.autodrops'}; 
       }
       my $autoadds = 0;
       if ($env{'form.autoadds'}) {
           $autodrops = $env{'form.autoadds'};
       }
       if ($env{'form.autoadds'}) {
           $autodrops = $env{'form.autoadds'};
       }
       my $instcode = '';
       if (exists($env{'form.instcode'})) {
           $instcode = $env{'form.instcode'};
       }
       my $clonecrs = '';
       my $clonedom = '';
       if (($env{'form.clonecrs'} =~ /^($match_courseid)$/) && 
           ($env{'form.clonedom'} =~ /^($match_domain)$/)) {
           my $clonehome = &Apache::lonnet::homeserver($env{'form.clonecrs'},
                                                       $env{'form.clonedom'});
           if ($clonehome ne 'no_host') {  
               my $canclone =  
                   &Apache::loncoursequeueadmin::can_clone_course($env{'user.name'},
                           $env{'user.domain'},$env{'form.clonecrs'}, $env{'form.clonedom'});
               if ($canclone) {
                   $clonecrs = $env{'form.clonecrs'};
                   $clonedom = $env{'form.clonedom'};
               }
           }
       }
     my $details = {      my $details = {
                     owner          => $env{'user.name'},                      owner          => $env{'user.name'},
                     domain         => $env{'user.domain'},                       domain         => $env{'user.domain'}, 
Line 1590  sub print_request_outcome { Line 2060  sub print_request_outcome {
                     coursehome     => $env{'form.chome'},                      coursehome     => $env{'form.chome'},
                     cdescr         => $env{'form.cdescr'},                      cdescr         => $env{'form.cdescr'},
                     crstype        => $env{'form.crstype'},                      crstype        => $env{'form.crstype'},
                     instcode       => $env{'form.instcode'},                      instcode       => $instcode,
                     clonedom       => $env{'form.clonedom'},                      clonedom       => $clonedom,
                     clonecrs       => $env{'form.clonecrs'},                      clonecrs       => $clonecrs,
                     datemode       => $env{'form.datemode'},                      datemode       => $env{'form.datemode'},
                     dateshift      => $env{'form.datshift'},                      dateshift      => $env{'form.dateshift'},
                     sectotal       => $env{'form.sectotal'},                      sectotal       => $sectotal,
                     sections       => \%sections,                      sections       => \%sections,
                     crosslisttotal => $env{'form.crosslisttotal'},                      crosslisttotal => $crosslisttotal,
                     crosslists     => \%crosslistings,                      crosslists     => \%crosslistings,
                     autoadds       => $env{'form.autoadds'},                      autoadds       => $autoadds,
                     autodrops      => $env{'form.autodrops'},                      autodrops      => $autodrops,
                     enrollstart    => $enrollstart,                      enrollstart    => $enrollstart,
                     enrollend      => $enrollend,                      enrollend      => $enrollend,
                     accessstart    => $accessstart,                      accessstart    => $accessstart,
Line 1611  sub print_request_outcome { Line 2081  sub print_request_outcome {
     my $val = &get_processtype($dom,$crstype,\@inststatuses,\%domconfig);      my $val = &get_processtype($dom,$crstype,\@inststatuses,\%domconfig);
     if ($val eq '') {      if ($val eq '') {
         if ($crstype eq 'official') {          if ($crstype eq 'official') {
             $output = &mt('You are not permitted to request creation of official courses');              $output = &mt('You are not permitted to request creation of official courses.');
         } elsif ($crstype eq 'unofficial') {          } elsif ($crstype eq 'unofficial') {
             $output = &mt('You are not permitted to request creation of unofficial courses');              $output = &mt('You are not permitted to request creation of unofficial courses.');
         } elsif ($crstype eq 'community') {          } elsif ($crstype eq 'community') {
             $output = &mt('You are not permitted to request creation of communities');              $output = &mt('You are not permitted to request creation of communities');
         } else {          } else {
             $output = &mt('Unrecognized course type: [_1]',$crstype);              $output = &mt('Unrecognized course type: [_1]',$crstype);
         }          }
     } else {      } else {
         my ($disposition,$message);          my ($disposition,$message,$reqstatus);
         my %reqhash = (          my %reqhash = (
                         timestamp => $now,                          reqtime   => $now,
                         crstype   => $crstype,                          crstype   => $crstype,
                         details   => $details,                          details   => $details,
                       );                        );
         my $requestkey = $dom.'_'.$cnum;          my $requestkey = $dom.'_'.$cnum;
           my $validationerror;
         if ($val eq 'autolimit=') {          if ($val eq 'autolimit=') {
             $disposition = 'process';              $disposition = 'process';
         } elsif ($val =~ /^autolimit=(\d+)$/) {          } elsif ($val =~ /^autolimit=(\d+)$/) {
Line 1634  sub print_request_outcome { Line 2105  sub print_request_outcome {
             $disposition = &check_autolimit($env{'user.name'},$env{'user.domain'},              $disposition = &check_autolimit($env{'user.name'},$env{'user.domain'},
                                             $dom,$crstype,$limit,\$message);                                              $dom,$crstype,$limit,\$message);
         } elsif ($val eq 'validate') {          } elsif ($val eq 'validate') {
             $disposition =              my ($inststatuslist,$validationchk,$validation);
                 &Apache::lonnet::auto_courserequest_validation($dom,$details,              if (@inststatuses > 0) {
                                                               \@inststatuses,\$message);                  $inststatuslist = join(',',@inststatuses);
               }
               my $instseclist;
               if (@instsections > 0) {
                   $instseclist = join(',',@instsections);
               }
               $validationchk = 
                   &Apache::lonnet::auto_courserequest_validation($dom,
                       $env{'user.name'}.':'.$env{'user.domain'},$crstype,
                       $inststatuslist,$instcode,$instseclist);
               if ($validationchk =~ /:/) {
                   ($validation,$message) = split(':',$validationchk);
               } else {
                   $validation = $validationchk;
               }
               if ($validation =~ /^error(.*)$/) {
                   $disposition = 'approval';
                   $validationerror = $1;
               } else {
                   $disposition = $validation;
               }
         } else {          } else {
             $disposition = 'approval';              $disposition = 'approval';
         }          }
         $reqhash{'status'} = $disposition;          $reqhash{'disposition'} = $disposition;
           $reqstatus = $disposition;
           my ($modified,$queued);
         if ($disposition eq 'rejected') {          if ($disposition eq 'rejected') {
             $output = &mt('Your course request was rejected.');              $output = &mt('Your course request was rejected.');
             if ($message) {              if ($message) {
                 $output .= '<div class="LC_warning">'.$message.'</div>';                  $output .= '<div class="LC_warning">'.$message.'</div>';
             }              }
         } elsif ($disposition eq 'process') {          } elsif ($disposition eq 'process') {
               my %domdefs = &Apache::lonnet::get_domain_defaults($dom);
               my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles);
               my @roles = &Apache::lonuserutils::roles_by_context('course');
             my $type = 'Course';              my $type = 'Course';
             if ($crstype eq 'community') {              if ($crstype eq 'community') {
                 $type = 'Community';                  $type = 'Community';
             }              }
             my %domdefs = &Apache::lonnet::get_domain_defaults($dom);  
             my ($logmsg,$newusermsg,$addresult,$enrollcount,$response,$keysmsg,%longroles);  
             my @roles = &Apache::lonuserutils::roles_by_context('course');  
             foreach my $role (@roles) {              foreach my $role (@roles) {
                 $longroles{$role}=&Apache::lonnet::plaintext($role,$type);                  $longroles{$role}=&Apache::lonnet::plaintext($role,$type);
             }              }
             my $owneremail;              my $result = &Apache::loncoursequeueadmin::course_creation($dom,$cnum,
             my %emails = &Apache::loncommon::getemails();                                     'autocreate',$details,\$logmsg,\$newusermsg,\$addresult,
             foreach my $email ('permanentemail','critnotification','notification') {                                     \$enrollcount,\$response,\$keysmsg,\%domdefs,\%longroles);
                 $owneremail = $emails{$email};              if ($result eq 'created') {
                 last if ($owneremail ne '');  
             }  
             my %reqdetails = &build_batchcreatehash($dom,$details,$owneremail,\%domdefs);  
             my $cid = &LONCAPA::batchcreatecourse::build_course($dom,$cnum,'requestcourses',\%reqdetails,\%longroles,\$logmsg,\$newusermsg,\$addresult,\$enrollcount,\$output,\$keysmsg,$env{'user.domain'},$env{'user.name'},$cnum,$crstype);  
             $disposition = 'created';  
             if ($cid eq "/$dom/$cnum") {  
                 $disposition = 'created';                  $disposition = 'created';
                 $output = &mt('Your course request has been processed and the course has been created.').'<br />'.&mt('You will need to logout and log-in again to be able to select a role in the course.');                  $reqstatus = 'created';
                   $output = &mt('Your course request has been processed and the course has been created.').
                             '<br />'.
                             &mt('You will need to logout and log-in again to be able to select a role in the course.');
             } else {              } else {
                 $output = &mt('An error occurred when processing your course request.').'<br />'.&mt('You may want to review the request details and submit the request again.');                  $output = '<span class="LC_error">'.
                             &mt('An error occurred when processing your course request.').
                             '<br />'.
                             &mt('You may want to review the request details and submit the request again.').
                             '</span>';
             }              }
         } else {          } else {
             my $requestid = $cnum.'_'.$disposition;              my $requestid = $cnum.'_'.$disposition;
Line 1683  sub print_request_outcome { Line 2177  sub print_request_outcome {
                                             description => $env{'form.cdescr'},                                               description => $env{'form.cdescr'}, 
                                           },                                            },
                           };                            };
             my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request,              my $statuskey = 'status:'.$dom.':'.$cnum;
                                                         $dom);              my %userreqhash = &Apache::lonnet::get('courserequests',[$statuskey],
             if ($putresult eq 'ok') {                                                     $env{'user.domain'},$env{'user.name'});
                 my %emails = &Apache::loncommon::getemails();              if ($userreqhash{$statuskey} ne '') {
                 my $address;                  $modified = 1;
                 if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) {                  my $uname = &Apache::lonnet::get_domainconfiguser($dom);
                     $address = $emails{'permanentemail'};                  my %queuehash = &Apache::lonnet::get('courserequestqueue',
                     if ($address eq '') {                                                       [$cnum.'_approval',
                         $address = $emails{'notification'};                                                        $cnum.'_pending'],$dom,$uname);
                     }                  if (($queuehash{$cnum.'_approval'} ne '') || 
                 }                      ($queuehash{$cnum.'_pending'} ne '')) {
                 $output = &mt('Your course request has been recorded.').'<br />';                      $queued = 1;
                 if ($disposition eq 'approval') {                  }
                     $output .= &mt('Your course request has been recorded.').'<br />'.              }
                               &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'.              unless ($queued) {
                               &mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />';                  my $putresult = &Apache::lonnet::newput_dom('courserequestqueue',$request,
                     if ($address ne '') {                                                                   $dom);
                         $output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />';                  if ($putresult eq 'ok') {
                     }                      $output = &mt('Your course request has been recorded.').'<br />'.
                     if ($req_notifylist) {                                &notification_information($disposition,$req_notifylist,
                         my $fullname = &Apache::loncommon::plainname($env{'user.name'},                                                          $cnum,$now);
                                                                      $env{'user.domain'});  
                         &Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,$fullname,$now,$dom,$details);  
                     }  
                 } else {                  } else {
                     $output .= '<div class="LC_info">'.                      $reqstatus = 'domainerror';
 &mt('Your request has been placed in a queue pending administrative action.').'<br />'.                      $reqhash{'disposition'} = $disposition;
 &mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'.                      my $warning = &mt('An error occurred saving your request in the pending requests queue.');
 &mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.').                      $output = '<span class"LC_warning">'.$warning.'</span><br />';
                                '</div>';  
                 }                  }
             } else {  
                 $reqhash{'status'} = 'domainerror';  
                 $reqhash{'disposition'} = $disposition;  
                 my $warning = &mt('An error occurred saving your request in the pending requests queue.');  
                 $output = '<span class"LC_warning">'.$warning.'</span><br />';  
                   
             }              }
         }          }
         my $storeresult;          my ($storeresult,$statusresult);
         if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {          if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
             $storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey,              $storeresult = &Apache::lonnet::store_userdata(\%reqhash,$requestkey,
                                                            'courserequests');                                                             'courserequests');
               if ($storeresult eq 'ok') {
                   my %status = (
                                    'status:'.$dom.':'.$cnum => $reqstatus,
                                );
                   $statusresult = &Apache::lonnet::put('courserequests',\%status); 
               }
         } else {          } else {
             $storeresult = 'error: invalid requestkey format';               $storeresult = 'error: invalid requestkey format'; 
         }          }
         if ($storeresult ne 'ok') {          if ($storeresult ne 'ok') {
             $output .=  '<span class="LC_warning">'.&mt('An error occurred saving a record of the details of your request: [_1].',$storeresult).'</span><br />';              $output .=  '<span class="LC_warning">'.&mt('An error occurred saving a record of the details of your request: [_1].',$storeresult).'</span><br />';
             &Apache::lonnet::logthis("Error saving course request - $requestkey for $env{'user.name'}:$env{'user.domain'} - $storeresult");              &Apache::lonnet::logthis("Error saving course request - $requestkey for $env{'user.name'}:$env{'user.domain'} - $storeresult");
           } elsif ($statusresult ne 'ok') {
                $output .=  '<span class="LC_warning">'.&mt('An error occurred saving a record of the status of your request: [_1].',$statusresult).'</span><br />';
               &Apache::lonnet::logthis("Error saving course request status for  $requestkey (for $env{'user.name'}:$env{'user.domain'}) - $statusresult");
           }
           if ($modified && $queued && $storeresult eq 'ok') {
               $output .= '<p>'.&mt('Your course request has been updated').'</p>'.
                          &notification_information($disposition,$req_notifylist,$cnum,$now);
           }
           if ($validationerror ne '') {
               $output .= '<span class="LC_warning">'.&mt('An error occurred validating your request with institutional data sources: [_1].',$validationerror).'</p>';
           }
       }
       return $output;
   }
   
   sub notification_information {
       my ($disposition,$req_notifylist,$cnum,$now) = @_;
       my %emails = &Apache::loncommon::getemails();
       my $address;
       if (($emails{'permanentemail'} ne '') || ($emails{'notification'} ne '')) {
           $address = $emails{'permanentemail'};
           if ($address eq '') {
               $address = $emails{'notification'};
           }
       }
       my $output;
       if ($disposition eq 'approval') {
           $output .= &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'.
                      &mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />';
           if ($address ne '') {
               $output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />';
           }
           if ($req_notifylist) {
               my $fullname = &Apache::loncommon::plainname($env{'user.name'},
                                                                        $env{'user.domain'});
               my $sender = $env{'user.name'}.':'.$env{'user.domain'};
               &Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,"$fullname ($env{'user.name'}:$env{'user.domain'})",$cnum,$env{'form.cdescr'},$now,'coursereq',$sender);
         }          }
       } elsif ($disposition eq 'pending') {
           $output .= '<div class="LC_info">'.
   &mt('Your request has been placed in a queue pending administrative action.').'<br />'.
   &mt("Usually this means that your institution's information systems do not list you among the instructional personnel for this course.").'<br />'.
   &mt('The list of instructional personnel for the course will be automatically checked daily, and once you are listed the request will be processed.').
                      '</div>';
       } else {
           $output .= '<div class="LC_warning">'.
                      &mt('Your request status is: [_1].',$disposition). 
                      '</div>'
     }      }
     return $output;      return $output;
 }  }
Line 1741  sub get_processtype { Line 2278  sub get_processtype {
     my ($dom,$crstype,$inststatuses,$domconfig) = @_;      my ($dom,$crstype,$inststatuses,$domconfig) = @_;
     return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH'));      return unless ((ref($inststatuses) eq 'ARRAY') && (ref($domconfig) eq 'HASH'));
     my (%userenv,%settings,$val);      my (%userenv,%settings,$val);
     my @options = ('autolimit','validate','approve');      my @options = ('autolimit','validate','approval');
     if ($dom eq $env{'user.domain'}) {      if ($dom eq $env{'user.domain'}) {
         %userenv =           %userenv = 
             &Apache::lonnet::userenvironment($env{'user.domain'},$env{'user.name'},              &Apache::lonnet::userenvironment($env{'user.domain'},$env{'user.name'},
Line 1754  sub get_processtype { Line 2291  sub get_processtype {
             if (ref($domconfig->{'requestcourses'}) eq 'HASH') {              if (ref($domconfig->{'requestcourses'}) eq 'HASH') {
                 %settings = %{$domconfig->{'requestcourses'}};                  %settings = %{$domconfig->{'requestcourses'}};
                 if (ref($settings{$crstype}) eq 'HASH') {                  if (ref($settings{$crstype}) eq 'HASH') {
                     if (($env{'user.adv'}) && (exists($settings{$crstype}{'_LC_adv'}))) {                      if (($env{'user.adv'}) && ($settings{$crstype}{'_LC_adv'} ne '')) {
                         $val = $settings{$crstype}{'_LC_adv'};                          $val = $settings{$crstype}{'_LC_adv'};
                         @{$inststatuses} = ('_LC_adv_');                          @{$inststatuses} = ('_LC_adv_');
                     } else {                      } else {
Line 1807  sub get_processtype { Line 2344  sub get_processtype {
     } else {      } else {
         %userenv = &Apache::lonnet::userenvironment($env{'user.domain'},          %userenv = &Apache::lonnet::userenvironment($env{'user.domain'},
                       $env{'user.name'},'reqcrsotherdom.'.$env{'form.crstype'});                        $env{'user.name'},'reqcrsotherdom.'.$env{'form.crstype'});
         if ($userenv{'reqcrsotherdom'}) {          if ($userenv{'reqcrsotherdom.'.$crstype}) {
             my @doms = split(',',$userenv{'reqcrsotherdom'});              my @doms = split(',',$userenv{'reqcrsotherdom.'.$crstype});
             my $optregex = join('|',@options);               my $optregex = join('|',@options);
             if (grep(/^\Q$dom\E:($optregex=?\d*)/,@doms)) {              foreach my $item (@doms) {
                 $val = $1;                  my ($extdom,$extopt) = split(':',$item);
                   if ($extdom eq $dom) {  
                       if ($extopt =~ /^($optregex)(=?\d*)$/) {
                           $val = $1.$2;
                       }
                       last;
                   }
             }              }
             @{$inststatuses} = ('_external_');              @{$inststatuses} = ('_external_');
         }          }
Line 1853  sub check_autolimit { Line 2396  sub check_autolimit {
     return;      return;
 }  }
   
 sub build_batchcreatehash {  sub retrieve_settings {
     my ($dom,$details,$owneremail,$domdefs) = @_;      my ($dom,$cnum,$udom,$uname) = @_;
     my %batchhash;      if ($udom eq '' || $uname eq '') {
     my @items = qw{owner domain coursehome clonecrs clonedom datemode dateshift enrollstart enrollend accessstart accessend sections crosslists users};          $udom = $env{'user.domain'};
     if ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH')) {          $uname = $env{'user.name'};
         my $emailenc = &Apache::lonnet::escape($owneremail);      }
         my $owner = $details->{'owner'}.':'.$details->{'domain'};      my ($result,%reqinfo) = &get_request_settings($dom,$cnum,$udom,$uname);
         foreach my $item (@items) {      if ($result eq 'ok') {
             $batchhash{$item} = $details->{$item};          if (($udom eq $reqinfo{'domain'}) &&  ($uname eq $reqinfo{'owner'})) {
               $env{'form.chome'} = $reqinfo{'coursehome'};
               $env{'form.cdescr'} = $reqinfo{'cdescr'};
               $env{'form.crstype'} = $reqinfo{'crstype'}; 
               &generate_date_items($reqinfo{'accessstart'},'accessstart');
               &generate_date_items($reqinfo{'accessend'},'accessend');
               if ($reqinfo{'accessend'} == 0) {
                   $env{'form.no_end_date'} = 1;
               }
               if (($reqinfo{'crstype'} eq 'official') && (&Apache::lonnet::auto_run('',$dom))) {
                   &generate_date_items($reqinfo{'enrollstart'},'enrollstart');
                   &generate_date_items($reqinfo{'enrollend'},'enrollend');
               }
               $env{'form.clonecrs'} = $reqinfo{'clonecrs'};
               $env{'form.clonedom'} = $reqinfo{'clonedom'};
               $env{'form.datemode'} = $reqinfo{'datemode'};
               $env{'form.dateshift'} = $reqinfo{'dateshift'};
               if (($reqinfo{'crstype'} eq 'official') && ($reqinfo{'instcode'} ne '')) { 
                    $env{'form.sectotal'} = $reqinfo{'sectotal'};
                    $env{'form.crosslisttotal'} = $reqinfo{'crosslisttotal'};
                    $env{'form.autoadds'} = $reqinfo{'autoadds'};
                    $env{'form.autdrops'} = $reqinfo{'autodrops'};
                    $env{'form.instcode'} = $reqinfo{'instcode'};
                    my $crscode = { 
                                    $cnum => $reqinfo{'instcode'},
                                  };
                    &extract_instcode($dom,'instcode',$crscode,$cnum);
               }
               my @currsec;
               if (ref($reqinfo{'sections'}) eq 'HASH') {
                   foreach my $i (sort(keys(%{$reqinfo{'sections'}}))) {
                       if (ref($reqinfo{'sections'}{$i}) eq 'HASH') {
                           my $sec = $reqinfo{'sections'}{$i}{'inst'};
                           $env{'form.secnum_'.$i} = $sec;
                           $env{'form.sec_'.$i} = '1';
                           if (!grep(/^\Q$sec\E$/,@currsec)) {
                               push(@currsec,$sec);
                           }
                           $env{'form.loncapasec_'.$i} = $reqinfo{'sections'}{$i}{'loncapa'};
                       }
                   }
               }
               if (ref($reqinfo{'crosslists'}) eq 'HASH') {
                   foreach my $i (sort(keys(%{$reqinfo{'crosslists'}}))) {
                       if (ref($reqinfo{'crosslists'}{$i}) eq 'HASH') {
                           $env{'form.crosslist_'.$i} = '1';
                           $env{'form.crosslist_'.$i.'_instsec'} = $reqinfo{'crosslists'}{$i}{'instsec'};
                           $env{'form.crosslist_'.$i.'_lcsec'} = $reqinfo{'crosslists'}{$i}{'loncapa'};
                           if ($reqinfo{'crosslists'}{$i}{'instcode'} ne '') {
                               my $key = $cnum.$i; 
                               my $crscode = {
                                                 $key => $reqinfo{'crosslists'}{$i}{'instcode'},
                                             };
                               &extract_instcode($dom,'crosslist',$crscode,$key,$i);
                           }
                       }
                   }
               }
               if (ref($reqinfo{'personnel'}) eq 'HASH') {
                   my $i = 0;
                   foreach my $user (sort(keys(%{$reqinfo{'personnel'}}))) {
                       my ($uname,$udom) = split(':',$user);
                       if (ref($reqinfo{'personnel'}{$user}) eq 'HASH') {
                           if (ref($reqinfo{'personnel'}{$user}{'roles'}) eq 'ARRAY') {
                               foreach my $role (sort(@{$reqinfo{'personnel'}{$user}{'roles'}})) {
                                   $env{'form.person_'.$i.'_role'} = $role;
                                   $env{'form.person_'.$i.'_firstname'} = $reqinfo{'personnel'}{$user}{'firstname'};
                                   $env{'form.person_'.$i.'_lastname'} = $reqinfo{'personnel'}{$user}{'lastname'}; ;
                                   $env{'form.person_'.$i.'_emailaddr'} = $reqinfo{'personnel'}{$user}{'emailaddr'};
                                   $env{'form.person_'.$i.'_uname'} = $uname;
                                   $env{'form.person_'.$i.'_dom'} = $udom;
                                   if (ref($reqinfo{'personnel'}{$user}{$role}) eq 'HASH') {
                                       if (ref($reqinfo{'personnel'}{$user}{$role}{'usec'}) eq 'ARRAY') {
                                           my @usecs = @{$reqinfo{'personnel'}{$user}{$role}{'usec'}};
                                           my @newsecs;
                                           if (@usecs > 0) {
                                               foreach my $sec (@usecs) {
                                                   if (grep(/^\Q$sec\E/,@currsec)) {
                                                       $env{'form.person_'.$i.'_sec'} = $sec;
                                                   } else {
                                                       push(@newsecs,$sec);
                                                   }
                                               }
                                           }
                                           if (@newsecs > 0) {
                                               $env{'form.person_'.$i.'_newsec'} = join(',',@newsecs); 
                                           }
                                       }
                                   }
                                   $i ++;
                               }
                           }
                       }
                   }
                   $env{'form.persontotal'} = $i;
               }
         }          }
         $batchhash{'title'} = $details->{'cdescr'};      }
         $batchhash{'coursecode'} = $details->{'instcode'};      return $result;
         $batchhash{'emailenc'} = $emailenc;  }
         $batchhash{'adds'} = $details->{'autoadds'};  
         $batchhash{'drops'} = $details->{'autodrops'};  sub get_request_settings {
         $batchhash{'authtype'} = $domdefs->{'auth_def'};      my ($dom,$cnum,$udom,$uname) = @_;
         $batchhash{'authparam'} = $domdefs->{'auth_arg_def'};      my $requestkey = $dom.'_'.$cnum;
         if ($details->{'crstype'} eq 'community') {      my ($result,%reqinfo);
             $batchhash{'crstype'} = 'Community';      if ($requestkey =~ /^($match_domain)_($match_courseid)$/) {
           my %history = &Apache::lonnet::restore($requestkey,'courserequests',$udom,$uname);
           my $disposition = $history{'disposition'};
           if (($disposition eq 'approval') || ($disposition eq 'pending')) { 
               if (ref($history{'details'}) eq 'HASH') {
                   %reqinfo = %{$history{'details'}};
                   $result = 'ok';
               } else {
                   $result = 'nothash';
               }
         } else {          } else {
             $batchhash{'crstype'} = 'Course';               $result = 'notqueued';
         }          }
         $batchhash{'users'}{$details->{$owner}} = {      } else {
                                  firstname => $env{'environment.first'},          $result = 'invalid';
                                  lastname  => $env{'environment.last'},  
                                  emailenc  => $emailenc,  
                                  email     => $owneremail,  
                              };  
     }      }
     return %batchhash;      return ($result,%reqinfo);
 }  }
   
 sub retrieve_settings {  sub extract_instcode {
     my ($dom,$request_id) = @_;      my ($cdom,$element,$crscode,$crskey,$counter) = @_;
     my %reqinfo = &get_request_settings($request_id,$dom);      my (%codes,@codetitles,%cat_titles,%cat_order);
     my %stored;      if (&Apache::lonnet::auto_instcode_format('requests',$cdom,$crscode,\%codes,
     $stored{'cdescr'} = &unescape($reqinfo{'description'});                                                \@codetitles,\%cat_titles,
     $stored{'accessstart'} = $reqinfo{'accessstart'};                                                \%cat_order) eq 'ok') {
     $stored{'accessend'} = $reqinfo{'accessend'};          if (ref($codes{$crskey}) eq 'HASH') {
     if ($stored{'accessend'} == 0) {              if (@codetitles > 0) {
         $stored{'no_end_date'} = 1;                  my $sel = $element;
     }                  if ($element eq 'crosslist') {
     $stored{'enrollstart'} = $reqinfo{'enrollstart'};                      $sel .= '_'.$counter;
     $stored{'enrollend'} = $reqinfo{'enrollend'};                  }
     $stored{'crosslist'} = $reqinfo{'crosslist'};                  foreach my $title (@codetitles) {
     $stored{'clonecrs'} = $reqinfo{'clonecrs'};                      $env{'form.'.$sel.'_'.$title} = $codes{$crskey}{$title};
     $stored{'clonedom'} = $reqinfo{'clonedom'};                  }
     $stored{'sections'} = $reqinfo{'sections'};              }
     $stored{'personnel'} = $reqinfo{'personnel'};          }
       }
     return %stored;      return;
 }  }
   
 sub get_request_settings {  sub generate_date_items {
     my ($request_id,$dom);      my ($currentval,$item) = @_;
       if ($currentval =~ /\d+/) {
           my ($tzname,$sec,$min,$hour,$mday,$month,$year) = 
               &Apache::lonhtmlcommon::get_timedates($currentval);
           $env{'form.'.$item.'_day'} = $mday;
           $env{'form.'.$item.'_month'} = $month+1;
           $env{'form.'.$item.'_year'} = $year;
       }
       return;
 }  }
   
 1;  1;

Removed from v.1.13  
changed lines
  Added in v.1.26


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