Diff for /loncom/interface/lonpopulate.pm between versions 1.6 and 1.7

version 1.6, 2003/12/12 00:45:49 version 1.7, 2003/12/15 07:55:59
Line 27  package Apache::lonpopulate; Line 27  package Apache::lonpopulate;
   
 use strict;  use strict;
 use lib qw(/home/httpd/lib/perl);  use lib qw(/home/httpd/lib/perl);
 use Apache::lonnet ();  use Apache::lonnet;
 use Apache::loncommon ();  use Apache::loncommon;
 use Apache::lonhtmlcommon ();  use Apache::lonhtmlcommon;
 use Apache::lonlocal;  use Apache::lonlocal;
 use Apache::Constants qw(:common :http REDIRECT);  use Apache::Constants qw(:common :http REDIRECT);
 use Time::Local;  use Time::Local;
 use LONCAPA::Enrollment ();  use LONCAPA::Enrollment;
 use localenroll;  use localenroll;
   
 ###############################################################  ###############################################################
Line 439  ENDTWO Line 439  ENDTWO
               </td>                </td>
              </tr>               </tr>
       ");        ");
       my $option_str = '';        my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$dom,$crs);
       my $lastpname = '';        my @ccs = ();
       my $option_count = 0;        my @oldccs = ();
         my %pname = ();
       my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($dom.'/'.$crs);        my %notifystate = ();
       foreach (sort keys %coursepersonnel) {        foreach (@coursepersonnel) {
           if ($_ eq &mt("Course Coordinator") )            my @roleinfo = split/:/,$_;
           {            if ($roleinfo[0] eq 'cc')  {
               my @ccs = ();                unless (grep/^$roleinfo[1]\@$roleinfo[2]/,@ccs) {
               if ($coursepersonnel{$_} =~ m/,/) {                    my $active_cc = &LONCAPA::Enrollment::check_user_status($roleinfo[2],$roleinfo[1],$dom,$crs,'cc');
                   @ccs = split(/,/,$coursepersonnel{$_});                    if ($active_cc eq 'ok') {
               } else {                        push @ccs, "$roleinfo[1]\@$roleinfo[2]";
                   @ccs = $coursepersonnel{$_};                        $pname{"$roleinfo[1]\@$roleinfo[2]"} = &Apache::loncommon::plainname($roleinfo[1],$roleinfo[2]);
               }                        if (grep/^$roleinfo[1]\@$roleinfo[2]$/,@notified) {
               foreach (@ccs) {                            $notifystate{"$roleinfo[1]\@$roleinfo[2]"} = 1;
                   my ($puname,$pudom)=split(/\:/,$_);                        } else {
                   my $pname = &Apache::loncommon::plainname($puname,$pudom);                            $notifystate{"$roleinfo[1]\@$roleinfo[2]"} = 0;
                   if (grep/^$puname\@$pudom$/,@notified) {                        }
                       $option_str .="<option value=\"$puname\@$pudom\" selected>$pname</option>\n";  
                   } else {                    } else {
                       $option_str .="<option value=\"$puname\@$pudom\">$pname</option>\n";                        push @oldccs, "$roleinfo[1]\@$roleinfo[2]";
                   }                    }
                   $option_count ++;  
                   $lastpname = $pname.'@'.$pudom;  
               }                }
           }            }
       }        }
       if ($option_count > 1) {        if ($notifycount > 0) {
           my $optionsize = $option_count;            foreach my $person (@notified) {
           if ($optionsize > 6) {                unless ( (grep/^$person$/,@ccs) || ($person eq '') || (grep/^$person$/,@oldccs) ) {
               $optionsize = 6;                    push @ccs, $person;
           }                     my ($puname,$pdom) = split/\@/,$person;
                     $pname{$person} =  &Apache::loncommon::plainname($puname,$pdom);
                     $notifystate{$person} = 1;
                 }
             }
         }
         my $viewer = $ENV{'user.name'}.'@'.$ENV{'user.domain'};
         unless ( (grep/^$viewer$/,@ccs) || ($viewer eq '') )  {
             push @ccs,$viewer;
             $pname{$viewer} =  &Apache::loncommon::plainname($ENV{'user.name'},$ENV{'user.domain'});
             $notifystate{$viewer} = 0;
         }
   
         my $notifyshow = @ccs;
   
         if (@ccs > 0) {
             @ccs = sort @ccs;
           $r->print("            $r->print("
              <tr>               <tr>
               <td>                 <td>The table below contains a list of course coordinators in this course. Uncheck the 'Notification?' checkbox for each person who is to be removed from the list of recipients who are currently informed of roster changes whenever any adds or drops occur during the nightly enrollment check. To include individuals who are not currently recipients, simply check the 'Notification?' checkbox. Click 'Go' to store your changes.
 Select which course coordinators should receive information about roster changes whenever any adds or drops occur during the nightly enrollment check.<br/><br/>  
                 <select name=\"notifylist\" multiple size=\"$optionsize\">$option_str</select>  
               </td>                </td>
              </tr>               </tr>
              <tr>               <tr>
               <td>                <td>
                Select more than one recipient by using the following keyboard and mouse combinations:<br/>                 <table border=\"0\" cellpadding=\"3\" cellspacing=\"3\">
              <ul>                  <tr bgcolor=\"#CCCCFF\">
               <li>Apple-click: MacOS</li>                   <td><b>Name</b></td>
               <li>Ctrl-click: Windows</li>                   <td><b>username</b></td>
               <li>Left click: Linux</li>                   <td><b>Current status</b></td>
              </ul>                   <td><b>Notification?</b></td>
             </td>                  </tr>
            </tr>   
           ");            ");
       } else {             for (my $i=0; $i<@ccs; $i++) {
                 my $colflag = $i%2;
                 $r->print("<tr bgcolor=\"$bgcolors[$colflag]\" align=\"left\">
                    <td>$pname{$ccs[$i]}</td>
                    <td><input type=\"hidden\" name=\"notifyname_$i\" value=\"$ccs[$i]\" />$ccs[$i]</td>
                    <td>
                 ");
                 if ($notifystate{$ccs[$i]} == 1) {
                     $r->print("Notification active");
                 } else {
                     $r->print("Notification inactive");
                 }
                 if ($notifystate{$ccs[$i]} == 1) {
                     $r->print("</td><td><input type=\"checkbox\" name=\"note_$i\" checked=\"true\" /></td></tr>");
                 } else {
                     $r->print("</td><td><input type=\"checkbox\" name=\"note_$i\" /></td></tr>");
                 }
             }
           $r->print("            $r->print("
            <tr>                 </table>
             <td>                 <br/>
 As you are the only user with the role of course coordinator in this course, if you choose to enable notification of roster changes, you will be the sole recipient of LON-CAPA messages generated whenever any adds or drops occur during the nightly enrollment check.                 <table width=\"100%\" border=\"0\" cellspadding=\"2\" cellspacing=\"2\">
               <input type=\"hidden\" name=\"notifylist\" value=\"$lastpname\" />                  <tr>
             </td>                   <td align=\"right\">
            </tr>                    <input type=\"button\" name=\"notifyset\" value=\"Go\" onClick=\"process('notify')\" />
                    </td>
                   </tr>
                  </table>
                 </td>
                </tr>
           ");            ");
         } else {
             $r->print("
                <tr>
                 <td>
                No course coordinators found.
               </td>
              </tr>");
       }        }
       $r->print("        $r->print("
              <tr>            </table>
               <td align=\"right\">            <input type=\"hidden\" name=\"notifyshow\" value=\"$notifyshow\">
                <input type=\"button\" name=\"notifyset\" value=\"Go\" onClick=\"process('notify')\" />            <input type=\"hidden\" name=\"action\" value=\"$action\">
               </td>            <input type=\"hidden\" name=\"state\" value=\"process\">
              </tr>            </form>
             </table>  
             <input type=\"hidden\" name=\"action\" value=\"$action\">  
             <input type=\"hidden\" name=\"state\" value=\"process\">  
             </form>  
       ");        ");
   } elsif ($action eq "crosslist") {    } elsif ($action eq "crosslist") {
       my @xlists = ();        my @xlists = ();
Line 526  As you are the only user with the role o Line 561  As you are the only user with the role o
       ");        ");
       if ($cross_str > 0) {        if ($cross_str > 0) {
           $r->print("            $r->print("
                 Currently, LON-CAPA course: $realm ($enrollvar{coursecode}) is crosslisted with $cross_str course section(s).  Students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.  For each crosslisting, leave the checkbox checked if you want registered students in that course to be included in the student roster for LON-CAPA course: <b>$realm ($enrollvar{coursecode})</b>; otherwise uncheck it. If you wish to change the section/group ID assigned in your LON-CAPA course for a crosslisted course, enter the new section/group ID in the appropriate textbox. The LON-CAPA section/group ID can be left (or set to) empty, if you do not wish to tie a section/group ID to this crosslisting. If you wish to add new crosslisted courses, enter the number of new courses to add in the textbox at the bottom of the page. You will provide information about each of the new crosslistings on a subsequent page.  Click 'Go' to store your changes.                  Currently, this LON-CAPA course is crosslisted with $cross_str course section(s).  Students enrolling in these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update.  For each crosslisting, leave the checkbox checked if you want registered students in that course to be included in the student roster for LON-CAPA course: <b>$realm ($enrollvar{coursecode})</b>; otherwise uncheck it. If you wish to change the section/group ID assigned in your LON-CAPA course for a crosslisted course, enter the new section/group ID in the appropriate textbox. The LON-CAPA section/group ID can be left (or set to) empty, if you do not wish to tie a section/group ID to this crosslisting. If you wish to add new crosslisted courses, enter the number of new courses to add in the textbox at the bottom of the page. You will provide information about each of the new crosslistings on a subsequent page.  Click 'Go' to store your changes.
               </td>                </td>
              </tr>               </tr>
             </table>              </table>
Line 627  your changes.</td> Line 662  your changes.</td>
              </tr>               </tr>
             </table>              </table>
             <br/>              <br/>
             <table border=\"0\" width=\"100%\" cellspacing=\"3\" cellpadding=\"3\">              <table border=\"0\" cellpadding=\"3\" cellspacing=\"3\">
              <tr>               <tr bgcolor=\"#CCCCFF\">
               <td>                <td><b>Section</b></td>
                <table width=\"100%\" border=\"0\" cellpadding=\"3\" cellspacing=\"3\">                <td><b>Current status</b></td>              
                 <tr bgcolor=\"#CCCCFF\">                <td><b>LON-CAPA section/group ID</b></td>
                  <td><b>Section</b></td>                <td><b>Enrollment in this course?</b></td>
                  <td><b>Current status</b></td>                             </tr>
                  <td><b>LON-CAPA section/group ID</b></td>  
                  <td><b>Enrollment in this course?</b></td>  
                 </tr>  
               ");                ");
               for (my $i=0; $i<@sections; $i++) {                for (my $i=0; $i<@sections; $i++) {
                   my $colflag = $i%2;                    my $colflag = $i%2;
Line 652  your changes.</td> Line 684  your changes.</td>
                       $r->print("Enrollment inactive");                        $r->print("Enrollment inactive");
                   }                    }
                   if ($shrflag) {                    if ($shrflag) {
                       $r->print("</td><td><input type=\"text\" name=\"loncapasec_$i\" value=\"$sec_id{$sections[$i]}\"></td><td><input type=\"checkbox\" name=\"sec_$i\" checked=\"true\" /></td></tr>");                         $r->print("</td><td><input type=\"text\" size=\"10\" name=\"loncapasec_$i\" value=\"$sec_id{$sections[$i]}\"></td><td><input type=\"checkbox\" name=\"sec_$i\" checked=\"true\" /></td></tr>"); 
                   } else {                    } else {
                       $r->print("</td><td><input type=\"text\" name=\"loncapasec_$i\" value=\"\"><td><input type=\"checkbox\" name=\"sec_$i\" /></td></tr>");                        $r->print("</td><td><input type=\"text\" size=\"10\" name=\"loncapasec_$i\" value=\"\"><td><input type=\"checkbox\" name=\"sec_$i\" /></td></tr>");
                   }                    }
               }                }
               $r->print("                $r->print("
                   </tr>              </table>
                  </table>              <br/>
                 </td>              <table width=\"100%\" border=\"0\" cellspacing=\"3\" cellpadding=\"3\">
                </tr>               <tr> 
               </table>                <td align=\"right\">
               <br/>                 <input type=\"hidden\" name=\"secshow\" value=\"$secshow\" />
               <table width=\"100%\" border=\"0\" cellspacing=\"3\" cellpadding=\"3\">                 <input type=\"button\" name=\"sections\" value=\"Go\" onClick=\"process('sections')\" />
                <tr>                 </td>
                 <td align=\"right\">               </tr>
                  <input type=\"hidden\" name=\"secshow\" value=\"$secshow\" />              </table>
                  <input type=\"button\" name=\"sections\" value=\"Go\" onClick=\"process('sections')\" />              <input type=\"hidden\" name=\"action\" value=\"$action\">
                 </td>              <input type=\"hidden\" name=\"state\" value=\"process\">
                </tr>              </form>
               </table>  
               <input type=\"hidden\" name=\"action\" value=\"$action\">  
               <input type=\"hidden\" name=\"state\" value=\"process\">  
               </form>  
               ");                ");
           } else {            } else {
               $r->print("<br/>                            $r->print("<br/>            
Line 689  your changes.</td> Line 717  your changes.</td>
              <tr>               <tr>
               <td>As your institution's course catalog only includes a single section for this course, there are no additional sections that can be set for inclusion in the LON-CAPA roster for the course.</td>                <td>As your institution's course catalog only includes a single section for this course, there are no additional sections that can be set for inclusion in the LON-CAPA roster for the course.</td>
             </tr>              </tr>
            </table>              </table>
               ");                ");
           }             } 
       } else {        } else {
Line 702  your changes.</td> Line 730  your changes.</td>
           if (@currsections) {            if (@currsections) {
               my $secshow = @currsections;                my $secshow = @currsections;
               $r->print("                $r->print("
                 Currently, LON-CAPA course: $realm ($enrollvar{coursecode}) incorporates enrollment from $secshow sections.  Students enrolling in any of these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each section, uncheck the checkbox if you want registered students in that section to cease being included in the student roster for LON-CAPA course: <b>$realm ($enrollvar{coursecode})</b>; otherwise leave it checked. If you want to change the section/group designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section/groupID textbox and enter the new value.  If you wish to add new course section, enter the number of new sections to add in the textbox at the bottom of the page. You will provide information about each of the new sections on a subsequent page. Click 'Go' to store your changes.                  Currently, this LON-CAPA course incorporates enrollment from $secshow sections.  Students enrolling in any of these course sections will be automatically added to the class roster for the course, if you have chosen to enable a nightly automated enrollment update. For each section, uncheck the checkbox if you want registered students in that section to cease being included in the student roster for LON-CAPA course: <b>$realm ($enrollvar{coursecode})</b>; otherwise leave it checked. If you want to change the section/group designation used for this section in LON-CAPA, delete the current value in the LON-CAPA section/groupID textbox and enter the new value.  If you wish to add new course section, enter the number of new sections to add in the textbox at the bottom of the page. You will provide information about each of the new sections on a subsequent page. Click 'Go' to store your changes.
               </td>                </td>
              </tr>               </tr>
             </table>              </table>
Line 1007  sub print_notify_response { Line 1035  sub print_notify_response {
   my @currpeople = ();    my @currpeople = ();
   my $notify = 0;    my $notify = 0;
   my @people = ();    my @people = ();
     my $peoplestr = "";
     my $response = "";
     my $noprocess = 0;
   
   if ($notifylist =~ m/,/) {    if ($notifylist =~ m/,/) {
       @currpeople = split/,/,$notifylist;        @currpeople = split/,/,$notifylist;
   } else {    } else {
       @currpeople = $notifylist;        $currpeople[0] = $notifylist;
   }    }
   my $currcount = 0;    my $currcount = 0;
   foreach  (@currpeople) {    foreach  (@currpeople) {
Line 1020  sub print_notify_response { Line 1051  sub print_notify_response {
   
   if ( exists($ENV{'form.notify'}) ) {    if ( exists($ENV{'form.notify'}) ) {
       $notify=$ENV{'form.notify'};        $notify=$ENV{'form.notify'};
   }   
   if ( exists($ENV{'form.notifylist'}) ) {  
         if (ref($ENV{'form.notifylist'})) {  
             @people=@{ $ENV{'form.notifylist'} };  
         } else {  
             $people[0]=$ENV{'form.notifylist'};  
         }  
   }    }
   my $response = "";    if ( exists($ENV{'form.notifyshow'}) ) {
   my $peoplestr = "";        my $notifyshow = $ENV{'form.notifyshow'};
   if ($notify) { $peoplestr = join(",",@people); }        for (my $i=0; $i<$notifyshow; $i++) {
   my %cenv = ('internal.notifylist' => $peoplestr);            if ( exists($ENV{"form.note_$i"}) ) {
   my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs);                if ( exists($ENV{"form.notifyname_$i"}) ) {
   if ($reply !~ /^ok$/) {                    unless ( $ENV{"form.notifyname_$i"} eq '' ) {
        $response = "There was a problem processing your requested changes. The notification settings for this course have been left unchanged.<br/>";                          push @people, $ENV{"form.notifyname_$i"};
                     }
                 }
             }
         }
         if ($notify) { $peoplestr = join(",",@people); }
   } else {    } else {
       if ($notify) {        if ($notify) {
           if (@people) {             if ($currcount) {
               if ($currcount) {                $response = "There was a problem retrieving the updated list of recipients of notification messages. The notification settings for this course have been left unchanged.<br/>.";
                   $response = "Notification of enrollment changes still <b>enabled</b><br/>";                $peoplestr = $notifylist;
               } else {                @people = @currpeople;
                   $response = "Notification of enrollment changes now <b>enabled</b><br/>";                $noprocess = 1;
               }  
               $response .= "<br/>The following will receive notification if there are any changes in enrollment in LON-CAPA course: $realm ($coursecode) as a result of  
 the nightly enrollment check: <br/><ul>\n";  
               foreach my $person (@people) {  
                   $response .= "<li>$person</li>\n";  
               }  
               $response .= "</ul>\n";  
           } else {  
               $response = "Notification of enrollment changes was <b> not enabled</b> as no course coordinators were selected as recipients.<br/>";  
           }            }
         }
     }
     unless ($noprocess == 1) {
         my %cenv = ('internal.notifylist' => $peoplestr);
         my $reply = &Apache::lonnet::put('environment',\%cenv,$dom,$crs);
         if ($reply !~ /^ok$/) {
              $response = "There was a problem processing your requested changes. The notification settings for this course have been left unchanged.<br/>";
       } else {        } else {
           if ($currcount) {             if ($notify) {
               $response = "Notification of enrollment changes now <b>disabled</b><br/>";                if (@people) {
                     if ($currcount) {
                         $response .= "Notification of enrollment changes still <b>enabled</b><br/>";
                     } else {
                         $response .= "Notification of enrollment changes now <b>enabled</b><br/>";
                     }
                     $response .= "<br/>The following will receive notification if there are any changes in enrollment in LON-CAPA course: $realm ($coursecode) as a result of the nightly enrollment check: <br/><ul>\n";
                     foreach my $person (@people) {
                         $response .= "<li>$person</li>\n";
                     }
                     $response .= "</ul>\n";
                 } else {
                     $response = "Notification of enrollment changes was <b> not enabled</b> as no course coordinators were selected as recipients.<br/>";
                 }
           } else {            } else {
               $response = "Notification of enrollment changes still <b>disabled</b><br/>";                if ($currcount) {
                     $response = "Notification of enrollment changes now <b>disabled</b><br/>";
                 } else {
                     $response = "Notification of enrollment changes still <b>disabled</b><br/>";
                 }
           }            }
       }        }
   }    }

Removed from v.1.6  
changed lines
  Added in v.1.7


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