version 1.33, 2006/04/10 21:40:09
|
version 1.42, 2006/12/22 20:51:27
|
Line 27
|
Line 27
|
package Apache::lonsupportreq; |
package Apache::lonsupportreq; |
|
|
use strict; |
use strict; |
use lib qw(/home/httpd/lib/perl); |
|
use MIME::Types; |
use MIME::Types; |
use MIME::Lite; |
use MIME::Lite; |
use CGI::Cookie(); |
use CGI::Cookie(); |
Line 35 use Apache::Constants qw(:common);
|
Line 34 use Apache::Constants qw(:common);
|
use Apache::loncommon(); |
use Apache::loncommon(); |
use Apache::lonnet; |
use Apache::lonnet; |
use Apache::lonlocal; |
use Apache::lonlocal; |
|
use Apache::lonacc(); |
|
use Apache::courseclassifier; |
|
use LONCAPA; |
|
|
|
|
sub handler { |
sub handler { |
my ($r) = @_; |
my ($r) = @_; |
Line 44 sub handler {
|
Line 47 sub handler {
|
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']); |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['origurl','function']); |
if ($r->uri eq '/adm/helpdesk') { |
if ($r->uri eq '/adm/helpdesk') { |
&Apache::loncommon::get_posted_cgi($r); |
&Apache::lonacc::get_posted_cgi($r); |
} |
} |
my $function = $env{'form.function'}; |
my $function = $env{'form.function'}; |
my $origurl = &Apache::lonnet::unescape($env{'form.origurl'}); |
my $origurl = &unescape($env{'form.origurl'}); |
my $action = $env{'form.action'}; |
my $action = $env{'form.action'}; |
|
|
if ($action eq 'process') { |
if ($action eq 'process') { |
Line 79 sub print_request_form {
|
Line 86 sub print_request_form {
|
$usec = $env{'request.course.sec'}; |
$usec = $env{'request.course.sec'}; |
$cid = $env{'request.course.id'}; |
$cid = $env{'request.course.id'}; |
$formname = 'logproblem'; |
$formname = 'logproblem'; |
if ($origurl =~ m-^http://-) { |
my $machine = &Apache::lonnet::absolute_url(); |
|
if ($origurl =~ m-^https?://-) { |
$server = $origurl; |
$server = $origurl; |
} else { |
} else { |
$server = 'http://'.$ENV{'SERVER_NAME'}.$origurl; |
$server = $machine.$origurl; |
} |
} |
my $scripttag = (<<'END'); |
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() { |
function validate() { |
if (validmail(document.logproblem.email) == false) { |
if (validmail(document.logproblem.email) == false) { |
alert("The e-mail address you entered: "+document.logproblem.email.value+" is not a valid e-mail address."); |
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; |
return; |
} |
} |
document.logproblem.submit(); |
document.logproblem.submit(); |
} |
} |
|
|
|
END |
|
$scripttag .= <<'END'; |
function validmail(field) { |
function validmail(field) { |
var str = field.value; |
var str = field.value; |
if (window.RegExp) { |
if (window.RegExp) { |
Line 116 function validmail(field) {
|
Line 162 function validmail(field) {
|
END |
END |
|
|
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 136 END
|
Line 182 END
|
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; |
} |
} |
my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'}; |
my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'}; |
Line 151 END
|
Line 197 END
|
if ($codedom) { |
if ($codedom) { |
$details_title = '<br />('.$codedom.')'; |
$details_title = '<br />('.$codedom.')'; |
} |
} |
my %coursecodes = (); |
my %coursecodes; |
my %codes = (); |
my %codes; |
my @codetitles = (); |
my @codetitles; |
my %cat_titles = (); |
my %cat_titles; |
my %cat_order = (); |
my %cat_order; |
my %idlist = (); |
my %idlist; |
my %idnums = (); |
my %idnums; |
my %idlist_titles = (); |
my %idlist_titles; |
my $caller = 'global'; |
my $caller = 'global'; |
my $totcodes = 0; |
my $totcodes = 0; |
my $format_reply; |
my $format_reply; |
Line 174 function initialize_codes() {
|
Line 220 function initialize_codes() {
|
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) { |
if ($ccode eq '') { |
if ($ccode eq '') { |
$format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); |
$format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); |
if ($format_reply eq 'ok') { |
if ($format_reply eq 'ok') { |
my $numtypes = @codetitles; |
my $numtypes = @codetitles; |
&build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles); |
&Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles); |
&javascript_code_selections($formname,$numtypes,\%cat_titles,\$jscript,\%idlist,\%idnums,\%idlist_titles,\@codetitles); |
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 = ''; |
$loaditems = ''; |
} |
} |
} |
} |
Line 227 function initialize_codes() {
|
Line 278 function initialize_codes() {
|
<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 250 END
|
Line 301 END
|
$r->print('<input type="text" size="20" name="username" value="'.$fullname.'" />'); |
$r->print('<input type="text" size="20" name="username" value="'.$fullname.'" />'); |
} |
} |
$r->print(<<END); |
$r->print(<<END); |
<input type="button" value="Submit Request" onClick="validate()" /> |
<input type="button" value="$lt{'subm'}" onClick="validate()" /> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 265 END
|
Line 316 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>E-mail address:</b> |
<td align="right"><b>$lt{'emad'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 289 END
|
Line 340 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>username/domain:</b> |
<td align="right"><b>$lt{'unme'}/$lt{'doma'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 302 END
|
Line 353 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>: '.$uname.' <i>domain</i>: '.$udom.$udom_input.$uname_input); |
$r->print('<i>'.$lt{'unme'}.'</i>: '.$uname.' <i>'.$lt{'doma'}.'</i>: '.$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>: '.$udom.$udom_input; |
$udomform = '<i>'.$lt{'doma'}.'</i>: '.$udom.$udom_input; |
} elsif (defined($uname)) { |
} elsif (defined($uname)) { |
$unameform = '<i>username</i>: '.$uname.' '.$uname_input; |
$unameform = '<i>'.$lt{'unme'}.'</i>: '.$uname.' '.$uname_input; |
} |
} |
if ($udomform eq '') { |
if ($udomform eq '') { |
$udomform = '<i>domain</i>: '; |
$udomform = '<i>'.$lt{'doma'}.'</i>: '; |
$udomform .= &Apache::loncommon::select_dom_form($codedom,'udom'); |
$udomform .= &Apache::loncommon::select_dom_form($codedom,'udom'); |
} |
} |
if ($unameform eq '') { |
if ($unameform eq '') { |
$unameform= '<i>username</i>: <input type="text" size="12" name="uname" value="'.$uname.'" /> '; |
$unameform= '<i>'.$lt{'unme'}.'</i>: <input type="text" size="12" name="uname" value="'.$uname.'" /> '; |
} |
} |
$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 335 END
|
Line 386 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>URL of page:</b> |
<td align="right"><b>$lt{'urlp'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 359 END
|
Line 410 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>Phone #:</b> |
<td align="right"><b>$lt{'phon'} #:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 383 END
|
Line 434 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>Course Details:</b>$details_title |
<td align="right"><b>$lt{'crsd'}:</b>$details_title |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 395 END
|
Line 446 END
|
END |
END |
if ($cnum) { |
if ($cnum) { |
if ($coursecodes{$cnum}) { |
if ($coursecodes{$cnum}) { |
foreach (@codetitles) { |
foreach my $item (@codetitles) { |
$r->print('<i>'.$_.'</i>: '.$codes{$cnum}{$_}.'; '); |
$r->print('<i>'.$item.'</i>: '.$codes{$cnum}{$item}.'; '); |
} |
} |
$r->print(' <input type="hidden" name="coursecode" value="'.$coursecodes{$cnum}.'" />'); |
$r->print(' <input type="hidden" name="coursecode" value="'.$coursecodes{$cnum}.'" />'); |
} else { |
} else { |
$r->print('Enter institutional course code: |
$r->print($lt{'enin'}.': |
<input type="text" name="coursecode" size="15" value="" />'); |
<input type="text" name="coursecode" size="15" value="" />'); |
} |
} |
} else { |
} else { |
if ($totcodes > 0) { |
if ($totcodes > 0) { |
my $numtitles = @codetitles; |
my $numtitles = @codetitles; |
if ($numtitles == 0) { |
if ($numtitles == 0) { |
$r->print('Enter institutional course code: |
$r->print($lt{'enin'}.': |
<input type="text" name="coursecode" size="15" value="" />'); |
<input type="text" name="coursecode" size="15" value="" />'); |
} else { |
} else { |
my $lasttitle = $numtitles; |
my $lasttitle = $numtitles; |
Line 416 END
|
Line 467 END
|
} |
} |
$r->print('<table><tr><td>'.$codetitles[0].'<br />'."\n". |
$r->print('<table><tr><td>'.$codetitles[0].'<br />'."\n". |
'<select name="'.$codetitles[0].'" onChange="courseSet('."'$codetitles[0]'".')">'."\n". |
'<select name="'.$codetitles[0].'" onChange="courseSet('."'$codetitles[0]'".')">'."\n". |
' <option value="-1" />Select'."\n"); |
' <option value="-1" />'.$lt{'sele'}."\n"); |
my @items = (); |
my @items = (); |
my @longitems = (); |
my @longitems = (); |
if ($idlist{$codetitles[0]} =~ /","/) { |
if ($idlist{$codetitles[0]} =~ /","/) { |
@items = split/","/,$idlist{$codetitles[0]}; |
@items = split(/","/,$idlist{$codetitles[0]}); |
} else { |
} else { |
$items[0] = $idlist{$codetitles[0]}; |
$items[0] = $idlist{$codetitles[0]}; |
} |
} |
if (defined($idlist_titles{$codetitles[0]})) { |
if (defined($idlist_titles{$codetitles[0]})) { |
if ($idlist_titles{$codetitles[0]} =~ /","/) { |
if ($idlist_titles{$codetitles[0]} =~ /","/) { |
@longitems = split/","/,$idlist_titles{$codetitles[0]}; |
@longitems = split(/","/,$idlist_titles{$codetitles[0]}); |
} else { |
} else { |
$longitems[0] = $idlist_titles{$codetitles[0]}; |
$longitems[0] = $idlist_titles{$codetitles[0]}; |
} |
} |
Line 445 END
|
Line 496 END
|
for (my $i=1; $i<$numtitles; $i++) { |
for (my $i=1; $i<$numtitles; $i++) { |
$r->print('<td>'.$codetitles[$i].'<br />'."\n". |
$r->print('<td>'.$codetitles[$i].'<br />'."\n". |
'<select name="'.$codetitles[$i].'" onChange="courseSet('."'$codetitles[$i]'".')">'."\n". |
'<select name="'.$codetitles[$i].'" onChange="courseSet('."'$codetitles[$i]'".')">'."\n". |
'<option value="-1"><-Pick '.$codetitles[$i-1].'</option>'."\n". |
'<option value="-1"><-'.$lt{'pick'}.' '.$codetitles[$i-1].'</option>'."\n". |
'</select>'."\n". |
'</select>'."\n". |
'</td>' |
'</td>' |
); |
); |
Line 454 END
|
Line 505 END
|
if ($numtitles > 4) { |
if ($numtitles > 4) { |
$r->print('<br /><br />'.$codetitles[$numtitles].'<br />'."\n". |
$r->print('<br /><br />'.$codetitles[$numtitles].'<br />'."\n". |
'<select name="'.$codetitles[$numtitles].'" onChange="courseSet('."'$codetitles[$numtitles]'".')">'."\n". |
'<select name="'.$codetitles[$numtitles].'" onChange="courseSet('."'$codetitles[$numtitles]'".')">'."\n". |
'<option value="-1"><-Pick '.$codetitles[$numtitles-1].'</option>'."\n". |
'<option value="-1"><-'.$lt{'pick'}.' '.$codetitles[$numtitles-1].'</option>'."\n". |
'</select>'."\n"); |
'</select>'."\n"); |
} |
} |
} |
} |
} else { |
} else { |
$r->print('Enter institutional course code: |
$r->print($lt{'enin'}.': |
<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>: '.$ctitle.'<input type="hidden" name="title" value="'.$ctitle.'" />'); |
$r->print('<br /><i>'.$lt{'titl'}.'</i>: '.$ctitle.'<input type="hidden" name="title" value="'.$ctitle.'" />'); |
} else { |
} else { |
$r->print('<br />Enter course title: |
$r->print('<br />'.$lt{'enct'}.': |
<input type="text" name="title" size="25" value="" />'); |
<input type="text" name="title" size="25" value="" />'); |
} |
} |
$r->print(<<END); |
$r->print(<<END); |
Line 484 END
|
Line 535 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>Section Number: </b> |
<td align="right"><b>$lt{'secn'}: </b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 496 END
|
Line 547 END
|
END |
END |
if ($sectionlist) { |
if ($sectionlist) { |
$r->print("<select name=\"section\"\n>". |
$r->print("<select name=\"section\"\n>". |
" <option value=\"\" selected=\"selected\">Select</option>\n"); |
" <option value=\"\" selected=\"selected\">$lt{'sele'}</option>\n"); |
foreach (sort keys %groupid) { |
foreach my $id (sort(keys(%groupid))) { |
if ($_ eq $groupid{$_} || $groupid{$_} eq '') { |
if ($id eq $groupid{$id} || $groupid{$id} eq '') { |
$r->print(" <option value=\"$_\" >$_</option>\n"); |
$r->print(" <option value=\"$id\" >$id</option>\n"); |
} else { |
} else { |
$r->print(" <option value=\"$_\" >$_ - (LON-CAPA sec: $groupid{$_})</option>\n"); |
$r->print(" <option value=\"$id\" >$id - ($lt{'lsec'}: $groupid{$id})</option>\n"); |
} |
} |
} |
} |
$r->print("</select>"); |
$r->print("</select>"); |
Line 523 END
|
Line 574 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>Subject</b> |
<td align="right"><b>$lt{'subj'}</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 547 END
|
Line 598 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>Detailed description:</b> |
<td align="right"><b>$lt{'detd'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 574 END
|
Line 625 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>Optional file upload:</b> |
<td align="right"><b>$lt{'opfi'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 583 END
|
Line 634 END
|
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
<table width="100%" border="0" cellpadding="8" cellspacing="0"> |
<tr> |
<tr> |
<td> |
<td> |
<input type="file" name="screenshot" size="20" /><br />Upload a file (e.g., a screenshot) relevant to your support request (128 KB max. size). |
<input type="file" name="screenshot" size="20" /><br />$lt{'uplf'} |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 602 END
|
Line 653 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>Finish:</b> |
<td align="right"><b>$lt{'fini'}:</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 612 END
|
Line 663 END
|
<tr> |
<tr> |
<td> |
<td> |
<input type="hidden" name="action" value="process" /> |
<input type="hidden" name="action" value="process" /> |
<input type="button" value="Submit Request" onClick="validate()"/> |
<input type="button" value="$lt{'subm'}" onClick="validate()"/> |
</td> |
</td> |
<td> </td> |
<td> </td> |
<td> |
<td> |
<input type="reset" value="Clear Form"> |
<input type="reset" value="$lt{'clfm'}"> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 670 sub print_request_receipt {
|
Line 721 sub print_request_receipt {
|
$coursecode .= $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'} - $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.sourceurl'} |
URL: $env{'form.sourceurl'} |
Date/Time: $reporttime |
$lt{'date'}: $reporttime |
|
|
|; |
|; |
my $descrip = $env{'form.description'}; |
my $descrip = $env{'form.description'}; |
$descrip =~ s#\n#<br />#g; |
$descrip =~ s#\n#<br />#g; |
my $displaymsg = qq| |
my $displaymsg = qq| |
<font color="$fontcolor">Name:</font><font color="$vlinkcolor"> $env{'form.username'}</font><br /> |
<font color="$fontcolor">$lt{'name'}:</font><font color="$vlinkcolor"> $env{'form.username'}</font><br /> |
<font color="$fontcolor">Email: </font><font color="$vlinkcolor">$env{'form.email'}</font><br /> |
<font color="$fontcolor">$lt{'email'}: </font><font color="$vlinkcolor">$env{'form.email'}</font><br /> |
<font color="$fontcolor">Username/domain: </font><font color="$vlinkcolor">$env{'form.uname'} - $env{'form.udom'}</font><br /> |
<font color="$fontcolor">$lt{'unme'}: </font><font color="$vlinkcolor">$env{'form.uname'} - $env{'form.udom'}</font><br /> |
<font color="$fontcolor">Tel: </font><font color="$vlinkcolor">$env{'form.phone'}</font><br /> |
<font color="$fontcolor">$lt{'tel'}: </font><font color="$vlinkcolor">$env{'form.phone'}</font><br /> |
<font color="$fontcolor">Course Information: </font><font color="$vlinkcolor">$env{'form.title'} - $coursecode - section: $env{'form.section'}</font><br /> |
<font color="$fontcolor">$lt{'crsi'}: </font><font color="$vlinkcolor">$env{'form.title'} - $coursecode - $lt{'sect'}: $env{'form.section'}</font><br /> |
<font color="$fontcolor">Subject: </font><font color="$vlinkcolor">$env{'form.subject'}</font><br /> |
<font color="$fontcolor">$lt{'subj'}: </font><font color="$vlinkcolor">$env{'form.subject'}</font><br /> |
<font color="$fontcolor">Description: </font><font color="$vlinkcolor">$descrip</font><br /> |
<font color="$fontcolor">$lt{'desc'}: </font><font color="$vlinkcolor">$descrip</font><br /> |
<font color="$fontcolor">URL: </font><font color="$vlinkcolor">$env{'form.sourceurl'}</font><br /> |
<font color="$fontcolor">URL: </font><font color="$vlinkcolor">$env{'form.sourceurl'}</font><br /> |
<font color="$fontcolor">Date/Time: </font><font color="$vlinkcolor">$reporttime</font><br /> |
<font color="$fontcolor">$lt{'date'}: </font><font color="$vlinkcolor">$reporttime</font><br /> |
|; |
|; |
|
|
my $start_page = |
my $start_page = |
Line 715 END
|
Line 784 END
|
&print_header($r,$url,'process'); |
&print_header($r,$url,'process'); |
} |
} |
if ($to =~ m/^[^\@]+\@[^\@]+$/) { |
if ($to =~ m/^[^\@]+\@[^\@]+$/) { |
$r->print("<h3>A support request has been sent to $to</h3>"); |
$r->print('<h3>'.$lt{'asup'}.' '.$to.'</h3>'); |
} else { |
} else { |
$to = $admin; |
$to = $admin; |
if ($to =~ m/^[^\@]+\@[^\@]+$/) { |
if ($to =~ m/^[^\@]+\@[^\@]+$/) { |
$r->print("<h3>A support request has been sent to $to</h3>"); |
$r->print('<h3>'.$lt{'asup'}.' '.$to.'</h3>'); |
END |
|
} else { |
} else { |
$r->print(<<END); |
$r->print(' |
<h3>Warning: Problem with support e-mail address</h3> |
<h3>'.$lt{'warn'}.'</h3>'. |
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 <b>not</b> been sent to the LON-CAPA support staff or administrator at your institution. Instead a copy has been sent to the LON-CAPA support team at Michigan State University. |
&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.')); |
END |
|
$to = 'helpdesk@lon-capa.org'; |
$to = 'helpdesk@lon-capa.org'; |
} |
} |
} |
} |
Line 750 END
|
Line 817 END
|
if ($env{'form.screenshot.filename'}) { |
if ($env{'form.screenshot.filename'}) { |
$attachmentsize = length($env{'form.screenshot'}); |
$attachmentsize = length($env{'form.screenshot'}); |
if ($attachmentsize > 131072) { |
if ($attachmentsize > 131072) { |
$displaymsg .= "<br />The uploaded screenshot file ($attachmentsize bytes) included with your request exceeded the maximum allowed size - 128 KB, and has therefore been discarded."; |
$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 { |
} else { |
$attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests'); |
$attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests'); |
} |
} |
} |
} |
} |
} |
|
|
my %cookies = (); |
my %cookies; |
my $cookie=CGI::Cookie->parse($r->header_in('Cookie')); |
my $cookie=CGI::Cookie->parse($r->header_in('Cookie')); |
if ($$cookie{'lonID'} =~ /lonID=(\w+);/) { |
if ($$cookie{'lonID'} =~ /lonID=($LONCAPA::handle_re);/) { |
$cookies{'lonID'} = $1; |
$cookies{'lonID'} = $1; |
} |
} |
|
|
if ($attachmentpath =~ m-/([^/]+)$-) { |
if ($attachmentpath =~ m-/([^/]+)$-) { |
$fname = $1; |
$fname = $1; |
$displaymsg .= "<br />An uploaded screenshot file - $fname ($attachmentsize bytes) was included in the request sent by $env{'user.name'} from LON-CAPA domain: $env{'user.domain'}"; |
$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"; |
$supportmsg .= "\n"; |
foreach (@cookievars) { |
foreach my $var (@cookievars) { |
$supportmsg .= "$_: $cookies{$_}\n"; |
$supportmsg .= "$var: $cookies{$var}\n"; |
} |
} |
foreach (@ENVvars) { |
foreach my $var(@ENVvars) { |
$supportmsg .= "$_: $ENV{$_}\n"; |
$supportmsg .= "$var: $ENV{$var}\n"; |
} |
} |
foreach (@envvars) { |
foreach my $var (@envvars) { |
$supportmsg .= "$_: $env{$_}\n"; |
$supportmsg .= "$var: $env{$var}\n"; |
} |
} |
} |
} |
|
|
Line 795 END
|
Line 862 END
|
|
|
} else { |
} else { |
my $envdata = ''; |
my $envdata = ''; |
foreach (@cookievars) { |
foreach my $var (@cookievars) { |
$envdata .= "$_: $cookies{$_}\n"; |
$envdata .= "$var: $cookies{$var}\n"; |
} |
} |
foreach (@ENVvars) { |
foreach my $var (@ENVvars) { |
$envdata .= "$_: $ENV{$_}\n"; |
$envdata .= "$var: $ENV{$var}\n"; |
} |
} |
foreach (@envvars) { |
foreach my $var (@envvars) { |
$envdata .= "$_: $env{$_}\n"; |
$envdata .= "$var: $env{$var}\n"; |
} |
} |
foreach (@loncvars) { |
foreach my $var (@loncvars) { |
$envdata .= "$_: $env{$_}\n"; |
$envdata .= "$var: $env{$var}\n"; |
} |
} |
$msg->attach(Type => 'TEXT', |
$msg->attach(Type => 'TEXT', |
Data => $envdata); |
Data => $envdata); |
Line 818 END
|
Line 885 END
|
unlink($attachmentpath); |
unlink($attachmentpath); |
} |
} |
$r->print(qq| |
$r->print(qq| |
<b>Your support request contained the following information</b>:<br /><br /> |
<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 833 END
|
Line 900 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 855 END
|
Line 922 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>Additional information recorded</b> |
<td align="right"><b>$lt{'adin'}</b> |
</td> |
</td> |
</tr> |
</tr> |
</table> |
</table> |
Line 865 END
|
Line 932 END
|
<tr> |
<tr> |
<td> |
<td> |
|); |
|); |
foreach (@cookievars) { |
foreach my $var (@cookievars) { |
unless($cookies{$_} eq '') { |
unless($cookies{$var} eq '') { |
$r->print("$_: <font color='$vlinkcolor'>$cookies{$_}</font>, "); |
$r->print("$var: <font color='$vlinkcolor'>$cookies{$var}</font>, "); |
} |
} |
} |
} |
foreach (@ENVvars) { |
foreach my $var (@ENVvars) { |
unless($ENV{$_} eq '') { |
unless($ENV{$var} eq '') { |
$r->print("$_: <font color='$vlinkcolor'>$ENV{$_}</font>, "); |
$r->print("$var: <font color='$vlinkcolor'>$ENV{$var}</font>, "); |
} |
} |
} |
} |
foreach (@envvars) { |
foreach my $var (@envvars) { |
unless($env{$_} eq '') { |
unless($env{$var} eq '') { |
$r->print("$_: <font color='$vlinkcolor'>$env{$_}</font>, "); |
$r->print("$var: <font color='$vlinkcolor'>$env{$var}</font>, "); |
} |
} |
} |
} |
$r->print(" |
$r->print(" |
Line 935 sub print_header {
|
Line 1002 sub print_header {
|
<td> |
<td> |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff"> |
<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="#ffffff"> |
<tr bgcolor="$tablecolor"> |
<tr bgcolor="$tablecolor"> |
<td align="center"><img src="$location/help/gif/smallHelp.gif" border="0" alt="(Login help)" valign="middle" /> <b><a href="/adm/loginproblems.html">$lt{'login'}</a></td> |
<td align="center"><img src="$location/help/gif/smallHelp.gif" border="0" alt="($lt{'login'})" valign="middle" /> <b><a href="/adm/loginproblems.html">$lt{'login'}</a></td> |
<td align="center"> <b>$helpdesk_link<img src="$location/lonIcons/helpdesk.gif" border="0" alt="(Ask helpdesk)" valign="middle" /> $lt{'ask'}</a></b> </td>$getstartlink |
<td align="center"> <b>$helpdesk_link<img src="$location/lonIcons/helpdesk.gif" border="0" alt="($lt{'ask'})" valign="middle" /> $lt{'ask'}</a></b> </td>$getstartlink |
<td align="center"> <b><a href="$origurl" target="_top"><img src="$location/lonIcons/move_up.gif" border="0" alt="(Back to last location)" valign="middle" /> $lt{'back'}</a></b> </td> |
<td align="center"> <b><a href="$origurl" target="_top"><img src="$location/lonIcons/move_up.gif" border="0" alt="($lt{'back'})" valign="middle" /> $lt{'back'}</a></b> </td> |
</tr> |
</tr> |
</table> |
</table> |
</td> |
</td> |
Line 970 Please review the information in "Log-in
|
Line 1037 Please review the information in "Log-in
|
return; |
return; |
} |
} |
|
|
sub retrieve_instcodes { |
|
my ($coursecodes,$codedom,$totcodes) = @_; |
|
my %courses = &Apache::lonnet::courseiddump($codedom,'.',1,'.','.','.'); |
|
foreach my $course (keys %courses) { |
|
if ($courses{$course} =~ m/^[^:]*:([^:]+)/) { |
|
$$coursecodes{$course} = &Apache::lonnet::unescape($1); |
|
$totcodes ++; |
|
} |
|
} |
|
return $totcodes; |
|
} |
|
|
|
sub build_code_selections { |
|
my ($codes,$codetitles,$cat_titles,$cat_order,$idlist,$idnums,$idlist_titles) = @_; |
|
my %idarrays = (); |
|
for (my $i=1; $i<@{$codetitles}; $i++) { |
|
%{$idarrays{$$codetitles[$i]}} = (); |
|
} |
|
foreach my $cid (sort keys %{$codes}) { |
|
&recurse_list($cid,$codetitles,$codes,0,\%idarrays); |
|
} |
|
for (my $num=0; $num<@{$codetitles}; $num++) { |
|
if ($num == 0) { |
|
my @contents = (); |
|
my @contents_titles = (); |
|
&sort_cats($num,$cat_order,$codetitles,\@{$idarrays{$$codetitles[0]}},\@contents); |
|
if (defined($$cat_titles{$$codetitles[0]})) { |
|
foreach (@contents) { |
|
push @contents_titles, $$cat_titles{$$codetitles[0]}{$_}; |
|
} |
|
} |
|
$$idlist{$$codetitles[0]} = join('","',@contents); |
|
$$idnums{$$codetitles[0]} = scalar(@contents); |
|
if (defined($$cat_titles{$$codetitles[0]})) { |
|
$$idlist_titles{$$codetitles[0]} = join('","',@contents_titles); |
|
} |
|
} elsif ($num == 1) { |
|
%{$$idlist{$$codetitles[1]}} = (); |
|
%{$$idlist_titles{$$codetitles[1]}} = (); |
|
foreach my $key_a (keys %{$idarrays{$$codetitles[1]}}) { |
|
my @sorted_a = (); |
|
my @sorted_a_titles = (); |
|
&sort_cats($num,$cat_order,$codetitles,\@{$idarrays{$$codetitles[1]}{$key_a}},\@sorted_a); |
|
if (defined($$cat_titles{$$codetitles[1]})) { |
|
foreach (@sorted_a) { |
|
push @sorted_a_titles, $$cat_titles{$$codetitles[1]}{$_}; |
|
} |
|
} |
|
$$idlist{$$codetitles[1]}{$key_a} = join('","',@sorted_a); |
|
$$idnums{$$codetitles[1]}{$key_a} = scalar(@sorted_a); |
|
if (defined($$cat_titles{$$codetitles[1]})) { |
|
$$idlist_titles{$$codetitles[1]}{$key_a} = join('","',@sorted_a_titles); |
|
} |
|
} |
|
} elsif ($num == 2) { |
|
%{$$idlist{$$codetitles[2]}} = (); |
|
%{$$idlist_titles{$$codetitles[2]}} = (); |
|
foreach my $key_a (keys %{$idarrays{$$codetitles[2]}}) { |
|
%{$$idlist{$$codetitles[2]}{$key_a}} = (); |
|
%{$$idlist_titles{$$codetitles[2]}{$key_a}} = (); |
|
foreach my $key_b (keys %{$idarrays{$$codetitles[2]}{$key_a}}) { |
|
my @sorted_b = (); |
|
my @sorted_b_titles = (); |
|
&sort_cats($num,$cat_order,$codetitles,\@{$idarrays{$$codetitles[2]}{$key_a}{$key_b}},\@sorted_b); |
|
if (defined($$cat_titles{$$codetitles[2]})) { |
|
foreach (@sorted_b) { |
|
push @sorted_b_titles, $$cat_titles{$$codetitles[2]}{$_}; |
|
} |
|
} |
|
$$idlist{$$codetitles[2]}{$key_a}{$key_b} = join('","',@sorted_b); |
|
$$idnums{$$codetitles[2]}{$key_a}{$key_b} = scalar(@sorted_b); |
|
if (defined($$cat_titles{$$codetitles[2]})) { |
|
$$idlist_titles{$$codetitles[2]}{$key_a}{$key_b} = join('","',@sorted_b_titles); |
|
} |
|
} |
|
} |
|
} elsif ($num == 3) { |
|
%{$$idlist{$$codetitles[3]}} = (); |
|
foreach my $key_a (keys %{$idarrays{$$codetitles[3]}}) { |
|
%{$$idlist{$$codetitles[3]}{$key_a}} = (); |
|
foreach my $key_b (keys %{$idarrays{$$codetitles[3]}{$key_a}}) { |
|
%{$$idlist{$$codetitles[3]}{$key_a}{$key_b}} = (); |
|
foreach my $key_c (keys %{$idarrays{$$codetitles[3]}{$key_a}{$key_b}}) { |
|
my @sorted_c = (); |
|
my @sorted_c_titles = (); |
|
&sort_cats($num,$cat_order,$codetitles,\@{$idarrays{$$codetitles[3]}{$key_a}{$key_b}{$key_c}},\@sorted_c); |
|
if (defined($$cat_titles{$$codetitles[3]})) { |
|
foreach (@sorted_c) { |
|
push @sorted_c_titles, $$cat_titles{$$codetitles[3]}{$_}; |
|
} |
|
} |
|
$$idlist{$$codetitles[3]}{$key_a}{$key_b}{$key_c} = join('","',@sorted_c); |
|
$$idnums{$$codetitles[3]}{$key_a}{$key_b}{$key_c} = scalar(@sorted_c); |
|
if (defined($$cat_titles{$$codetitles[3]})) { |
|
$$idlist_titles{$$codetitles[2]}{$key_a}{$key_b} = join('","',@sorted_c_titles); |
|
} |
|
} |
|
} |
|
} |
|
} elsif ($num == 4) { |
|
%{$$idlist{$$codetitles[4]}} = (); |
|
foreach my $key_a (keys %{$idarrays{$$codetitles[4]}}) { |
|
%{$$idlist{$$codetitles[4]}{$key_a}} = (); |
|
foreach my $key_b (keys %{$idarrays{$$codetitles[4]}{$key_a}}) { |
|
%{$$idlist{$$codetitles[4]}{$key_a}{$key_b}} = (); |
|
foreach my $key_c (keys %{$idarrays{$$codetitles[4]}{$key_a}{$key_b}}) { |
|
%{$$idlist{$$codetitles[4]}{$key_a}{$key_b}{$key_c}} = (); |
|
foreach my $key_d (keys %{$idarrays{$$codetitles[4]}{$key_a}{$key_b}{$key_c}}) { |
|
my @sorted_d = (); |
|
my @sorted_d_titles = (); |
|
&sort_cats($num,$cat_order,$codetitles,$idarrays{$$codetitles[4]}{$key_a}{$key_b}{$key_c}{$key_d},\@sorted_d); |
|
if (defined($$cat_titles{$$codetitles[4]})) { |
|
foreach (@sorted_d) { |
|
push @sorted_d_titles, $$cat_titles{$$codetitles[4]}{$_}; |
|
} |
|
} |
|
$$idlist{$$codetitles[4]}{$key_a}{$key_b}{$key_c}{$key_d} = join('","',@sorted_d); |
|
$$idnums{$$codetitles[4]}{$key_a}{$key_b}{$key_c}{$key_d} = scalar(@sorted_d); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
sub sort_cats { |
|
my ($num,$cat_order,$codetitles,$idsarrayref,$sorted) = @_; |
|
my @unsorted = @{$idsarrayref}; |
|
if (defined($$cat_order{$$codetitles[$num]})) { |
|
foreach (@{$$cat_order{$$codetitles[$num]}}) { |
|
if (grep/^$_$/,@unsorted) { |
|
push @{$sorted}, $_; |
|
} |
|
} |
|
} else { |
|
@{$sorted} = sort (@unsorted); |
|
} |
|
} |
|
|
|
|
|
sub recurse_list { |
|
my ($cid,$codetitles,$codes,$num,$idarrays) = @_; |
|
if ($num == 0) { |
|
if (!grep/^$$codes{$cid}{$$codetitles[0]}$/,@{$$idarrays{$$codetitles[0]}}) { |
|
push @{$$idarrays{$$codetitles[0]}}, $$codes{$cid}{$$codetitles[0]}; |
|
} |
|
} elsif ($num == 1) { |
|
if (defined($$idarrays{$$codetitles[1]}{$$codes{$cid}{$$codetitles[0]}})) { |
|
if (!grep/^$$codes{$cid}{$$codetitles[1]}$/,@{$$idarrays{$$codetitles[1]}{$$codes{$cid}{$$codetitles[0]}}}) { |
|
push @{$$idarrays{$$codetitles[1]}{$$codes{$cid}{$$codetitles[0]}}}, $$codes{$cid}{$$codetitles[1]}; |
|
} |
|
} else { |
|
@{$$idarrays{$$codetitles[1]}{$$codes{$cid}{$$codetitles[0]}}} = ("$$codes{$cid}{$$codetitles[1]}"); |
|
} |
|
} elsif ($num == 2) { |
|
if (defined($$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}})) { |
|
if (defined($$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}})) { |
|
if (!grep/^$$codes{$cid}{$$codetitles[2]}$/,@{$$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}}) { |
|
push @{$$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}}, $$codes{$cid}{$$codetitles[2]}; |
|
} |
|
} else { |
|
@{$$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = ("$$codes{$cid}{$$codetitles[2]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}} = (); |
|
@{$$idarrays{$$codetitles[2]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = ("$$codes{$cid}{$$codetitles[2]}"); |
|
} |
|
} elsif ($num == 3) { |
|
if (defined($$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}})) { |
|
if (defined($$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}})) { |
|
if (defined($$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}})) { |
|
if (!grep/^$$codes{$cid}{$$codetitles[3]}$/,@{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}}) { |
|
push @{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}}, $$codes{$cid}{$$codetitles[3]}; |
|
} |
|
} else { |
|
@{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = ("$$codes{$cid}{$$codetitles[3]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = (); |
|
@{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = ("$$codes{$cid}{$$codetitles[3]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}} = (); |
|
%{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = (); |
|
@{$$idarrays{$$codetitles[3]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = ("$$codes{$cid}{$$codetitles[3]}"); |
|
} |
|
} elsif ($num == 4) { |
|
if (defined($$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}})) { |
|
if (defined($$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}})) { |
|
if (defined($$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}})) { |
|
if (defined($$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}})) { |
|
if (!grep/^$$codes{$cid}{$$codetitles[4]}$/,@{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}}}) { |
|
push @{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}}}, $$codes{$cid}{$$codetitles[4]}; |
|
} |
|
} else { |
|
@{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}}} = ("$$codes{$cid}{$$codetitles[4]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = (); |
|
@{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}}} = ("$$codes{$cid}{$$codetitles[4]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = (); |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = (); |
|
@{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}{$$codes{$cid}{$$codetitles[3]}}} = ("$$codes{$cid}{$$codetitles[4]}"); |
|
} |
|
} else { |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}} = (); |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}} = (); |
|
%{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[2]}}} = (); |
|
@{$$idarrays{$$codetitles[4]}{$$codes{$cid}{$$codetitles[0]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[1]}}{$$codes{$cid}{$$codetitles[3]}}} = ("$$codes{$cid}{$$codetitles[3]}"); |
|
} |
|
} |
|
$num ++; |
|
if ($num <@{$codetitles}) { |
|
&recurse_list($cid,$codetitles,$codes,$num,$idarrays); |
|
} |
|
} |
|
|
|
sub javascript_code_selections { |
|
my ($formname,$numcats,$cat_titles,$script_tag,$idlist,$idnums,$idlist_titles,$codetitles) = @_; |
|
my $numtitles = @{$codetitles}; |
|
my @seltitles = (); |
|
for (my $j=0; $j<$numtitles; $j++) { |
|
$seltitles[$j] = 'id'.$$codetitles[$j]; |
|
} |
|
my $seltitle_str = join('","',@seltitles); |
|
my @longtitles = (); |
|
for (my $i=0; $i<$numtitles; $i++) { |
|
if (defined($$cat_titles{$$codetitles[$i]})) { |
|
$longtitles[$i] = 1; |
|
} else { |
|
$longtitles[$i] = 0; |
|
} |
|
} |
|
my $longtitles_str = join('","',@longtitles); |
|
$$script_tag .= <<END; |
|
function courseSet(caller) { |
|
var ids = new Array ("$seltitle_str"); |
|
var formitems = new Array ($numtitles); |
|
var longtitles = new Array ("$longtitles_str"); |
|
var idyr = document.$formname.Year.selectedIndex |
|
var idsem = document.$formname.Semester.selectedIndex |
|
var iddept = document.$formname.Department.selectedIndex |
|
var idclass = document.$formname.Number.selectedIndex |
|
var idyears = new Array("$$idlist{$$codetitles[0]}"); |
|
END |
|
if ($longtitles[0]) { |
|
$$script_tag .= |
|
qq| var idyearslongs = new Array("$$idlist_titles{$$codetitles[0]}")\n|; |
|
} |
|
$$script_tag .= |
|
" var idsems = new Array ($$idnums{$$codetitles[0]})\n"; |
|
if ($longtitles[1]) { |
|
$$script_tag .= |
|
" var idsemslongs = new Array ($$idnums{$$codetitles[0]})\n"; |
|
} |
|
$$script_tag .= |
|
" var idcodes = new Array ($$idnums{$$codetitles[0]})\n"; |
|
if ($longtitles[2]) { |
|
$$script_tag .= |
|
" var idcodeslongs = new Array ($$idnums{$$codetitles[0]})\n"; |
|
} |
|
$$script_tag .= |
|
" var idcourses = new Array ($$idnums{$$codetitles[0]})\n"; |
|
if ($longtitles[3]) { |
|
$$script_tag .= |
|
" var idcourseslongs = new Array ($$idnums{$$codetitles[0]})\n"; |
|
} |
|
my @sort_a = split/","/,$$idlist{$$codetitles[0]}; |
|
for (my $j=0; $j<@sort_a; $j++) { |
|
$$script_tag .= qq| idsems[$j] = new Array("$$idlist{$$codetitles[1]}{$sort_a[$j]}")\n|; |
|
if ($longtitles[1]) { |
|
$$script_tag .= qq| idsemslongs[$j] = new Array("$$idlist_titles{$$codetitles[1]}{$sort_a[$j]}")\n|; |
|
} |
|
$$script_tag .= qq| idcodes[$j] = new Array($$idnums{$$codetitles[1]}{$sort_a[$j]})\n|; |
|
if ($longtitles[2]) { |
|
$$script_tag .= qq| idcodeslongs[$j] = new Array($$idnums{$$codetitles[1]}{$sort_a[$j]})\n|; |
|
} |
|
$$script_tag .= qq| idcourses[$j] = new Array($$idnums{$$codetitles[1]}{$sort_a[$j]})\n|; |
|
if ($longtitles[3]) { |
|
$$script_tag .= qq| idcourseslongs[$j] = new Array($$idnums{$$codetitles[1]}{$sort_a[$j]})\n|; |
|
} |
|
my @sort_b = split/","/,$$idlist{$$codetitles[1]}{$sort_a[$j]}; |
|
for (my $k=0; $k<@sort_b; $k++) { |
|
my $idcode_entry = $$idlist{$$codetitles[2]}{$sort_a[$j]}{$sort_b[$k]}; |
|
$$script_tag .= qq| idcodes[$j][$k] = new Array("$idcode_entry")\n|; |
|
if ($longtitles[2]) { |
|
my $idcodelong_entry = $$idlist_titles{$$codetitles[2]}{$sort_a[$j]}{$sort_b[$k]}; |
|
$$script_tag .= qq| idcodeslongs[$j][$k] = new Array("$idcodelong_entry")\n|; |
|
} |
|
$$script_tag .= qq| idcourses[$j][$k] = new Array($$idnums{$$codetitles[2]}{$sort_a[$j]}{$sort_b[$k]})\n|; |
|
if ($longtitles[3]) { |
|
$$script_tag .= qq| idcourseslongs[$j][$k] = new Array($$idnums{$$codetitles[2]}{$sort_a[$j]}{$sort_b[$k]})\n|; |
|
} |
|
my @sort_c = split/","/,$$idlist{$$codetitles[2]}{$sort_a[$j]}{$sort_b[$k]}; |
|
for (my $l=0; $l<@sort_c; $l++) { |
|
my $idcourse_entry = $$idlist{$$codetitles[3]}{$sort_a[$j]}{$sort_b[$k]}{$sort_c[$l]}; |
|
$$script_tag .= qq| idcourses[$j][$k][$l] = new Array("$idcourse_entry")\n|; |
|
if ($longtitles[3]) { |
|
my $idcourselong_entry = $$idlist_titles{$$codetitles[3]}{$sort_a[$j]}{$sort_b[$k]}{$sort_c[$l]}; |
|
$$script_tag .= qq| idcourseslongs[$j][$k][$l] = new Array("$idcourselong_entry")\n|; |
|
} |
|
} |
|
} |
|
} |
|
$$script_tag .= (<<END_OF_BLOCK); |
|
var display = new Array($numtitles) |
|
if (caller == "" || caller == "$$codetitles[0]") { |
|
if (caller == "") { |
|
document.$formname.Year.length = 0 |
|
document.$formname.Year.options[0] = new Option("Select","-1",true,true) |
|
display[0] = new Array(idyears.length) |
|
for (var i=0; i<idyears.length; i++) { |
|
display[0][i] = idyears[i] |
|
if (longtitles[0] == 1) { |
|
if (idyearslongs[i] != "") { |
|
display[0][i] = idyearslongs[i] |
|
} |
|
} |
|
else { |
|
if (idyearslongs[i] != "") { |
|
display[0][i] = idyears[i] |
|
} |
|
} |
|
document.$formname.Year.options[i+1] = new Option(display[0][i],idyears[i],false,false) |
|
} |
|
document.$formname.Year.selectedIndex = 0; |
|
} |
|
document.$formname.Semester.length = 0 |
|
document.$formname.Department.length = 0; |
|
document.$formname.Number.length = 0 |
|
document.$formname.Department.options[0] = new Option("<-Pick $$codetitles[1]","-1",true,true) |
|
document.$formname.Number.options[0] = new Option("<-Pick $$codetitles[2]","-1",true,true) |
|
if (idyr == 0 || caller == "") { |
|
document.$formname.Semester.options[0] = new Option("<-Pick $$codetitles[0]","-1",true,true) |
|
} |
|
else { |
|
document.$formname.Semester.options[0] = new Option("Select","-1",true,true) |
|
display[1] = new Array(idsems[idyr-1].length) |
|
for (var i=0; i<idsems[idyr-1].length; i++) { |
|
display[1][i] = idsems[idyr-1][i] |
|
if (longtitles[1] == 1) { |
|
if (idsemslongs[idyr-1][i] != "") { |
|
display[1][i] = idsemslongs[idyr-1][i] |
|
} |
|
} |
|
document.$formname.Semester.options[i+1] = new Option(display[1][i],idsems[idyr-1][i],false,false) |
|
} |
|
} |
|
document.$formname.Semester.selectedIndex = 0; |
|
} |
|
if (caller == "$$codetitles[1]") { |
|
document.$formname.Department.length = 0 |
|
document.$formname.Number.length = 0 |
|
document.$formname.Number.options[0] = new Option("<-Pick $$codetitles[2]","-1",true,true) |
|
if (idsem == 0) { |
|
document.$formname.Department.options[0] = new Option("<-Pick $$codetitles[1]","-1",true,true) |
|
} |
|
else { |
|
document.$formname.Department.options[0] = new Option("Select","-1",true,true) |
|
display[2] = new Array(idcodes[idyr-1][idsem-1].length) |
|
for (var i=0; i<idcodes[idyr-1][idsem-1].length; i++) { |
|
display[2][i] = idcodes[idyr-1][idsem-1][i] |
|
if (longtitles[2] == 1) { |
|
if (idcodeslongs[idyr-1][idsem-1][i] != "") { |
|
display[2][i] = idcodeslongs[idyr-1][idsem-1][i] |
|
} |
|
} |
|
document.$formname.Department.options[i+1] = new Option(display[2][i],idcodes[idyr-1][idsem-1][i],false,false) |
|
} |
|
} |
|
document.$formname.Department.selectedIndex = 0 |
|
} |
|
if (caller == "$$codetitles[2]") { |
|
document.$formname.Number.length = 0 |
|
if (iddept == 0) { |
|
document.$formname.Number.options[0] = new Option("<-Pick $$codetitles[2]","-1",true,true) |
|
} |
|
else { |
|
document.$formname.Number.options[0] = new Option("Select","-1",true,true) |
|
display[3] = new Array (idcourses[idyr-1][idsem-1][iddept-1].length) |
|
for (var i=0; i<idcourses[idyr-1][idsem-1][iddept-1].length; i++) { |
|
display[3][i] = idcourses[idyr-1][idsem-1][iddept-1][i] |
|
if (longtitles[3] == 1) { |
|
if (idcourseslongs[idyr-1][idsem-1][iddept-1][i] != "") { |
|
display[3][i] = idcourseslongs[idyr-1][idsem-1][iddept-1][i] |
|
} |
|
} |
|
document.$formname.Number.options[i+1] = new Option(display[3][i],idcourses[idyr-1][idsem-1][iddept-1][i],false,false) |
|
} |
|
} |
|
document.$formname.Number.selectedIndex = 0 |
|
} |
|
} |
|
|
|
function initialize_codes() { |
|
courseSet(); |
|
return; |
|
} |
|
END_OF_BLOCK |
|
} |
|
|
|
1; |
1; |