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

version 1.13, 2009/08/15 01:59:04 version 1.14, 2009/08/16 19:16:16
Line 395  sub form_elements { Line 395  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 553  END Line 552  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 855  sub inst_section_selector { Line 855  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 965  sub print_personnel_menu { Line 965  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 990  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 = '<h3>'.&mt('Pending course requests').'</h3><div>'."\n".
                 '<form method="post" name="'.$formname.'" action="/adm/requestcourse" />'."\n".
               '<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";
Line 1033  sub print_request_status { Line 1047  sub print_request_status {
         $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 1051  sub print_request_status { Line 1066  sub print_request_status {
                     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:viewrequest('."'$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 1095  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;
 }  }
   
Line 1243  sub print_review { Line 1269  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 = 'None';
               if (@allsecs) {
                   $showsec = join(', ',@allsecs);
               }
             $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 1294  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 =  '<p>'.&mt('Review the details of the course request before submission.').'</p>'.  
Line 1532  sub print_request_outcome { Line 1576  sub print_request_outcome {
                 $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.'_uname'};
Line 1559  sub print_request_outcome { Line 1605  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 1630  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'};
       }
       my $sectotal = 0;
       if ($env{'form.sectotal'}) {
           $sectotal = $env{'form.sectotal'};
       }
       if ($env{'form.autoadds'}) {
           $autodrops = $env{'form.autoadds'};
       }
       my $crosslisttotal = 0;
       if ($env{'form.crosslisttotal'}) {
           $crosslisttotal = $env{'form.crosslisttotal'};
       }
       my $instcode = '';
       if (exists($env{'form.instcode'})) {
           $instcode = $env{'form.instcode'};
       }
     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 1661  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       => $env{'form.clonedom'},
                     clonecrs       => $env{'form.clonecrs'},                      clonecrs       => $env{'form.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 1620  sub print_request_outcome { Line 1691  sub print_request_outcome {
             $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,
                       );                        );
Line 1640  sub print_request_outcome { Line 1711  sub print_request_outcome {
         } else {          } else {
             $disposition = 'approval';              $disposition = 'approval';
         }          }
         $reqhash{'status'} = $disposition;          $reqhash{'disposition'} = $disposition;
           $reqstatus = $disposition;
         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 1696  sub print_request_outcome { Line 1769  sub print_request_outcome {
                 }                  }
                 $output = &mt('Your course request has been recorded.').'<br />';                  $output = &mt('Your course request has been recorded.').'<br />';
                 if ($disposition eq 'approval') {                  if ($disposition eq 'approval') {
                     $output .= &mt('Your course request has been recorded.').'<br />'.                      $output .= &mt('A message will be sent to your LON-CAPA account when a domain coordinator takes action on your request.').'<br />'.
                               &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 />';
                               &mt('To access your LON-CAPA message, go to the Main Menu and click on "Send and Receive Messages".').'<br />';  
                     if ($address ne '') {                           if ($address ne '') {     
                         $output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />';                          $output.= &mt('An e-mail will also be sent to: [_1] when this occurs.',$address).'<br />';
                     }                      }
                     if ($req_notifylist) {                      if ($req_notifylist) {
                         my $fullname = &Apache::loncommon::plainname($env{'user.name'},                          my $fullname = &Apache::loncommon::plainname($env{'user.name'},
                                                                      $env{'user.domain'});                                                                       $env{'user.domain'});
                         &Apache::loncoursequeueadmin::send_selfserve_notification($req_notifylist,$fullname,$now,$dom,$details);                          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);
                     }                      }
                 } else {                  } else {
                     $output .= '<div class="LC_info">'.                      $output .= '<div class="LC_info">'.
Line 1715  sub print_request_outcome { Line 1788  sub print_request_outcome {
                                '</div>';                                 '</div>';
                 }                  }
             } else {              } else {
                 $reqhash{'status'} = 'domainerror';                  $reqstatus = 'domainerror';
                 $reqhash{'disposition'} = $disposition;                  $reqhash{'disposition'} = $disposition;
                 my $warning = &mt('An error occurred saving your request in the pending requests queue.');                  my $warning = &mt('An error occurred saving your request in the pending requests queue.');
                 $output = '<span class"LC_warning">'.$warning.'</span><br />';                  $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");
         }          }
     }      }
     return $output;      return $output;
Line 1853  sub check_autolimit { Line 1935  sub check_autolimit {
     return;      return;
 }  }
   
 sub build_batchcreatehash {  
     my ($dom,$details,$owneremail,$domdefs) = @_;  
     my %batchhash;  
     my @items = qw{owner domain coursehome clonecrs clonedom datemode dateshift enrollstart enrollend accessstart accessend sections crosslists users};  
     if ((ref($details) eq 'HASH') && (ref($domdefs) eq 'HASH')) {  
         my $emailenc = &Apache::lonnet::escape($owneremail);  
         my $owner = $details->{'owner'}.':'.$details->{'domain'};  
         foreach my $item (@items) {  
             $batchhash{$item} = $details->{$item};  
         }  
         $batchhash{'title'} = $details->{'cdescr'};  
         $batchhash{'coursecode'} = $details->{'instcode'};  
         $batchhash{'emailenc'} = $emailenc;  
         $batchhash{'adds'} = $details->{'autoadds'};  
         $batchhash{'drops'} = $details->{'autodrops'};  
         $batchhash{'authtype'} = $domdefs->{'auth_def'};  
         $batchhash{'authparam'} = $domdefs->{'auth_arg_def'};  
         if ($details->{'crstype'} eq 'community') {  
             $batchhash{'crstype'} = 'Community';  
         } else {  
             $batchhash{'crstype'} = 'Course';   
         }  
         $batchhash{'users'}{$details->{$owner}} = {  
                                  firstname => $env{'environment.first'},  
                                  lastname  => $env{'environment.last'},  
                                  emailenc  => $emailenc,  
                                  email     => $owneremail,  
                              };  
     }  
     return %batchhash;  
 }  
   
 sub retrieve_settings {  sub retrieve_settings {
     my ($dom,$request_id) = @_;      my ($dom,$request_id) = @_;
     my %reqinfo = &get_request_settings($request_id,$dom);      my %reqinfo = &get_request_settings($request_id,$dom);

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


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