--- loncom/imspackages/imsimport.pm 2012/10/29 17:38:59 1.38
+++ loncom/imspackages/imsimport.pm 2014/12/11 01:07:38 1.46
@@ -1,6 +1,6 @@
# The LearningOnline Network with CAPA
#
-# $Id: imsimport.pm,v 1.38 2012/10/29 17:38:59 raeburn Exp $
+# $Id: imsimport.pm,v 1.46 2014/12/11 01:07:38 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -100,7 +100,7 @@ function createWin() {
newWindow.document.write("")
newWindow.document.write("")
newWindow.document.write("$fullpath")
- newWindow.document.write("")
+ newWindow.document.write("")
newWindow.document.write("\\n")
newWindow.document.write("")
newWindow.document.write('$end_page')
@@ -133,6 +133,20 @@ sub jscript_two {
$course_list = '"'.join('","',@crslist).'"';
$$numcrs = @crslist;
+ my %lt = &Apache::lonlocal::texthash(
+ sel => 'Please select',
+ impto => 'Import topics only',
+ imptpa => 'Import topics + posts (with author)',
+ imptpn => 'Import topics + posts (no author)',
+ enrst => 'Enroll students only',
+ enrall => 'Enroll all users',
+ notreq => 'Not required',
+ errao => 'You must select one of the additional options when importing Discussion Boards.',
+ errtd => 'You must select a target course when importing Discussion Boards.',
+ errap => 'You must select one of the additional options when importing Enrollment.',
+ errte => 'You must select a target course when importing enrollment information.',
+ errcc => 'You must check at least one Content Type.',
+ );
return <<"END_OF_TWO";
function checkCourse() {
@@ -181,7 +195,7 @@ function setCourse(step2Form,call) {
step2Form.targetcourse.length = 0
if (call == 'add') {
step2Form.targetcourse.length = 0
- step2Form.targetcourse.options[0] = new Option("Please Select","0",true,true)
+ step2Form.targetcourse.options[0] = new Option("$lt{'sel'}","0",true,true)
for (var i=0; i 0) {
@@ -234,7 +248,7 @@ function verify(caller) {
totcheck ++
if (opForm.elements[2*i].name == "board") {
if (opForm.elements[2*i+1].selectedIndex == 0) {
- alert("You must select one of the additional options when importing Discussion Boards ")
+ alert("$lt{'errao'}")
return false
}
if (numCrs == 0) {
@@ -243,14 +257,14 @@ function verify(caller) {
}
else {
if (opForm.targetcourse.selectedIndex == 0) {
- alert("You must select a target course when importing Discussion Boards")
+ alert("$lt{'errtd'}")
return false
}
}
}
if (opForm.elements[2*i].name == "users") {
if (opForm.elements[2*i+1].selectedIndex == 0) {
- alert("You must select one of the additional options when importing Enrollment")
+ alert("$lt{'errap'}")
return false
}
if (numCrs == 0) {
@@ -259,7 +273,7 @@ function verify(caller) {
}
else {
if (opForm.targetcourse.selectedIndex == 0) {
- alert("You must select a target course when importing enrollment information")
+ alert("$lt{'errte'}")
return false
}
}
@@ -267,7 +281,7 @@ function verify(caller) {
}
}
if (totcheck == 0) {
- alert("You must check the Checkbox for at least one Content Type");
+ alert("$lt{'errcc'}");
return false
}
return true
@@ -286,11 +300,11 @@ END_OF_TWO
# ---------------------------------------------------------------- Display One
sub display_one {
my ($r,$fn,$fullpath,$formname) = @_;
- $r->print('');
}
@@ -332,12 +346,12 @@ sub display_two {
type => 'Content type',
addo => 'Additional options',
chec => 'Check Import first',
- bbus => 'Choose a course to receive bulletin boards and user enrollment',
- list => 'A listing of possible course targets will be displayed if import of bulletin boards and/or enrollment is checked above (step 3). If you do not plan to import either of these content types, there is no need to specify a course.',
+ bbus => 'Choose a course to receive discussion boards and user enrollment',
+ list => 'A listing of possible course targets will be displayed if import of discussion boards and/or enrollment is checked above (step 3). If you do not plan to import either of these content types, there is no need to specify a course.',
chco => 'Choose course:',
nreq => 'Not required',
- yodo => 'You do not have active course coordinator status in any LON-CAPA courses currently, so bulletin boards and enrollment information included in your IMS package will be discarded, regardless of your import choice for these two items above (step 3).',
- ifyo => "If you wish to import bulletin boards and/or user information into LON-CAPA please click 'Exit now' to quit the current IMS import process, and contact your domain coordinator and request a course coordinator role in a LON-CAPA course into which you can upload bulletin boards and/or enroll users.",
+ yodo => 'You do not have active course coordinator status in any LON-CAPA courses currently, so discussion boards and enrollment information included in your IMS package will be discarded, regardless of your import choice for these two items above (step 3).',
+ ifyo => "If you wish to import discussion boards and/or user information into LON-CAPA please click 'Exit now' to quit the current IMS import process, and contact your domain coordinator and request a course coordinator role in a LON-CAPA course into which you can upload discussion boards and/or enroll users.",
impa => 'Import package',
unpa => 'Unpacking of your IMS package failed because an IMS manifest file was not located in the package',
proc => 'Processing of your IMS package failed because the file you uploaded could not be unzipped',
@@ -364,16 +378,16 @@ sub display_two {
$tempdir,\%resources,\%items,\%hrefs,\%resinfo,
'choose',\%includedres,\%includeditems);
if ($manifest_result eq 'ok') {
- foreach my $res (sort keys %resources) {
+ foreach my $res (sort(keys(%resources))) {
if ($cms eq 'bb5' || $cms eq 'bb6' || $cms eq 'webctce4'
|| $cms eq 'webctvista4') {
- foreach my $area (keys %{$$cmsmap{$cms}}) {
+ foreach my $area (keys(%{$$cmsmap{$cms}})) {
if ($resources{$res}{type} eq $$cmsmap{$cms}{$area}) {
$count{$area} ++;
}
}
} elsif ($cms eq 'angel5') {
- foreach my $area (keys %{$$cmsmap{$cms}}) {
+ foreach my $area (keys(%{$$cmsmap{$cms}})) {
if ($area eq 'doc') {
if (grep/^$resources{$res}{type}$/,@{$$cmsmap{$cms}{doc}}) {
$count{$area} ++;
@@ -396,7 +410,7 @@ sub display_two {
$conditions = 'none';
}
- $r->print('