--- loncom/interface/loncourserespicker.pm 2013/05/21 18:54:15 1.6 +++ loncom/interface/loncourserespicker.pm 2013/11/12 14:36:07 1.7 @@ -1,6 +1,6 @@ # The LearningOnline Network # -# $Id: loncourserespicker.pm,v 1.6 2013/05/21 18:54:15 raeburn Exp $ +# $Id: loncourserespicker.pm,v 1.7 2013/11/12 14:36:07 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -37,7 +37,8 @@ loncourserespicker provides an interface resources are to be either: (a) exported to an IMS Content Package -(b) subject to access blocking for the duriation of an exam/quiz. +(b) subject to access blocking for the duriation of an exam/quiz. +(c) dumped to an Authoring Space =head1 DESCRIPTION @@ -59,11 +60,11 @@ uncheck will propagate up through the hi a higher level to become unchecked. There is a submit button, which will be named differently according to the -content in which resource/folder selection is being made. +context in which resource/folder selection is being made. -The two contexts currently supported are: IMS export and selection of +The three contexts currently supported are: IMS export, selection of content to be subject to access restructions for the duration of an -exam. +exam, and selection of items for dumping to an Authoring Space. =head1 INTERNAL SUBROUTINES @@ -74,7 +75,7 @@ select items. Checking a folder causes within the folder. Unchecking a resource causing unchecking of folders containing the item back up to the top level. -Inputs: 7. +Inputs: 9. - $navmap -- Reference to LON-CAPA navmap object (encapsulates information about resources in the course). @@ -95,6 +96,17 @@ Inputs: 7. - $block -- An internal ID (integer) used to track which exam block currently being configured. + - $preamble -- HTML form elements used to select Authoring Space + if more than one available, and also set name of 'Folder + in Authoring Space' where content will be dumped, when + context is 'dumpdocs'. + + - $numhome -- number of possible Authoring Spaces where content could + be dumped when context is 'dumpdocs'. + + - $uploadedfiles -- Reference to hash: keys are paths to files in + /home/httpd/lonUsers/$cdom/$1/$2/$3/$cnum/userfiles. + Output: $output is the HTML mark-up for display/selection of content items in the pop-up window. @@ -111,7 +123,7 @@ Inputs: 7. - $numcount -- Total numer of folders and resources in course. - $context -- Context in which resources are being displayed - (imsexport or examblock). + (imsexport, examblock or dumpdocs). - $formname -- Name of form. @@ -121,7 +133,7 @@ Inputs: 7. - $checked_maps -- Reference to array of folders currently checked. -Output: 1. Javascript (witthin tags. +Output: 1. Javascript (within tags. =item &get_navmap_object() @@ -132,7 +144,48 @@ no object instantiated. Inputs: 2. - $crstype -- Container type: Course or Community - - $context -- Context: imsexport or examblock + - $context -- Context: imsexport, examblock or dumpdocs + + +=item &clean() + +Takes incoming title and replaces non-alphanumeric characters with underscore, +so title can be used as suggested file name (with appended extension) for file +copied from course to Authoring space. + + +=item &enumerate_course_contents() + +Create hashes of maps (for folders/pages) and symbs (for resources) in +a course, where keys are numbers (starting with 1) and values are +map url, or symb, for an iteration through the course, as seen by +a Course Coordinator. Used to generate numerical IDs to facilitate +(a) storage of lists of maps or resources to be blocked during an exam, +(b) processing selected form element during dumping of selected course + content to Authoring space. + +Inputs: 7 + + $navmap - navmaps object + + $map_url - reference to hash to contain URLs of maps in course + + $resource_symb - reference to hash to contain symbs for + resources in course + + $title_ref - reference to hash containing titles for items in + course + + $context - examblock or dumpdocs + + $cdom - course's domain + + $cnum - courseID + +Outputs: None + +Side Effects: $map_url and $resource_symb hashrefs are populated. + =over @@ -153,15 +206,17 @@ use Apache::lonlocal; use LONCAPA qw(:DEFAULT :match); sub create_picker { - my ($navmap,$context,$formname,$crstype,$blockedmaps,$blockedresources,$block) = @_; + my ($navmap,$context,$formname,$crstype,$blockedmaps,$blockedresources,$block,$preamble,$numhome,$uploadedfiles) = @_; return unless (ref($navmap)); - my ($it,$output,$numdisc,%maps,%resources,%discussiontime,%currmaps,%currresources); + my ($it,$output,$numdisc,%maps,%resources,%discussiontime,%currmaps,%currresources,%files); $it = $navmap->getIterator(undef,undef,undef,1,undef,undef); if (ref($blockedmaps) eq 'HASH') { %currmaps = %{$blockedmaps}; } if (ref($blockedresources) eq 'HASH') { %currresources = %{$blockedresources}; + } elsif (ref($uploadedfiles) eq 'HASH') { + %files = %{$uploadedfiles}; } my @checked_maps; my $curRes; @@ -174,42 +229,43 @@ sub create_picker { my %children = (); my %hierarchy = (); my $location=&Apache::loncommon::lonhttpdurl("/adm/lonIcons"); - my $whitespace = + my $whitespace = ''; - my $onsubmit; + my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; + my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; + my $crsprefix = &propath($cdom,$cnum).'/userfiles/'; + + my ($info,$display,$onsubmit,$togglebuttons); if ($context eq 'examblock') { my $maps_elem = 'docs_maps_'.$block; my $res_elem = 'docs_resources_'.$block; $onsubmit = ' onsubmit="return writeToOpener('."'$maps_elem','$res_elem'".');"'; + $info = &mt('Items in '.lc($crstype).' for which access will be blocked.'); } - my $display = - '
'."\n". - '

