Diff for /loncom/interface/lonsupportreq.pm between versions 1.1 and 1.43

version 1.1, 2004/07/03 18:49:42 version 1.43, 2007/05/07 14:02:45
Line 1 Line 1
   #
   # $Id$
   #
   # Copyright Michigan State University Board of Trustees
   #
   # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   #
   # LON-CAPA is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version.
   #
   # LON-CAPA is distributed in the hope that it will be useful,
   # but WITHOUT ANY WARRANTY; without even the implied warranty of
   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   # GNU General Public License for more details.
   #
   # You should have received a copy of the GNU General Public License
   # along with LON-CAPA; if not, write to the Free Software
   # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   #
   # /home/httpd/html/adm/gpl.txt
   #
   # http://www.lon-capa.org/
   #
   
 package Apache::lonsupportreq;  package Apache::lonsupportreq;
   
 use strict;  use strict;
 use lib qw(/home/httpd/lib/perl);  use MIME::Types;
   use MIME::Lite;
   use CGI::Cookie();
 use Apache::Constants qw(:common);  use Apache::Constants qw(:common);
 use Apache::loncommon;  use Apache::loncommon();
   use Apache::lonhtmlcommon;
 use Apache::lonnet;  use Apache::lonnet;
 use localenroll;  
 use Apache::lonlocal;  use Apache::lonlocal;
   use Apache::lonacc();
 use Mail::Send;  use Apache::courseclassifier;
 # use MIME::Lite;  use LONCAPA;
 # use MIME::Types;   
   
 sub handler {  sub handler {
     my $r = shift;      my ($r) = @_;
     $r->content_type('text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
   
     if ($r->header_only) {      if ($r->header_only) {
         return OK;          return OK;
     }      }
       if ($r->uri eq '/adm/helpdesk') {
    &Apache::lonlocal::get_language_handle($r);
       }
   
       &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['origurl','function']);
       if ($r->uri eq '/adm/helpdesk') {
           &Apache::lonacc::get_posted_cgi($r);
       }
       my $function = $env{'form.function'};
       my $origurl = &unescape($env{'form.origurl'});
       my $action = $env{'form.action'};
   
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['action','origurl','function']);  
     my $action = $ENV{'form.action'};  
     my $function = $ENV{'form.function'};  
     my $origurl = &Apache::lonnet::unescape($ENV{'form.origurl'});  
     if ($action eq 'process') {      if ($action eq 'process') {
         &print_request_receipt($r,$origurl,$function);          &print_request_receipt($r,$origurl,$function);
     } else {      } else {
Line 35  sub handler { Line 70  sub handler {
           
 sub print_request_form {  sub print_request_form {
     my ($r,$origurl,$function) = @_;      my ($r,$origurl,$function) = @_;
     my ($os,$browser,$bversion,$uhost,$uname,$udom,$uhome,$urole,$usec,$email,$cid,$cdom,$cnum,$ctitle,$ccode,$sectionlist,$lastname,$firstname,$server);      my ($os,$browser,$bversion,$uhost,$uname,$udom,$uhome,$urole,$usec,$email,$cid,$cdom,$cnum,$ctitle,$ccode,$sectionlist,$lastname,$firstname,$server,$formname);
     my $bodytag = &Apache::loncommon::bodytag('',$function,'topmargin="0",marginheight="0"',1);  
     my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');      my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');
     $os = $ENV{'browser.os'};      if (($tablecolor eq '') || ($tablecolor eq '#FFFFFF')) {
     $browser = $ENV{'browser.type'};          $tablecolor = '#EEEE99';
     $bversion = $ENV{'browser.version'};      }
     $uhost = $ENV{'request.host'};      $ccode = '';
     $uname = $ENV{'user.name'};      $os = $env{'browser.os'};
     $udom = $ENV{'user.domain'};      $browser = $env{'browser.type'};
     $uhome = $ENV{'user.home'};      $bversion = $env{'browser.version'};
     $urole = $ENV{'request.role'};      $uhost = $env{'request.host'};
     $usec = $ENV{'request.course.sec'};      $uname = $env{'user.name'};
     $cid = $ENV{'request.course.id'};      $udom = $env{'user.domain'};
     $server = $ENV{'SERVER_NAME'};      $uhome = $env{'user.home'};
     my $scripttag;      $urole = $env{'request.role'};
       $usec = $env{'request.course.sec'};
       $cid = $env{'request.course.id'};
       $formname = 'logproblem';
       my $machine = &Apache::lonnet::absolute_url();
       if ($origurl =~ m-^https?://-) {
           $server = $origurl;
       } else {
           $server = $machine.$origurl;
       }
       my %lt = &Apache::lonlocal::texthash (
                     email => 'The e-mail address you entered',
                     notv => 'is not a valid e-mail address',
                     rsub => 'You must include a subject',
                     rdes => 'You must include a description',
                     name => 'Name',
                     subm => 'Submit Request',
                     emad => 'E-mail address',
                     unme => 'username',
                     doma => 'domain',
                     entr => 'Enter the username you use to log-in to your LON-CAPA system, and choose your domain.',
                     urlp => 'URL of page',
                     phon => 'Phone',
                     crsd => 'Course Details',
                     enin => 'Enter institutional course code',
                     pick => 'Pick',
                     enct => 'Enter course title',
                     secn => 'Section Number',
                     sele => 'Select',
                     titl => 'Title',
                     lsec => 'LON-CAPA sec',
                     subj => 'Subject',
                     detd => 'Detailed Description',
                     opfi => 'Optional file upload',
                     uplf => 'Upload a file (e.g., a screenshot) relevant to your support request (128 KB max. size)',
                     fini => 'Finish',
                     clfm => 'Clear Form',
       );
       my $scripttag = (<<"END");
   function validate() {
       if (validmail(document.logproblem.email) == false) {
           alert("$lt{'email'}: "+document.logproblem.email.value+" $lt{'notv'}.");
           return;
       }
       if (document.logproblem.subject.value == '') {
           alert("$lt{'rsub'}.");
           return;
       }
       if (document.logproblem.description.value == '') {
           alert("$lt{'rdes'}.");
           return;
       }
       document.logproblem.submit();
   }
   
   END
       $scripttag .= &Apache::lonhtmlcommon::javascript_valid_email();
     if ($cid =~ m/_/) {      if ($cid =~ m/_/) {
         ($cdom,$cnum) = split/_/,$cid;          ($cdom,$cnum) = split(/_/,$cid);
     }      }
     if ($cdom && $cnum) {      if ($cdom && $cnum) {
         my %csettings = &Apache::lonnet::get('environment',['description','internal.coursecode','internal.sectionnums'],$cdom,$cnum);          my %csettings = &Apache::lonnet::get('environment',['description','internal.coursecode','internal.sectionnums'],$cdom,$cnum);
Line 59  sub print_request_form { Line 149  sub print_request_form {
         $ccode = $csettings{'internal.coursecode'};          $ccode = $csettings{'internal.coursecode'};
         $sectionlist = $csettings{'internal.sectionnums'};          $sectionlist = $csettings{'internal.sectionnums'};
     }      }
     if ($ENV{'environment.critnotification'}) {      if ($env{'environment.critnotification'}) {
         $email = $ENV{'environment.critnotification'};          $email = $env{'environment.critnotification'};
     }      }
     if (!$email && $ENV{'environment.notification'}) {      if (!$email && $env{'environment.notification'}) {
         $email = $ENV{'environment.notification'};          $email = $env{'environment.notification'};
     }      }
     if ($ENV{'environment.lastname'}) {      if ($env{'environment.lastname'}) {
         $lastname = $ENV{'environment.lastname'};          $lastname = $env{'environment.lastname'};
     }      }
     if ($ENV{'environment.firstname'}) {      if ($env{'environment.firstname'}) {
         $firstname = $ENV{'environment.firstname'};          $firstname = $env{'environment.firstname'};
     }      }
     my @sections = split/,/,$sectionlist;      my @sections = split(/,/,$sectionlist);
     my %groupid = ();      my %groupid;
     foreach (@sections) {      foreach my $section (@sections) {
         my ($sec,$grp) = split/:/,$_;          my ($sec,$grp) = split(/:/,$section);
         $groupid{$sec} = $grp;          $groupid{$sec} = $grp;
     }      }
     $r->print(<<END);      my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'};
 <html>      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['codedom']);
  <head>      if (exists($env{'form.codedom'})) {
   <title>LON-CAPA support request</title>          $codedom = $env{'form.codedom'};
 END      }
     my $defdom = $Apache::lonnet::perlvar{'lonDefDomain'};      my $details_title;
     my $codedom = $defdom;      if ($codedom) {
     my %coursecodes = ();          $details_title = '<br />('.$codedom.')';
     my %codes = ();      }
     my @codetitles = ();      my %coursecodes;
     my %cat_titles = ();      my %codes;
     my %cat_order = ();      my @codetitles;
       my %cat_titles;
       my %cat_order;
       my %idlist;
       my %idnums;
       my %idlist_titles;
     my $caller = 'global';      my $caller = 'global';
     my $totcodes = 0;      my $totcodes = 0;
     my $format_reply;      my $format_reply;
           my $jscript = '';
       my $loaditems = qq|
   function initialize_codes() {
       return;
   }
       |;
     if ($cdom) {      if ($cdom) {
         $codedom = $cdom;          $codedom = $cdom;
     }      }
     if ($cnum) {      if ($cnum) {
         $coursecodes{$cnum} = $ccode;          $coursecodes{$cnum} = $ccode;
         if ($ccode eq '') {          if ($ccode eq '') {
             $totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes);              $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
         } else {          } else {
             $coursecodes{$cnum} = $ccode;              $coursecodes{$cnum} = $ccode;
             $caller = $cnum;              $caller = $cnum;
             $totcodes ++;              $totcodes ++;
         }          }
     } else {       } else { 
         $totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes);          $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
     }      }
     if ($totcodes > 0) {      if ($totcodes > 0) {
         $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order);          if ($ccode eq '') {
               $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order);
               if ($format_reply eq 'ok') {
                   my $numtypes = @codetitles;
                   &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles);
                   my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles);
                   my $longtitles_str = join('","',@{$longtitles});
                   my $allidlist = $idlist{$codetitles[0]};
                   $jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist);
                   $jscript .= $scripttext;
                   $jscript .= &Apache::courseclassifier::javascript_code_selections($formname,@codetitles);
                   $loaditems = '';
               }
           }
     }      }
     $r->print(<<END);  
 <html>      my $js = '<script type"text/javascript">'."\n$scripttag\n$jscript\n".
 <head>   '</script>';
  <title>LON-CAPA support request</title>      my %add_entries = (topmargin    => "0",
 $scripttag         marginheight => "0",
 </head>         onLoad       =>"initialize_codes()",);
 $bodytag  
       my $start_page =
    &Apache::loncommon::start_page('Support Request',$js,
          { 'function'    => $function,
    'add_entries' => \%add_entries,
    'only_body'   => 1,});
       $r->print($start_page);
   
       if ($r->uri eq '/adm/helpdesk') {
           &print_header($r,$origurl);
       }
       $r->print(<<"END");
   <form method="post" name="logproblem" enctype="multipart/form-data">
  <table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">   <table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
   <tr>    <tr>
    <td>     <td>
