version 1.479, 2012/03/28 12:58:42
|
version 1.496, 2012/10/01 12:06:46
|
Line 40 use Apache::lonxml;
|
Line 40 use Apache::lonxml;
|
use Apache::lonclonecourse; |
use Apache::lonclonecourse; |
use Apache::lonnavmaps; |
use Apache::lonnavmaps; |
use Apache::lonnavdisplay(); |
use Apache::lonnavdisplay(); |
|
use Apache::lonuserstate(); |
use HTML::Entities; |
use HTML::Entities; |
|
use HTML::TokeParser; |
use GDBM_File; |
use GDBM_File; |
use Apache::lonlocal; |
use Apache::lonlocal; |
use Cwd; |
use Cwd; |
Line 67 sub mapread {
|
Line 69 sub mapread {
|
} |
} |
|
|
sub storemap { |
sub storemap { |
my ($coursenum,$coursedom,$map)=@_; |
my ($coursenum,$coursedom,$map,$contentchg)=@_; |
|
my $report; |
|
if (($contentchg) && ($map =~ /^default/)) { |
|
$report = 1; |
|
} |
my ($outtext,$errtext)= |
my ($outtext,$errtext)= |
&LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'. |
&LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'. |
$map,1); |
$map,1,$report); |
if ($errtext) { return ($errtext,2); } |
if ($errtext) { return ($errtext,2); } |
|
|
$hadchanges=1; |
$hadchanges=1; |
Line 100 sub authorhosts {
|
Line 106 sub authorhosts {
|
my $allowed=0; |
my $allowed=0; |
my $myhome=&Apache::lonnet::homeserver($ca,$cd); |
my $myhome=&Apache::lonnet::homeserver($ca,$cd); |
my @ids=&Apache::lonnet::current_machine_ids(); |
my @ids=&Apache::lonnet::current_machine_ids(); |
foreach my $id (@ids) { if ($id eq $myhome) { $allowed=1; } } |
foreach my $id (@ids) { |
|
if ($id eq $myhome) { |
|
$allowed=1; |
|
last; |
|
} |
|
} |
if ($allowed) { |
if ($allowed) { |
$home++; |
$home++; |
$outhash{'home_'.$ca.'@'.$cd}=1; |
$outhash{'home_'.$ca.':'.$cd}=1; |
} else { |
} else { |
$outhash{'otherhome_'.$ca.'@'.$cd}=$myhome; |
$outhash{'otherhome_'.$ca.':'.$cd}=$myhome; |
$other++; |
$other++; |
} |
} |
} |
} |
Line 114 sub authorhosts {
|
Line 125 sub authorhosts {
|
} |
} |
|
|
|
|
sub dumpbutton { |
|
my ($home,$other,%outhash)=&authorhosts(); |
|
my $crstype = &Apache::loncommon::course_type(); |
|
if ($home+$other==0) { return ''; } |
|
if ($home) { |
|
my $link = |
|
"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"dumpcourse\", \"" |
|
.&mt('Dump '.$crstype.' Documents to Construction Space') |
|
."\")'>" |
|
.&mt('Dump '.$crstype.' Documents to Construction Space') |
|
.'</a>'; |
|
return |
|
$link.' ' |
|
.&Apache::loncommon::help_open_topic('Docs_Dump_Course_Docs') |
|
.'<br />'; |
|
} else { |
|
return |
|
&mt('Dump '.$crstype.' Documents to Construction Space: available on other servers'); |
|
} |
|
} |
|
|
|
sub clean { |
sub clean { |
my ($title)=@_; |
my ($title)=@_; |
$title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs; |
$title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs; |
Line 146 sub clean {
|
Line 136 sub clean {
|
sub dumpcourse { |
sub dumpcourse { |
my ($r) = @_; |
my ($r) = @_; |
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
$r->print(&Apache::loncommon::start_page('Dump '.$crstype.' Documents to Construction Space'). |
$r->print(&Apache::loncommon::start_page('Dump '.$crstype.' Content to Authoring Space')."\n". |
'<form name="dumpdoc" action="" method="post">'); |
&Apache::lonhtmlcommon::breadcrumbs('Dump '.$crstype.' Content to Authoring Space')."\n"); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Dump '.$crstype.' Documents to Construction Space')); |
$r->print(&startContentScreen('tools')); |
my ($home,$other,%outhash)=&authorhosts(); |
my ($home,$other,%outhash)=&authorhosts(); |
unless ($home) { return ''; } |
unless ($home) { |
|
$r->print(&endContentScreen()); |
|
return ''; |
|
} |
my $origcrsid=$env{'request.course.id'}; |
my $origcrsid=$env{'request.course.id'}; |
my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid); |
my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid); |
if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) { |
if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) { |
# Do the dumping |
# Do the dumping |
unless ($outhash{'home_'.$env{'form.authorspace'}}) { return ''; } |
unless ($outhash{'home_'.$env{'form.authorspace'}}) { |
|
$r->print(&endContentScreen()); |
|
return ''; |
|
} |
my ($ca,$cd)=split(/\@/,$env{'form.authorspace'}); |
my ($ca,$cd)=split(/\@/,$env{'form.authorspace'}); |
$r->print('<h3>'.&mt('Copying Files').'</h3>'); |
$r->print('<h3>'.&mt('Copying Files').'</h3>'); |
my $title=$env{'form.authorfolder'}; |
my $title=$env{'form.authorfolder'}; |
Line 206 sub dumpcourse {
|
Line 202 sub dumpcourse {
|
} |
} |
} |
} |
} else { |
} else { |
|
$r->print(&mt('Searching ...').'<br />'); |
|
$r->rflush(); |
# Input form |
# Input form |
|
$r->print('<form name="dumpdoc" action="" method="post">'."\n"); |
unless ($home==1) { |
unless ($home==1) { |
$r->print( |
$r->print('<div class="LC_left_float">'. |
'<h3>'.&mt('Select the Construction Space').'</h3><select name="authorspace">'); |
'<fieldset><legend>'. |
|
&mt('Select the Authoring Space'). |
|
'</legend><select name="authorspace">'); |
} |
} |
foreach my $key (sort(keys(%outhash))) { |
foreach my $key (sort(keys(%outhash))) { |
if ($key=~/^home_(.+)$/) { |
if ($key=~/^home_(.+)$/) { |
Line 218 sub dumpcourse {
|
Line 219 sub dumpcourse {
|
'<input type="hidden" name="authorspace" value="'.$1.'" />'); |
'<input type="hidden" name="authorspace" value="'.$1.'" />'); |
} else { |
} else { |
$r->print('<option value="'.$1.'">'.$1.' - '. |
$r->print('<option value="'.$1.'">'.$1.' - '. |
&Apache::loncommon::plainname(split(/\@/,$1)).'</option>'); |
&Apache::loncommon::plainname(split(/\:/,$1)).'</option>'); |
} |
} |
} |
} |
} |
} |
unless ($home==1) { |
unless ($home==1) { |
$r->print('</select>'); |
$r->print('</select></fieldset></div>'."\n"); |
} |
} |
my $title=$origcrsdata{'description'}; |
my $title=$origcrsdata{'description'}; |
$title=~s/[\/\s]+/\_/gs; |
$title=~s/[\/\s]+/\_/gs; |
$title=&clean($title); |
$title=&clean($title); |
$r->print('<h3>'.&mt('Folder in Construction Space').'</h3>' |
$r->print('<div class="LC_left_float">'. |
.'<input type="text" size="50" name="authorfolder" value="'.$title.'" /><br />'); |
'<fieldset><legend>'.&mt('Folder in Authoring Space').'</legend>'. |
|
'<input type="text" size="50" name="authorfolder" value="'. |
|
$title.'" />'. |
|
'</fieldset></div><br clear="all" />'."\n"); |
&tiehash(); |
&tiehash(); |
$r->print('<h3>'.&mt('Filenames in Construction Space').'</h3>' |
$r->print('<h4>'.&mt('Filenames in Authoring Space').'</h4>' |
.&Apache::loncommon::start_data_table() |
.&Apache::loncommon::start_data_table() |
.&Apache::loncommon::start_data_table_header_row() |
.&Apache::loncommon::start_data_table_header_row() |
.'<th>'.&mt('Internal Filename').'</th>' |
.'<th>'.&mt('Internal Filename').'</th>' |
Line 259 sub dumpcourse {
|
Line 263 sub dumpcourse {
|
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::loncommon::end_data_table()); |
&untiehash(); |
&untiehash(); |
$r->print( |
$r->print( |
'<p><input type="submit" name="dumpcourse" value="'.&mt("Dump $crstype Documents").'" /></p></form>'); |
'<p><input type="submit" name="dumpcourse" value="'.&mt("Dump $crstype Content").'" /></p></form>'); |
} |
} |
} |
$r->print(&endContentScreen()); |
|
|
sub exportbutton { |
|
my $crstype = &Apache::loncommon::course_type(); |
|
return "<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"exportcourse\", \"".&mt('IMS Export')."\")'>".&mt('IMS Export')."</a>". |
|
&Apache::loncommon::help_open_topic('Docs_Export_Course_Docs').'<br />'; |
|
} |
} |
|
|
sub group_import { |
sub group_import { |
Line 310 sub group_import {
|
Line 309 sub group_import {
|
join(':', ($name, $url, $ext, 'normal', 'res')); |
join(':', ($name, $url, $ext, 'normal', 'res')); |
} |
} |
} |
} |
return &storemap($coursenum, $coursedom, $folder.'.'.$container); |
return &storemap($coursenum, $coursedom, $folder.'.'.$container,1); |
} |
} |
|
|
sub breadcrumbs { |
sub breadcrumbs { |
Line 370 sub breadcrumbs {
|
Line 369 sub breadcrumbs {
|
} |
} |
|
|
sub log_docs { |
sub log_docs { |
return &Apache::lonnet::instructor_log('docslog',@_); |
return &Apache::lonnet::write_log('course','docslog',@_); |
} |
} |
|
|
{ |
{ |
Line 430 sub log_docs {
|
Line 429 sub log_docs {
|
} |
} |
} |
} |
|
|
|
|
|
|
|
|
|
|
sub docs_change_log { |
sub docs_change_log { |
my ($r)=@_; |
my ($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath)=@_; |
my $folder=$env{'form.folder'}; |
my $supplementalflag=($env{'form.folderpath'}=~/^supplemental/); |
$r->print(&Apache::loncommon::start_page('Course Document Change Log')); |
my $js = '<script type="text/javascript">'."\n". |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Document Change Log')); |
'// <![CDATA['."\n". |
|
&Apache::loncommon::display_filter_js('docslog')."\n". |
|
&editing_js($env{'user.domain'},$env{'user.name'},$supplementalflag)."\n". |
|
&history_tab_js()."\n". |
|
&Apache::lonratedt::editscript('simple')."\n". |
|
'// ]]>'."\n". |
|
'</script>'."\n"; |
|
$r->print(&Apache::loncommon::start_page('Content Change Log',$js)); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Change Log')); |
|
$r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs'))); |
|
my %orderhash; |
|
my $container='sequence'; |
|
my $pathitem; |
|
if ($env{'form.pagepath'}) { |
|
$container='page'; |
|
$pathitem = '<input type="hidden" name="pagepath" value="'. |
|
&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />'; |
|
} else { |
|
my $folderpath=$env{'form.folderpath'}; |
|
if ($folderpath eq '') { |
|
$folderpath = 'default&'.&escape(&mt('Main '.$crstype.' Documents')); |
|
} |
|
$pathitem = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />'; |
|
} |
|
my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container"; |
|
my $jumpto = $readfile; |
|
$jumpto =~ s{^/}{}; |
|
my $tid = 1; |
|
if ($supplementalflag) { |
|
$tid = 2; |
|
} |
|
my ($breadcrumbtrail) = &breadcrumbs($allowed,$crstype); |
|
$r->print($breadcrumbtrail. |
|
&generate_edit_table($tid,\%orderhash,undef,$iconpath,$jumpto, |
|
$readfile)); |
my %docslog=&Apache::lonnet::dump('nohist_docslog', |
my %docslog=&Apache::lonnet::dump('nohist_docslog', |
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
$env{'course.'.$env{'request.course.id'}.'.num'}); |
$env{'course.'.$env{'request.course.id'}.'.num'}); |
|
|
if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); } |
if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); } |
|
|
$r->print('<form action="/adm/coursedocs" method="post" name="docslog">'. |
|
'<input type="hidden" name="docslog" value="1" />'); |
|
|
|
my %saveable_parameters = ('show' => 'scalar',); |
my %saveable_parameters = ('show' => 'scalar',); |
&Apache::loncommon::store_course_settings('docs_log', |
&Apache::loncommon::store_course_settings('docs_log', |
\%saveable_parameters); |
\%saveable_parameters); |
Line 461 sub docs_change_log {
|
Line 487 sub docs_change_log {
|
'randomorder' => 'Randomly ordered', |
'randomorder' => 'Randomly ordered', |
'set' => 'set to', |
'set' => 'set to', |
'del' => 'deleted'); |
'del' => 'deleted'); |
$r->print(&Apache::loncommon::display_filter(). |
my $filter = &Apache::loncommon::display_filter('docslog')."\n". |
'<input type="hidden" name="folder" value="'.$folder.'" />'. |
$pathitem."\n". |
'<input type="submit" value="'.&mt('Display').'" /></form>'); |
'<input type="hidden" name="folder" value="'.$env{'form.folder'}.'" />'. |
|
(' 'x2).'<input type="submit" value="'.&mt('Display').'" />'; |
|
$r->print('<div class="LC_left_float">'. |
|
'<fieldset><legend>'.&mt('Display of Content Changes').'</legend>'."\n". |
|
&makedocslogform($filter,1). |
|
'</fieldset></div><br clear="all" />'); |
$r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row(). |
$r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row(). |
'<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'. |
'<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'. |
&mt('After').'</th>'. |
&mt('After').'</th>'. |
Line 507 sub docs_change_log {
|
Line 538 sub docs_change_log {
|
':'.$docslog{$id}{'exe_udom'}.'</tt>'. |
':'.$docslog{$id}{'exe_udom'}.'</tt>'. |
$send_msg_link.'</td><td>'. |
$send_msg_link.'</td><td>'. |
$docslog{$id}{'logentry'}{'folder'}.'</td><td>'); |
$docslog{$id}{'logentry'}{'folder'}.'</td><td>'); |
|
my $is_supp = 0; |
|
if ($docslog{$id}{'logentry'}{'currentfolder'} =~ /^supplemental/) { |
|
$is_supp = 1; |
|
} |
# Before |
# Before |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
if ($oldname ne $newname) { |
if ($oldname ne $newname) { |
$r->print(&LONCAPA::map::qtescape($oldname)); |
my $shown = &LONCAPA::map::qtescape($oldname); |
|
if ($is_supp) { |
|
$shown = &Apache::loncommon::parse_supplemental_title($shown); |
|
} |
|
$r->print($shown); |
} |
} |
} |
} |
$r->print('<ul>'); |
$r->print('<ul>'); |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) { |
if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) { |
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]).'</li>'); |
my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]); |
|
if ($is_supp) { |
|
$shown = &Apache::loncommon::parse_supplemental_title($shown); |
|
} |
|
$r->print('<li>'.$shown.'</li>'); |
} |
} |
} |
} |
$r->print('</ul>'); |
$r->print('</ul>'); |
Line 529 sub docs_change_log {
|
Line 572 sub docs_change_log {
|
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
if ($oldname ne '' && $oldname ne $newname) { |
if ($oldname ne '' && $oldname ne $newname) { |
$r->print(&LONCAPA::map::qtescape($newname)); |
my $shown = &LONCAPA::map::qtescape($newname); |
|
if ($is_supp) { |
|
$shown = &Apache::loncommon::parse_supplemental_title(&LONCAPA::map::qtescape($newname)); |
|
} |
|
$r->print($shown); |
} |
} |
} |
} |
$r->print('<ul>'); |
$r->print('<ul>'); |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) { |
if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) { |
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]).'</li>'); |
my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]); |
|
if ($is_supp) { |
|
$shown = &Apache::loncommon::parse_supplemental_title($shown); |
|
} |
|
$r->print('<li>'.$shown.'</li>'); |
} |
} |
} |
} |
$r->print('</ul>'); |
$r->print('</ul>'); |
Line 558 sub docs_change_log {
|
Line 609 sub docs_change_log {
|
if (!($env{'form.show'} eq &mt('all') |
if (!($env{'form.show'} eq &mt('all') |
|| $shown<=$env{'form.show'})) { last; } |
|| $shown<=$env{'form.show'})) { last; } |
} |
} |
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::loncommon::end_data_table()."\n". |
|
&makesimpleeditform($pathitem)."\n". |
|
'</div></div>'); |
|
$r->print(&endContentScreen()); |
} |
} |
|
|
sub update_paste_buffer { |
sub update_paste_buffer { |
my ($coursenum,$coursedom) = @_; |
my ($coursenum,$coursedom,$folder) = @_; |
|
|
return if (!defined($env{'form.markcopy'})); |
return if (!defined($env{'form.markcopy'})); |
return if (!defined($env{'form.copyfolder'})); |
return if (!defined($env{'form.copyfolder'})); |
Line 577 sub update_paste_buffer {
|
Line 631 sub update_paste_buffer {
|
my ($title,$url)=split(':',$LONCAPA::map::resources[$LONCAPA::map::order[$env{'form.markcopy'}]]); |
my ($title,$url)=split(':',$LONCAPA::map::resources[$LONCAPA::map::order[$env{'form.markcopy'}]]); |
if (&is_supplemental_title($title)) { |
if (&is_supplemental_title($title)) { |
&Apache::lonnet::appenv({'docs.markedcopy_supplemental' => $title}); |
&Apache::lonnet::appenv({'docs.markedcopy_supplemental' => $title}); |
($title) = &parse_supplemental_title($title); |
($title) = &Apache::loncommon::parse_supplemental_title($title); |
} elsif ($env{'docs.markedcopy_supplemental'}) { |
} elsif ($env{'docs.markedcopy_supplemental'}) { |
&Apache::lonnet::delenv('docs.markedcopy_supplemental'); |
&Apache::lonnet::delenv('docs.markedcopy_supplemental'); |
} |
} |
$url=~s{http(:|:)//https(:|:)//}{https$2//}; |
$url=~s{http(:|:)//https(:|:)//}{https$2//}; |
|
|
&Apache::lonnet::appenv({'docs.markedcopy_title' => $title, |
(my $cmd,undef)=split('_',$env{'form.cmd'}); |
'docs.markedcopy_url' => $url}); |
|
|
my %addtoenv = ( |
|
'docs.markedcopy_title' => $title, |
|
'docs.markedcopy_url' => $url, |
|
'docs.markedcopy_cmd' => $cmd, |
|
); |
|
&Apache::lonnet::delenv('docs.markedcopy_nested'); |
|
&Apache::lonnet::delenv('docs.markedcopy_nestednames'); |
|
if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(default|supplemental)_?(\d*)\.(page|sequence)$}) { |
|
my $prefix = $1; |
|
my $subdir =$2; |
|
if ($subdir eq '') { |
|
$subdir = $prefix; |
|
} |
|
my (%addedmaps,%removefrommap,%removeparam,%hierarchy,%titles,%allmaps); |
|
&contained_map_check($url,$folder,\%removefrommap,\%removeparam,\%addedmaps, |
|
\%hierarchy,\%titles,\%allmaps); |
|
if (ref($hierarchy{$url}) eq 'HASH') { |
|
my ($nested,$nestednames); |
|
&recurse_uploaded_maps($url,$subdir,\%hierarchy,\%titles,\$nested,\$nestednames); |
|
$nested =~ s/\&$//; |
|
$nestednames =~ s/\Q___&&&___\E$//; |
|
if ($nested ne '') { |
|
$addtoenv{'docs.markedcopy_nested'} = $nested; |
|
} |
|
if ($nestednames ne '') { |
|
$addtoenv{'docs.markedcopy_nestednames'} = $nestednames; |
|
} |
|
} |
|
} |
|
&Apache::lonnet::appenv(\%addtoenv); |
delete($env{'form.markcopy'}); |
delete($env{'form.markcopy'}); |
} |
} |
|
|
|
sub recurse_uploaded_maps { |
|
my ($url,$dir,$hierarchy,$titlesref,$nestref,$namesref) = @_; |
|
if (ref($hierarchy->{$url}) eq 'HASH') { |
|
my @maps = map { $hierarchy->{$url}{$_}; } sort { $a <=> $b } (keys(%{$hierarchy->{$url}})); |
|
my @titles = map { $titlesref->{$url}{$_}; } sort { $a <=> $b } (keys(%{$titlesref->{$url}})); |
|
my (@uploaded,@names,%shorter); |
|
for (my $i=0; $i<@maps; $i++) { |
|
my ($inner) = ($maps[$i] =~ m{^/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_(\d+)\.(?:page|sequence)$}); |
|
if ($inner ne '') { |
|
push(@uploaded,$inner); |
|
push(@names,&escape($titles[$i])); |
|
$shorter{$maps[$i]} = $inner; |
|
} |
|
} |
|
$$nestref .= "$dir:".join(',',@uploaded).'&'; |
|
$$namesref .= "$dir:".(join(',',@names)).'___&&&___'; |
|
foreach my $map (@maps) { |
|
if ($shorter{$map} ne '') { |
|
&recurse_uploaded_maps($map,$shorter{$map},$hierarchy,$titlesref,$nestref,$namesref); |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
sub print_paste_buffer { |
sub print_paste_buffer { |
my ($r,$container) = @_; |
my ($r,$container,$folder,$coursedom,$coursenum) = @_; |
return if (!defined($env{'docs.markedcopy_url'})); |
return if (!defined($env{'docs.markedcopy_url'})); |
|
|
$r->print('<fieldset>' |
my ($is_external,$othercourse,$fromsupp,$is_uploaded_map,$parent); |
.'<legend>'.&mt('Clipboard').'</legend>' |
my $extension = (split(/\./,$env{'docs.markedcopy_url'}))[-1]; |
.'<form name="pasteform" action="/adm/coursedocs" method="post">' |
|
.'<input type="submit" name="pastemarked" value="'.&mt('Paste').'" /> ' |
|
); |
|
|
|
my $type; |
|
if ($env{'docs.markedcopy_url'} =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//} ) { |
if ($env{'docs.markedcopy_url'} =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//} ) { |
$type = &mt('External Resource'); |
$is_external = 1; |
$r->print($type.': '. |
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}).' ('. |
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}).')'); |
|
} else { |
|
my $extension = (split(/\./,$env{'docs.markedcopy_url'}))[-1]; |
|
my $icon = &Apache::loncommon::icon($extension); |
|
if ($extension eq 'sequence' && |
|
$env{'docs.markedcopy_url'} =~ m{/default_\d+\.sequence$ }x) { |
|
$icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL')); |
|
$icon .= '/navmap.folder.closed.gif'; |
|
} |
|
$icon = '<img src="'.$icon.'" alt="" class="LC_icon" />'; |
|
$r->print($icon.$type.': '. &parse_supplemental_title(&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}))); |
|
} |
} |
if ($container eq 'page') { |
|
$r->print(' |
my ($canpaste,$nopaste,$othercrs,$areachange,$is_uploaded_map); |
<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" /> |
if ($folder =~ /^supplemental/) { |
<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" /> |
$canpaste = &supp_pasteable($env{'docs.markedcopy_url'}); |
'); |
unless ($canpaste) { |
|
$nopaste = &mt('Paste into Supplemental Content unavailable for this type of content.'); |
|
} |
} else { |
} else { |
$r->print(' |
$canpaste = 1; |
|
} |
|
|
|
if ($canpaste) { |
|
if ($env{'docs.markedcopy_url'} =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) { |
|
my $srcdom = $1; |
|
my $srcnum = $2; |
|
my $rem = $3; |
|
if (($srcdom ne $coursedom) || ($srcnum ne $coursenum)) { |
|
$othercourse = 1; |
|
if ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) { |
|
if ($canpaste) { |
|
$othercrs = '<br />'.&mt('(from another course).'); |
|
} |
|
} else { |
|
$canpaste = 0; |
|
$nopaste = &mt('Paste from another course unavailable.') |
|
} |
|
} |
|
if ($rem =~ m{^(default|supplemental)_?(\d*)\.(?:page|sequence)$}) { |
|
my $prefix = $1; |
|
$parent = $2; |
|
if ($folder !~ /^\Q$prefix\E/) { |
|
$areachange = 1; |
|
} |
|
$is_uploaded_map = 1; |
|
} |
|
} |
|
} |
|
|
|
$r->print('<fieldset>' |
|
.'<legend>'.&mt('Clipboard').'</legend>'); |
|
my ($type,$buffer); |
|
if ($is_external) { |
|
$type = &mt('External Resource'); |
|
$buffer = $type.': '. |
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}).' ('. |
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}).')'; |
|
} else { |
|
my $icon = &Apache::loncommon::icon($extension); |
|
if ($extension eq 'sequence' && |
|
$env{'docs.markedcopy_url'} =~ m{/default_\d+\.sequence$ }x) { |
|
$icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL')); |
|
$icon .= '/navmap.folder.closed.gif'; |
|
} |
|
$icon = '<img src="'.$icon.'" alt="" class="LC_icon" />'; |
|
$buffer = $icon.$type.': '. &Apache::loncommon::parse_supplemental_title(&LONCAPA::map::qtescape($env{'docs.markedcopy_title'})); |
|
} |
|
if ($canpaste) { |
|
$r->print('<form name="pasteform" action="/adm/coursedocs" method="post">'.$buffer); |
|
if (($is_uploaded_map) && (!$areachange)) { |
|
if ((!$othercourse) && ($env{'docs.markedcopy_cmd'} eq 'cut')) { |
|
$r->print((' 'x 4).'<span id="pasteoptionstext">'. |
|
'<a href="javascript:showPasteOptions();" class="LC_menubuttons_link">'. |
|
&mt('Show Paste Options').'</a></span><br />'. |
|
'<div id="pasteoptions" class="LC_dccid">'.(' 'x 4). |
|
'<label>'. |
|
'<input type="radio" name="docs.markedcopy_options" value="new" checked="checked" />'. |
|
&mt('Copy to new folder').'</label>'.(' ' x2). |
|
'<label>'. |
|
'<input type="radio" name="docs.markedcopy_options" value="move" />'. |
|
&mt('Move old folder').'</label><br />'); |
|
if ($env{'docs.markedcopy_nested'}) { |
|
$r->print('<br />'.&mt('Folder to paste contains sub-folders'). |
|
'<br /><table border="0">'); |
|
my @pastemaps = split(/\&/,$env{'docs.markedcopy_nested'}); |
|
my @titles = split(/\Q___&&&___\E/,$env{'docs.markedcopy_nestednames'}); |
|
my $lastdir = $parent; |
|
my %depths = ( |
|
$lastdir => 0, |
|
); |
|
my (%display,%deps); |
|
for (my $i=0; $i<@pastemaps; $i++) { |
|
($lastdir,my $subfolderstr) = split(/\:/,$pastemaps[$i]); |
|
my ($namedir,$esctitlestr) = split(/\:/,$titles[$i]); |
|
my @subfolders = split(/,/,$subfolderstr); |
|
$deps{$lastdir} = \@subfolders; |
|
my @subfoldertitles = map { &unescape($_); } split(/,/,$esctitlestr); |
|
my $depth = $depths{$lastdir} + 1; |
|
my $offset = int($depth * 4); |
|
my $indent = (' ' x $offset); |
|
for (my $j=0; $j<@subfolders; $j++) { |
|
$depths{$subfolders[$j]} = $depth; |
|
$display{$subfolders[$j]} = |
|
'<tr><td>'.$indent.$subfoldertitles[$j].' </td>'. |
|
'<td><label>'. |
|
'<input type="radio" name="docs.markedcopy_'.$subfolders[$j].'" value="new" checked="checked" />'.&mt('Copy to new').'</label>'.(' ' x2). |
|
'<label>'. |
|
'<input type="radio" name="docs.markedcopy_'.$subfolders[$j].'" value="move" />'. |
|
&mt('Move old').'</label>'. |
|
'</td></tr>'; |
|
} |
|
} |
|
&recurse_print($r,$parent,\%deps,\%display); |
|
$r->print('</table>'); |
|
} |
|
$r->print('</div>'); |
|
} |
|
} |
|
$r->print('<br /><input type="submit" name="pastemarked" value="'.&mt('Paste').'" />'.$othercrs); |
|
if ($container eq 'page') { |
|
$r->print(' |
|
<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" /> |
|
<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" /> |
|
'); |
|
} else { |
|
$r->print(' |
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /> |
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /> |
'); |
'); |
|
} |
|
$r->print('</form>'); |
|
} else { |
|
$r->print(&mt('Paste buffer contains:').' '.$buffer. |
|
'<br /><p class="LC_info">'.$nopaste.'</p>'); |
|
} |
|
$r->print('</fieldset>'); |
|
} |
|
|
|
sub recurse_print { |
|
my ($r,$dir,$deps,$display) = @_; |
|
$r->print($display->{$dir}."\n"); |
|
if (ref($deps->{$dir}) eq 'ARRAY') { |
|
foreach my $subdir (@{$deps->{$dir}}) { |
|
&recurse_print($r,$subdir,$deps,$display); |
|
} |
|
} |
|
} |
|
|
|
sub supp_pasteable { |
|
my ($url) = @_; |
|
if (($url =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//}) || |
|
(($url =~ /\.sequence$/) && ($url =~ m{^/uploaded/})) || |
|
($url =~ m{^/uploaded/$match_domain/$match_courseid/(docs|supplemental)/(default|\d+)/\d+/}) || |
|
($url =~ m{^/adm/$match_domain/$match_username/aboutme}) || |
|
($url =~ m{^/public/$match_domain/$match_courseid/syllabus})) { |
|
return 1; |
} |
} |
$r->print('</form></fieldset>'); |
return; |
|
} |
|
|
|
sub paste_popup_js { |
|
my %lt = &Apache::lonlocal::texthash( |
|
show => 'Show Paste Options', |
|
hide => 'Hide Paste Options', |
|
); |
|
return <<"END"; |
|
|
|
function showPasteOptions() { |
|
document.getElementById('pasteoptions').style.display='block'; |
|
document.getElementById('pasteoptions').style.textAlign='left'; |
|
document.getElementById('pasteoptions').style.textFace='normal'; |
|
document.getElementById('pasteoptionstext').innerHTML ='<a href="javascript:hidePasteOptions();" class="LC_menubuttons_link">$lt{'hide'}</a><br />'; |
|
return; |
} |
} |
|
|
|
function hidePasteOptions() { |
|
document.getElementById('pasteoptions').style.display='none'; |
|
document.getElementById('pasteoptionstext').innerHTML ='<a href="javascript:showPasteOptions()" class="LC_menubuttons_link">$lt{'show'}</a>'; |
|
return; |
|
} |
|
|
|
END |
|
|
|
} |
|
|
|
|
sub do_paste_from_buffer { |
sub do_paste_from_buffer { |
my ($coursenum,$coursedom,$folder) = @_; |
my ($coursenum,$coursedom,$folder,$container,$errors) = @_; |
|
|
|
# Early out if paste buffer is empty |
if (!$env{'form.pastemarked'}) { |
if (!$env{'form.pastemarked'}) { |
return; |
return (); |
} |
} |
|
|
# paste resource to end of list |
# Supplemental content may only include certain types of content |
|
# Early out if pasted content is not supported in Supplemental area |
|
if ($folder =~ /^supplemental/) { |
|
unless (&supp_pasteable($env{'docs.markedcopy_url'})) { |
|
return (&mt('Paste failed: content type is not supported within Supplemental Content')); |
|
} |
|
} |
|
|
|
# Prepare to paste resource at end of list |
my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}); |
my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}); |
my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}); |
my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}); |
# Maps need to be copied first |
|
if (($url=~/\.(page|sequence)$/) && ($url=~/^\/uploaded\//)) { |
my ($is_map,$srcdom,$srcnum,$prefixchg,%before,%after,%mapchanges,%tomove); |
$title=&mt('Copy of').' '.$title; |
if ($url=~/\.(page|sequence)$/) { |
my $newid=$$.int(rand(100)).time; |
$is_map = 1; |
my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/); |
} |
if ($oldid =~ m{^(/uploaded/\Q$coursedom\E/\Q$coursenum\E/)(\D+)(\d+)$}) { |
if ($url =~ m{^/uploaded/($match_domain)/($match_courseid)/([^/]+)}) { |
my $path = $1; |
$srcdom = $1; |
my $prefix = $2; |
$srcnum = $2; |
my $ancestor = $3; |
my $oldprefix = $3; |
if (length($ancestor) > 10) { |
# When paste buffer was populated using an active role in a different course |
$ancestor = substr($ancestor,-10,10); |
# check for mdc privilege in the course from which the resource was pasted |
|
if (($srcdom ne $coursedom) || ($srcnum ne $coursenum)) { |
|
unless ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) { |
|
return (&mt('Paste failed: Item is from a different course which you do not have rights to edit.')); |
} |
} |
$oldid = $path.$prefix.$ancestor; |
|
} |
} |
my $counter = 0; |
# When pasting content from Main Content to Supplemental Content and vice versa |
my $newurl=$oldid.$newid.'.'.$ext; |
# URLs will contain different paths (which depend on whether pasted item is |
my $is_unique = &uniqueness_check($newurl); |
# a folder/page or a document. |
while (!$is_unique && $counter < 100) { |
if (($folder =~ /^supplemental/) && (($oldprefix =~ /^default/) || ($oldprefix eq 'docs'))) { |
$counter ++; |
$prefixchg = 1; |
$newid ++; |
%before = ( map => 'default', |
$newurl = $oldid.$newid; |
doc => 'docs'); |
$is_unique = &uniqueness_check($newurl); |
%after = ( map => 'supplemental', |
|
doc => 'supplemental' ); |
|
} elsif (($folder =~ /^default/) && ($oldprefix =~ /^supplemental/)) { |
|
$prefixchg = 1; |
|
%before = ( map => 'supplemental', |
|
doc => 'supplemental'); |
|
%after = ( map => 'default', |
|
doc => 'docs'); |
|
} |
|
|
|
# If pasting an uploaded map, get list of contained uploaded maps. |
|
my @nested; |
|
if ($env{'docs.markedcopy_nested'}) { |
|
my ($type) = ($oldprefix =~ /^(default|supplemental)/); |
|
my @items = split(/\&/,$env{'docs.markedcopy_nested'}); |
|
my @deps = map { /\d+:([\d,]+$)/ } @items; |
|
foreach my $dep (@deps) { |
|
if ($dep =~ /,/) { |
|
push(@nested,split(/,/,$dep)); |
|
} else { |
|
push(@nested,$dep); |
|
} |
|
} |
|
foreach my $item (@nested) { |
|
if ($env{'form.docs.markedcopy_'.$item} eq 'move') { |
|
$tomove{$type.'_'.$item} = 1; |
|
} |
|
} |
} |
} |
if (!$is_unique) { |
} |
if ($url=~/\.page$/) { |
|
return &mt('Paste failed: an error occurred creating a unique URL for the composite page'); |
# Maps need to be copied first |
} else { |
my ($oldurl,%removefrommap,%removeparam,%addedmaps,%rewrites,%retitles,%copies, |
return &mt('Paste failed: an error occurred creating a unique URL for the folder'); |
%dbcopies,%zombies,%params,%docmoves,%mapmoves,%newsubdir,%newurls); |
|
$oldurl = $url; |
|
if ($is_map) { |
|
if ($folder =~ /^default/) { |
|
my $lastchange = &Apache::lonnet::get_coursechange($coursedom,$coursenum); |
|
if ($lastchange > $env{'request.course.tied'}) { |
|
&reinit_role($coursedom,$coursenum,$env{"course.$env{'request.course.id'}.home"}); |
} |
} |
} |
} |
my $storefn=$newurl; |
# If pasting a map, check if map contains other maps |
$storefn=~s{^/\w+/$match_domain/$match_username/}{}; |
my (%allmaps,%hierarchy,%titles); |
my $paste_map_result = |
if ($folder =~ /^default/) { |
&Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn, |
my $navmap = Apache::lonnavmaps::navmap->new(); |
&Apache::lonnet::getfile($url)); |
if (defined($navmap)) { |
if ($paste_map_result eq '/adm/notfound.html') { |
foreach my $res ($navmap->retrieveResources(undef,sub { $_[0]->is_map() },1,0,1)) { |
if ($url=~/\.page$/) { |
$allmaps{$res->src()} = 1; |
return &mt('Paste failed: an error occurred saving the composite page'); |
} |
} else { |
|
return &mt('Paste failed: an error occurred saving the folder'); |
|
} |
} |
} |
} |
$url = $newurl; |
&contained_map_check($url,$folder,\%removefrommap,\%removeparam, |
} |
\%addedmaps,\%hierarchy,\%titles,\%allmaps); |
|
if ($url=~ m{^/uploaded/}) { |
|
my $newurl; |
|
unless ($env{'form.docs.markedcopy_options'} eq 'move') { |
|
($newurl,my $error) = |
|
&get_newmap_url($url,$folder,$prefixchg,$coursedom,$coursenum, |
|
$srcdom,$srcnum,\$title,\%allmaps,\%newurls); |
|
if ($error) { |
|
return ($error); |
|
} |
|
if ($newurl ne '') { |
|
if ($newurl ne $url) { |
|
if ($newurl =~ /(?:default|supplemental)_(\d+).(?:sequence|page)$/) { |
|
$newsubdir{$url} = $1; |
|
} |
|
$mapchanges{$url} = 1; |
|
} |
|
} |
|
} |
|
if (($srcdom ne $coursedom) || ($srcnum ne $coursenum) || ($prefixchg) || |
|
(($newurl ne '') && ($newurl ne $url))) { |
|
unless (&url_paste_fixups($url,$folder,$prefixchg,$coursedom,$coursenum, |
|
\%allmaps,\%rewrites,\%retitles,\%copies,\%dbcopies, |
|
\%zombies,\%params,\%mapmoves,\%mapchanges,\%tomove, |
|
\%newsubdir,\%newurls)) { |
|
$mapmoves{$url} = 1; |
|
} |
|
$url = $newurl; |
|
} elsif ($env{'docs.markedcopy_nested'}) { |
|
&url_paste_fixups($url,$folder,$prefixchg,$coursedom,$coursenum,\%allmaps,\%rewrites, |
|
\%retitles,\%copies,\%dbcopies,\%zombies,\%params,\%mapmoves, |
|
\%mapchanges,\%tomove,\%newsubdir,\%newurls); |
|
} |
|
} elsif ($url=~m {^/res/}) { |
# published maps can only exists once, so remove it from paste buffer when done |
# published maps can only exists once, so remove it from paste buffer when done |
if (($url=~/\.(page|sequence)$/) && ($url=~m {^/res/})) { |
&Apache::lonnet::delenv('docs.markedcopy'); |
&Apache::lonnet::delenv('docs.markedcopy'); |
# if pasting published map (main content are only) check map is not already in course |
|
if ($folder =~ /^default/) { |
|
if ($allmaps{$url}) { |
|
return (&mt('Paste failed: only one instance of a particular published sequence or page is allowed within each course.')); |
|
} |
|
} |
|
} |
} |
} |
if ($url=~ m{/smppg$}) { |
if ($url=~ m{/smppg$}) { |
my $db_name = &Apache::lonsimplepage::get_db_name($url); |
my $db_name = &Apache::lonsimplepage::get_db_name($url); |
Line 693 sub do_paste_from_buffer {
|
Line 1026 sub do_paste_from_buffer {
|
my %contents=&Apache::lonnet::dump($db_name,$coursedom,$coursenum); |
my %contents=&Apache::lonnet::dump($db_name,$coursedom,$coursenum); |
my $now = time(); |
my $now = time(); |
$db_name =~ s{_\d*$ }{_$now}x; |
$db_name =~ s{_\d*$ }{_$now}x; |
my $result=&Apache::lonnet::put($db_name,\%contents, |
my $dbresult=&Apache::lonnet::put($db_name,\%contents, |
$coursedom,$coursenum); |
$coursedom,$coursenum); |
$url =~ s{/(\d*)/smppg$ }{/$now/smppg}x; |
if ($dbresult eq 'ok') { |
$title=&mt('Copy of').' '.$title; |
$url =~ s{/(\d*)/smppg$ }{/$now/smppg}x; |
|
$title=&mt('Copy of').' '.$title; |
|
} else { |
|
return (&mt('Paste failed: An error occurred when copying the simple page.')); |
|
} |
} |
} |
} |
} |
$title = &LONCAPA::map::qtunescape($title); |
$title = &LONCAPA::map::qtunescape($title); |
my $ext='false'; |
my $ext='false'; |
if ($url=~m{^http(|s)://}) { $ext='true'; } |
if ($url=~m{^http(|s)://}) { $ext='true'; } |
$url = &LONCAPA::map::qtunescape($url); |
$url = &LONCAPA::map::qtunescape($url); |
|
|
|
# For uploaded files (excluding pages/sequences) path in copied file is changed |
|
# if paste is from Main to Supplemental (or vice versa), or if pasting between |
|
# courses. |
|
|
|
my $newidx; |
|
unless ($is_map) { |
# Now insert the URL at the bottom |
# Now insert the URL at the bottom |
my $newidx = &LONCAPA::map::getresidx($url); |
$newidx = &LONCAPA::map::getresidx($url); |
if ($env{'docs.markedcopy_supplemental'}) { |
if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(.+)$}) { |
if ($folder =~ /^supplemental/) { |
my $relpath = $1; |
$title = $env{'docs.markedcopy_supplemental'}; |
if ($relpath ne '') { |
|
my ($prefix,$subdir,$rem) = ($relpath =~ m{^(default|\d+)/(\d+)/(.+)$}); |
|
my ($newloc,$newdocsdir) = ($folder =~ /^(default|supplemental)_?(\d*)/); |
|
my $newprefix = $newloc; |
|
if ($newloc eq 'default') { |
|
$newprefix = 'docs'; |
|
} |
|
if ($newdocsdir eq '') { |
|
$newdocsdir = 'default'; |
|
} |
|
if (($prefixchg) || ($srcdom ne $coursedom) || ($srcnum ne $coursenum)) { |
|
my $newpath = "$newprefix/$newdocsdir/$newidx/$rem"; |
|
$url = |
|
&Apache::lonclonecourse::writefile($env{'request.course.id'},$newpath, |
|
&Apache::lonnet::getfile($oldurl)); |
|
if ($url eq '/adm/notfound.html') { |
|
return (&mt('Paste failed: an error occurred saving the file.')); |
|
} else { |
|
my ($newsubpath) = ($newpath =~ m{^(.*/)[^/]*$}); |
|
$newsubpath =~ s{/+$}{/}; |
|
$docmoves{$oldurl} = $newsubpath; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
# Apply any changes to maps, or copy dependencies for uploaded HTML pages |
|
my ($result,$save_err); |
|
$result = |
|
&apply_fixups($folder,$is_map,$prefixchg,$coursedom,$coursenum,$oldurl, |
|
$url,\%removefrommap,\%removeparam,\%rewrites,\%retitles, |
|
\%copies,\%dbcopies,\%zombies,\%params,\%docmoves, |
|
\%mapmoves,\%newsubdir,$errors,\%before,\%after); |
|
if ($result eq 'ok') { |
|
if ($is_map) { |
|
my ($errtext,$fatal) = &mapread($coursenum,$coursedom, |
|
$folder.'.'.$container); |
|
return $errtext if ($fatal); |
|
|
|
if ($#LONCAPA::map::order<1) { |
|
my $idx=&LONCAPA::map::getresidx(); |
|
if ($idx<=0) { $idx=1; } |
|
$LONCAPA::map::order[0]=$idx; |
|
$LONCAPA::map::resources[$idx]=''; |
|
} |
|
$newidx = &LONCAPA::map::getresidx($url); |
|
} |
|
if ($env{'docs.markedcopy_supplemental'}) { |
|
if ($folder !~ /^supplemental/) { |
|
(undef,undef,$title) = |
|
&Apache::loncommon::parse_supplemental_title($env{'docs.markedcopy_supplemental'}); |
|
} |
} else { |
} else { |
(undef,undef,$title) = |
if ($folder=~/^supplemental/) { |
&parse_supplemental_title($env{'docs.markedcopy_supplemental'}); |
$title=time.'___&&&___'.$env{'user.name'}.'___&&&___'. |
|
$env{'user.domain'}.'___&&&___'.$title; |
|
} |
} |
} |
} else { |
$LONCAPA::map::resources[$newidx]= $title.':'.$url.':'.$ext.':normal:res'; |
if ($folder=~/^supplemental/) { |
push(@LONCAPA::map::order, $newidx); |
$title=time.'___&&&___'.$env{'user.name'}.'___&&&___'. |
|
$env{'user.domain'}.'___&&&___'.$title; |
# Store the result |
|
my ($errtext,$fatal) = |
|
&storemap($coursenum,$coursedom,$folder.'.'.$container,1); |
|
if ($fatal) { |
|
$save_err = $errtext; |
} |
} |
} |
} |
|
|
|
if ($env{'form.docs.markedcopy_options'} eq 'move') { |
|
&Apache::lonnet::delenv('docs.markedcopy'); |
|
&Apache::lonnet::delenv('docs.markedcopy_nested'); |
|
&Apache::lonnet::delenv('docs.markedcopy_nestednames'); |
|
} |
|
return ($result,$save_err); |
|
} |
|
|
|
sub get_newmap_url { |
|
my ($url,$folder,$prefixchg,$coursedom,$coursenum,$srcdom,$srcnum, |
|
$titleref,$allmaps,$newurls) = @_; |
|
my $newurl; |
|
if ($url=~ m{^/uploaded/}) { |
|
$$titleref=&mt('Copy of').' '.$$titleref; |
|
} |
|
my $now = time; |
|
my $suffix=$$.int(rand(100)).$now; |
|
my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/); |
|
if ($oldid =~ m{^(/uploaded/$match_domain/$match_courseid/)(\D+)(\d+)$}) { |
|
my $path = $1; |
|
my $prefix = $2; |
|
my $ancestor = $3; |
|
if (length($ancestor) > 10) { |
|
$ancestor = substr($ancestor,-10,10); |
|
} |
|
my $newid; |
|
if ($prefixchg) { |
|
if ($folder =~ /^supplemental/) { |
|
$prefix =~ s/^default/supplemental/; |
|
} else { |
|
$prefix =~ s/^supplemental/default/; |
|
} |
|
} |
|
if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) { |
|
$newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext; |
|
} else { |
|
$newurl = "/uploaded/$coursedom/$coursenum/$prefix".$now.'.'.$ext; |
|
} |
|
my $counter = 0; |
|
my $is_unique = &uniqueness_check($newurl); |
|
if ($folder =~ /^default/) { |
|
if ($allmaps->{$newurl}) { |
|
$is_unique = 0; |
|
} |
|
} |
|
while ((!$is_unique || $allmaps->{$newurl} || $newurls->{$newurl}) && ($counter < 100)) { |
|
$counter ++; |
|
$suffix ++; |
|
if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) { |
|
$newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext; |
|
} else { |
|
$newurl = "/uploaded/$coursedom/$coursenum/$prefix".$ancestor.$suffix.'.'.$ext; |
|
} |
|
$is_unique = &uniqueness_check($newurl); |
|
} |
|
if ($is_unique) { |
|
$newurls->{$newurl} = 1; |
|
} else { |
|
if ($url=~/\.page$/) { |
|
return (undef,&mt('Paste failed: an error occurred creating a unique URL for the composite page')); |
|
} else { |
|
return (undef,&mt('Paste failed: an error occurred creating a unique URL for the folder')); |
|
} |
|
} |
|
} |
|
return ($newurl); |
|
} |
|
|
$LONCAPA::map::resources[$newidx]= $title.':'.$url.':'.$ext.':normal:res'; |
sub dbcopy { |
push(@LONCAPA::map::order, $newidx); |
my ($url,$coursedom,$coursenum) = @_; |
return 'ok'; |
if ($url=~ m{/smppg$}) { |
# Store the result |
my $db_name = &Apache::lonsimplepage::get_db_name($url); |
|
if ($db_name =~ /^smppage_/) { |
|
#simple pages, need to copy the db contents to a new one. |
|
my %contents=&Apache::lonnet::dump($db_name,$coursedom,$coursenum); |
|
my $now = time(); |
|
$db_name =~ s{_\d*$ }{_$now}x; |
|
my $result=&Apache::lonnet::put($db_name,\%contents, |
|
$coursedom,$coursenum); |
|
$url =~ s{/(\d*)/smppg$ }{/$now/smppg}x; |
|
} |
|
} |
|
return $url; |
} |
} |
|
|
sub uniqueness_check { |
sub uniqueness_check { |
Line 739 sub uniqueness_check {
|
Line 1219 sub uniqueness_check {
|
return $unique; |
return $unique; |
} |
} |
|
|
|
sub contained_map_check { |
|
my ($url,$folder,$removefrommap,$removeparam,$addedmaps,$hierarchy,$titles, |
|
$allmaps) = @_; |
|
my $content = &Apache::lonnet::getfile($url); |
|
unless ($content eq '-1') { |
|
my $parser = HTML::TokeParser->new(\$content); |
|
$parser->attr_encoded(1); |
|
while (my $token = $parser->get_token) { |
|
next if ($token->[0] ne 'S'); |
|
if ($token->[1] eq 'resource') { |
|
next if ($token->[2]->{'type'} eq 'zombie'); |
|
my $ressrc = $token->[2]->{'src'}; |
|
if ($folder =~ /^supplemental/) { |
|
unless (&supp_pasteable($ressrc)) { |
|
$removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc; |
|
next; |
|
} |
|
} |
|
if ($ressrc =~ m{^/(res|uploaded)/.+\.(sequence|page)$}) { |
|
if ($1 eq 'uploaded') { |
|
$hierarchy->{$url}{$token->[2]->{'id'}} = $ressrc; |
|
$titles->{$url}{$token->[2]->{'id'}} = $token->[2]->{'title'}; |
|
} else { |
|
if ($allmaps->{$ressrc}) { |
|
$removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc; |
|
} elsif (ref($addedmaps->{$ressrc}) eq 'ARRAY') { |
|
$removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc; |
|
} else { |
|
$addedmaps->{$ressrc} = [$url]; |
|
} |
|
} |
|
&contained_map_check($ressrc,$folder,$removefrommap,$removeparam, |
|
$addedmaps,$hierarchy,$titles,$allmaps); |
|
} |
|
} elsif ($token->[1] eq 'param') { |
|
if ($folder =~ /^supplemental/) { |
|
if (ref($removeparam->{$url}{$token->[2]->{'to'}}) eq 'ARRAY') { |
|
push(@{$removeparam->{$url}{$token->[2]->{'to'}}},$token->[2]->{'name'}); |
|
} else { |
|
$removeparam->{$url}{$token->[2]->{'to'}} = [$token->[2]->{'name'}]; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
|
sub reinit_role { |
|
my ($cdom,$cnum,$chome) = @_; |
|
my ($furl,$ferr) = &Apache::lonuserstate::readmap("$cdom/$cnum"); |
|
unless ($ferr) { |
|
&Apache::loncommon::update_content_constraints($cdom,$cnum,$chome,$cdom.'_'.$cnum); |
|
} |
|
return; |
|
} |
|
|
|
sub url_paste_fixups { |
|
my ($oldurl,$folder,$prefixchg,$cdom,$cnum,$allmaps,$rewrites,$retitles,$copies, |
|
$dbcopies,$zombies,$params,$mapmoves,$mapchanges,$tomove,$newsubdir,$newurls) = @_; |
|
my $checktitle; |
|
if (($prefixchg) && |
|
($oldurl =~ m{^/uploaded/$match_domain/$match_courseid/supplemental})) { |
|
$checktitle = 1; |
|
} |
|
my $skip; |
|
if ($oldurl =~ m{^\Q/uploaded/$cdom/$cnum/\E(default|supplemental)(_?\d*)\.(?:page|sequence)$}) { |
|
my $mapid = $1.$2; |
|
if ($tomove->{$mapid}) { |
|
$skip = 1; |
|
} |
|
} |
|
my $file = &Apache::lonnet::getfile($oldurl); |
|
return if ($file eq '-1'); |
|
my $parser = HTML::TokeParser->new(\$file); |
|
$parser->attr_encoded(1); |
|
my $changed = 0; |
|
while (my $token = $parser->get_token) { |
|
next if ($token->[0] ne 'S'); |
|
if ($token->[1] eq 'resource') { |
|
my $ressrc = $token->[2]->{'src'}; |
|
next if ($ressrc eq ''); |
|
my $id = $token->[2]->{'id'}; |
|
my $title = $token->[2]->{'title'}; |
|
if ($checktitle) { |
|
if ($title =~ m{\d+\Q___&&&___\E$match_username\Q___&&&___\E$match_domain\Q___&&&___\E(.+)$}) { |
|
$retitles->{$oldurl}{$ressrc} = $id; |
|
} |
|
} |
|
next if ($token->[2]->{'type'} eq 'external'); |
|
if ($token->[2]->{'type'} eq 'zombie') { |
|
next if ($skip); |
|
$zombies->{$oldurl}{$ressrc} = $id; |
|
$changed = 1; |
|
} elsif ($ressrc =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) { |
|
my $srcdom = $1; |
|
my $srcnum = $2; |
|
my $rem = $3; |
|
my $newurl; |
|
my $mapname; |
|
if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) { |
|
my $prefix = $1; |
|
$mapname = $prefix.$2; |
|
if ($tomove->{$mapname}) { |
|
&url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,$cnum,$allmaps, |
|
$rewrites,$retitles,$copies,$dbcopies,$zombies, |
|
$params,$mapmoves,$mapchanges,$tomove,$newsubdir, |
|
$newurls); |
|
next; |
|
} else { |
|
($newurl,my $error) = |
|
&get_newmap_url($ressrc,$folder,$prefixchg,$cdom,$cnum, |
|
$srcdom,$srcnum,\$title,$allmaps,$newurls); |
|
if ($newurl =~ /(?:default|supplemental)_(\d+)\.(?:sequence|page)$/) { |
|
$newsubdir->{$ressrc} = $1; |
|
} |
|
if ($error) { |
|
next; |
|
} |
|
} |
|
} |
|
if (($srcdom ne $cdom) || ($srcnum ne $cnum) || ($prefixchg) || |
|
($mapchanges->{$oldurl}) || (($newurl ne '') && ($newurl ne $oldurl))) { |
|
|
|
if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) { |
|
$rewrites->{$oldurl}{$ressrc} = $id; |
|
$mapchanges->{$ressrc} = 1; |
|
unless (&url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,$cnum,$allmaps, |
|
$rewrites,$retitles,$copies,$dbcopies,$zombies, |
|
$params,$mapmoves,$mapchanges,$tomove,$newsubdir, |
|
$newurls)) { |
|
$mapmoves->{$ressrc} = 1; |
|
} |
|
$changed = 1; |
|
} else { |
|
$rewrites->{$oldurl}{$ressrc} = $id; |
|
$copies->{$oldurl}{$ressrc} = $id; |
|
$changed = 1; |
|
} |
|
} |
|
} elsif ($ressrc =~ m{^/adm/($match_domain)/($match_courseid)/(.+)$}) { |
|
next if ($skip); |
|
my $srcdom = $1; |
|
my $srcnum = $2; |
|
if (($srcdom ne $cdom) || ($srcnum ne $cnum)) { |
|
$rewrites->{$oldurl}{$ressrc} = $id; |
|
$dbcopies->{$oldurl}{$ressrc} = $id; |
|
$changed = 1; |
|
} |
|
} elsif ($ressrc =~ m{^/public/($match_domain)/($match_courseid)/(.+)$}) { |
|
next if ($skip); |
|
my $srcdom = $1; |
|
my $srcnum = $2; |
|
if (($srcdom ne $cdom) || ($srcnum ne $cnum)) { |
|
$rewrites->{$oldurl}{$ressrc} = $id; |
|
$dbcopies->{$oldurl}{$ressrc} = $id; |
|
$changed = 1; |
|
} |
|
} |
|
} elsif ($token->[1] eq 'param') { |
|
next if ($skip); |
|
my $to = $token->[2]->{'to'}; |
|
if ($to ne '') { |
|
if (ref($params->{$oldurl}{$to}) eq 'ARRAY') { |
|
push(@{$params->{$oldurl}{$to}},$token->[2]->{'name'}); |
|
} else { |
|
@{$params->{$oldurl}{$to}} = ($token->[2]->{'name'}); |
|
} |
|
} |
|
} |
|
} |
|
return $changed; |
|
} |
|
|
|
sub apply_fixups { |
|
my ($folder,$is_map,$prefixchg,$cdom,$cnum,$oldurl,$url,$removefrommap, |
|
$removeparam,$rewrites,$retitles,$copies,$dbcopies,$zombies,$params, |
|
$docmoves,$mapmoves,$newsubdir,$errors,$before,$after) = @_; |
|
foreach my $key (keys(%{$copies}),keys(%{$docmoves})) { |
|
my @allcopies; |
|
if (ref($copies->{$key}) eq 'HASH') { |
|
my %added; |
|
foreach my $innerkey (keys(%{$copies->{$key}})) { |
|
if (($innerkey ne '') && (!$added{$innerkey})) { |
|
push(@allcopies,$innerkey); |
|
$added{$innerkey} = 1; |
|
} |
|
} |
|
undef(%added); |
|
} |
|
if ($key eq $oldurl) { |
|
if ((exists($docmoves->{$key}))) { |
|
unless (grep(/^\Q$oldurl\E/,@allcopies)) { |
|
push(@allcopies,$oldurl); |
|
} |
|
} |
|
} |
|
if (@allcopies > 0) { |
|
foreach my $item (@allcopies) { |
|
my ($relpath,$oldsubdir,$fname) = |
|
($item =~ m{^(/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(default|\d+)/.*/)([^/]+)$}); |
|
if ($fname ne '') { |
|
my $content = &Apache::lonnet::getfile($item); |
|
unless ($content eq '-1') { |
|
my $storefn; |
|
if (($key eq $oldurl) && (ref($docmoves) eq 'HASH') && (exists($docmoves->{$key}))) { |
|
$storefn = $docmoves->{$key}; |
|
} else { |
|
$storefn = $relpath; |
|
$storefn =~s{^/uploaded/$match_domain/$match_courseid/}{}; |
|
if ($prefixchg) { |
|
$storefn =~ s/^\Q$before->{'doc'}\E/$after->{'doc'}/; |
|
} |
|
if ($newsubdir->{$key}) { |
|
$storefn =~ s#^(docs|supplemental)/\Q$oldsubdir\E/#$1/$newsubdir->{$key}#; |
|
} |
|
} |
|
©_dependencies($item,$storefn,$relpath,$errors,\$content); |
|
my $copyurl = |
|
&Apache::lonclonecourse::writefile($env{'request.course.id'}, |
|
$storefn.$fname,$content); |
|
if ($copyurl eq '/adm/notfound.html') { |
|
if ((ref($docmoves) eq 'HASH') && (exists($docmoves->{$oldurl}))) { |
|
return &mt('Paste failed: an error occurred copying the file.'); |
|
} elsif (ref($errors) eq 'HASH') { |
|
$errors->{$item} = 1; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
foreach my $key (keys(%{$mapmoves})) { |
|
my $storefn=$key; |
|
$storefn=~s{^/uploaded/$match_domain/$match_courseid/}{}; |
|
if ($prefixchg) { |
|
$storefn =~ s/^\Q$before->{'map'}\E/$after->{'map'}/; |
|
} |
|
if ($newsubdir->{$key}) { |
|
$storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir->{$key}/; |
|
} |
|
my $mapcontent = &Apache::lonnet::getfile($key); |
|
if ($mapcontent eq '-1') { |
|
if (ref($errors) eq 'HASH') { |
|
$errors->{$key} = 1; |
|
} |
|
} else { |
|
my $newmap = |
|
&Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn, |
|
$mapcontent); |
|
if ($newmap eq '/adm/notfound.html') { |
|
if (ref($errors) eq 'HASH') { |
|
$errors->{$key} = 1; |
|
} |
|
} |
|
} |
|
} |
|
my %updates; |
|
if ($is_map) { |
|
foreach my $key (keys(%{$rewrites})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%{$zombies})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%{$removefrommap})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%{$removeparam})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%{$dbcopies})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%{$retitles})) { |
|
$updates{$key} = 1; |
|
} |
|
foreach my $key (keys(%updates)) { |
|
my (%torewrite,%toretitle,%toremove,%remparam,%currparam,%zombie,%newdb); |
|
if (ref($rewrites->{$key}) eq 'HASH') { |
|
%torewrite = %{$rewrites->{$key}}; |
|
} |
|
if (ref($retitles->{$key}) eq 'HASH') { |
|
%toretitle = %{$retitles->{$key}}; |
|
} |
|
if (ref($removefrommap->{$key}) eq 'HASH') { |
|
%toremove = %{$removefrommap->{$key}}; |
|
} |
|
if (ref($removeparam->{$key}) eq 'HASH') { |
|
%remparam = %{$removeparam->{$key}}; |
|
} |
|
if (ref($zombies->{$key}) eq 'HASH') { |
|
%zombie = %{$zombies->{$key}}; |
|
} |
|
if (ref($dbcopies->{$key}) eq 'HASH') { |
|
foreach my $item (keys(%{$dbcopies->{$key}})) { |
|
$newdb{$item} = &dbcopy($item); |
|
} |
|
} |
|
if (ref($params->{$key}) eq 'HASH') { |
|
%currparam = %{$params->{$key}}; |
|
} |
|
my ($errtext,$fatal) = &LONCAPA::map::mapread($key); |
|
if ($fatal) { |
|
return $errtext; |
|
} |
|
for (my $i=0; $i<@LONCAPA::map::zombies; $i++) { |
|
if (defined($LONCAPA::map::zombies[$i])) { |
|
my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::zombies[$i]); |
|
if ($zombie{$src} eq $i) { |
|
undef($LONCAPA::map::zombies[$i]); |
|
} |
|
} |
|
} |
|
for (my $i=0; $i<@LONCAPA::map::resources; $i++) { |
|
if (defined($LONCAPA::map::resources[$i])) { |
|
my $changed; |
|
my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::resources[$i]); |
|
if ($toremove{$src} eq $i) { |
|
splice(@LONCAPA::map::order,$i,1); |
|
if (ref($currparam{$i}) eq 'ARRAY') { |
|
foreach my $name (@{$currparam{$i}}) { |
|
&LONCAPA::map::delparameter($i,'parameter_'.$name); |
|
} |
|
} |
|
next; |
|
} |
|
my $origsrc = $src; |
|
if ((exists($toretitle{$src})) && ($toretitle{$src} eq $i)) { |
|
if ($title =~ m{^\d+\Q___&&&___\E$match_username\Q___&&&___\E$match_domain\Q___&&&___\E(.+)$}) { |
|
$changed = 1; |
|
} |
|
} |
|
if ((exists($torewrite{$src})) && ($torewrite{$src} eq $i)) { |
|
$src =~ s{^/(uploaded|adm|public)/$match_domain/$match_courseid/}{/$1/$cdom/$cnum/}; |
|
if ($origsrc =~ m{^/uploaded/}) { |
|
if ($prefixchg) { |
|
if ($src =~ /\.(page|sequence)$/) { |
|
$src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before->{'map'}\E#$1$after->{'map'}#; |
|
} else { |
|
$src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before->{'doc'}\E#$1$after->{'doc'}#; |
|
} |
|
} |
|
if ($newsubdir->{$origsrc}) { |
|
if ($src =~ /\.(page|sequence)$/) { |
|
$src =~ s#^(/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_)(\d+)#$1$newsubdir->{$origsrc}#; |
|
} else { |
|
$src =~ s#^(/uploaded/$match_domain/$match_courseid/\w+/)(\d+)#$1$newsubdir->{$origsrc}#; |
|
} |
|
} |
|
} |
|
$changed = 1; |
|
} elsif ($newdb{$src} ne '') { |
|
$src = $newdb{$src}; |
|
$changed = 1; |
|
} |
|
if ($changed) { |
|
$LONCAPA::map::resources[$i] = join(':',($title,$src,$ext,$type)); |
|
} |
|
} |
|
} |
|
foreach my $idx (keys(%remparam)) { |
|
if (ref($remparam{$idx}) eq 'ARRAY') { |
|
foreach my $name (@{$remparam{$idx}}) { |
|
&LONCAPA::map::delparameter($idx,'parameter_'.$name); |
|
} |
|
} |
|
} |
|
my $storefn; |
|
if ($key eq $oldurl) { |
|
$storefn = $url; |
|
$storefn=~s{^/uploaded/$match_domain/$match_courseid/}{}; |
|
} else { |
|
$storefn = $key; |
|
$storefn=~s{^/uploaded/$match_domain/$match_courseid/}{}; |
|
if ($prefixchg) { |
|
$storefn =~ s/^\Q$before->{'map'}\E/$after->{'map'}/; |
|
} |
|
if ($newsubdir->{$key}) { |
|
$storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir->{$key}/; |
|
} |
|
} |
|
my $report; |
|
if ($folder !~ /^supplemental/) { |
|
$report = 1; |
|
} |
|
my ($outtext,$errtext) = |
|
&LONCAPA::map::storemap("/uploaded/$cdom/$cnum/$storefn",1,$report); |
|
if ($errtext) { |
|
return &mt('Paste failed: an error occurred saving the folder or page.'); |
|
} |
|
} |
|
} |
|
return 'ok'; |
|
} |
|
|
|
sub copy_dependencies { |
|
my ($item,$storefn,$relpath,$errors,$contentref) = @_; |
|
my $content; |
|
if (ref($contentref)) { |
|
$content = $$contentref; |
|
} else { |
|
$content = &Apache::lonnet::getfile($item); |
|
} |
|
unless ($content eq '-1') { |
|
my $mm = new File::MMagic; |
|
my $mimetype = $mm->checktype_contents($content); |
|
if ($mimetype eq 'text/html') { |
|
my (%allfiles,%codebase,$state); |
|
my $res = &Apache::lonnet::extract_embedded_items(undef,\%allfiles,\%codebase,\$content); |
|
if ($res eq 'ok') { |
|
my ($numexisting,$numpathchanges,$existing); |
|
(undef,$numexisting,$numpathchanges,$existing) = |
|
&Apache::loncommon::ask_for_embedded_content( |
|
'/adm/coursedocs',$state,\%allfiles,\%codebase, |
|
{'error_on_invalid_names' => 1, |
|
'ignore_remote_references' => 1, |
|
'docs_url' => $item, |
|
'context' => 'paste'}); |
|
if ($numexisting > 0) { |
|
if (ref($existing) eq 'HASH') { |
|
foreach my $dep (keys(%{$existing})) { |
|
my $depfile = $dep; |
|
unless ($depfile =~ m{^\Q$relpath\E}) { |
|
$depfile = $relpath.$dep; |
|
} |
|
my $depcontent = &Apache::lonnet::getfile($depfile); |
|
unless ($depcontent eq '-1') { |
|
my $storedep = $dep; |
|
$storedep =~ s{^\Q$relpath\E}{}; |
|
my $dep_url = |
|
&Apache::lonclonecourse::writefile( |
|
$env{'request.course.id'}, |
|
$storefn.$storedep,$depcontent); |
|
if ($dep_url eq '/adm/notfound.html') { |
|
if (ref($errors) eq 'HASH') { |
|
$errors->{$depfile} = 1; |
|
} |
|
} else { |
|
©_dependencies($depfile,$storefn,$relpath,$errors,\$depcontent); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
my %parameter_type = ( 'randompick' => 'int_pos', |
my %parameter_type = ( 'randompick' => 'int_pos', |
'hiddenresource' => 'string_yesno', |
'hiddenresource' => 'string_yesno', |
'encrypturl' => 'string_yesno', |
'encrypturl' => 'string_yesno', |
Line 816 sub editor {
|
Line 1748 sub editor {
|
my $container= ($env{'form.pagepath'}) ? 'page' |
my $container= ($env{'form.pagepath'}) ? 'page' |
: 'sequence'; |
: 'sequence'; |
|
|
|
my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,$is_random_order) = |
|
&breadcrumbs($allowed,$crstype); |
|
$r->print($breadcrumbtrail); |
|
|
|
my $jumpto = "uploaded/$coursedom/$coursenum/$folder.$container"; |
|
|
|
unless ($allowed) { |
|
$randompick = -1; |
|
} |
|
|
my ($errtext,$fatal) = &mapread($coursenum,$coursedom, |
my ($errtext,$fatal) = &mapread($coursenum,$coursedom, |
$folder.'.'.$container); |
$folder.'.'.$container); |
return $errtext if ($fatal); |
return $errtext if ($fatal); |
Line 827 sub editor {
|
Line 1769 sub editor {
|
$LONCAPA::map::resources[$idx]=''; |
$LONCAPA::map::resources[$idx]=''; |
} |
} |
|
|
my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,$is_random_order) = |
|
&breadcrumbs($allowed,$crstype); |
|
$r->print($breadcrumbtrail); |
|
|
|
my $jumpto = "uploaded/$coursedom/$coursenum/$folder.$container"; |
|
|
|
unless ($allowed) { |
|
$randompick = -1; |
|
} |
|
|
|
# ------------------------------------------------------------ Process commands |
# ------------------------------------------------------------ Process commands |
|
|
# ---------------- if they are for this folder and user allowed to make changes |
# ---------------- if they are for this folder and user allowed to make changes |
Line 859 sub editor {
|
Line 1791 sub editor {
|
} |
} |
|
|
if ($env{'form.pastemarked'}) { |
if ($env{'form.pastemarked'}) { |
my $paste_res = |
my %paste_errors; |
&do_paste_from_buffer($coursenum,$coursedom,$folder); |
my ($paste_res,$save_error) = |
if ($paste_res eq 'ok') { |
&do_paste_from_buffer($coursenum,$coursedom,$folder,$container, |
($errtext,$fatal) = &storemap($coursenum,$coursedom,$folder.'.'.$container); |
\%paste_errors); |
return $errtext if ($fatal); |
if ($save_error ne '') { |
} elsif ($paste_res ne '') { |
return $save_error; |
|
} |
|
if ($paste_res ne 'ok') { |
$r->print('<p><span class="LC_error">'.$paste_res.'</span></p>'); |
$r->print('<p><span class="LC_error">'.$paste_res.'</span></p>'); |
} |
} |
|
if (keys(%paste_errors) > 0) { |
|
$r->print('<p span class="LC_warning">'."\n". |
|
&mt('The following files are either dependencies of a web page or references within a folder and/or composite page which could not be copied during the paste operation:')."\n". |
|
'<ul>'."\n"); |
|
foreach my $key (sort(keys(%paste_errors))) { |
|
$r->print('<li>'.$key.'</li>'."\n"); |
|
} |
|
$r->print('</ul></p>'."\n"); |
|
} |
} |
} |
|
|
$r->print($upload_output); |
$r->print($upload_output); |
|
|
if (&handle_edit_cmd()) { |
if (&handle_edit_cmd()) { |
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container); |
my $contentchg; |
|
if ($env{'form.cmd'} =~ /^(del|cut)_/) { |
|
$contentchg = 1; |
|
} |
|
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container,$contentchg); |
return $errtext if ($fatal); |
return $errtext if ($fatal); |
} |
} |
# Group import/search |
# Group import/search |
Line 899 sub editor {
|
Line 1846 sub editor {
|
$LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx; |
$LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx; |
} |
} |
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
$folder.'.'.$container); |
$folder.'.'.$container,1); |
return $errtext if ($fatal); |
return $errtext if ($fatal); |
} else { |
} else { |
$r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>'); |
$r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>'); |
Line 988 sub editor {
|
Line 1935 sub editor {
|
$tid = 2; |
$tid = 2; |
} |
} |
if ($allowed) { |
if ($allowed) { |
$r->print(&generate_edit_table($tid,$orderhash,$to_show,$iconpath,$jumpto)); |
my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container"; |
&print_paste_buffer($r,$container); |
$r->print(&generate_edit_table($tid,$orderhash,$to_show,$iconpath,$jumpto, |
|
$readfile)); |
|
&print_paste_buffer($r,$container,$folder,$coursedom,$coursenum); |
} else { |
} else { |
if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) { |
if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) { |
#Function Box for Supplemental Content for users with mdc priv. |
#Function Box for Supplemental Content for users with mdc priv. |
Line 1077 sub process_file_upload {
|
Line 2026 sub process_file_upload {
|
$comment.':'.$url.':'.$ext.':normal:res'; |
$comment.':'.$url.':'.$ext.':normal:res'; |
$LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx; |
$LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx; |
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
$folder.'.'.$container); |
$folder.'.'.$container,1); |
if ($fatal) { |
if ($fatal) { |
$$upload_output = '<div class="LC_error" id="uploadfileresult">'.$errtext.'</div>'; |
$$upload_output = '<div class="LC_error" id="uploadfileresult">'.$errtext.'</div>'; |
return; |
return; |
Line 1120 sub process_file_upload {
|
Line 2069 sub process_file_upload {
|
position => $position, |
position => $position, |
phase => $nextphase, |
phase => $nextphase, |
comment => $comment, |
comment => $comment, |
); |
); |
|
my ($destination,$dir_root) = &embedded_destination($coursenum,$coursedom); |
|
my @current = &get_dir_list($url,$coursenum,$coursedom,$newidx); |
$$upload_output = $showupload. |
$$upload_output = $showupload. |
&Apache::loncommon::decompress_form($mimetype, |
&Apache::loncommon::decompress_form($mimetype, |
$archiveurl,'/adm/coursedocs',$noextract, |
$archiveurl,'/adm/coursedocs',$noextract, |
\%archiveitems); |
\%archiveitems,\@current); |
} |
} |
} |
} |
} |
} |
return $nextphase; |
return $nextphase; |
} |
} |
|
|
sub is_supplemental_title { |
sub get_dir_list { |
my ($title) = @_; |
my ($url,$coursenum,$coursedom,$newidx) = @_; |
return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/); |
my ($destination,$dir_root) = &embedded_destination(); |
|
my ($dirlistref,$listerror) = |
|
&Apache::lonnet::dirlist("$dir_root/$destination/$newidx",$coursedom,$coursenum,1); |
|
my @dir_lines; |
|
my $dirptr=16384; |
|
if (ref($dirlistref) eq 'ARRAY') { |
|
foreach my $dir_line (sort |
|
{ |
|
my ($afile)=split('&',$a,2); |
|
my ($bfile)=split('&',$b,2); |
|
return (lc($afile) cmp lc($bfile)); |
|
} (@{$dirlistref})) { |
|
my ($filename,$dom,undef,$testdir,undef,undef,undef,undef,$size,undef,$mtime,undef,undef,undef,$obs,undef)=split(/\&/,$dir_line,16); |
|
$filename =~ s/\s+$//; |
|
next if ($filename =~ /^\.\.?$/); |
|
my $isdir = 0; |
|
if ($dirptr&$testdir) { |
|
$isdir = 1; |
|
} |
|
push(@dir_lines, [$filename,$dom,$isdir,$size,$mtime,$obs]); |
|
} |
|
} |
|
return @dir_lines; |
} |
} |
|
|
sub parse_supplemental_title { |
sub is_supplemental_title { |
my ($title) = @_; |
my ($title) = @_; |
|
return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/); |
my ($foldertitle,$renametitle); |
|
if ($title =~ /&&&/) { |
|
$title = &HTML::Entites::decode($title); |
|
} |
|
if ($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/) { |
|
$renametitle=$4; |
|
my ($time,$uname,$udom) = ($1,$2,$3); |
|
$foldertitle=&Apache::lontexconvert::msgtexconverted($4); |
|
my $name = &Apache::loncommon::plainname($uname,$udom); |
|
$name = &HTML::Entities::encode($name,'"<>&\''); |
|
$renametitle = &HTML::Entities::encode($renametitle,'"<>&\''); |
|
$title='<i>'.&Apache::lonlocal::locallocaltime($time).'</i> '. |
|
$name.': <br />'.$foldertitle; |
|
} |
|
if (wantarray) { |
|
return ($title,$foldertitle,$renametitle); |
|
} |
|
return $title; |
|
} |
} |
|
|
# --------------------------------------------------------------- An entry line |
# --------------------------------------------------------------- An entry line |
Line 1165 sub entryline {
|
Line 2120 sub entryline {
|
my ($index,$title,$url,$folder,$allowed,$residx,$coursenum,$crstype)=@_; |
my ($index,$title,$url,$folder,$allowed,$residx,$coursenum,$crstype)=@_; |
my ($foldertitle,$pagetitle,$renametitle); |
my ($foldertitle,$pagetitle,$renametitle); |
if (&is_supplemental_title($title)) { |
if (&is_supplemental_title($title)) { |
($title,$foldertitle,$renametitle) = &parse_supplemental_title($title); |
($title,$foldertitle,$renametitle) = &Apache::loncommon::parse_supplemental_title($title); |
$pagetitle = $foldertitle; |
$pagetitle = $foldertitle; |
} else { |
} else { |
$title=&HTML::Entities::encode($title,'"<>&\''); |
$title=&HTML::Entities::encode($title,'"<>&\''); |
Line 1229 sub entryline {
|
Line 2184 sub entryline {
|
'cp' => 'Copy'); |
'cp' => 'Copy'); |
my $nocopy=0; |
my $nocopy=0; |
my $nocut=0; |
my $nocut=0; |
if ($url=~/\.(page|sequence)$/) { |
if ($url=~ m{^/res/.+\.(page|sequence)$}) { |
if ($url =~ m{/res/}) { |
# no copy for published maps |
# no copy for published maps |
$nocopy=1; |
$nocopy = 1; |
|
} else { |
|
foreach my $item (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$url),1)) { |
|
my ($title,$url,$ext,$type)=split(/\:/,$item); |
|
if (($url=~/\.(page|sequence)/) && ($type ne 'zombie')) { |
|
$nocopy=1; |
|
last; |
|
} |
|
} |
|
} |
|
} |
} |
if ($url=~/^\/res\/lib\/templates\//) { |
if ($url=~/^\/res\/lib\/templates\//) { |
$nocopy=1; |
$nocopy=1; |
Line 1264 sub entryline {
|
Line 2209 sub entryline {
|
|
|
if (!$nocopy) { |
if (!$nocopy) { |
$copylink=(<<ENDCOPY); |
$copylink=(<<ENDCOPY); |
<a href='javascript:markcopy("$esc_path","$index","$renametitle","$container","$symb","$folder");' class="LC_docs_copy">$lt{'cp'}</a> |
<a href="javascript:markcopy('$esc_path','$index','$renametitle','$container','$symb','$folder');" class="LC_docs_copy">$lt{'cp'}</a> |
ENDCOPY |
ENDCOPY |
} |
} |
if (!$nocut) { |
if (!$nocut) { |
$cutlink=(<<ENDCUT); |
$cutlink=(<<ENDCUT); |
<a href='javascript:cutres("$esc_path","$index","$renametitle","$container","$symb","$folder",$skip_confirm);' class="LC_docs_cut">$lt{'ct'}</a> |
<a href="javascript:cutres('$esc_path','$index','$renametitle','$container','$symb','$folder',$skip_confirm);" class="LC_docs_cut">$lt{'ct'}</a> |
ENDCUT |
ENDCUT |
} |
} |
$form_start = ' |
$form_start = ' |
Line 1453 $form_common.'
|
Line 2398 $form_common.'
|
if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) { |
if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) { |
$line.='<a href="'.$url.'"><img src="'.$icon.'" alt="" class="LC_icon" /></a>'; |
$line.='<a href="'.$url.'"><img src="'.$icon.'" alt="" class="LC_icon" /></a>'; |
} elsif ($url) { |
} elsif ($url) { |
$line.=&Apache::loncommon::modal_link($url.(($url=~/\?/)?'&':'?').'inhibitmenu=yes', |
$line.=&Apache::loncommon::modal_link($url.(($url=~/\?/)?'&':'?').'inhibitmenu=yes', |
'<img src="'.$icon.'" alt="" class="LC_icon" />',600,500); |
'<img src="'.$icon.'" alt="" class="LC_icon" />',600,500); |
} else { |
} else { |
$line.='<img src="'.$icon.'" alt="" class="LC_icon" />'; |
$line.='<img src="'.$icon.'" alt="" class="LC_icon" />'; |
Line 1462 $form_common.'
|
Line 2407 $form_common.'
|
if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) { |
if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) { |
$line.='<a href="'.$url.'">'.$title.'</a>'; |
$line.='<a href="'.$url.'">'.$title.'</a>'; |
} elsif ($url) { |
} elsif ($url) { |
$line.=&Apache::loncommon::modal_link($url.(($url=~/\?/)?'&':'?').'inhibitmenu=yes', |
$line.=&Apache::loncommon::modal_link($url.(($url=~/\?/)?'&':'?').'inhibitmenu=yes', |
$title,600,500); |
$title,600,500); |
} else { |
} else { |
$line.=$title.' <span class="LC_docs_reinit_warn">'.$reinit.'</span>'; |
$line.=$title.' <span class="LC_docs_reinit_warn">'.$reinit.'</span>'; |
Line 1610 sub checkonthis {
|
Line 2555 sub checkonthis {
|
|
|
=item list_symbs() |
=item list_symbs() |
|
|
List Symbs |
List Content Identifiers |
|
|
=cut |
=cut |
|
|
Line 1618 sub list_symbs {
|
Line 2563 sub list_symbs {
|
my ($r) = @_; |
my ($r) = @_; |
|
|
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
$r->print(&Apache::loncommon::start_page('Symb List')); |
$r->print(&Apache::loncommon::start_page('List of Content Identifiers')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Symb List')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Identifiers')); |
&startContentScreen($r,'tools'); |
$r->print(&startContentScreen('tools')); |
my $navmap = Apache::lonnavmaps::navmap->new(); |
my $navmap = Apache::lonnavmaps::navmap->new(); |
if (!defined($navmap)) { |
if (!defined($navmap)) { |
$r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'. |
$r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'. |
Line 1629 sub list_symbs {
|
Line 2574 sub list_symbs {
|
'</div>'); |
'</div>'); |
&Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'}); |
&Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'}); |
} else { |
} else { |
$r->print("<pre>\n"); |
$r->print('<h4 class="LC_info">'.&mt("$crstype Content Identifiers").'</h4>'. |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Title').'</th><th>'.&mt('Identifier').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row()."\n"); |
|
my $count; |
foreach my $res ($navmap->retrieveResources()) { |
foreach my $res ($navmap->retrieveResources()) { |
$r->print($res->compTitle()."\t".$res->symb()."\n"); |
$r->print(&Apache::loncommon::start_data_table_row(). |
|
'<td>'.$res->compTitle().'</td>'. |
|
'<td>'.$res->symb().'</td>'. |
|
&Apache::loncommon::start_data_table_row()); |
|
$count ++; |
|
} |
|
if (!$count) { |
|
$r->print(&Apache::loncommon::start_data_table_row(). |
|
'<td colspan="2">'.&mt("$crstype is empty").'</td>'. |
|
&Apache::loncommon::end_data_table_row()); |
} |
} |
$r->print("\n</pre>\n"); |
$r->print(&Apache::loncommon::end_data_table()); |
} |
} |
} |
} |
|
|
Line 1641 sub list_symbs {
|
Line 2600 sub list_symbs {
|
sub verifycontent { |
sub verifycontent { |
my ($r) = @_; |
my ($r) = @_; |
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
$r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Documents')); |
$r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Documents')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Documents')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Documents')); |
&startContentScreen($r,'tools'); |
$r->print(&startContentScreen('tools')); |
|
$r->print('<h4 class="LC_info">'.&mt($crstype.' content verification').'</h4>'); |
$hashtied=0; |
$hashtied=0; |
undef %alreadyseen; |
undef %alreadyseen; |
%alreadyseen=(); |
%alreadyseen=(); |
&tiehash(); |
&tiehash(); |
|
|
foreach my $key (keys(%hash)) { |
foreach my $key (keys(%hash)) { |
if ($hash{$key}=~/\.(page|sequence)$/) { |
if ($hash{$key}=~/\.(page|sequence)$/) { |
if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) { |
if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) { |
Line 1677 sub checkversions {
|
Line 2638 sub checkversions {
|
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
$r->print(&Apache::loncommon::start_page("Check $crstype Document Versions")); |
$r->print(&Apache::loncommon::start_page("Check $crstype Document Versions")); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $crstype Document Versions")); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $crstype Document Versions")); |
&startContentScreen($r,'tools'); |
$r->print(&startContentScreen('tools')); |
|
|
my $header=''; |
my $header=''; |
my $startsel=''; |
my $startsel=''; |
Line 1791 sub checkversions {
|
Line 2752 sub checkversions {
|
'lw' => 'Version changes since last Week', |
'lw' => 'Version changes since last Week', |
'sy' => 'Version changes since Yesterday', |
'sy' => 'Version changes since Yesterday', |
'al' => 'All Resources (possibly large output)', |
'al' => 'All Resources (possibly large output)', |
|
'cd' => 'Change display', |
'sd' => 'Display', |
'sd' => 'Display', |
'fi' => 'File', |
'fi' => 'File', |
'md' => 'Modification Date', |
'md' => 'Modification Date', |
Line 1801 sub checkversions {
|
Line 2763 sub checkversions {
|
'sm' => 'Keep all Resources up-to-date with most recent Versions (default)', |
'sm' => 'Keep all Resources up-to-date with most recent Versions (default)', |
'sc' => 'Set all Resource Versions to current Version (Fix Versions)', |
'sc' => 'Set all Resource Versions to current Version (Fix Versions)', |
'di' => 'Differences', |
'di' => 'Differences', |
'save' => 'Save', |
'save' => 'Save changes', |
|
'vers' => 'Version choice(s) for specific resources', |
'act' => 'Actions'); |
'act' => 'Actions'); |
$r->print(<<ENDHEADERS); |
$r->print(<<ENDHEADERS); |
|
<h4 class="LC_info">$header</h4> |
<form action="/adm/coursedocs" method="post"> |
<form action="/adm/coursedocs" method="post"> |
<input type="hidden" name="versions" value="1" /> |
<input type="hidden" name="versions" value="1" /> |
<div class="LC_columnSection"> |
<div class="LC_left_float"> |
<fieldset> |
<fieldset> |
<legend>$lt{'act'}</legend> |
<legend>$lt{'cd'}</legend> |
$lt{'sm'}: <input type="submit" name="setmostrecent" value="Go" /><br /> |
|
$lt{'sc'}: <input type="submit" name="setcurrent" value="Go" /> |
|
</fieldset> |
|
</div> |
|
<select name="timerange"> |
<select name="timerange"> |
<option value='all' $allsel>$lt{'al'}</option> |
<option value='all' $allsel>$lt{'al'}</option> |
<option value="-1" $startsel>$lt{'st'}</option> |
<option value="-1" $startsel>$lt{'st'}</option> |
Line 1821 $lt{'sc'}: <input type="submit" name="se
|
Line 2781 $lt{'sc'}: <input type="submit" name="se
|
<option value="86400" $daysel>$lt{'sy'}</option> |
<option value="86400" $daysel>$lt{'sy'}</option> |
</select> |
</select> |
<input type="submit" name="display" value="$lt{'sd'}" /> |
<input type="submit" name="display" value="$lt{'sd'}" /> |
<h2>$header</h2> |
</fieldset> |
|
</div> |
|
<div class="LC_left_float"> |
|
<fieldset> |
|
<legend>$lt{'act'}</legend> |
|
$lt{'sm'}: <input type="submit" name="setmostrecent" value="Go" /><br /> |
|
$lt{'sc'}: <input type="submit" name="setcurrent" value="Go" /> |
|
</fieldset> |
|
</div> |
|
<br clear="all" /> |
|
<hr /> |
|
<h4>$lt{'vers'}</h4> |
<input type="submit" name="setversions" value="$lt{'save'}" /> |
<input type="submit" name="setversions" value="$lt{'save'}" /> |
<table border="0"> |
<table border="0"> |
ENDHEADERS |
ENDHEADERS |
Line 1837 ENDHEADERS
|
Line 2808 ENDHEADERS
|
'<th colspan="'.$num_ver_col.'">'.&mt('History').'</th>'. |
'<th colspan="'.$num_ver_col.'">'.&mt('History').'</th>'. |
'</b>'); |
'</b>'); |
foreach my $key (sort(keys(%changes))) { |
foreach my $key (sort(keys(%changes))) { |
if ($changes{$key}>$starttime) { |
#excludes not versionable problems from resource version history: |
|
if ($changes{$key}>$starttime && $key !~ /^\/res\/lib\/templates/) { |
my ($root,$extension)=($key=~/^(.*)\.(\w+)$/); |
my ($root,$extension)=($key=~/^(.*)\.(\w+)$/); |
my $currentversion=&Apache::lonnet::getversion($key); |
my $currentversion=&Apache::lonnet::getversion($key); |
if ($currentversion<0) { |
if ($currentversion<0) { |
Line 1988 $help{'Caching'}.'</p></form>'."\n\n");
|
Line 2960 $help{'Caching'}.'</p></form>'."\n\n");
|
sub init_breadcrumbs { |
sub init_breadcrumbs { |
my ($form,$text)=@_; |
my ($form,$text)=@_; |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs", |
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?tools=1", |
text=>&Apache::loncommon::course_type().' Editor', |
text=>&Apache::loncommon::course_type().' Editor', |
faq=>273, |
faq=>273, |
bug=>'Instructor Interface', |
bug=>'Instructor Interface', |
Line 2023 sub create_form_ul {
|
Line 2995 sub create_form_ul {
|
# |
# |
|
|
sub startContentScreen { |
sub startContentScreen { |
my ($r,$mode)=@_; |
my ($mode) = @_; |
$r->print('<ul class="LC_TabContentBigger" id="mainnav">'); |
my $output = '<ul class="LC_TabContentBigger" id="mainnav">'; |
if (($mode eq 'navmaps') || ($mode eq 'supplemental')) { |
if (($mode eq 'navmaps') || ($mode eq 'supplemental')) { |
$r->print('<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b> '.&mt('Content Overview').' </b></a></li>'."\n"); |
$output .= '<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b> '.&mt('Content Overview').' </b></a></li>'."\n"; |
$r->print('<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b> '.&mt('Content Search').' </b></a></li>'."\n"); |
$output .= '<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b> '.&mt('Content Search').' </b></a></li>'."\n"; |
$r->print('<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b> '.&mt('Content Index').' </b></a></li>'."\n"); |
$output .= '<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b> '.&mt('Content Index').' </b></a></li>'."\n"; |
$r->print('<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>'); |
$output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>'; |
} else { |
} else { |
$r->print('<li '.(($mode eq 'docs')?' class="active"':''). |
$output .= '<li '.(($mode eq 'docs')?' class="active"':'').' id="tabbededitor"><a href="/adm/coursedocs?forcestandard=1"><b> '.&mt('Content Editor').' </b></a></li>'."\n"; |
' id="tabbededitor"><a href="/adm/coursedocs?forcestandard=1"><b> '.&mt('Content Editor').' </b></a></li>'); |
$output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/coursedocs?forcesupplement=1"><b>'.&mt('Supplemental Content Editor').'</b></a></li>'."\n"; |
$r->print('<li '.(($mode eq 'suppdocs')?' class="active"':''). |
$output .= '<li '.(($mode eq 'tools')?' class="active"':'').'><a href="/adm/coursedocs?tools=1"><b> '.&mt('Content Utilities').' </b></a></li>'."\n"; |
'><a href="/adm/coursedocs?forcesupplement=1"><b>'.&mt('Supplemental Content Editor').'</b></a></li>'); |
'><a href="/adm/coursedocs?tools=1"><b> '.&mt('Content Utilities').' </b></a></li>'; |
} |
} |
$r->print("\n".'</ul>'."\n"); |
$output .= "\n".'</ul>'."\n"; |
$r->print('<div class="LC_DocsBox" style="clear:both;margin:0;" id="contenteditor">'. |
$output .= '<div class="LC_DocsBox" style="clear:both;margin:0;" id="contenteditor">'. |
'<div id="maincoursedoc" style="margin:0 0;padding:0 0;">'. |
'<div id="maincoursedoc" style="margin:0 0;padding:0 0;">'. |
'<div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">'); |
'<div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">'; |
|
return $output; |
} |
} |
|
|
# |
# |
Line 2047 sub startContentScreen {
|
Line 3020 sub startContentScreen {
|
# |
# |
|
|
sub endContentScreen { |
sub endContentScreen { |
my ($r)=@_; |
return '</div></div></div>'; |
$r->print('</div></div></div>'); |
|
} |
} |
|
|
sub supplemental_base { |
sub supplemental_base { |
Line 2060 sub handler {
|
Line 3032 sub handler {
|
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
$r->send_http_header; |
$r->send_http_header; |
return OK if $r->header_only; |
return OK if $r->header_only; |
|
|
|
# get course data |
my $crstype = &Apache::loncommon::course_type(); |
my $crstype = &Apache::loncommon::course_type(); |
|
my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'}; |
|
my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
|
|
# graphics settings |
|
$iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL').'/'); |
|
|
# |
# |
# --------------------------------------------- Initialize help topics for this |
# --------------------------------------------- Initialize help topics for this |
Line 2094 sub handler {
|
Line 3073 sub handler {
|
$allowed = &Apache::lonnet::allowed('mdc',$env{'request.course.id'}); |
$allowed = &Apache::lonnet::allowed('mdc',$env{'request.course.id'}); |
} |
} |
|
|
if ($allowed && $env{'form.verify'}) { |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['chooseserver', |
|
'inhibitmenu']); |
|
if ($allowed && $env{'form.chooseserver'}) { |
|
&choose_dump_server($r); |
|
return OK; |
|
} elsif ($allowed && $env{'form.verify'}) { |
&init_breadcrumbs('verify','Verify Content'); |
&init_breadcrumbs('verify','Verify Content'); |
&verifycontent($r); |
&verifycontent($r); |
} elsif ($allowed && $env{'form.listsymbs'}) { |
} elsif ($allowed && $env{'form.listsymbs'}) { |
&init_breadcrumbs('listsymbs','List Symbs'); |
&init_breadcrumbs('listsymbs','List Content IDs'); |
&list_symbs($r); |
&list_symbs($r); |
} elsif ($allowed && $env{'form.docslog'}) { |
} elsif ($allowed && $env{'form.docslog'}) { |
&init_breadcrumbs('docslog','Show Log'); |
&init_breadcrumbs('docslog','Show Log'); |
&docs_change_log($r); |
my $folder = $env{'form.folder'}; |
|
if ($folder eq '') { |
|
$folder='default'; |
|
} |
|
&docs_change_log($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath); |
} elsif ($allowed && $env{'form.versions'}) { |
} elsif ($allowed && $env{'form.versions'}) { |
&init_breadcrumbs('versions','Check/Set Resource Versions'); |
&init_breadcrumbs('versions','Check/Set Resource Versions'); |
&checkversions($r); |
&checkversions($r); |
} elsif ($allowed && $env{'form.dumpcourse'}) { |
} elsif ($allowed && $env{'form.dumpcourse'}) { |
&init_breadcrumbs('dumpcourse','Dump '.&Apache::loncommon::course_type().' Documents to Construction Space'); |
&init_breadcrumbs('dumpcourse','Dump '.&Apache::loncommon::course_type().' Content to Authoring Space'); |
&dumpcourse($r); |
&dumpcourse($r); |
} elsif ($allowed && $env{'form.exportcourse'}) { |
} elsif ($allowed && $env{'form.exportcourse'}) { |
&init_breadcrumbs('exportcourse','IMS Export'); |
&init_breadcrumbs('exportcourse','IMS Export'); |
Line 2115 sub handler {
|
Line 3103 sub handler {
|
} else { |
} else { |
# |
# |
# Done catching special calls |
# Done catching special calls |
# The whole rest is for course and supplemental documents |
# The whole rest is for course and supplemental documents and utilities menu |
# Get the parameters that may be needed |
# Get the parameters that may be needed |
# |
# |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
['folderpath','pagepath', |
['folderpath','pagepath', |
'pagesymb','forcesupplement','forcestandard', |
'pagesymb','forcesupplement','forcestandard', |
'symb','command']); |
'tools','symb','command']); |
|
|
# standard=1: this is a "new-style" course with an uploaded map as top level |
# standard=1: this is a "new-style" course with an uploaded map as top level |
# standard=2: this is a "old-style" course, and there is nothing we can do |
# standard=2: this is a "old-style" course, and there is nothing we can do |
|
|
my $standard=($env{'request.course.uri'}=~/^\/uploaded\//); |
my $standard=($env{'request.course.uri'}=~/^\/uploaded\//); |
|
|
# Decide whether this should display supplemental or main content |
# Decide whether this should display supplemental or main content or utilities |
# supplementalflag=1: show supplemental documents |
# supplementalflag=1: show supplemental documents |
# supplementalflag=0: show standard documents |
# supplementalflag=0: show standard documents |
|
# toolsflag=1: show utilities |
|
|
|
|
my $supplementalflag=($env{'form.folderpath'}=~/^supplemental/); |
my $supplementalflag=($env{'form.folderpath'}=~/^supplemental/); |
Line 2141 sub handler {
|
Line 3130 sub handler {
|
if ($env{'form.forcestandard'}) { $supplementalflag=0; } |
if ($env{'form.forcestandard'}) { $supplementalflag=0; } |
unless ($allowed) { $supplementalflag=1; } |
unless ($allowed) { $supplementalflag=1; } |
unless ($standard) { $supplementalflag=1; } |
unless ($standard) { $supplementalflag=1; } |
|
my $toolsflag=0; |
|
if ($env{'form.tools'}) { $toolsflag=1; } |
|
|
my $script=''; |
my $script=''; |
my $showdoc=0; |
my $showdoc=0; |
Line 2263 sub handler {
|
Line 3254 sub handler {
|
} |
} |
|
|
# Store this |
# Store this |
&Apache::loncommon::store_course_settings($stored_folderpath, |
unless ($toolsflag) { |
{'pagepath' => 'scalar', |
&Apache::loncommon::store_course_settings($stored_folderpath, |
'folderpath' => 'scalar'}); |
{'pagepath' => 'scalar', |
|
'folderpath' => 'scalar'}); |
if ($env{'form.folderpath'}) { |
if ($env{'form.folderpath'}) { |
my (@folderpath)=split('&',$env{'form.folderpath'}); |
my (@folderpath)=split('&',$env{'form.folderpath'}); |
$env{'form.foldername'}=&unescape(pop(@folderpath)); |
$env{'form.foldername'}=&unescape(pop(@folderpath)); |
$env{'form.folder'}=pop(@folderpath); |
$env{'form.folder'}=pop(@folderpath); |
$container='sequence'; |
$container='sequence'; |
} |
} |
if ($env{'form.pagepath'}) { |
if ($env{'form.pagepath'}) { |
my (@pagepath)=split('&',$env{'form.pagepath'}); |
my (@pagepath)=split('&',$env{'form.pagepath'}); |
$env{'form.pagename'}=&unescape(pop(@pagepath)); |
$env{'form.pagename'}=&unescape(pop(@pagepath)); |
$env{'form.folder'}=pop(@pagepath); |
$env{'form.folder'}=pop(@pagepath); |
$container='page'; |
$container='page'; |
$containertag = '<input type="hidden" name="pagepath" value="" />'. |
$containertag = '<input type="hidden" name="pagepath" value="" />'. |
'<input type="hidden" name="pagesymb" value="" />'; |
'<input type="hidden" name="pagesymb" value="" />'; |
$uploadtag = |
$uploadtag = |
'<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />'. |
'<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />'. |
'<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" />'. |
'<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" />'. |
'<input type="hidden" name="folderpath" value="" />'; |
'<input type="hidden" name="folderpath" value="" />'; |
} else { |
} else { |
my $folderpath=$env{'form.folderpath'}; |
my $folderpath=$env{'form.folderpath'}; |
if (!$folderpath) { |
if (!$folderpath) { |
if ($env{'form.folder'} eq '' || |
if ($env{'form.folder'} eq '' || |
$env{'form.folder'} eq 'supplemental') { |
$env{'form.folder'} eq 'supplemental') { |
$folderpath='default&'. |
$folderpath='default&'. |
&escape(&mt('Main '.$crstype.' Documents')); |
&escape(&mt('Main '.$crstype.' Documents')); |
|
} |
|
} |
|
$containertag = '<input type="hidden" name="folderpath" value="" />'; |
|
$uploadtag = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />'; |
|
} |
|
if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) { |
|
$showdoc='/'.$1; |
|
} |
|
if ($showdoc) { # got called in sequence from course |
|
$allowed=0; |
|
} else { |
|
if ($allowed) { |
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']); |
|
$script=&Apache::lonratedt::editscript('simple'); |
} |
} |
} |
} |
$containertag = '<input type="hidden" name="folderpath" value="" />'; |
|
$uploadtag = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />'; |
|
} |
|
if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) { |
|
$showdoc='/'.$1; |
|
} |
|
if ($showdoc) { # got called in sequence from course |
|
$allowed=0; |
|
} else { |
|
if ($allowed) { |
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']); |
|
$script=&Apache::lonratedt::editscript('simple'); |
|
} |
|
} |
} |
|
|
# get course data |
|
my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'}; |
|
my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
|
|
# get personal data |
# get personal data |
my $uname=$env{'user.name'}; |
my $uname=$env{'user.name'}; |
my $udom=$env{'user.domain'}; |
my $udom=$env{'user.domain'}; |
my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom)); |
my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom)); |
|
|
# graphics settings |
|
|
|
$iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL') . "/"); |
|
|
|
if ($allowed) { |
if ($allowed) { |
my @tabids; |
if ($toolsflag) { |
if ($supplementalflag) { |
$script .= &inject_data_js(); |
@tabids = ('002','ee2','ff2'); |
my ($home,$other,%outhash)=&authorhosts(); |
|
if (!$home && $other) { |
|
my @hosts; |
|
foreach my $aurole (keys(%outhash)) { |
|
unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) { |
|
push(@hosts,$outhash{$aurole}); |
|
} |
|
} |
|
$script .= &dump_switchserver_js(@hosts); |
|
} |
} else { |
} else { |
@tabids = ('aa1','bb1','cc1','ff1'); |
my @tabids; |
unless ($env{'form.pagepath'}) { |
if ($supplementalflag) { |
unshift(@tabids,'001'); |
@tabids = ('002','ee2','ff2'); |
push(@tabids,('dd1','ee1')); |
} else { |
|
@tabids = ('aa1','bb1','cc1','ff1'); |
|
unless ($env{'form.pagepath'}) { |
|
unshift(@tabids,'001'); |
|
push(@tabids,('dd1','ee1')); |
|
} |
} |
} |
|
my $tabidstr = join("','",@tabids); |
|
$script .= &editing_js($udom,$uname,$supplementalflag). |
|
&history_tab_js(). |
|
&inject_data_js(). |
|
&Apache::lonhtmlcommon::resize_scrollbox_js('docs',$tabidstr); |
|
$addentries = { |
|
onload => "javascript:resize_scrollbox('contentscroll','1','1');", |
|
}; |
|
} |
|
if ($env{'docs.markedcopy_url'}) { |
|
$script .= &paste_popup_js(); |
} |
} |
my $tabidstr = join("','",@tabids); |
|
$script .= &editing_js($udom,$uname,$supplementalflag). |
|
&resize_contentdiv_js($tabidstr); |
|
$addentries = { |
|
onload => "javascript:resize_contentdiv('contentscroll','1','1');", |
|
}; |
|
} |
} |
# -------------------------------------------------------------------- Body tag |
# -------------------------------------------------------------------- Body tag |
$script = '<script type="text/javascript">'."\n" |
$script = '<script type="text/javascript">'."\n" |
Line 2358 sub handler {
|
Line 3361 sub handler {
|
}) |
}) |
.&Apache::loncommon::help_open_menu('','',273,'RAT') |
.&Apache::loncommon::help_open_menu('','',273,'RAT') |
.&Apache::lonhtmlcommon::breadcrumbs( |
.&Apache::lonhtmlcommon::breadcrumbs( |
'Editing the Table of Contents for your '.$crstype, |
'Editing '.$crstype.' Contents', |
'Docs_Adding_Course_Doc') |
'Docs_Adding_Course_Doc') |
); |
); |
} else { |
} else { |
Line 2403 sub handler {
|
Line 3406 sub handler {
|
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'}; |
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'}; |
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
my ($destination,$dir_root) = &embedded_destination(); |
my ($destination,$dir_root) = &embedded_destination(); |
$r->print(&Apache::loncommon::modify_html_refs('coursedoc',$destination, |
my $result = |
$docuname,$docudom,undef, |
&Apache::loncommon::modify_html_refs('coursedoc',$destination, |
$dir_root). |
$docuname,$docudom,undef, |
&return_to_editor()); |
$dir_root); |
|
$r->print($result.&return_to_editor()); |
} elsif ($env{'form.phase'} eq 'decompress_uploaded') { |
} elsif ($env{'form.phase'} eq 'decompress_uploaded') { |
$uploadphase = 'decompress_phase_one'; |
$uploadphase = 'decompress_phase_one'; |
$r->print(&decompression_phase_one(). |
$r->print(&decompression_phase_one(). |
Line 2418 sub handler {
|
Line 3422 sub handler {
|
} |
} |
} |
} |
|
|
unless ($showdoc || $uploadphase) { |
if ($allowed && $toolsflag) { |
|
$r->print(&startContentScreen('tools')); |
|
$r->print(&generate_admin_menu($crstype)); |
|
$r->print(&endContentScreen()); |
|
} elsif ((!$showdoc) && (!$uploadphase)) { |
# ----------------------------------------------------------------------------- |
# ----------------------------------------------------------------------------- |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'uplm' => 'Upload a new main '.lc($crstype).' document', |
'uplm' => 'Upload a new main '.lc($crstype).' document', |
Line 2428 sub handler {
|
Line 3436 sub handler {
|
'upld' => 'Import Document', |
'upld' => 'Import Document', |
'srch' => 'Search', |
'srch' => 'Search', |
'impo' => 'Import', |
'impo' => 'Import', |
'wish' => 'Import from Wishlist', |
'lnks' => 'Import from Stored Links', |
'selm' => 'Select Map', |
'selm' => 'Select Map', |
'load' => 'Load Map', |
'load' => 'Load Map', |
'reco' => 'Recover Deleted Documents', |
'reco' => 'Recover Deleted Documents', |
Line 2496 SEDFFORM
|
Line 3504 SEDFFORM
|
my @simpleeditdefaultforma = ( |
my @simpleeditdefaultforma = ( |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/src.png" alt="'.$lt{srch}.'" onclick="javascript:groupsearch()" />' => "$uploadtag<a class='LC_menubuttons_link' href='javascript:groupsearch()'>$lt{'srch'}</a>" }, |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/src.png" alt="'.$lt{srch}.'" onclick="javascript:groupsearch()" />' => "$uploadtag<a class='LC_menubuttons_link' href='javascript:groupsearch()'>$lt{'srch'}</a>" }, |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/res.png" alt="'.$lt{impo}.'" onclick="javascript:groupimport();"/>' => "<a class='LC_menubuttons_link' href='javascript:groupimport();'>$lt{'impo'}</a>$help{'Importing_LON-CAPA_Resource'}" }, |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/res.png" alt="'.$lt{impo}.'" onclick="javascript:groupimport();"/>' => "<a class='LC_menubuttons_link' href='javascript:groupimport();'>$lt{'impo'}</a>$help{'Importing_LON-CAPA_Resource'}" }, |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/wishlist.png" alt="'.$lt{wish}.'" onclick="javascript:open_Wishlist_Import();" />' => "<a class='LC_menubuttons_link' href='javascript:open_Wishlist_Import();'>$lt{'wish'}</a>" }, |
{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/wishlist.png" alt="'.$lt{lnks}.'" onclick="javascript:open_StoredLinks_Import();" />' => "<a class='LC_menubuttons_link' href='javascript:open_StoredLinks_Import();'>$lt{'lnks'}</a>" }, |
); |
); |
$simpleeditdefaultform .= &create_form_ul(&create_list_elements(@simpleeditdefaultforma)); |
$simpleeditdefaultform .= &create_form_ul(&create_list_elements(@simpleeditdefaultforma)); |
$simpleeditdefaultform .=(<<SEDFFORM); |
$simpleeditdefaultform .=(<<SEDFFORM); |
Line 2520 ERFORM
|
Line 3528 ERFORM
|
|
|
|
|
if ($allowed) { |
if ($allowed) { |
&update_paste_buffer($coursenum,$coursedom); |
my $folder = $env{'form.folder'}; |
my %lt=&Apache::lonlocal::texthash( |
if ($folder eq '') { |
'vc' => 'Verify Content', |
$folder='default'; |
'cv' => 'Check/Set Resource Versions', |
} |
'ls' => 'List Symbs', |
&update_paste_buffer($coursenum,$coursedom,$folder); |
'sl' => 'Show Log' |
|
); |
|
|
|
$r->print(<<HIDDENFORM); |
$r->print(<<HIDDENFORM); |
<form name="renameform" method="post" action="/adm/coursedocs"> |
<form name="renameform" method="post" action="/adm/coursedocs"> |
<input type="hidden" name="title" /> |
<input type="hidden" name="title" /> |
Line 2536 ERFORM
|
Line 3541 ERFORM
|
<input type="hidden" name="copyfolder" /> |
<input type="hidden" name="copyfolder" /> |
$containertag |
$containertag |
</form> |
</form> |
<form name="simpleedit" method="post" action="/adm/coursedocs"> |
|
<input type="hidden" name="importdetail" value="" /> |
|
$uploadtag |
|
</form> |
|
HIDDENFORM |
HIDDENFORM |
|
$r->print(&makesimpleeditform($uploadtag)."\n". |
|
&makedocslogform($uploadtag."\n". |
|
'<input type="hidden" name="folder" value="'. |
|
$env{'form.folder'}.'" />'."\n")); |
} |
} |
|
|
# Generate the tabs |
# Generate the tabs |
Line 2548 HIDDENFORM
|
Line 3554 HIDDENFORM
|
if (($supplementalflag) && (!$allowed)) { |
if (($supplementalflag) && (!$allowed)) { |
&Apache::lonnavdisplay::startContentScreen($r,'supplemental'); |
&Apache::lonnavdisplay::startContentScreen($r,'supplemental'); |
} else { |
} else { |
&startContentScreen($r,($supplementalflag?'suppdocs':'docs')); |
$r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs'))); |
} |
} |
|
|
# |
# |
Line 2585 HIDDENFORM
|
Line 3591 HIDDENFORM
|
} |
} |
my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container; |
my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container; |
|
|
|
|
|
|
my $recoverform=(<<RFORM); |
|
<form action="/adm/groupsort" method="post" name="recover"> |
|
<a class="LC_menubuttons_link" href="javascript:groupopen('$readfile',1)">$lt{'reco'}</a> |
|
</form> |
|
RFORM |
|
|
|
my $imspform=(<<IMSPFORM); |
my $imspform=(<<IMSPFORM); |
<form action="/adm/imsimportdocs" method="post" name="ims"> |
<form action="/adm/imsimportdocs" method="post" name="ims"> |
<input type="hidden" name="folder" value="$folder" /> |
<input type="hidden" name="folder" value="$folder" /> |
Line 2776 NGFFORM
|
Line 3774 NGFFORM
|
); |
); |
$communityform = &create_form_ul(&create_list_elements(@communityforma)); |
$communityform = &create_form_ul(&create_list_elements(@communityforma)); |
|
|
|
|
|
|
my @tools = ( |
|
# {'<img class="LC_noBorder LC_middle" align="left" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" />'=>$extresourcesform}, |
|
# {'<img class="LC_noBorder LC_middle" align="left" src="/res/adm/pages/ims.png" alt="'.$lt{imsf}.'" />'=>$imspform}, |
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/recover.png" alt="'.$lt{reco}.'" onclick="javascript:groupopen(\''.$readfile.'\',1)" />'=>$recoverform}, |
|
); |
|
|
|
my %orderhash = ( |
my %orderhash = ( |
'aa' => ['Import Documents',$fileuploadform], |
'aa' => ['Import Content',$fileuploadform], |
'bb' => ['Published Resources',$simpleeditdefaultform], |
'bb' => ['Published Content',$simpleeditdefaultform], |
'cc' => ['Grading Resources',$gradingform], |
'cc' => ['Grading Resources',$gradingform], |
'ff' => ['Tools', &create_form_ul(&create_list_elements(@tools)).&generate_admin_options(\%help,\%env)], |
|
); |
); |
unless ($env{'form.pagepath'}) { |
unless ($env{'form.pagepath'}) { |
$orderhash{'00'} = ['Newfolder',$newfolderform]; |
$orderhash{'00'} = ['Newfolder',$newfolderform]; |
$orderhash{'dd'} = ['Community Resources',$communityform]; |
$orderhash{'dd'} = ['Collaboration',$communityform]; |
$orderhash{'ee'} = ['Special Documents',$specialdocumentsform]; |
$orderhash{'ee'} = ['Special Documents',$specialdocumentsform]; |
} |
} |
|
|
$hadchanges=0; |
$hadchanges=0; |
unless ($supplementalflag) { |
unless (($supplementalflag || $toolsflag)) { |
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype, |
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype, |
$supplementalflag,\%orderhash,$iconpath); |
$supplementalflag,\%orderhash,$iconpath); |
if ($error) { |
if ($error) { |
Line 2906 my @supimportdoc = (
|
Line 3895 my @supimportdoc = (
|
$supupdocform = &create_form_ul(&create_list_elements(@supimportdoc)) . '<hr id="ee_hrule" style="width:0px;text-align:left;margin-left:0" />' . $supupdocform; |
$supupdocform = &create_form_ul(&create_list_elements(@supimportdoc)) . '<hr id="ee_hrule" style="width:0px;text-align:left;margin-left:0" />' . $supupdocform; |
my %suporderhash = ( |
my %suporderhash = ( |
'00' => ['Supnewfolder', $supnewfolderform], |
'00' => ['Supnewfolder', $supnewfolderform], |
'ee' => ['Import Documents',$supupdocform], |
'ee' => ['Import Content',$supupdocform], |
'ff' => ['Special Documents',&create_form_ul(&create_list_elements(@specialdocs))] |
'ff' => ['Special Documents',&create_form_ul(&create_list_elements(@specialdocs))] |
); |
); |
if ($supplementalflag) { |
if ($supplementalflag) { |
Line 2924 my %suporderhash = (
|
Line 3913 my %suporderhash = (
|
} |
} |
} |
} |
|
|
&endContentScreen($r); |
$r->print(&endContentScreen()); |
|
|
if ($allowed) { |
if ($allowed) { |
$r->print(' |
$r->print(' |
Line 2935 my %suporderhash = (
|
Line 3924 my %suporderhash = (
|
<input type="hidden" name="residx" /> |
<input type="hidden" name="residx" /> |
</form>'); |
</form>'); |
} |
} |
} else { |
} elsif ($showdoc) { |
unless ($uploadphase) { |
|
# -------------------------------------------------------- This is showdoc mode |
# -------------------------------------------------------- This is showdoc mode |
$r->print("<h1>".&mt('Uploaded Document').' - '. |
$r->print("<h1>".&mt('Uploaded Document').' - '. |
&Apache::lonnet::gettitle($r->uri).'</h1><p>'. |
&Apache::lonnet::gettitle($r->uri).'</h1><p>'. |
&mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>". |
&mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>". |
&entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>'); |
&entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>'); |
} |
|
} |
} |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
Line 2991 sub decompression_info {
|
Line 3978 sub decompression_info {
|
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'}; |
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'}; |
my $container='sequence'; |
my $container='sequence'; |
my $hiddenelem; |
my ($pathitem,$hiddenelem); |
|
my @hiddens = ('newidx','comment','position'); |
if ($env{'form.pagepath'}) { |
if ($env{'form.pagepath'}) { |
$container='page'; |
$container='page'; |
$hiddenelem = '<input type="hidden" name="pagepath" value="'.$env{'form.pagepath'}.'" />'."\n"; |
$pathitem = 'pagepath'; |
} else { |
} else { |
$hiddenelem = '<input type="hidden" name="folderpath" value="'.$env{'form.folderpath'}.'" />'."\n"; |
$pathitem = 'folderpath'; |
} |
} |
if ($env{'form.newidx'}) { |
unshift(@hiddens,$pathitem); |
$hiddenelem .= '<input type="hidden" name="newidx" value="'.$env{'form.newidx'}.'" />'."\n"; |
foreach my $item (@hiddens) { |
} |
if ($env{'form.'.$item}) { |
if ($env{'form.comment'}) { |
$hiddenelem .= '<input type="hidden" name="'.$item.'" value="'. |
$hiddenelem .= '<input type="hidden" name="comment" value="'.$env{'form.comment'}.'" />'."\n"; |
$env{'form.'.$item}.'" />'."\n"; |
|
} |
} |
} |
return ($destination,$dir_root,$londocroot,$docudom,$docuname,$container, |
return ($destination,$dir_root,$londocroot,$docudom,$docuname,$container, |
$hiddenelem); |
$hiddenelem); |
Line 3012 sub decompression_phase_one {
|
Line 4001 sub decompression_phase_one {
|
my ($dir,$file,$warning,$error,$output); |
my ($dir,$file,$warning,$error,$output); |
my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)= |
my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)= |
&decompression_info(); |
&decompression_info(); |
if ($env{'form.archiveurl'} !~ m{^/uploaded/\Q$docudom/$docuname/docs/\E(?:default|supplemental|\d+).*/([^/]+)$}) { |
if ($env{'form.archiveurl'} !~ m{^/uploaded/\Q$docudom/$docuname/\E(?:docs|supplemental)/(?:default|\d+).*/([^/]+)$}) { |
$error = &mt('Archive file "[_1]" not in the expected location.',$env{'form.archiveurl'}); |
$error = &mt('Archive file "[_1]" not in the expected location.',$env{'form.archiveurl'}); |
} else { |
} else { |
my $file = $1; |
my $file = $1; |
$output = &Apache::loncommon::process_decompression($docudom,$docuname,$file,$destination,$dir_root,$hiddenelem); |
$output = |
if ($env{'form.archivedelete'}) { |
&Apache::loncommon::process_decompression($docudom,$docuname,$file, |
my $map = $env{'form.folder'}.'.'.$container; |
$destination,$dir_root, |
my ($delwarning,$delresult); |
$hiddenelem); |
my ($errtext,$fatal) = &mapread($docuname,$docudom,$map); |
if ($env{'form.autoextract_camtasia'}) { |
if ($fatal) { |
$output .= &remove_archive($docudom,$docuname,$container); |
if ($container eq 'page') { |
|
$delwarning = &mt('An error occurred retrieving the contents of the current page.'); |
|
} else { |
|
$delwarning = &mt('An error occurred retrieving the contents of the current folder.'); |
|
} |
|
$delwarning .= &mt('As a result the archive file has not been removed.'); |
|
} else { |
|
my $currcmd = $env{'form.cmd'}; |
|
$env{'form.cmd'} = 'del_'.$env{'form.position'}; |
|
if (&handle_edit_cmd($docuname,$docudom)) { |
|
($errtext,$fatal) = &storemap($docuname,$docudom,$map); |
|
if ($fatal) { |
|
if ($container eq 'page') { |
|
$delwarning = &mt('An error occurred updating the contents of the current page.'); |
|
} else { |
|
$delwarning = &mt('An error occurred updating the contents of the current folder.'); |
|
} |
|
} |
|
} |
|
$env{'form.cmd'} = $currcmd; |
|
$delresult = &mt('Archive file removed after extracting files.'); |
|
} |
|
if ($delwarning) { |
|
$output .= '<p class="LC_warning">'. |
|
$delwarning. |
|
'</p>'; |
|
} |
|
if ($delresult) { |
|
$output .= '<p class="LC_info">'. |
|
$delresult. |
|
'</p>'; |
|
} |
|
} |
} |
} |
} |
if ($error) { |
if ($error) { |
Line 3069 sub decompression_phase_one {
|
Line 4026 sub decompression_phase_one {
|
sub decompression_phase_two { |
sub decompression_phase_two { |
my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)= |
my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)= |
&decompression_info(); |
&decompression_info(); |
my $output = |
my $output; |
|
if ($env{'form.archivedelete'}) { |
|
$output = &remove_archive($docudom,$docuname,$container); |
|
} |
|
$output .= |
&Apache::loncommon::process_extracted_files('coursedocs',$docudom,$docuname, |
&Apache::loncommon::process_extracted_files('coursedocs',$docudom,$docuname, |
$destination,$dir_root,$hiddenelem); |
$destination,$dir_root,$hiddenelem); |
return $output; |
return $output; |
} |
} |
|
|
sub generate_admin_options { |
sub remove_archive { |
my ($help_ref,$env_ref) = @_; |
my ($docudom,$docuname,$container) = @_; |
my %lt=&Apache::lonlocal::texthash( |
my $map = $env{'form.folder'}.'.'.$container; |
'vc' => 'Verify Content', |
my ($output,$delwarning,$delresult,$url); |
'cv' => 'Check/Set Resource Versions', |
my ($errtext,$fatal) = &mapread($docuname,$docudom,$map); |
'ls' => 'List Symbs', |
if ($fatal) { |
'sl' => 'Show Log', |
if ($container eq 'page') { |
'imse' => 'IMS Export', |
$delwarning = &mt('An error occurred retrieving the contents of the current page.'); |
'dcd' => 'Dump Course Documents to Construction Space: available on other servers' |
} else { |
); |
$delwarning = &mt('An error occurred retrieving the contents of the current folder.'); |
my %help = %{$help_ref}; |
} |
my %env = %{$env_ref}; |
$delwarning .= &mt('As a result the archive file has not been removed.'); |
my $dumpbut=&dumpbutton(); |
} else { |
my $exportbut=&exportbutton(); |
my $currcmd = $env{'form.cmd'}; |
my @list = ( |
my $position = $env{'form.position'}; |
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/verify.png" alt="'.$lt{vc}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "verify", "'.$lt{'vc'}.'")\' />' |
if ($position > 0) { |
=> "<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"verify\", \"$lt{'vc'}\")'>$lt{'vc'}</a>$help{'Verify_Content'}"}, |
$env{'form.cmd'} = 'del_'.$position; |
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/resversion.png" alt="'.$lt{cv}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "versions", "'.$lt{'cv'}.'")\' />' |
my ($title,$url,@rrest) = |
=>"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"versions\", \"$lt{'cv'}\")'>$lt{'cv'}</a>$help{'Check_Resource_Versions'}"}, |
split(/:/,$LONCAPA::map::resources[$LONCAPA::map::order[$position]]); |
); |
if (&handle_edit_cmd($docuname,$docudom)) { |
if($dumpbut ne ''){ |
($errtext,$fatal) = &storemap($docuname,$docudom,$map,1); |
push @list, {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/dump.png" alt="'.$lt{dcd}.'" />'=>$dumpbut}; |
if ($fatal) { |
} |
if ($container eq 'page') { |
push @list, ({'<img class="LC_noBorder LC_middle" src="/res/adm/pages/imsexport.png" alt="'.$lt{imse}.'" onclick="javascript:injectData(document.courseverify, \'dummy\', \'exportcourse\', \''.&mt('IMS Export').'\');" />' |
$delwarning = &mt('An error occurred updating the contents of the current page.'); |
=>$exportbut}, |
} else { |
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/symbs.png" alt="'.$lt{ls}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "listsymbs", "'.$lt{'ls'}.'")\' />' |
$delwarning = &mt('An error occurred updating the contents of the current folder.'); |
=>"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"listsymbs\", \"$lt{'ls'}\")'>$lt{'ls'}</a><input type='hidden' name='folder' value='$env{'form.folder'}' />"}, |
} |
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/document-properties.png" alt="'.$lt{sl}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "docslog", "'.$lt{'sl'}.'")\' />' |
} else { |
=>"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"docslog\", \"$lt{'sl'}\")'>$lt{'sl'}</a>"}, |
$delresult = &mt('Archive file removed.'); |
); |
} |
return '<form action="/adm/coursedocs" method="post" name="courseverify"><input type="hidden" id="dummy" />'.&create_form_ul(&create_list_elements(@list)).'</form>'; |
} |
|
} |
|
$env{'form.cmd'} = $currcmd; |
|
} |
|
if ($delwarning) { |
|
$output = '<p class="LC_warning">'. |
|
$delwarning. |
|
'</p>'; |
|
} |
|
if ($delresult) { |
|
$output .= '<p class="LC_info">'. |
|
$delresult. |
|
'</p>'; |
|
} |
|
return $output; |
} |
} |
|
|
|
sub generate_admin_menu { |
|
my ($crstype) = @_; |
|
my $lc_crstype = lc($crstype); |
|
my ($home,$other,%outhash)=&authorhosts(); |
|
my %lt=&Apache::lonlocal::texthash ( |
|
'vc' => 'Verify Content', |
|
'cv' => 'Check/Set Resource Versions', |
|
'ls' => 'List Resource Identifiers', |
|
'imse' => 'Export contents to IMS Archive', |
|
'dcd' => "Dump $crstype Content to Authoring Space", |
|
); |
|
my ($candump,$dumpurl); |
|
if ($home + $other > 0) { |
|
$candump = 'F'; |
|
if ($home) { |
|
$dumpurl = "javascript:injectData(document.courseverify,'dummy','dumpcourse','$lt{'dcd'}')"; |
|
} else { |
|
my @hosts; |
|
foreach my $aurole (keys(%outhash)) { |
|
unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) { |
|
push(@hosts,$outhash{$aurole}); |
|
} |
|
} |
|
if (@hosts == 1) { |
|
my $switchto = '/adm/switchserver?otherserver='.$hosts[0]. |
|
'&role='. |
|
&HTML::Entities::encode($env{'request.role'},'"<>&').'&origurl='. |
|
&HTML::Entities::encode('/adm/coursedocs?dumpcourse=1','"<>&'); |
|
$dumpurl = "javascript:dump_needs_switchserver('$switchto')"; |
|
} else { |
|
$dumpurl = "javascript:choose_switchserver_window()"; |
|
} |
|
} |
|
} |
|
my @menu= |
|
({ categorytitle=>'Administration', |
|
items =>[ |
|
{ linktext => $lt{'vc'}, |
|
url => "javascript:injectData(document.courseverify,'dummy','verify','$lt{'vc'}')", |
|
permission => 'F', |
|
help => 'Verify_Content', |
|
icon => 'verify.png', |
|
linktitle => 'Verify contents can be retrieved/rendered', |
|
}, |
|
{ linktext => $lt{'cv'}, |
|
url => "javascript:injectData(document.courseverify,'dummy','versions','$lt{'cv'}')", |
|
permission => 'F', |
|
help => 'Check_Resource_Versions', |
|
icon => 'resversion.png', |
|
linktitle => "View version information for resources in your $lc_crstype, and fix/unfix use of specific versions", |
|
}, |
|
{ linktext => $lt{'ls'}, |
|
url => "javascript:injectData(document.courseverify,'dummy','listsymbs','$lt{'ls'}')", |
|
permission => 'F', |
|
#help => '', |
|
icon => 'symbs.png', |
|
linktitle => "List the unique identifier used for each resource instance in your $lc_crstype" |
|
}, |
|
] |
|
}, |
|
{ categorytitle=>'Export', |
|
items =>[ |
|
{ linktext => $lt{'imse'}, |
|
url => "javascript:injectData(document.courseverify,'dummy','exportcourse','$lt{'imse'}')", |
|
permission => 'F', |
|
help => 'Docs_Export_Course_Docs', |
|
icon => 'imsexport.png', |
|
linktitle => $lt{'imse'}, |
|
}, |
|
{ linktext => $lt{'dcd'}, |
|
url => $dumpurl, |
|
permission => $candump, |
|
#help => '', |
|
icon => 'dump.png', |
|
linktitle => $lt{'dcd'}, |
|
}, |
|
] |
|
}); |
|
return '<form action="/adm/coursedocs" method="post" name="courseverify">'."\n". |
|
'<input type="hidden" id="dummy" />'."\n". |
|
&Apache::lonhtmlcommon::generate_menu(@menu)."\n". |
|
'</form>'; |
|
} |
|
|
sub generate_edit_table { |
sub generate_edit_table { |
my ($tid,$orderhash_ref,$to_show,$iconpath,$jumpto) = @_; |
my ($tid,$orderhash_ref,$to_show,$iconpath,$jumpto,$readfile) = @_; |
return unless(ref($orderhash_ref) eq 'HASH'); |
return unless(ref($orderhash_ref) eq 'HASH'); |
my %orderhash = %{$orderhash_ref}; |
my %orderhash = %{$orderhash_ref}; |
my $form; |
my $form; |
Line 3121 sub generate_edit_table {
|
Line 4178 sub generate_edit_table {
|
$activetab = $env{'form.active'}; |
$activetab = $env{'form.active'}; |
} |
} |
my $backicon = $iconpath.'clickhere.gif'; |
my $backicon = $iconpath.'clickhere.gif'; |
my $backtext = &mt('Back to Overview'); |
my $backtext = &mt('To Overview'); |
$form = '<div class="LC_Box" style="margin:0;">'. |
$form = '<div class="LC_Box" style="margin:0;">'. |
'<ul id="navigation'.$tid.'" class="LC_TabContent">'. |
'<ul id="navigation'.$tid.'" class="LC_TabContent">'."\n". |
'<li class="goback">'. |
'<li class="goback">'. |
'<a href="javascript:toContents('."'$jumpto'".');">'. |
'<a href="javascript:toContents('."'$jumpto'".');">'. |
'<img src="'.$backicon.'" class="LC_icon" style="border: none; vertical-align: top;"'. |
'<img src="'.$backicon.'" class="LC_icon" style="border: none; vertical-align: top;"'. |
' alt="'.$backtext.'" />'.$backtext.'</a></li>'; |
' alt="'.$backtext.'" />'.$backtext.'</a></li>'."\n". |
|
'<li>'. |
|
'<a href="javascript:groupopen('."'$readfile'".',1);">'. |
|
&mt('Undo Delete').'</a></li>'."\n"; |
|
if ($env{'form.docslog'}) { |
|
$form .= '<li class="active">'; |
|
} else { |
|
$form .= '<li>'; |
|
} |
|
$form .= '<a href="javascript:toggleHistoryDisp(1);">'. |
|
&mt('History').'</a></li>'."\n"; |
|
if ($env{'form.docslog'}) { |
|
$form .= '<li><a href="javascript:toggleHistoryDisp(0);">'. |
|
&mt('Edit').'</a></li>'."\n"; |
|
} |
foreach my $name (reverse(sort(keys(%orderhash)))) { |
foreach my $name (reverse(sort(keys(%orderhash)))) { |
if($name ne '00'){ |
if($name ne '00'){ |
if($activetab eq '' || $activetab ne $name){ |
if($activetab eq '' || $activetab ne $name){ |
Line 3137 sub generate_edit_table {
|
Line 4208 sub generate_edit_table {
|
} |
} |
$form .= '<li style="float:right" '.$active |
$form .= '<li style="float:right" '.$active |
.' onmouseover="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"' |
.' onmouseover="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"' |
.' onclick="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"><a href="javascript:;"><b>'.&mt(${$orderhash{$name}}[0]).'</b></a></li>'; |
.' onclick="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"><a href="javascript:;"><b>'.&mt(${$orderhash{$name}}[0]).'</b></a></li>'."\n"; |
} else { |
} else { |
$form .= '<li '.$active.' style="float:right">'.${$orderhash{$name}}[1].'</li>'; |
$form .= '<li '.$active.' style="float:right">'.${$orderhash{$name}}[1].'</li>'."\n"; |
|
|
} |
} |
} |
} |
$form .= '</ul>'; |
$form .= '</ul>'."\n"; |
$form .= '<div id="content'.$tid.'" style="padding: 0 0; margin: 0 0; overflow: hidden; clear:right">'; |
$form .= '<div id="content'.$tid.'" style="padding: 0 0; margin: 0 0; overflow: hidden; clear:right">'."\n"; |
|
|
if ($to_show ne '') { |
if ($to_show ne '') { |
$form .= '<div style="padding:0;margin:0;float:left">'.$to_show.'</div>'; |
$form .= '<div style="padding:0;margin:0;float:left">'.$to_show.'</div>'."\n"; |
} |
} |
foreach my $field (keys(%orderhash)){ |
foreach my $field (keys(%orderhash)){ |
if($field ne '00'){ |
if($field ne '00'){ |
Line 3158 sub generate_edit_table {
|
Line 4229 sub generate_edit_table {
|
} |
} |
$form .= '<div id="'.$field.$tid.'"' |
$form .= '<div id="'.$field.$tid.'"' |
.' class="LC_ContentBox" '.$active.'>'.${$orderhash{$field}}[1] |
.' class="LC_ContentBox" '.$active.'>'.${$orderhash{$field}}[1] |
.'</div>'; |
.'</div>'."\n"; |
} |
} |
} |
} |
$form .= '</div></div>'; |
unless ($env{'form.docslog'}) { |
|
$form .= '</div></div>'."\n"; |
|
} |
return $form; |
return $form; |
} |
} |
|
|
Line 3315 newWindow = window.open("","IMSimport","
|
Line 4387 newWindow = window.open("","IMSimport","
|
newWindow.location.href = newlocation; |
newWindow.location.href = newlocation; |
} |
} |
|
|
|
|
function finishpick() { |
function finishpick() { |
var title=this.document.forms.extimport.title.value; |
var title=this.document.forms.extimport.title.value; |
var url=this.document.forms.extimport.url.value; |
var url=this.document.forms.extimport.url.value; |
Line 3509 function showPage(current, pageId, nav,
|
Line 4580 function showPage(current, pageId, nav,
|
} |
} |
} |
} |
} |
} |
resize_contentdiv('contentscroll','1','0'); |
resize_scrollbox('contentscroll','1','0'); |
return false; |
return false; |
} |
} |
|
|
function injectData(current, hiddenField, name, value) { |
|
currentElement = document.getElementById(hiddenField); |
|
currentElement.name = name; |
|
currentElement.value = value; |
|
current.submit(); |
|
} |
|
|
|
function toContents(jumpto) { |
function toContents(jumpto) { |
var newurl = '$backtourl'; |
var newurl = '$backtourl'; |
if (jumpto != '') { |
if (jumpto != '') { |
Line 3532 function toContents(jumpto) {
|
Line 4596 function toContents(jumpto) {
|
ENDNEWSCRIPT |
ENDNEWSCRIPT |
} |
} |
|
|
sub resize_contentdiv_js { |
sub history_tab_js { |
my ($tabidstr) = @_; |
return <<"ENDHIST"; |
my $viewport_js = &Apache::loncommon::viewport_geometry_js(); |
function toggleHistoryDisp(choice) { |
return <<ENDRESIZESCRIPT; |
document.docslogform.docslog.value = choice; |
|
document.docslogform.submit(); |
window.onresize=resizeContentEditor; |
return; |
|
} |
var activeTab; |
|
|
|
$viewport_js |
|
|
|
function resize_contentdiv(scrollboxname,chkw,chkh) { |
|
var scrollboxid = 'div_'+scrollboxname; |
|
var scrolltableid = 'table_'+scrollboxname; |
|
var scrollbox; |
|
var scrolltable; |
|
|
|
if (document.getElementById("contenteditor") == null) { |
|
return; |
|
} |
|
|
|
if (document.getElementById(scrollboxid) == null) { |
|
return; |
|
} else { |
|
scrollbox = document.getElementById(scrollboxid); |
|
} |
|
|
|
if (document.getElementById(scrolltableid) == null) { |
|
return; |
|
} else { |
|
scrolltable = document.getElementById(scrolltableid); |
|
} |
|
|
|
init_geometry(); |
|
var vph = Geometry.getViewportHeight(); |
|
var vpw = Geometry.getViewportWidth(); |
|
|
|
var alltabs = ['$tabidstr']; |
|
var listwchange; |
|
if (chkw == 1) { |
|
var contenteditorw = document.getElementById("contenteditor").offsetWidth; |
|
var contentlistw; |
|
var contentlistid = document.getElementById("contentlist"); |
|
if (contentlistid != null) { |
|
contentlistw = document.getElementById("contentlist").offsetWidth; |
|
} |
|
var contentlistwstart = contentlistw; |
|
|
|
var scrollboxw = scrollbox.offsetWidth; |
ENDHIST |
var scrollboxscrollw = scrollbox.scrollWidth; |
} |
|
|
var offsetw = parseInt(vpw * 0.015); |
sub inject_data_js { |
var paddingw = parseInt(vpw * 0.09); |
return <<ENDINJECT; |
|
|
var minscrollboxw = 250; |
function injectData(current, hiddenField, name, value) { |
|
currentElement = document.getElementById(hiddenField); |
|
currentElement.name = name; |
|
currentElement.value = value; |
|
current.submit(); |
|
} |
|
|
var maxtabw = 0; |
ENDINJECT |
var actabw = 0; |
} |
for (var i=0; i<alltabs.length; i++) { |
|
if (activeTab == alltabs[i]) { |
|
actabw = document.getElementById(alltabs[i]).offsetWidth; |
|
if (actabw > maxtabw) { |
|
maxtabw = actabw; |
|
} |
|
} else { |
|
if (document.getElementById(alltabs[i]) != null) { |
|
var thistab = document.getElementById(alltabs[i]); |
|
thistab.style.visibility = 'hidden'; |
|
thistab.style.display = 'block'; |
|
var tabw = document.getElementById(alltabs[i]).offsetWidth; |
|
thistab.style.display = 'none'; |
|
thistab.style.visibility = ''; |
|
if (tabw > maxtabw) { |
|
maxtabw = tabw; |
|
} |
|
} |
|
} |
|
} |
|
|
|
if (maxtabw > 0) { |
sub dump_switchserver_js { |
var newscrollboxw; |
my @hosts = @_; |
if (maxtabw+paddingw+scrollboxscrollw<contenteditorw) { |
my %lt = &Apache::lonlocal::texthash( |
newscrollboxw = contenteditorw-paddingw-maxtabw; |
dump => 'Dumping to Authoring Space requires switching server.', |
if (newscrollboxw < minscrollboxw) { |
swit => 'Switch server?', |
newscrollboxw = minscrollboxw; |
duco => 'Dump content to Authoring Space', |
} |
yone => 'You need to switch to a server housing an Authoring Space for which you are author or co-author.', |
scrollbox.style.width = newscrollboxw+"px"; |
chos => 'Choose server', |
if (newscrollboxw != scrollboxw) { |
); |
var newcontentlistw = newscrollboxw-offsetw; |
my $role = $env{'request.role'}; |
contentlistid.style.width = newcontentlistw+"px"; |
my $js = <<"ENDSWJS"; |
} |
<script type="text/javascript"> |
} else { |
function write_switchserver() { |
newscrollboxw = contenteditorw-paddingw-maxtabw; |
var server; |
if (newscrollboxw < minscrollboxw) { |
if (document.setserver.posshosts.length > 0) { |
newscrollboxw = minscrollboxw; |
for (var i=0; i<document.setserver.posshosts.length; i++) { |
} |
if (document.setserver.posshosts[i].checked) { |
scrollbox.style.width = newscrollboxw+"px"; |
server = document.setserver.posshosts[i].value; |
if (newscrollboxw != scrollboxw) { |
|
var newcontentlistw = newscrollboxw-offsetw; |
|
contentlistid.style.width = newcontentlistw+"px"; |
|
} |
|
} |
} |
|
} |
|
opener.document.location.href="/adm/switchserver?otherserver="+server+"&role=$role&origurl=/adm/coursedocs"; |
|
} |
|
window.close(); |
|
} |
|
</script> |
|
|
if (newscrollboxw != scrollboxw) { |
ENDSWJS |
var newscrolltablew = newscrollboxw+offsetw; |
|
scrolltable.style.width = newscrolltablew+"px"; |
|
} |
|
} |
|
|
|
if (contentlistid.offsetWidth != contentlistwstart) { |
my $startpage = &Apache::loncommon::start_page('Choose server',$js, |
listwchange = 1; |
{'only_body' => 1, |
} |
'js_ready' => 1,}); |
|
my $endpage = &Apache::loncommon::end_page({'js_ready' => 1}); |
|
|
if (activeTab == 'cc1') { |
my $hostpicker; |
if (document.getElementById('cc_hrule') != null) { |
my $count = 0; |
document.getElementById('cc_hrule').style.width=actabw+"px"; |
foreach my $host (sort(@hosts)) { |
} |
my $checked; |
} else { |
if ($count == 0) { |
if (activeTab == 'bb1') { |
$checked = ' checked="checked"'; |
if (document.getElementById('bb_hrule') != null) { |
|
document.getElementById('bb_hrule').style.width=actabw+"px"; |
|
} |
|
} else { |
|
if (activeTab == 'ee2') { |
|
if (document.getElementById('ee_hrule') != null) { |
|
document.getElementById('ee_hrule').style.width=actabw+"px"; |
|
} |
|
} |
|
} |
|
} |
} |
|
$hostpicker .= '<label><input type="radio" name="posshosts" value="'. |
|
$host.'"'.$checked.' />'.$host.'</label> '; |
|
$count++; |
} |
} |
if ((chkh == 1) || (listwchange)) { |
|
var primaryheight = document.getElementById("LC_nav_bar").offsetHeight; |
return <<"ENDSWITCHJS"; |
var secondaryheight = document.getElementById("LC_secondary_menu").offsetHeight; |
|
var crumbsheight = document.getElementById("LC_breadcrumbs").offsetHeight; |
|
var dccidheight = document.getElementById("dccid").offsetHeight; |
|
|
|
var uploadresultheight = 0; |
|
if (document.getElementById("uploadfileresult") != null) { |
|
uploadresultheight = document.getElementById("uploadfileresult").offsetHeight; |
|
} |
|
var tabbedheight = document.getElementById("tabbededitor").offsetHeight; |
|
var contenteditorheight = document.getElementById("contenteditor").offsetHeight; |
|
var scrollboxheight = scrollbox.offsetHeight; |
|
var scrollboxscrollheight = scrollbox.scrollHeight; |
|
var freevspace = vph-(primaryheight+secondaryheight+crumbsheight+dccidheight+uploadresultheight+tabbedheight+contenteditorheight); |
|
|
|
var minvscrollbox = 200; |
|
var offsetv = 20; |
|
var newscrollboxheight; |
|
if (freevspace < 0) { |
|
newscrollboxheight = scrollboxheight+freevspace-offsetv; |
|
if (newscrollboxheight < minvscrollbox) { |
|
newscrollboxheight = minvscrollbox; |
|
} |
|
scrollbox.style.height = newscrollboxheight + "px"; |
|
} else { |
|
if (scrollboxscrollheight > scrollboxheight) { |
|
if (freevspace > offsetv) { |
|
newscrollboxheight = scrollboxheight+freevspace-offsetv; |
|
if (newscrollboxheight < minvscrollbox) { |
|
newscrollboxheight = minvscrollbox; |
|
} |
|
scrollbox.style.height = newscrollboxheight+"px"; |
|
} |
|
} |
|
} |
|
scrollboxheight = scrollbox.offsetHeight; |
|
var contentlistheight = document.getElementById("contentlist").offsetHeight; |
|
|
|
if (scrollboxscrollheight <= scrollboxheight) { |
function dump_needs_switchserver(url) { |
if ((contentlistheight+offsetv)<scrollboxheight) { |
if (url!='' && url!= null) { |
newscrollheight = contentlistheight+offsetv; |
if (confirm("$lt{'dump'}\\n$lt{'swit'}")) { |
scrollbox.style.height = newscrollheight+"px"; |
go(url); |
} |
|
} |
} |
} |
} |
return; |
return; |
} |
} |
|
|
function resizeContentEditor() { |
function choose_switchserver_window() { |
var timer; |
newWindow = window.open('','ChooseServer','height=400,width=500,scrollbars=yes') |
clearTimeout(timer) |
newWindow.document.open(); |
timer=setTimeout('resize_contentdiv("contentscroll","1","1")',500); |
newWindow.document.writeln('$startpage'); |
|
newWindow.document.write('<h3>$lt{'duco'}<\\/h3>\\n'+ |
|
'<p>$lt{'yone'}<\\/p>\\n'+ |
|
'<div class="LC_left_float"><fieldset><legend>$lt{'chos'}<\\/legend>\\n'+ |
|
'<form name="setserver" method="post" action="" \\/>\\n'+ |
|
'$hostpicker\\n'+ |
|
'<br \\/><br \\/>\\n'+ |
|
'<input type="button" name="makeswitch" value="$lt{'swit'}" '+ |
|
'onclick="write_switchserver();" \\/>\\n'+ |
|
'<\\/form><\\/fieldset><\\/div><br clear="all" \\/>\\n'); |
|
newWindow.document.writeln('$endpage'); |
|
newWindow.document.close(); |
|
newWindow.focus(); |
|
} |
|
|
|
ENDSWITCHJS |
|
} |
|
|
|
sub makedocslogform { |
|
my ($formelems,$docslog) = @_; |
|
return <<"LOGSFORM"; |
|
<form action="/adm/coursedocs" method="post" name="docslogform"> |
|
<input type="hidden" name="docslog" value="$docslog" /> |
|
$formelems |
|
</form> |
|
LOGSFORM |
} |
} |
|
|
ENDRESIZESCRIPT |
sub makesimpleeditform { |
return; |
my ($formelems) = @_; |
|
return <<"SIMPFORM"; |
|
<form name="simpleedit" method="post" action="/adm/coursedocs"> |
|
<input type="hidden" name="importdetail" value="" /> |
|
$formelems |
|
</form> |
|
SIMPFORM |
} |
} |
|
|
1; |
1; |
Line 3754 sets @resources - array with the resourc
|
Line 4749 sets @resources - array with the resourc
|
|
|
Return hash with valid author names |
Return hash with valid author names |
|
|
=item dumpbutton() |
|
|
|
Generate "dump" button |
|
|
|
=item clean() |
=item clean() |
|
|
=item dumpcourse() |
=item dumpcourse() |
|
|
Actually dump course |
Actually dump course |
|
|
|
|
=item exportbutton() |
|
|
|
Generate "export" button |
|
|
|
=item group_import() |
=item group_import() |
|
|
Imports the given (name, url) resources into the course |
Imports the given (name, url) resources into the course |
Line 3786 Generate "dump" button
|
Line 4772 Generate "dump" button
|
|
|
=item do_paste_from_buffer() |
=item do_paste_from_buffer() |
|
|
|
=item get_newmap_url() |
|
|
|
=item dbcopy() |
|
|
|
=item uniqueness_check() |
|
|
|
=item contained_map_check() |
|
|
|
=item reinit_role() |
|
|
|
=item url_paste_fixups() |
|
|
|
=item apply_fixups() |
|
|
|
=item copy_dependencies() |
|
|
=item update_parameter() |
=item update_parameter() |
|
|
=item handle_edit_cmd() |
=item handle_edit_cmd() |
Line 3798 Generate "dump" button
|
Line 4800 Generate "dump" button
|
|
|
=item is_supplemental_title() |
=item is_supplemental_title() |
|
|
=item parse_supplemental_title() |
|
|
|
=item entryline() |
=item entryline() |
|
|
=item tiehash() |
=item tiehash() |
Line 3828 Check Versions
|
Line 4828 Check Versions
|
|
|
Breadcrumbs for special functions |
Breadcrumbs for special functions |
|
|
|
=item create_list_elements() |
|
|
|
=item create_form_ul() |
|
|
|
=item startContentScreen() |
|
|
|
=item endContentScreen() |
|
|
|
=item supplemental_base() |
|
|
|
=item embedded_form_elems() |
|
|
|
=item embedded_destination() |
|
|
|
=item return_to_editor() |
|
|
|
=item decompression_info() |
|
|
|
=item decompression_phase_one() |
|
|
|
=item decompression_phase_two() |
|
|
|
=item remove_archive() |
|
|
|
=item generate_admin_menu() |
|
|
|
=item generate_edit_table() |
|
|
|
=item editing_js() |
|
|
|
=item history_tab_js() |
|
|
|
=item inject_data_js() |
|
|
|
=item dump_switchserver_js() |
|
|
|
=item resize_scrollbox_js() |
|
|
|
=item makedocslogform() |
|
|
|
=item makesimpleeditform() |
|
|
=back |
=back |
|
|
=cut |
=cut |