'; - if ($context eq 'imsexport') { - $display .= &mt('Choose which items you wish to export from your '. - $crstype.'.'); + if ($context eq 'dumpdocs') { + $info = ''. + &mt('Choose the uploaded course items and templated pages/problems to be copied to Authoring space.'). + '

'; + $startcount = 3 + $numhome; + $onsubmit = ' onsubmit="return checkUnique(document.'.$formname.',document.'.$formname.'.archive);"'; + } elsif ($context eq 'imsexport') { + $info = &mt('Choose which items you wish to export from your '.$crstype.'.'); $startcount = 5; - } elsif ($context eq 'examblock') { - $display .= &mt('Items in '.lc($crstype).' for which access will be blocked.'); } - $display .= '

'; + $togglebuttons = ''. + '  '; + $display = ''."\n"; if ($context eq 'imsexport') { - $display .= '
'."\n". + $display .= $info. + '
'."\n". '
'. - ''.&mt('Content items').''."\n"; - } - $display .= - ''. - '  '; - if ($context eq 'imsexport') { - $display .= '
'; - %discussiontime = - &Apache::lonnet::dump('discussiontimes', - $env{'course.'.$env{'request.course.id'}.'.domain'}, - $env{'course.'.$env{'request.course.id'}.'.num'}); + ''.&mt('Content items').''."\n". + $togglebuttons. + ''; + %discussiontime = &Apache::lonnet::dump('discussiontimes',$cdom,$cnum); $numdisc = keys(%discussiontime); if ($numdisc > 0) { $display .= @@ -221,7 +277,15 @@ sub create_picker { ' onclick="javascript:uncheckAll(document.'.$formname.'.discussion)" />'. ''; } - $display .= '
'; + $display .= '
'; + } elsif ($context eq 'examblock') { + $display .= $info.$togglebuttons; + } elsif ($context eq 'dumpdocs') { + $display .= $preamble. + '
'. + '
'. + ''.&mt('Content to copy').(' 'x4).$togglebuttons.''. + $info; } my $lastcontainer = $startcount; $display .= &Apache::loncommon::start_data_table() @@ -233,12 +297,14 @@ sub create_picker { } } elsif ($context eq 'examblock') { $display .= ''.&mt('Access blocked?').''; + } elsif ($context eq 'dumpdocs') { + $display .= ''.&mt('Copy?').''. + ''.&mt("Title in $crstype"). + ''.&mt('Internal Identifier').''. + ''.&mt('Save as ...').''; } $display .= &Apache::loncommon::end_data_table_header_row(); while ($curRes = $it->next()) { - if (ref($curRes)) { - $count ++; - } if ($curRes == $it->BEGIN_MAP()) { $depth++; $parent{$depth} = $lastcontainer; @@ -250,18 +316,29 @@ sub create_picker { if (ref($curRes)) { my $symb = $curRes->symb(); my $ressymb = $symb; - if ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) { + if ($context eq 'dumpdocs') { + next unless (($curRes->src() =~ m{^\Q/uploaded/$cdom/$cnum/\E(docs|supplemental|simplepage)}) || + ($curRes->src() =~ m{^\Q/uploaded/$cdom/$cnum/\E(default|supplemental)_\d+\.(sequence|page)}) || + ($curRes->src() eq '/res/lib/templates/simpleproblem.problem') || + ($curRes->src() =~ m{^/adm/$match_domain/$match_username/\d+/smppg})); + } elsif ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) { unless ($ressymb =~ m|adm/wrapper/adm|) { $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard'; } } - my $currelem = $count+$boards+$startcount; + $count ++; + my $currelem; + if ($context eq 'imsexport') { + $currelem = $count+$boards+$startcount; + } else { + $currelem = $count+$startcount; + } $display .= &Apache::loncommon::start_data_table_row(). ''."\n". 'is_sequence()) || ($curRes->is_page())) { $lastcontainer = $currelem; - $display .= 'onclick="javascript:checkFolder(this.form,'."'$currelem'".')" '; + $display .= 'onclick="javascript:checkFolder(document.'.$formname.','."'$currelem'".')" '; my $mapurl = (&Apache::lonnet::decode_symb($symb))[2]; if ($currmaps{$mapurl}) { $display .= 'checked="checked"'; @@ -271,12 +348,15 @@ sub create_picker { if ($curRes->is_problem()) { $numprobs ++; } - $display .= 'onclick="javascript:checkResource(this.form,'."'$currelem'".')" '; + $display .= 'onclick="javascript:checkResource(document.'.$formname.','."'$currelem'".')" '; if ($currresources{$symb}) { $display .= 'checked="checked"'; } } $display .= ' />'."\n"; + if ($context eq 'dumpdocs') { + $display .= ''; + } for (my $i=0; $i<$depth; $i++) { $display .= "$whitespace\n"; } @@ -303,7 +383,7 @@ sub create_picker { } } } - $display .= ' '.$curRes->title().''."\n"; + $display .= ' '.$curRes->title().$whitespace.''."\n"; if ($context eq 'imsexport') { # Existing discussion posts? @@ -315,6 +395,35 @@ sub create_picker { } elsif ($numdisc > 0) { $display .= ' '."\n"; } + } elsif ($context eq 'dumpdocs') { + my $src = $curRes->src(); + my ($filepath,$title); + if ($src =~ m{^\Q/uploaded/$cdom/$cnum/\E}) { + $filepath = &Apache::lonnet::filelocation('',$src); + $filepath =~ s/\Q$crsprefix\E//; + if ($curRes->is_map()) { + $title = $files{$filepath}; + } else { + $filepath =~ s{docs/}{}; + $title = $filepath; + $title =~ s{^(default|\d+)/\d*/?}{}; + } + } else { + $title = $curRes->title(); + $title =~ s{/}{_}g; + $title = &clean($title); + if ($src eq '/res/lib/templates/simpleproblem.problem') { + my ($map,$id,$res) = &Apache::lonnet::decode_symb($symb); + $map =~ s{^uploaded/$cdom/$cnum/}{}; + $filepath = $map.'_'.$id; + $title .= '.problem'; + } elsif ($src =~ m{^/adm/$match_domain/$match_username/(\d+)/smppg}) { + $filepath = 'smppage_'.$1.'.db'; + $title .= '.html'; + } + } + $display .= ''.$filepath.''. + ''."\n"; } $display .= &Apache::loncommon::end_data_table_row(); } @@ -332,24 +441,37 @@ sub create_picker { ' '.&mt('Text').'