Line 128  $bodytag Line 253  $bodytag
         <tr>          <tr>
          <td>           <td>
   <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff">    <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff">
            <form method="post" name="logproblem" onSubmit="return validate()">  
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Name:</b>                 <td align="right"><b>$lt{'name'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 153  END Line 277  END
         } elsif (defined($lastname) && $lastname ne '') {          } elsif (defined($lastname) && $lastname ne '') {
             $fullname= " $lastname";              $fullname= " $lastname";
         }          }
         $r->print('<input type="text" size="20" name="username" value="'.$fullname.'" /><br />');          $r->print('<input type="text" size="20" name="username" value="'.$fullname.'" />');
     }      }
     $r->print(<<END);      $r->print(<<END);
                   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="$lt{'subm'}" onClick="validate()" />&nbsp;
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 163  END Line 288  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>E-mail address:</b>                 <td align="right"><b>$lt{'emad'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 187  END Line 312  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>username/domain:</b>                 <td align="right"><b>$lt{'unme'}/$lt{'doma'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 207  END Line 332  END
     my $udom_input = '<input type="hidden" name="udom" value="'.$udom.'" />';      my $udom_input = '<input type="hidden" name="udom" value="'.$udom.'" />';
     my $uname_input = '<input type="hidden" name="uname" value="'.$uname.'" />';       my $uname_input = '<input type="hidden" name="uname" value="'.$uname.'" />'; 
     if (defined($uname) && defined($udom)) {      if (defined($uname) && defined($udom)) {
         $r->print('<i>username</i>:&nbsp;'.$uname.'&nbsp;&nbsp;<i>domain</i>:&nbsp;'.$udom.$udom_input.$uname_input);          $r->print('<i>'.$lt{'unme'}.'</i>:&nbsp;'.$uname.'&nbsp;&nbsp;<i>'.$lt{'doma'}.'</i>:&nbsp;'.$udom.$udom_input.$uname_input);
     } else {      } else {
         my $udomform = '';          my $udomform = '';
         my $unameform = '';          my $unameform = '';
         if (defined($udom)) {          if (defined($udom)) {
             $udomform = '<i>domain</i>:&nbsp;'.$udom.$udom_input;              $udomform = '<i>'.$lt{'doma'}.'</i>:&nbsp;'.$udom.$udom_input;
         } elsif (defined($uname)) {          } elsif (defined($uname)) {
             $unameform = '<i>username</i>:&nbsp;'.$uname.'&nbsp;&nbsp;'.$uname_input;              $unameform = '<i>'.$lt{'unme'}.'</i>:&nbsp;'.$uname.'&nbsp;&nbsp;'.$uname_input;
         }          }
         if ($udomform eq '') {          if ($udomform eq '') {
             $udomform = '<i>domain</i>:&nbsp;';              $udomform = '<i>'.$lt{'doma'}.'</i>:&nbsp;';
             $udomform .= &Apache::loncommon::select_dom_form('','udom');              $udomform .= &Apache::loncommon::select_dom_form($codedom,'udom');
         }          }
         if ($unameform eq '') {          if ($unameform eq '') {
             $unameform= '<i>username</i>:&nbsp;<input type="text" size="20" name="loncname" value="'.$uname.'" />&nbsp;&nbsp;';              $unameform= '<i>'.$lt{'unme'}.'</i>:&nbsp;<input type="text" size="12" name="uname" value="'.$uname.'" />&nbsp;&nbsp;';
         }          }
         $r->print($unameform.$udomform.'<br />Enter the username you use to log-in to your LON-CAPA system, and choose your domain.');          $r->print($unameform.$udomform.'<br />'.$lt{'entr'});
     }      }
     $r->print(<<END);      $r->print(<<END);
                </td>                 </td>
Line 233  END Line 358  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>URL of page:</b>                 <td align="right"><b>$lt{'urlp'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 249  END Line 374  END
              <table width="100%" border="0" cellpadding="8" cellspacing="0">               <table width="100%" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td>                 <td>
                 $server$origurl<input type="hidden" name="origurl" value="$server$origurl" />                  $server<input type="hidden" name="sourceurl" value="$server" />
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 257  END Line 382  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Phone #:</b>                 <td align="right"><b>$lt{'phon'} #:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 281  END Line 406  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Course Details:</b>                 <td align="right"><b>$lt{'crsd'}:</b>$details_title
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 298  END Line 423  END
               <tr>                <tr>
                <td>                 <td>
 END  END
     if ($coursecodes{$cnum}) {      if ($cnum) { 
         foreach (@codetitles) {          if ($coursecodes{$cnum}) {
             $r->print('<i>'.$_.'</i>:&nbsp;'.$codes{$cnum}{$_});              foreach my $item (@codetitles) {
                   $r->print('<i>'.$item.'</i>:&nbsp;'.$codes{$cnum}{$item}.';&nbsp;');
               }
               $r->print('&nbsp;<input type="hidden" name="coursecode" value="'.$coursecodes{$cnum}.'" />');
           } else {
               $r->print($lt{'enin'}.':&nbsp;
                     <input type="text" name="coursecode" size="15" value="" />');
         }          }
         $r->print('.&nbsp;<input type="hidden" name="coursecode" value="'.$coursecodes{$cnum}.'" />');  
     } else {      } else {
         $r->print('Enter institutional course code:&nbsp;          if ($totcodes > 0) {
               my $numtitles = @codetitles;
               if ($numtitles == 0) {
                   $r->print($lt{'enin'}.':&nbsp;
                     <input type="text" name="coursecode" size="15" value="" />');
               } else {
                   my $lasttitle = $numtitles;
                   if ($numtitles > 4) {
                       $lasttitle = 4;
                   } 
                   $r->print('<table><tr><td>'.$codetitles[0].'<br />'."\n".
                         '<select name="'.$codetitles[0].'" onChange="courseSet('."'$codetitles[0]'".')">'."\n".
                         ' <option value="-1" />'.$lt{'sele'}."\n");
                   my @items = ();
                   my @longitems = ();
                   if ($idlist{$codetitles[0]} =~ /","/) {
                       @items = split(/","/,$idlist{$codetitles[0]});
                   } else {
                       $items[0] = $idlist{$codetitles[0]};
                   }
                   if (defined($idlist_titles{$codetitles[0]})) {
                       if ($idlist_titles{$codetitles[0]} =~ /","/) {
                           @longitems = split(/","/,$idlist_titles{$codetitles[0]});
                       } else {
                           $longitems[0] = $idlist_titles{$codetitles[0]};
                       }
                       for (my $i=0; $i<@longitems; $i++) {
                           if ($longitems[$i] eq '') {
                               $longitems[$i] = $items[$i];
                           }
                       }
                   } else {
                       @longitems = @items;
                   }
                   for (my $i=0; $i<@items; $i++) {
                       $r->print(' <option value="'.$items[$i].'">'.$longitems[$i].'</option>');
                   }
                   $r->print('</select></td>');
                   for (my $i=1; $i<$numtitles; $i++) {
                       $r->print('<td>'.$codetitles[$i].'<br />'."\n".
                        '<select name="'.$codetitles[$i].'" onChange="courseSet('."'$codetitles[$i]'".')">'."\n".
                        '<option value="-1">&lt;-'.$lt{'pick'}.' '.$codetitles[$i-1].'</option>'."\n".
                        '</select>'."\n".
                        '</td>'
                       );
                   }
                   $r->print('</tr></table>');
                   if ($numtitles > 4) {
                       $r->print('<br /><br />'.$codetitles[$numtitles].'<br />'."\n".
                             '<select name="'.$codetitles[$numtitles].'" onChange="courseSet('."'$codetitles[$numtitles]'".')">'."\n".
                             '<option value="-1">&lt;-'.$lt{'pick'}.' '.$codetitles[$numtitles-1].'</option>'."\n".
                             '</select>'."\n");
                   }
               }
           } else {
               $r->print($lt{'enin'}.':&nbsp;
                   <input type="text" name="coursecode" size="15" value="" />');                    <input type="text" name="coursecode" size="15" value="" />');
           }
     }      }
     if ($ctitle) {      if ($ctitle) {
         $r->print('<br /><i>Title</i>:&nbsp;'.$ctitle.'<input type="hidden" name="title" value="'.$ctitle.'" />');          $r->print('<br /><i>'.$lt{'titl'}.'</i>:&nbsp;'.$ctitle.'<input type="hidden" name="title" value="'.$ctitle.'" />');
     } else {      } else {
         $r->print('<br />Enter course title:&nbsp;          $r->print('<br />'.$lt{'enct'}.':&nbsp;
                  <input type="text" name="title" size="15" value="" />');                   <input type="text" name="title" size="25" value="" />');
     }      }
     $r->print(<<END);      $r->print(<<END);
                </td>                 </td>
Line 321  END Line 507  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Section Number: </b>                 <td align="right"><b>$lt{'secn'}: </b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 339  END Line 525  END
                <td>                 <td>
 END  END
     if ($sectionlist) {      if ($sectionlist) {
         $r->print("<select name=\"section\">");          $r->print("<select name=\"section\"\n>".
         foreach (sort keys %groupid) {                    "  <option value=\"\" selected=\"selected\">$lt{'sele'}</option>\n");
             if ($_ eq $groupid{$_} || $groupid{$_} eq '') {          foreach my $id (sort(keys(%groupid))) {
                 $r->print("<option value=\"$_\" />$_");              if ($id eq $groupid{$id} || $groupid{$id} eq '') {
                   $r->print("  <option value=\"$id\" >$id</option>\n");
             } else {              } else {
                 $r->print("<option value=\"$_\" />$_ - (LON-CAPA sec: $groupid{$_}");                  $r->print("  <option value=\"$id\" >$id - ($lt{'lsec'}: $groupid{$id})</option>\n");
             }              }
         }          }
         $r->print("</select>");          $r->print("</select>");
Line 359  END Line 546  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Subject</b>                 <td align="right"><b>$lt{'subj'}</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 383  END Line 570  END
            </tr>             </tr>
            <tr>             <tr>
             <td width="100%" colspan="2" bgcolor="#000000">              <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Detailed description:</b>                 <td align="right"><b>$lt{'detd'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 407  END Line 594  END
            </tr>             </tr>
            <tr>             <tr>
     <td width="100%" colspan="2" bgcolor="#000000">      <td width="100%" colspan="2" bgcolor="#000000">
              <img src="/adm/lonMisc/blackdot.jpg" /><br />               <img src="/adm/lonMisc/blackdot.gif" /><br />
     </td>      </td>
    </tr>     </tr>
   END
       if (defined($env{'user.name'})) {
           $r->print(<<END);
            <tr>             <tr>
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Finish:</b>                 <td align="right"><b>$lt{'opfi'}:</b>
                  </td>
                 </tr>
                </table>
               </td>
               <td width="100%" valign="top">
                <table width="100%" border="0" cellpadding="8" cellspacing="0">
                 <tr>
                  <td>
                   <input type="file" name="screenshot" size="20" /><br />$lt{'uplf'}
                  </td>
                 </tr>
                </table>
               </td>
              </tr>
              <tr>
               <td width="100%" colspan="2" bgcolor="#000000">
                <img src="/adm/lonMisc/blackdot.gif" /><br />
               </td>
              </tr>
   END
       }
   
       $r->print(<<END);
              <tr>
               <td width="140" bgcolor="$tablecolor">
                <table width="140" border="0" cellpadding="8" cellspacing="0">
                 <tr>
                  <td align="right"><b>$lt{'fini'}:</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 424  END Line 642  END
               <tr>                <tr>
                <td>                 <td>
                 <input type="hidden" name="action" value="process" />                  <input type="hidden" name="action" value="process" />
                 <input type="submit" value="Submit Request Form" /> &nbsp;                  <input type="button" value="$lt{'subm'}" onClick="validate()"/> &nbsp;
                </td>                 </td>
                <td>&nbsp;</td>                 <td>&nbsp;</td>
                <td>                 <td>
                 <input type="reset" value="Clear Form">                  <input type="reset" value="$lt{'clfm'}">
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 444  END Line 662  END
    </td>     </td>
   </tr>    </tr>
  </table>   </table>
   </form>
 END  END
       $r->print(&Apache::loncommon::end_page());
       return;
 # What do we know about this user?  
 #    foreach (sort keys %ENV) {  
 #        if ($_ =~ m/^browser/) {  
 #            $r->print("key is $_, value is $ENV{$_}");  
 #        } elsif ($_ =~ m/^environment/) {  
 #            $r->print("key is $_, value is $ENV{$_}");  
 #        } elsif ($_ =~ m/^request/) {  
 #            $r->print("key is $_, value is $ENV{$_}");  
 #        } elsif ($_ =~ m/^user\.(domain|home|name)/) {  
 #            $r->print("key is $_, value is $ENV{$_}");  
 #        } elsif ($_ =~ /^[A-Z]/) {  
 #            $r->print("key is $_, value is $ENV{$_}");  
 #        }  
 #    }  
     return  
 }  }
   
 sub print_request_receipt {  sub print_request_receipt {
     my ($r,$url,$function) = @_;      my ($r,$url,$function) = @_;
     my @envvars = ('lonID','HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME','browser.os','browser.type','browser.version','user.home','request.role');      my @ENVvars = ('HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME');
     my $bodytag = &Apache::loncommon::bodytag('',$function,'topmargin="0" marginheight="0"',1);      my @envvars = ('browser.os','browser.type','browser.version','user.home','request.role');
       my @loncvars = ('user.name','user.domain','request.course.sec','request.course.id');
       my @cookievars = ('lonID');
   
       my $admin = $Apache::lonnet::perlvar{'lonAdminMail'};
     my $to =  $Apache::lonnet::perlvar{'lonSupportEMail'};      my $to =  $Apache::lonnet::perlvar{'lonSupportEMail'};
       my $from = $admin;
     my $reporttime = &Apache::lonlocal::locallocaltime(time);      my $reporttime = &Apache::lonlocal::locallocaltime(time);
     my $fontcolor = &Apache::loncommon::designparm($function.'.font');      my $fontcolor = &Apache::loncommon::designparm($function.'.font');
     my $vlinkcolor = &Apache::loncommon::designparm($function.'.vlink');      my $vlinkcolor = &Apache::loncommon::designparm($function.'.vlink');
     my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');      my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');
     my @formvars = ('username','email','uname','udom','origurl','phone','section','coursecode','title','subject','description');      my @formvars = ('username','email','uname','udom','sourceurl','phone','section','coursecode','title','subject','description','screenshot');
     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars);  
   
 #    if ($ENV{'request.course.fn'}) {      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars);
 #        my $formdatafile = $ENV{'request.course.fn'}.'.formdata';      my $coursecode = $env{'form.coursecode'};
 #        if (-e $formdatafile) {      if ($coursecode eq '') {
 #            open(FILE,"<$formdatafile");          if (defined($env{'form.Year'})) {
 #            my @buffer =<FILE>;              $coursecode .= $env{'form.Year'};
 #            close(FILE);          }
 #            foreach (@buffer) {          if (defined($env{'form.Semester'})) {
 #                print STDERR $_;              $coursecode .= $env{'form.Semester'};
 #            }           }
 #        }          if (defined($env{'form.Department'})) {
 #    }              $coursecode .= $env{'form.Department'};
           }
           if (defined($env{'form.Number'})) {
               $coursecode .= $env{'form.Number'};
           }
       }
       my %lt = &Apache::lonlocal::texthash (
                    name => 'Name',
                    email => 'Email',
                    unme => 'Username/domain',
                    tel => 'Tel',
                    crsi => 'Course Information',
                    subj => 'Subject',
                    desc => 'Description',
                    date => 'Date/Time',
                    secn => 'Section',
                    asup => 'A support request has been sent to',
                    warn => 'Warning: Problem with support e-mail address',
                    your => 'Your support request contained the following information',
                    sect => 'section',
                    info => 'Information supplied',
                    adin => 'Additional information recorded',
       );
   
     my $supportmsg = qq|      my $supportmsg = qq|
 Name: $ENV{'form.username'}  $lt{'name'}: $env{'form.username'}
 Email: $ENV{'form.email'}  $lt{'email'}: $env{'form.email'}
 Username/domain: $ENV{'form.uname'} - $ENV{'form.udom'}  $lt{'unme'}: $env{'form.uname'} - $env{'form.udom'}
 Tel: $ENV{'form.phone'}  $lt{'tel'}: $env{'form.phone'}
 Course Information: $ENV{'form.title'} - $ENV{'form.coursecode'} - section: $ENV{'form.section'}  $lt{'crsi'}: $env{'form.title'} - $coursecode - $lt{'secn'}: $env{'form.section'}
 Subject: $ENV{'form.subject'}  $lt{'subj'}: $env{'form.subject'}
 Description: $ENV{'form.description'}  $lt{'desc'}: $env{'form.description'}
 URL: $ENV{'form.origurl'}  URL: $env{'form.sourceurl'}
 Date/Time: $reporttime  $lt{'date'}: $reporttime
   
     |;      |;
     if ($to =~ m/^[^\@]+\@[^\@]+$/) {      my $descrip = $env{'form.description'};
         $r->print(<<END);      $descrip =~ s#\n#<br />#g;
 <html>      my $displaymsg = qq|
 <head>  <font color="$fontcolor">$lt{'name'}:</font><font color="$vlinkcolor"> $env{'form.username'}</font><br />
  <title>LON-CAPA support request recorded</title>  <font color="$fontcolor">$lt{'email'}: </font><font color="$vlinkcolor">$env{'form.email'}</font><br />
 </head>  <font color="$fontcolor">$lt{'unme'}: </font><font color="$vlinkcolor">$env{'form.uname'} - $env{'form.udom'}</font><br />
 $bodytag  <font color="$fontcolor">$lt{'tel'}: </font><font color="$vlinkcolor">$env{'form.phone'}</font><br />
  <h3>A support request has been sent to $to</h3>  <font color="$fontcolor">$lt{'crsi'}: </font><font color="$vlinkcolor">$env{'form.title'} - $coursecode - $lt{'sect'}: $env{'form.section'}</font><br />
 END  <font color="$fontcolor">$lt{'subj'}: </font><font color="$vlinkcolor">$env{'form.subject'}</font><br />
     } else {   <font color="$fontcolor">$lt{'desc'}: </font><font color="$vlinkcolor">$descrip</font><br />
         $to = 'helpdesk@lon-capa.org';  <font color="$fontcolor">URL: </font><font color="$vlinkcolor">$env{'form.sourceurl'}</font><br />
         $r->print(<<END);  <font color="$fontcolor">$lt{'date'}: </font><font color="$vlinkcolor">$reporttime</font><br />
 <html>      |;
 <head>  
  <title>LON-CAPA support request recorded</title>      my $start_page = 
 </head>   &Apache::loncommon::start_page('Support request recorded',undef,
 $bodytag         {'function'    => $function,
  <h3>Warning: Problem with support e-mail address</h3>   'add_entries' => {
 As the e-mail address provided for this LON-CAPA server ($to) does not appear to be a valid e-mail address, your support request has not been sent to the LON-CAPA support staff at your institution. Instead a copy has been sent to the LON-CAPA support team at Michigan State University.       topmargin    => "0",
       marginheight => "0",
    },
    'only_body'   => 1,});
   
       $r->print(<<"END");
   $start_page
   <form name="logproblem">
   <input type="hidden" name="action" value="result" />
   </form>
 END  END
       if ($r->uri eq '/adm/helpdesk') {
           &print_header($r,$url,'process');
     }      }
     my $msg = new Mail::Send;      if ($to =~ m/^[^\@]+\@[^\@]+$/) {
     $msg->to($to);          $r->print('<h3>'.$lt{'asup'}.' '.$to.'</h3>');
 #    if (defined($ENV{'form.email'})) {      } else {
 #        if ($ENV{'form.email'} =~ m/^[^\@]+\@[^\@]+$/) {          $to = $admin;
 #            $msg->from($ENV{'form.email'});          if ($to =~ m/^[^\@]+\@[^\@]+$/) {
 #        }              $r->print('<h3>'.$lt{'asup'}.' '.$to.'</h3>');
 #    }          } else {
     $msg->subject('[LON-CAPA] - support request');              $r->print('
     if (my $fh = $msg->open()) {   <h3>'.$lt{'warn'}.'</h3>'.
         print $fh $supportmsg;  &mt('As the e-mail address provided for this LON-CAPA server ([_1]) does not appear to be a valid e-mail address, your support request has <b>not</b> been sent to the LON-CAPA support staff or administrator at your institution.',$to).' '.&mt('Instead a copy has been sent to the LON-CAPA support team at Michigan State University.')); 
         $fh->close;              $to = 'helpdesk@lon-capa.org';
           }
     }      }
     $r->print(<<END);      if (defined($env{'form.email'})) {
  <b>Your support request contained the following information</b>:<br /><br />          if ($env{'form.email'} =~ m/^[^\@]+\@[^\@]+$/) {
               $from = $env{'form.email'};
           }
       }
   
       my $subject = $env{'form.subject'};
       $subject =~ s#(`)#'#g;
       $subject =~ s#\$#\(\$\)#g;
       $supportmsg =~ s#(`)#'#g;
       $supportmsg =~ s#\$#\(\$\)#g;
       $displaymsg =~ s#(`)#'#g;
       $displaymsg =~ s#\$#\(\$\)#g;
       my $fname;
   
       my $attachmentpath = '';
       my $attachmentsize = '';
       if (defined($env{'user.name'})) {
           if ($env{'form.screenshot.filename'}) {
               $attachmentsize = length($env{'form.screenshot'});
               if ($attachmentsize > 131072) {
                   $displaymsg .= '<br />'.&mt('The uploaded screenshot file ([_1] bytes) included with your request exceeded the maximum allowed size - 128 KB, and has therefore been discarded.',$attachmentsize);
               } else {
                   $attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests');
               }
           }
       }
   
       my %cookies;
       my $cookie=CGI::Cookie->parse($r->header_in('Cookie'));
       if ($$cookie{'lonID'} =~ /lonID=($LONCAPA::handle_re);/) {
           $cookies{'lonID'} = $1;
       }
   
       if ($attachmentpath =~ m-/([^/]+)$-) {
           $fname = $1;
           $displaymsg .= '<br />'.&mt('An uploaded screenshot file - [_1] ([_2] bytes) was included in the request sent by [_3] from LON-CAPA domain',$fname,$attachmentsize,$env{'user.name'}.': '.$env{'user.domain'});
           $supportmsg .= "\n";
           foreach my $var (@cookievars) {
               $supportmsg .= "$var: $cookies{$var}\n";
           }
           foreach my $var(@ENVvars) {
               $supportmsg .= "$var: $ENV{$var}\n";
           }
           foreach my $var (@envvars) {
               $supportmsg .= "$var: $env{$var}\n";
           }
       }
    
       my $msg = MIME::Lite->new(
                    From    => $from,
                    To      => $to,
                    Subject => $subject,
                    Type    =>'TEXT',
                    Data    => $supportmsg,
                    );
   
       if ($attachmentpath) {
           my ($type, $encoding) = MIME::Types::by_suffix($attachmentpath);
           $msg->attach(Type     => $type,
                        Path     => $attachmentpath,
                        Filename => $fname
                        );
   
       } else {
           my $envdata = '';
           foreach my $var (@cookievars) {
               $envdata .= "$var: $cookies{$var}\n";
           }
           foreach my $var (@ENVvars) {
               $envdata .= "$var: $ENV{$var}\n";
           }
           foreach my $var (@envvars) {
               $envdata .= "$var: $env{$var}\n";
           }
           foreach my $var (@loncvars) {
               $envdata .= "$var: $env{$var}\n";
           }
           $msg->attach(Type => 'TEXT',
                        Data => $envdata);
       }
   
   ### Send it:
       $msg->send('sendmail');
   
       if ($attachmentpath =~ m#$Apache::lonnet::perlvar{'lonDaemons'}/tmp/helprequests/(\d+)/[^/]+#) {
           unlink($attachmentpath);
       }
       $r->print(qq|
    <b>$lt{'your'}</b>:<br /><br />
  <table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">   <table width="580" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
   <tr>    <tr>
    <td>     <td>
Line 549  END Line 879  END
             <td width="140" bgcolor="$tablecolor">              <td width="140" bgcolor="$tablecolor">
              <table width="140" border="0" cellpadding="8" cellspacing="0">               <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Information supplied</b>                 <td align="right"><b>$lt{'info'}</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 557  END Line 887  END
             <td width="100%" valign="top">              <td width="100%" valign="top">
              <table width="100%" border="0" cellpadding="8" cellspacing="0">               <table width="100%" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td>                 <td>$displaymsg</td>
 END  
     my @textmsg = split/\n/,$supportmsg;  
     foreach my $line (@textmsg) {  
         $line =~ s|^|<font color="$fontcolor">|;  
         $line =~ s|:|:</font><font color="$vlinkcolor">|;  
         $r->print("$line</font><br />");  
     }  
     $r->print('</td>  
               </tr>                </tr>
              </table>               </table>
             </td>              </td>
            </tr>             </tr>
            <tr>             <tr>
             <td width="130" bgcolor="'.$tablecolor.'">              <td width="100%" colspan="2" bgcolor="#000000">
              <table width="130" border="0" cellpadding="8" cellspacing="0">               <img src="/adm/lonMisc/blackdot.gif" /><br />
               </td>
              </tr>
              <tr>
               <td width="140" bgcolor="$tablecolor">
                <table width="140" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td align="right"><b>Additional information recorded</b>                 <td align="right"><b>$lt{'adin'}</b>
                </td>                 </td>
               </tr>                </tr>
              </table>               </table>
Line 583  END Line 910  END
              <table width="100%" border="0" cellpadding="8" cellspacing="0">               <table width="100%" border="0" cellpadding="8" cellspacing="0">
               <tr>                <tr>
                <td>                 <td>
     ');      |);
     foreach (@envvars) {      foreach my $var (@cookievars) {
         $r->print("$_:&nbsp;<font color='$vlinkcolor>$ENV{$_}</font>, ");          unless($cookies{$var} eq '') {
         $supportmsg .= "$_: $ENV{$_}\n";              $r->print("$var:&nbsp;<font color='$vlinkcolor'>$cookies{$var}</font>, ");
           }
       }
       foreach my $var (@ENVvars) {
           unless($ENV{$var} eq '') {
               $r->print("$var:&nbsp;<font color='$vlinkcolor'>$ENV{$var}</font>, ");
           }
       }
       foreach my $var (@envvars) {
           unless($env{$var} eq '') { 
               $r->print("$var:&nbsp;<font color='$vlinkcolor'>$env{$var}</font>, ");
           }
     }      }
     $r->print("      $r->print("
                </td>                 </td>
Line 605  END Line 943  END
   </tr>    </tr>
  </table>   </table>
     ");      ");
       $r->print(&Apache::loncommon::end_page());
 }  }
   
 sub retrieve_instcodes {  sub print_header {
     my ($coursecodes,$codedom,$totcodes) = @_;      my ($r,$origurl,$action) = @_;
     my %courses = &Apache::lonnet::courseiddump($codedom,'.',1);      my $location=&Apache::loncommon::lonhttpdurl("/adm");
     foreach my $course (keys %courses) {      my $tablecolor = '#EEEE99';
         if ($courses{$course} =~ m/^[^:]*:([^:]+)$/) {      my ($component_url);
             $$coursecodes{$course} = &Apache::lonnet::unescape($1);      my $helpdesk_link = '<a href="javascript:validate()">';
             $totcodes ++;      if ($action eq 'process') {
         }          $helpdesk_link = '<a href="/adm/helpdesk">';
     }      }
     return $totcodes;      my %lt = &Apache::lonlocal::texthash (
                                              login => 'Log-in help',
                                              ask   => 'Ask helpdesk',
                                              getst => 'Getting started guide',
                                              back =>  'Back to last location'
                                            );
       my ($getstartlink,$getstarttext);
       if (-e $Apache::lonnet::perlvar{'lonDocRoot'}.'/adm/gettingstarted.html') {
           $getstartlink = qq|<td align="center">&nbsp;<b><a href="/adm/gettingstarted.html">$lt{'getst'}</a></td>|;
           $getstarttext = ' '.&mt('and the "Getting started" guide').' ';
       }
       $r->print(<<END);
   <table width="620" border="0" cellspacing="0" cellpadding="0" height="55">   <tr height="50">    <td width='5'>&nbsp;</td>
      <td>
       <fieldset><legend><img src="$location/lonIcons/minilogo.gif" height='20' width='29' valign='bottom' />&nbsp;&nbsp;<b><font size="+1">LON-CAPA help/support</font></b></legend>
    <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
     <tr>
      <td>
       <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000">
        <tr>
         <td>
          <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff">
           <tr>
            <td>
             <table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff">
              <tr bgcolor="$tablecolor">
               <td align="center"><img src="$location/help/gif/smallHelp.gif" border="0" alt="($lt{'login'})" valign="middle" />&nbsp;<b><a href="/adm/loginproblems.html">$lt{'login'}</a></td>
               <td align="center">&nbsp;<b>$helpdesk_link<img src="$location/lonIcons/helpdesk.gif" border="0" alt="($lt{'ask'})" valign="middle" />&nbsp;$lt{'ask'}</a></b>&nbsp;</td>$getstartlink
               <td align="center">&nbsp;<b><a href="$origurl" target="_top"><img src="$location/lonIcons/move_up.gif" border="0" alt="($lt{'back'})" valign="middle" />&nbsp;$lt{'back'}</a></b>&nbsp;</td>
              </tr>
             </table>
            </td>
           </tr>
          </table>
         </td>
        </tr>
       </table>
      </td>
     </tr>
    </table>
   </fieldset>
     </td>
     <td width='5'>&nbsp;</td>
    </tr>
    <tr height='5'>
     <td colspan='3' height='5'>&nbsp;</td>
    </tr>
   END
       unless ($action eq 'process') {
           $r->print('
    <tr>
     <td colspan="3">'.&mt('
   Please review the information in "Log-in help"').$getstarttext.' '.&mt('if you are unable to log-in').'.  '.&mt('If your problem is still unresolved, the form below can be used to send a question to the LON-CAPA helpdesk').'.<br /><font size="-1"><b>'.&mt('Note').':</b> '.&mt('Student questions about course content should be directed to the course instructor').'.</font><br /><br />
     </td>
    </tr>');
       }
       $r->print('
   </table>');
       return;
 }  }
   
 1;  1;

Removed from v.1.1  
changed lines
  Added in v.1.43


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