version 1.41, 2002/05/06 17:48:57
|
version 1.45.4.1, 2002/09/13 18:55:57
|
Line 129 sub domain_form {
|
Line 129 sub domain_form {
|
$select_menus{$dom}->{'default'}= 'default'; |
$select_menus{$dom}->{'default'}= 'default'; |
$select_menus{$dom}->{'select2'}->{'default'} = 'default'; |
$select_menus{$dom}->{'select2'}->{'default'} = 'default'; |
# Now build up the other items in the second menu |
# Now build up the other items in the second menu |
my %servers = &Apache::loncommon::get_home_servers($dom); |
my %servers = &Apache::loncommon::get_library_servers($dom); |
foreach my $server (keys(%servers)) { |
foreach my $server (keys(%servers)) { |
$select_menus{$dom}->{'select2'}->{$server} |
$select_menus{$dom}->{'select2'}->{$server} |
= "$server $servers{$server}"; |
= "$server $servers{$server}"; |
Line 145 sub domain_form {
|
Line 145 sub domain_form {
|
sub menu_phase_one { |
sub menu_phase_one { |
my $r=shift; |
my $r=shift; |
my $upfile_select=&Apache::loncommon::upfile_select_html(); |
my $upfile_select=&Apache::loncommon::upfile_select_html(); |
|
my $create_classlist_help = |
|
&Apache::loncommon::help_open_topic("Course_Create_Class_List", |
|
"How do I create a class list from a spreadsheet"); |
|
my $create_csv_help = |
|
&Apache::loncommon::help_open_topic("Course_Convert_To_CSV", |
|
"How do I create a CSV file from a spreadsheet"); |
$r->print(<<ENDUPFORM); |
$r->print(<<ENDUPFORM); |
<input type=hidden name=phase value=two> |
<input type=hidden name=phase value=two> |
<hr> |
<hr> |
<h3>Upload a courselist</h3> |
<h3>Upload a courselist</h3> |
$upfile_select |
$upfile_select |
<p><input type=submit name="fileupload" value="Upload Courselist"> |
<p><input type=submit name="fileupload" value="Upload Courselist"> |
|
<br /> |
|
$create_classlist_help <br /> |
|
$create_csv_help |
|
|
<hr /> |
<hr /> |
<h3>Enroll a single student</h3> |
<h3>Enroll a single student</h3> |
<p><input type=submit name="enroll" value="Enroll Student"></p> |
<p><input type=submit name="enroll" value="Enroll Student"></p> |
Line 317 function verify(vf) {
|
Line 327 function verify(vf) {
|
verify_message(vf,founduname,foundpwd,foundname,foundid,foundsec); |
verify_message(vf,founduname,foundpwd,foundname,foundid,foundsec); |
} |
} |
|
|
|
// |
|
// vf = this.form |
|
// tf = column number |
|
// |
|
// values of nw |
|
// |
|
// 0 = none |
|
// 1 = username |
|
// 2 = names (lastname, firstnames) |
|
// 3 = fname (firstname) |
|
// 4 = mname (middlename) |
|
// 5 = lname (lastname) |
|
// 6 = gen (generation) |
|
// 7 = id |
|
// 8 = section |
|
// 9 = ipwd (password) |
|
// |
function flip(vf,tf) { |
function flip(vf,tf) { |
var nw=eval('vf.f'+tf+'.selectedIndex'); |
var nw=eval('vf.f'+tf+'.selectedIndex'); |
var i; |
var i; |
|
// make sure no other columns are labeled the same as this one |
for (i=0;i<=vf.nfields.value;i++) { |
for (i=0;i<=vf.nfields.value;i++) { |
if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) { |
if ((i!=tf) && (eval('vf.f'+i+'.selectedIndex')==nw)) { |
eval('vf.f'+i+'.selectedIndex=0;') |
eval('vf.f'+i+'.selectedIndex=0;') |
} |
} |
} |
} |
if (tf==1 && nw!=0) { |
// If we set this to 'lastname, firstnames', clear out all the ones |
for (i=2;i<=5;i++) { |
// set to 'fname','mname','lname','gen' (3,4,5,6) currently. |
eval('vf.f'+i+'.selectedIndex=0;') |
|
} |
|
} |
|
if (nw==2) { |
if (nw==2) { |
for (i=0;i<=vf.nfields.value;i++) { |
for (i=0;i<=vf.nfields.value;i++) { |
if ((eval('vf.f'+i+'.selectedIndex')>=3) && |
if ((eval('vf.f'+i+'.selectedIndex')>=3) && |
Line 338 function flip(vf,tf) {
|
Line 363 function flip(vf,tf) {
|
} |
} |
} |
} |
} |
} |
|
// If we set this to one of 'fname','mname','lname','gen' (3,4,5,6), |
|
// clear out any that are set to 'lastname, firstnames' (2) |
if ((nw>=3) && (nw<=6)) { |
if ((nw>=3) && (nw<=6)) { |
for (i=0;i<=vf.nfields.value;i++) { |
for (i=0;i<=vf.nfields.value;i++) { |
if (eval('vf.f'+i+'.selectedIndex')==2) { |
if (eval('vf.f'+i+'.selectedIndex')==2) { |
Line 345 function flip(vf,tf) {
|
Line 372 function flip(vf,tf) {
|
} |
} |
} |
} |
} |
} |
|
// If we set the password, make the password form below correspond to |
|
// the new value. |
if (nw==9) { |
if (nw==9) { |
changed_radio('int',document.studentform); |
changed_radio('int',document.studentform); |
set_auth_radio_buttons('int',document.studentform); |
set_auth_radio_buttons('int',document.studentform); |
Line 526 sub enroll_single_student {
|
Line 555 sub enroll_single_student {
|
if (lc($desiredhost) eq 'default') { |
if (lc($desiredhost) eq 'default') { |
$desiredhost = undef; |
$desiredhost = undef; |
} else { |
} else { |
my %home_servers = &Apache::loncommon::get_home_servers($domain); |
my %home_servers =&Apache::loncommon::get_library_servers($domain); |
if (! exists($home_servers{$desiredhost})) { |
if (! exists($home_servers{$desiredhost})) { |
$r->print('<font color="#ff0000">Error:</font>'. |
$r->print('<font color="#ff0000">Error:</font>'. |
'Invalid home server specified'); |
'Invalid home server specified'); |
Line 763 sub menu_phase_two_viewcsv {
|
Line 792 sub menu_phase_two_viewcsv {
|
sub show_class_list { |
sub show_class_list { |
my ($r,$mode,%currentlist)=@_; |
my ($r,$mode,%currentlist)=@_; |
my $cid=$ENV{'request.course.id'}; |
my $cid=$ENV{'request.course.id'}; |
|
# Print out header |
if ($mode eq 'view') { |
if ($mode eq 'view') { |
$r->print(<<END); |
$r->print(<<END); |
<p> |
<p> |
Line 803 END
|
Line 833 END
|
</tr> |
</tr> |
END |
END |
} elsif ($mode eq 'csv') { |
} elsif ($mode eq 'csv') { |
$r->print($sname.','. |
my @line = (); |
$sdom.','. |
foreach ($sname,$sdom,$reply{$sname}, |
$reply{$sname}.','. |
$info{'lastname'},$info{'firstname'}, |
$info{'lastname'}.','. |
$info{'middlename'},$info{'generation'},$ssec) { |
$info{'firstname'}.','. |
push @line,&Apache::loncommon::csv_translate($_); |
$info{'middlename'}.','. |
} |
$info{'generation'}.','. |
my $tmp = $"; |
$ssec."\n"); |
$" = '","'; |
|
$r->print("\"@line\"\n"); |
|
$" = $tmp; |
} |
} |
} |
} |
} |
} |
Line 906 sub upfile_drop_add {
|
Line 938 sub upfile_drop_add {
|
if (lc($desiredhost) eq 'default') { |
if (lc($desiredhost) eq 'default') { |
$desiredhost = undef; |
$desiredhost = undef; |
} else { |
} else { |
my %home_servers = &Apache::loncommon::get_home_servers($domain); |
my %home_servers = &Apache::loncommon::get_library_servers($domain); |
if (! exists($home_servers{$desiredhost})) { |
if (! exists($home_servers{$desiredhost})) { |
$r->print('<font color="#ff0000">Error:</font>'. |
$r->print('<font color="#ff0000">Error:</font>'. |
'Invalid home server specified'); |
'Invalid home server specified'); |