'; } } - $display .= '

'; + my $numcount; if ($context eq 'imsexport') { $display .= + '

'. ''. ''; + &mt('Export').'" />

'; + $numcount = $count + $boards + $startcount; } elsif ($context eq 'examblock') { $display .= + '

'. ''; + &mt('Copy Choices to Main Window').'" />

'; + $numcount = $count + $startcount; + } elsif ($context eq 'dumpdocs') { + $display .= '
'. + '
'. + '
'. + ''. + '
'; + $numcount = $count + $startcount; } - $display .= '

'; - my $numcount = $count + $boards + $startcount; + $display .= ''; my $scripttag = &respicker_javascript($startcount,$numcount,$context,$formname,\%children, \%hierarchy,\@checked_maps); + if ($context eq 'dumpdocs') { + return $scripttag.$display; + } my ($title,$crumbs,$args); - if ($context eq 'imsexport') { + if ($context eq 'imsexport') { $title = 'Export '.$crstype.' to IMS Package'; } elsif ($context eq 'examblock') { $title = 'Resources with Access blocked'; @@ -361,6 +483,9 @@ sub create_picker { if ($context eq 'imsexport') { $output .= &Apache::lonhtmlcommon::breadcrumbs('IMS Export'). &Apache::londocs::startContentScreen('tools'); + } elsif ($context eq 'dumpdocs') { + $output .= &Apache::lonhtmlcommon::breadcrumbs('Dump to Authoring Space'). + &Apache::londocs::startContentScreen('tools'); } $output .= $display; if ($context eq 'examblock') { @@ -376,6 +501,15 @@ sub respicker_javascript { $checked_maps) = @_; return unless ((ref($children) eq 'HASH') && (ref($hierarchy) eq 'HASH') && (ref($checked_maps) eq 'ARRAY')); + my ($elem,$nested,$nameforelem); + if ($context eq 'dumpdocs') { + $elem='((parseInt(item)-'.$startcount.')*2)+'.$startcount; + $nested='((parseInt(nesting[item][i])-'.$startcount.')*2)+'.$startcount; + $nameforelem=$elem+1; + } else { + $elem='parseInt(item)'; + $nested='parseInt(nesting[item][i])'; + } my $scripttag = <<"START";