File:
[LON-CAPA] /
loncom /
interface /
lonsupportreq.pm
Revision
1.29:
download - view:
text,
annotated -
select for diffs
Thu Oct 13 17:18:14 2005 UTC (19 years, 1 month ago) by
raeburn
Branches:
MAIN
CVS tags:
version_2_1_X,
version_2_1_3,
version_2_1_2,
version_2_1_1,
version_2_1_0,
version_2_0_99_1,
HEAD
Make code used to construct connected Year-Semester-Department-Course select boxes usable by other forms (e.g., by lonnotify.pm), by passing in $formname as parameter.
#
# $Id: lonsupportreq.pm,v 1.29 2005/10/13 17:18:14 raeburn Exp $
#
# 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;
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::loncommon();
use Apache::lonnet;
use Apache::lonlocal;
sub handler {
my ($r) = @_;
&Apache::loncommon::content_type($r,'text/html');
$r->send_http_header;
if ($r->header_only) {
return OK;
}
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['origurl','function']);
if ($r->uri eq '/adm/helpdesk') {
&Apache::loncommon::get_posted_cgi($r);
}
my $function = $env{'form.function'};
my $origurl = &Apache::lonnet::unescape($env{'form.origurl'});
my $action = $env{'form.action'};
if ($action eq 'process') {
&print_request_receipt($r,$origurl,$function);
} else {
&print_request_form($r,$origurl,$function);
}
return OK;
}
sub print_request_form {
my ($r,$origurl,$function) = @_;
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" onLoad="initialize_codes()"',1);
my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');
if (($tablecolor eq '') || ($tablecolor eq '#FFFFFF')) {
$tablecolor = '#EEEE99';
}
$ccode = '';
$os = $env{'browser.os'};
$browser = $env{'browser.type'};
$bversion = $env{'browser.version'};
$uhost = $env{'request.host'};
$uname = $env{'user.name'};
$udom = $env{'user.domain'};
$uhome = $env{'user.home'};
$urole = $env{'request.role'};
$usec = $env{'request.course.sec'};
$cid = $env{'request.course.id'};
$formname = 'logproblem';
if ($origurl =~ m-^http://-) {
$server = $origurl;
} else {
$server = 'http://'.$ENV{'SERVER_NAME'}.$origurl;
}
my $scripttag = (<<'END');
function validate() {
if (validmail(document.logproblem.email) == false) {
alert("The e-mail address you entered: "+document.logproblem.email.value+" is not a valid e-mail address.");
return;
}
document.logproblem.submit();
}
function validmail(field) {
var str = field.value;
if (window.RegExp) {
var reg1str = "(@.*@)|(\\.\\.)|(@\\.)|(\\.@)|(^\\.)";
var reg2str = "^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$";
var reg1 = new RegExp(reg1str);
var reg2 = new RegExp(reg2str);
if (!reg1.test(str) && reg2.test(str)) {
return true;
}
return false;
}
else
{
if(str.indexOf("@") >= 0) {
return true;
}
return false;
}
}
END
#" stupid emacs
if ($cid =~ m/_/) {
($cdom,$cnum) = split/_/,$cid;
}
if ($cdom && $cnum) {
my %csettings = &Apache::lonnet::get('environment',['description','internal.coursecode','internal.sectionnums'],$cdom,$cnum);
$ctitle = $csettings{'description'};
$ccode = $csettings{'internal.coursecode'};
$sectionlist = $csettings{'internal.sectionnums'};
}
if ($env{'environment.critnotification'}) {
$email = $env{'environment.critnotification'};
}
if (!$email && $env{'environment.notification'}) {
$email = $env{'environment.notification'};
}
if ($env{'environment.lastname'}) {
$lastname = $env{'environment.lastname'};
}
if ($env{'environment.firstname'}) {
$firstname = $env{'environment.firstname'};
}
my @sections = split/,/,$sectionlist;
my %groupid = ();
foreach (@sections) {
my ($sec,$grp) = split/:/,$_;
$groupid{$sec} = $grp;
}
my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'};
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['codedom']);
if (exists($env{'form.codedom'})) {
$codedom = $env{'form.codedom'};
}
my $details_title;
if ($codedom) {
$details_title = '<br />('.$codedom.')';
}
my %coursecodes = ();
my %codes = ();
my @codetitles = ();
my %cat_titles = ();
my %cat_order = ();
my %idlist = ();
my %idnums = ();
my %idlist_titles = ();
my $caller = 'global';
my $totcodes = 0;
my $format_reply;
my $jscript = '';
my $loaditems = qq|
function initialize_codes() {
return;
}
|;
if ($cdom) {
$codedom = $cdom;
}
if ($cnum) {
$coursecodes{$cnum} = $ccode;
if ($ccode eq '') {
$totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
} else {
$coursecodes{$cnum} = $ccode;
$caller = $cnum;
$totcodes ++;
}
} else {
$totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
}
if ($totcodes > 0) {
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;
&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);
$loaditems = '';
}
}
}
my $html=&Apache::lonxml::xmlbegin();
$r->print(<<ENDHEAD);
$html
<head>
<title>LON-CAPA support request</title>
<script type"text/javascript">
$scripttag
$jscript
</script>
</head>
$bodytag
ENDHEAD
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">
<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>
<td width="140" bgcolor="$tablecolor">
<table width="140" border="0" cellpadding="8" cellspacing="0">
<tr>
<td align="right"><b>Name:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
END
my $fullname = '';
if ((defined($lastname) && $lastname ne '') && (defined($firstname) && $firstname ne '')) {
$fullname = "$firstname $lastname";
$r->print("$fullname<input type=\"hidden\" name=\"username\" value=\"$fullname\" />");
} else {
if (defined($firstname) && $firstname ne '') {
$fullname = $firstname;
} elsif (defined($lastname) && $lastname ne '') {
$fullname= " $lastname";
}
$r->print('<input type="text" size="20" name="username" value="'.$fullname.'" />');
}
$r->print(<<END);
<input type="button" value="Submit Request" onClick="validate()" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>E-mail address:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
<input type="text" size="20" name="email" value="$email" /><br />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>username/domain:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
END
my $udom_input = '<input type="hidden" name="udom" value="'.$udom.'" />';
my $uname_input = '<input type="hidden" name="uname" value="'.$uname.'" />';
if (defined($uname) && defined($udom)) {
$r->print('<i>username</i>: '.$uname.' <i>domain</i>: '.$udom.$udom_input.$uname_input);
} else {
my $udomform = '';
my $unameform = '';
if (defined($udom)) {
$udomform = '<i>domain</i>: '.$udom.$udom_input;
} elsif (defined($uname)) {
$unameform = '<i>username</i>: '.$uname.' '.$uname_input;
}
if ($udomform eq '') {
$udomform = '<i>domain</i>: ';
$udomform .= &Apache::loncommon::select_dom_form($codedom,'udom');
}
if ($unameform eq '') {
$unameform= '<i>username</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(<<END);
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>URL of page:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
$server<input type="hidden" name="sourceurl" value="$server" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Phone #:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
<input type="text" size="15" name="phone"><br>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Course Details:</b>$details_title
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table border="0" cellpadding="3" cellspacing="3">
<tr>
<td>
END
if ($cnum) {
if ($coursecodes{$cnum}) {
foreach (@codetitles) {
$r->print('<i>'.$_.'</i>: '.$codes{$cnum}{$_}.'; ');
}
$r->print(' <input type="hidden" name="coursecode" value="'.$coursecodes{$cnum}.'" />');
} else {
$r->print('Enter institutional course code:
<input type="text" name="coursecode" size="15" value="" />');
}
} else {
if ($totcodes > 0) {
my $numtitles = @codetitles;
if ($numtitles == 0) {
$r->print('Enter institutional course code:
<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" />Select'."\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"><-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"><-Pick '.$codetitles[$numtitles-1].'</option>'."\n".
'</select>'."\n");
}
}
} else {
$r->print('Enter institutional course code:
<input type="text" name="coursecode" size="15" value="" />');
}
}
if ($ctitle) {
$r->print('<br /><i>Title</i>: '.$ctitle.'<input type="hidden" name="title" value="'.$ctitle.'" />');
} else {
$r->print('<br />Enter course title:
<input type="text" name="title" size="25" value="" />');
}
$r->print(<<END);
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Section Number: </b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
END
if ($sectionlist) {
$r->print("<select name=\"section\"\n>".
" <option value=\"\" selected=\"selected\">Select</option>\n");
foreach (sort keys %groupid) {
if ($_ eq $groupid{$_} || $groupid{$_} eq '') {
$r->print(" <option value=\"$_\" >$_</option>\n");
} else {
$r->print(" <option value=\"$_\" >$_ - (LON-CAPA sec: $groupid{$_})</option>\n");
}
}
$r->print("</select>");
} else {
$r->print("<input type=\"text\" name=\"section\" size=\"10\"/>");
}
$r->print(<<END);
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Subject</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
<input type="text" size="40" name="subject">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Detailed description:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
<textarea rows="10" cols="45" name="description" wrap="virtual"></textarea>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<img src="/adm/lonMisc/blackdot.gif" /><br />
</td>
</tr>
END
if (defined($env{'user.name'})) {
$r->print(<<END);
<tr>
<td width="140" bgcolor="$tablecolor">
<table width="140" border="0" cellpadding="8" cellspacing="0">
<tr>
<td align="right"><b>Optional file upload:</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 />Upload a file (e.g., a screenshot) relevant to your support request (128 KB max. size).
</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>Finish:</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
<input type="hidden" name="action" value="process" />
<input type="button" value="Submit Request" onClick="validate()"/>
</td>
<td> </td>
<td>
<input type="reset" value="Clear Form">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</body>
</html>
END
return;
}
sub print_request_receipt {
my ($r,$url,$function) = @_;
my @ENVvars = ('HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME');
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 $bodytag = &Apache::loncommon::bodytag('',$function,'topmargin="0" marginheight="0"',1);
my $admin = $Apache::lonnet::perlvar{'lonAdminMail'};
my $to = $Apache::lonnet::perlvar{'lonSupportEMail'};
my $from = $admin;
my $reporttime = &Apache::lonlocal::locallocaltime(time);
my $fontcolor = &Apache::loncommon::designparm($function.'.font');
my $vlinkcolor = &Apache::loncommon::designparm($function.'.vlink');
my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg');
my @formvars = ('username','email','uname','udom','sourceurl','phone','section','coursecode','title','subject','description','screenshot');
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars);
my $coursecode = $env{'form.coursecode'};
if ($coursecode eq '') {
if (defined($env{'form.Year'})) {
$coursecode .= $env{'form.Year'};
}
if (defined($env{'form.Semester'})) {
$coursecode .= $env{'form.Semester'};
}
if (defined($env{'form.Department'})) {
$coursecode .= $env{'form.Department'};
}
if (defined($env{'form.Number'})) {
$coursecode .= $env{'form.Number'};
}
}
my $supportmsg = qq|
Name: $env{'form.username'}
Email: $env{'form.email'}
Username/domain: $env{'form.uname'} - $env{'form.udom'}
Tel: $env{'form.phone'}
Course Information: $env{'form.title'} - $coursecode - section: $env{'form.section'}
Subject: $env{'form.subject'}
Description: $env{'form.description'}
URL: $env{'form.sourceurl'}
Date/Time: $reporttime
|;
my $descrip = $env{'form.description'};
$descrip =~ s#\n#<br />#g;
my $displaymsg = qq|
<font color="$fontcolor">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">Username/domain: </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">Course Information: </font><font color="$vlinkcolor">$env{'form.title'} - $coursecode - section: $env{'form.section'}</font><br />
<font color="$fontcolor">Subject: </font><font color="$vlinkcolor">$env{'form.subject'}</font><br />
<font color="$fontcolor">Description: </font><font color="$vlinkcolor">$descrip</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 />
|;
my $html=&Apache::lonxml::xmlbegin();
$r->print(<<"END");
$html
<head>
<title>LON-CAPA support request recorded</title>
</head>
$bodytag
<form name="logproblem">
<input type="hidden" name="action" value="result" />
</form>
END
if ($r->uri eq '/adm/helpdesk') {
&print_header($r,$url,'process');
}
if ($to =~ m/^[^\@]+\@[^\@]+$/) {
$r->print("<h3>A support request has been sent to $to</h3>");
} else {
$to = $admin;
if ($to =~ m/^[^\@]+\@[^\@]+$/) {
$r->print("<h3>A support request has been sent to $to</h3>");
END
} else {
$r->print(<<END);
<h3>Warning: Problem with support e-mail address</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.
END
$to = 'helpdesk@lon-capa.org';
}
}
if (defined($env{'form.email'})) {
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 />The uploaded screenshot file ($attachmentsize bytes) included with your request exceeded the maximum allowed size - 128 KB, and has therefore been discarded.";
} else {
$attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests');
}
}
}
my %cookies = ();
my $cookie=CGI::Cookie->parse($r->header_in('Cookie'));
if ($$cookie{'lonID'} =~ /lonID=(\w+);/) {
$cookies{'lonID'} = $1;
}
if ($attachmentpath =~ m-/([^/]+)$-) {
$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'}";
$supportmsg .= "\n";
foreach (@cookievars) {
$supportmsg .= "$_: $cookies{$_}\n";
}
foreach (@ENVvars) {
$supportmsg .= "$_: $ENV{$_}\n";
}
foreach (@envvars) {
$supportmsg .= "$_: $env{$_}\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 (@cookievars) {
$envdata .= "$_: $cookies{$_}\n";
}
foreach (@ENVvars) {
$envdata .= "$_: $ENV{$_}\n";
}
foreach (@envvars) {
$envdata .= "$_: $env{$_}\n";
}
foreach (@loncvars) {
$envdata .= "$_: $env{$_}\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>Your support request contained the following information</b>:<br /><br />
<table width="580" 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>
<td width="140" bgcolor="$tablecolor">
<table width="140" border="0" cellpadding="8" cellspacing="0">
<tr>
<td align="right"><b>Information supplied</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>$displaymsg</td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000">
<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>
<td align="right"><b>Additional information recorded</b>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<table width="100%" border="0" cellpadding="8" cellspacing="0">
<tr>
<td>
|);
foreach (@cookievars) {
unless($cookies{$_} eq '') {
$r->print("$_: <font color='$vlinkcolor'>$cookies{$_}</font>, ");
}
}
foreach (@ENVvars) {
unless($ENV{$_} eq '') {
$r->print("$_: <font color='$vlinkcolor'>$ENV{$_}</font>, ");
}
}
foreach (@envvars) {
unless($env{$_} eq '') {
$r->print("$_: <font color='$vlinkcolor'>$env{$_}</font>, ");
}
}
$r->print("
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
");
}
sub print_header {
my ($r,$origurl,$action) = @_;
my $location=&Apache::loncommon::lonhttpdurl("/adm");
my $tablecolor = '#EEEE99';
my ($component_url);
my $helpdesk_link = '<a href="javascript:validate()">';
if ($action eq 'process') {
$helpdesk_link = '<a href="/adm/helpdesk">';
}
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"> <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'> </td>
<td>
<fieldset><legend><img src="$location/lonIcons/minilogo.gif" height='20' width='29' valign='bottom' /> <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="(Login help)" 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><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>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</fieldset>
</td>
<td width='5'> </td>
</tr>
<tr height='5'>
<td colspan='3' height='5'> </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;
}
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;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>