version 1.328, 2009/01/28 13:24:54
|
version 1.437, 2010/08/25 00:12:38
|
Line 1
|
Line 1
|
# The LearningOnline Network
|
# The LearningOnline Network |
# Documents
|
# Documents |
#
|
# |
# $Id$
|
# $Id$ |
#
|
# |
# Copyright Michigan State University Board of Trustees
|
# Copyright Michigan State University Board of Trustees |
#
|
# |
# This file is part of the LearningOnline Network with CAPA (LON-CAPA).
|
# This file is part of the LearningOnline Network with CAPA (LON-CAPA). |
#
|
# |
# LON-CAPA is free software; you can redistribute it and/or modify
|
# LON-CAPA is free software; you can redistribute it and/or modify |
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by |
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation; either version 2 of the License, or |
# (at your option) any later version.
|
# (at your option) any later version. |
#
|
# |
# LON-CAPA is distributed in the hope that it will be useful,
|
# LON-CAPA is distributed in the hope that it will be useful, |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
# GNU General Public License for more details.
|
# GNU General Public License for more details. |
#
|
# |
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License |
# along with LON-CAPA; if not, write to the Free Software
|
# along with LON-CAPA; if not, write to the Free Software |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
#
|
# |
# /home/httpd/html/adm/gpl.txt
|
# /home/httpd/html/adm/gpl.txt |
#
|
# |
# http://www.lon-capa.org/
|
# http://www.lon-capa.org/ |
#
|
# |
|
|
|
|
|
|
package Apache::londocs;
|
package Apache::londocs; |
|
|
use strict;
|
use strict; |
use Apache::Constants qw(:common :http);
|
use Apache::Constants qw(:common :http); |
use Apache::imsexport;
|
use Apache::imsexport; |
use Apache::lonnet;
|
use Apache::lonnet; |
use Apache::loncommon;
|
use Apache::loncommon; |
use LONCAPA::map();
|
use Apache::lonhtmlcommon; |
use Apache::lonratedt();
|
use LONCAPA::map(); |
use Apache::lonxml;
|
use Apache::lonratedt(); |
use Apache::lonclonecourse;
|
use Apache::lonxml; |
use Apache::lonnavmaps;
|
use Apache::lonclonecourse; |
use HTML::Entities;
|
use Apache::lonnavmaps; |
use GDBM_File;
|
use HTML::Entities; |
use Apache::lonlocal;
|
use GDBM_File; |
use Cwd;
|
use Apache::lonlocal; |
use LONCAPA qw(:DEFAULT :match);
|
use Cwd; |
|
use LONCAPA qw(:DEFAULT :match); |
my $iconpath;
|
|
|
my $iconpath; |
my %hash;
|
|
|
my %hash; |
my $hashtied;
|
|
my %alreadyseen=();
|
my $hashtied; |
|
my %alreadyseen=(); |
my $hadchanges;
|
|
|
my $hadchanges; |
|
|
my %help=();
|
|
|
my %help=(); |
|
|
sub mapread {
|
|
my ($coursenum,$coursedom,$map)=@_;
|
sub mapread { |
return
|
my ($coursenum,$coursedom,$map)=@_; |
&LONCAPA::map::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
|
return |
$map);
|
&LONCAPA::map::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'. |
}
|
$map); |
|
} |
sub storemap {
|
|
my ($coursenum,$coursedom,$map)=@_;
|
sub storemap { |
my ($outtext,$errtext)=
|
my ($coursenum,$coursedom,$map)=@_; |
&LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
|
my ($outtext,$errtext)= |
$map,1);
|
&LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'. |
if ($errtext) { return ($errtext,2); }
|
$map,1); |
|
if ($errtext) { return ($errtext,2); } |
$hadchanges=1;
|
|
return ($errtext,0);
|
$hadchanges=1; |
}
|
return ($errtext,0); |
|
} |
|
|
|
|
sub authorhosts {
|
|
my %outhash=();
|
sub authorhosts { |
my $home=0;
|
my %outhash=(); |
my $other=0;
|
my $home=0; |
foreach my $key (keys(%env)) {
|
my $other=0; |
if ($key=~/^user\.role\.(au|ca)\.(.+)$/) {
|
foreach my $key (keys(%env)) { |
my $role=$1;
|
if ($key=~/^user\.role\.(au|ca)\.(.+)$/) { |
my $realm=$2;
|
my $role=$1; |
my ($start,$end)=split(/\./,$env{$key});
|
my $realm=$2; |
if (($start) && ($start>time)) { next; }
|
my ($start,$end)=split(/\./,$env{$key}); |
if (($end) && (time>$end)) { next; }
|
if (($start) && ($start>time)) { next; } |
my ($ca,$cd);
|
if (($end) && (time>$end)) { next; } |
if ($1 eq 'au') {
|
my ($ca,$cd); |
$ca=$env{'user.name'};
|
if ($1 eq 'au') { |
$cd=$env{'user.domain'};
|
$ca=$env{'user.name'}; |
} else {
|
$cd=$env{'user.domain'}; |
($cd,$ca)=($realm=~/^\/($match_domain)\/($match_username)$/);
|
} else { |
}
|
($cd,$ca)=($realm=~/^\/($match_domain)\/($match_username)$/); |
my $allowed=0;
|
} |
my $myhome=&Apache::lonnet::homeserver($ca,$cd);
|
my $allowed=0; |
my @ids=&Apache::lonnet::current_machine_ids();
|
my $myhome=&Apache::lonnet::homeserver($ca,$cd); |
foreach my $id (@ids) { if ($id eq $myhome) { $allowed=1; } }
|
my @ids=&Apache::lonnet::current_machine_ids(); |
if ($allowed) {
|
foreach my $id (@ids) { if ($id eq $myhome) { $allowed=1; } } |
$home++;
|
if ($allowed) { |
$outhash{'home_'.$ca.'@'.$cd}=1;
|
$home++; |
} else {
|
$outhash{'home_'.$ca.'@'.$cd}=1; |
$outhash{'otherhome_'.$ca.'@'.$cd}=$myhome;
|
} else { |
$other++;
|
$outhash{'otherhome_'.$ca.'@'.$cd}=$myhome; |
}
|
$other++; |
}
|
} |
}
|
} |
return ($home,$other,%outhash);
|
} |
}
|
return ($home,$other,%outhash); |
|
} |
|
|
sub dumpbutton {
|
|
my ($home,$other,%outhash)=&authorhosts();
|
sub dumpbutton { |
my $type = &Apache::loncommon::course_type();
|
my ($home,$other,%outhash)=&authorhosts(); |
if ($home+$other==0) { return ''; }
|
my $crstype = &Apache::loncommon::course_type(); |
if ($home) {
|
if ($home+$other==0) { return ''; } |
return '<input type="submit" name="dumpcourse" value="'.
|
if ($home) { |
&mt('Dump '.$type.' DOCS to Construction Space').'" />'.
|
my $link = |
&Apache::loncommon::help_open_topic('Docs_Dump_Course_Docs');
|
"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"dumpcourse\", \"" |
} else {
|
.&mt('Dump '.$crstype.' Documents to Construction Space') |
return '<div>'.
|
."\")'>" |
&mt('Dump '.$type.
|
.&mt('Dump '.$crstype.' Documents to Construction Space') |
' DOCS to Construction Space: available on other servers').
|
.'</a>'; |
'</div>';
|
return |
}
|
$link.' ' |
}
|
.&Apache::loncommon::help_open_topic('Docs_Dump_Course_Docs') |
|
.'<br />'; |
sub clean {
|
} else { |
my ($title)=@_;
|
return |
$title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs;
|
&mt('Dump '.$crstype.' Documents to Construction Space: available on other servers'); |
return $title;
|
} |
}
|
} |
|
|
|
sub clean { |
|
my ($title)=@_; |
sub dumpcourse {
|
$title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs; |
my ($r) = @_;
|
return $title; |
my $type = &Apache::loncommon::course_type();
|
} |
$r->print(&Apache::loncommon::start_page('Dump '.$type.' DOCS to Construction Space').
|
|
'<form name="dumpdoc" method="post">');
|
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Dump '.$type.' DOCS to Construction Space'));
|
|
my ($home,$other,%outhash)=&authorhosts();
|
sub dumpcourse { |
unless ($home) { return ''; }
|
my ($r) = @_; |
my $origcrsid=$env{'request.course.id'};
|
my $crstype = &Apache::loncommon::course_type(); |
my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid);
|
$r->print(&Apache::loncommon::start_page('Dump '.$crstype.' Documents to Construction Space'). |
if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {
|
'<form name="dumpdoc" action="" method="post">'); |
# Do the dumping
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Dump '.$crstype.' Documents to Construction Space')); |
unless ($outhash{'home_'.$env{'form.authorspace'}}) { return ''; }
|
my ($home,$other,%outhash)=&authorhosts(); |
my ($ca,$cd)=split(/\@/,$env{'form.authorspace'});
|
unless ($home) { return ''; } |
$r->print('<h3>'.&mt('Copying Files').'</h3>');
|
my $origcrsid=$env{'request.course.id'}; |
my $title=$env{'form.authorfolder'};
|
my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid); |
$title=&clean($title);
|
if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) { |
my %replacehash=();
|
# Do the dumping |
foreach my $key (keys(%env)) {
|
unless ($outhash{'home_'.$env{'form.authorspace'}}) { return ''; } |
if ($key=~/^form\.namefor\_(.+)/) {
|
my ($ca,$cd)=split(/\@/,$env{'form.authorspace'}); |
$replacehash{$1}=$env{$key};
|
$r->print('<h3>'.&mt('Copying Files').'</h3>'); |
}
|
my $title=$env{'form.authorfolder'}; |
}
|
$title=&clean($title); |
my $crs='/uploaded/'.$env{'request.course.id'}.'/';
|
my %replacehash=(); |
$crs=~s/\_/\//g;
|
foreach my $key (keys(%env)) { |
foreach my $item (keys(%replacehash)) {
|
if ($key=~/^form\.namefor\_(.+)/) { |
my $newfilename=$title.'/'.$replacehash{$item};
|
$replacehash{$1}=$env{$key}; |
$newfilename=~s/\.(\w+)$//;
|
} |
my $ext=$1;
|
} |
$newfilename=&clean($newfilename);
|
my $crs='/uploaded/'.$env{'request.course.id'}.'/'; |
$newfilename.='.'.$ext;
|
$crs=~s/\_/\//g; |
my @dirs=split(/\//,$newfilename);
|
foreach my $item (keys(%replacehash)) { |
my $path='/home/'.$ca.'/public_html';
|
my $newfilename=$title.'/'.$replacehash{$item}; |
my $makepath=$path;
|
$newfilename=~s/\.(\w+)$//; |
my $fail=0;
|
my $ext=$1; |
for (my $i=0;$i<$#dirs;$i++) {
|
$newfilename=&clean($newfilename); |
$makepath.='/'.$dirs[$i];
|
$newfilename.='.'.$ext; |
unless (-e $makepath) {
|
my @dirs=split(/\//,$newfilename); |
unless(mkdir($makepath,0777)) { $fail=1; }
|
my $path='/home/'.$ca.'/public_html'; |
}
|
my $makepath=$path; |
}
|
my $fail=0; |
$r->print('<br /><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt>: ');
|
for (my $i=0;$i<$#dirs;$i++) { |
if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) {
|
$makepath.='/'.$dirs[$i]; |
if ($item=~/\.(sequence|page|html|htm|xml|xhtml)$/) {
|
unless (-e $makepath) { |
print $fh &Apache::lonclonecourse::rewritefile(
|
unless(mkdir($makepath,0777)) { $fail=1; } |
&Apache::lonclonecourse::readfile($env{'request.course.id'},$item),
|
} |
(%replacehash,$crs => '')
|
} |
);
|
$r->print('<br /><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt>: '); |
} else {
|
if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) { |
print $fh
|
if ($item=~/\.(sequence|page|html|htm|xml|xhtml)$/) { |
&Apache::lonclonecourse::readfile($env{'request.course.id'},$item);
|
print $fh &Apache::lonclonecourse::rewritefile( |
}
|
&Apache::lonclonecourse::readfile($env{'request.course.id'},$item), |
$fh->close();
|
(%replacehash,$crs => '') |
} else {
|
); |
$fail=1;
|
} else { |
}
|
print $fh |
if ($fail) {
|
&Apache::lonclonecourse::readfile($env{'request.course.id'},$item); |
$r->print('<span class="LC_error">'.&mt('fail').'</span>');
|
} |
} else {
|
$fh->close(); |
$r->print('<span class="LC_success">'.&mt('ok').'</span>');
|
} else { |
}
|
$fail=1; |
}
|
} |
} else {
|
if ($fail) { |
# Input form
|
$r->print('<span class="LC_error">'.&mt('fail').'</span>'); |
unless ($home==1) {
|
} else { |
$r->print(
|
$r->print('<span class="LC_success">'.&mt('ok').'</span>'); |
'<h3>'.&mt('Select the Construction Space').'</h3><select name="authorspace">');
|
} |
}
|
} |
foreach my $key (sort(keys(%outhash))) {
|
} else { |
if ($key=~/^home_(.+)$/) {
|
# Input form |
if ($home==1) {
|
unless ($home==1) { |
$r->print(
|
$r->print( |
'<input type="hidden" name="authorspace" value="'.$1.'" />');
|
'<h3>'.&mt('Select the Construction Space').'</h3><select name="authorspace">'); |
} else {
|
} |
$r->print('<option value="'.$1.'">'.$1.' - '.
|
foreach my $key (sort(keys(%outhash))) { |
&Apache::loncommon::plainname(split(/\@/,$1)).'</option>');
|
if ($key=~/^home_(.+)$/) { |
}
|
if ($home==1) { |
}
|
$r->print( |
}
|
'<input type="hidden" name="authorspace" value="'.$1.'" />'); |
unless ($home==1) {
|
} else { |
$r->print('</select>');
|
$r->print('<option value="'.$1.'">'.$1.' - '. |
}
|
&Apache::loncommon::plainname(split(/\@/,$1)).'</option>'); |
my $title=$origcrsdata{'description'};
|
} |
$title=~s/[\/\s]+/\_/gs;
|
} |
$title=&clean($title);
|
} |
$r->print('<h3>'.&mt('Folder in Construction Space').'</h3>'
|
unless ($home==1) { |
.'<input type="text" size="50" name="authorfolder" value="'.$title.'" /><br />');
|
$r->print('</select>'); |
&tiehash();
|
} |
$r->print('<h3>'.&mt('Filenames in Construction Space').'</h3>'
|
my $title=$origcrsdata{'description'}; |
.&Apache::loncommon::start_data_table()
|
$title=~s/[\/\s]+/\_/gs; |
.&Apache::loncommon::start_data_table_header_row()
|
$title=&clean($title); |
.'<th>'.&mt('Internal Filename').'</th>'
|
$r->print('<h3>'.&mt('Folder in Construction Space').'</h3>' |
.'<th>'.&mt('Title').'</th>'
|
.'<input type="text" size="50" name="authorfolder" value="'.$title.'" /><br />'); |
.'<th>'.&mt('Save as ...').'</th>'
|
&tiehash(); |
.&Apache::loncommon::end_data_table_header_row());
|
$r->print('<h3>'.&mt('Filenames in Construction Space').'</h3>' |
foreach my $file (&Apache::lonclonecourse::crsdirlist($origcrsid,'userfiles')) {
|
.&Apache::loncommon::start_data_table() |
$r->print(&Apache::loncommon::start_data_table_row()
|
.&Apache::loncommon::start_data_table_header_row() |
.'<td>'.$file.'</td>');
|
.'<th>'.&mt('Internal Filename').'</th>' |
my ($ext)=($file=~/\.(\w+)$/);
|
.'<th>'.&mt('Title').'</th>' |
my $title=$hash{'title_'.$hash{
|
.'<th>'.&mt('Save as ...').'</th>' |
'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$file}};
|
.&Apache::loncommon::end_data_table_header_row()); |
$r->print('<td>'.($title?$title:' ').'</td>');
|
foreach my $file (&Apache::lonclonecourse::crsdirlist($origcrsid,'userfiles')) { |
if (!$title) {
|
$r->print(&Apache::loncommon::start_data_table_row() |
$title=$file;
|
.'<td>'.$file.'</td>'); |
} else {
|
my ($ext)=($file=~/\.(\w+)$/); |
$title=~s|/|_|g;
|
my $title=$hash{'title_'.$hash{ |
}
|
'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$file}}; |
$title=~s/\.(\w+)$//;
|
$r->print('<td>'.($title?$title:' ').'</td>'); |
$title=&clean($title);
|
if (!$title) { |
$title.='.'.$ext;
|
$title=$file; |
$r->print("\n<td><input type='text' size='60' name='namefor_".$file."' value='".$title."' /></td>"
|
} else { |
.&Apache::loncommon::end_data_table_row());
|
$title=~s|/|_|g; |
}
|
} |
$r->print(&Apache::loncommon::end_data_table());
|
$title=~s/\.(\w+)$//; |
&untiehash();
|
$title=&clean($title); |
$r->print(
|
$title.='.'.$ext; |
'<p><input type="submit" name="dumpcourse" value="'.&mt("Dump $type DOCS").'" /></p></form>');
|
$r->print("\n<td><input type='text' size='60' name='namefor_".$file."' value='".$title."' /></td>" |
}
|
.&Apache::loncommon::end_data_table_row()); |
}
|
} |
|
$r->print(&Apache::loncommon::end_data_table()); |
|
&untiehash(); |
|
$r->print( |
sub exportbutton {
|
'<p><input type="submit" name="dumpcourse" value="'.&mt("Dump $crstype Documents").'" /></p></form>'); |
my $type = &Apache::loncommon::course_type();
|
} |
return '<input type="submit" name="exportcourse" value="'.
|
} |
&mt('Export '.$type.' to IMS').'" />'.
|
|
&Apache::loncommon::help_open_topic('Docs_Export_Course_Docs');
|
|
}
|
|
|
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>". |
sub exportcourse {
|
&Apache::loncommon::help_open_topic('Docs_Export_Course_Docs').'<br />'; |
my $r=shift;
|
} |
my $type = &Apache::loncommon::course_type();
|
|
my %discussiontime = &Apache::lonnet::dump('discussiontimes',
|
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, $env{'course.'.$env{'request.course.id'}.'.num'});
|
|
my $numdisc = keys(%discussiontime);
|
sub exportcourse { |
my $navmap = Apache::lonnavmaps::navmap->new();
|
my $r=shift; |
if (!defined($navmap)) {
|
my $crstype = &Apache::loncommon::course_type(); |
$r->print(&Apache::loncommon::start_page('Export '.lc($type).' to IMS content package').
|
my %discussiontime = &Apache::lonnet::dump('discussiontimes', |
'<h2>IMS Export Failed</h2>'.
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, $env{'course.'.$env{'request.course.id'}.'.num'}); |
'<div class="LC_error">'.
|
my $numdisc = keys(%discussiontime); |
&mt('Unable to retrieve information about course contents').
|
my $navmap = Apache::lonnavmaps::navmap->new(); |
'</div><a href="/adm/coursedocs">'.&mt('Return to Course Editor').'</a>');
|
if (!defined($navmap)) { |
&Apache::lonnet::logthis('IMS export failed - could not create navmap object in '.lc($type).':'.$env{'request.course.id'});
|
$r->print(&Apache::loncommon::start_page('Export '.$crstype.' to IMS Package'). |
return;
|
'<h2>'.&mt('IMS Export Failed').'</h2>'. |
}
|
'<div class="LC_error">'); |
my $it=$navmap->getIterator(undef,undef,undef,1,undef,undef);
|
if ($crstype eq 'Community') { |
my $curRes;
|
$r->print(&mt('Unable to retrieve information about community contents')); |
my $outcome;
|
} else { |
|
$r->print(&mt('Unable to retrieve information about course contents')); |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
|
} |
['finishexport']);
|
$r->print('</div><a href="/adm/coursedocs">'); |
if ($env{'form.finishexport'}) {
|
if ($crstype eq 'Community') { |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
|
$r->print(&mt('Return to Community Editor')); |
['archive','discussion']);
|
} else { |
|
$r->print(&mt('Return to Course Editor')); |
my @exportitems = &Apache::loncommon::get_env_multiple('form.archive');
|
} |
my @discussions = &Apache::loncommon::get_env_multiple('form.discussion');
|
$r->print('</a>'); |
if (@exportitems == 0 && @discussions == 0) {
|
&Apache::lonnet::logthis('IMS export failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'}); |
$outcome = '<br />As you did not select any content items or discussions for export, an IMS package has not been created. Please <a href="javascript:history.go(-1)">go back</a> to select either content items or discussions for export';
|
return; |
} else {
|
} |
my $now = time;
|
my $it=$navmap->getIterator(undef,undef,undef,1,undef,undef); |
my %symbs;
|
my $curRes; |
my $manifestok = 0;
|
my $outcome; |
my $imsresources;
|
|
my $tempexport;
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
my $copyresult;
|
['finishexport']); |
my $ims_manifest = &create_ims_store($now,\$manifestok,\$outcome,\$tempexport);
|
if ($env{'form.finishexport'}) { |
if ($manifestok) {
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&build_package($now,$navmap,\@exportitems,\@discussions,\$outcome,$tempexport,\$copyresult,$ims_manifest);
|
['archive','discussion']); |
close($ims_manifest);
|
|
|
my @exportitems = &Apache::loncommon::get_env_multiple('form.archive'); |
#Create zip file in prtspool
|
my @discussions = &Apache::loncommon::get_env_multiple('form.discussion'); |
my $imszipfile = '/prtspool/'.
|
if (@exportitems == 0 && @discussions == 0) { |
$env{'user.name'}.'_'.$env{'user.domain'}.'_'.
|
$outcome = |
time.'_'.rand(1000000000).'.zip';
|
'<p class="LC_warning">' |
my $cwd = &Cwd::getcwd();
|
.&mt('As you did not select any content items or discussions' |
my $imszip = '/home/httpd/'.$imszipfile;
|
.' for export, an IMS package has not been created.') |
chdir $tempexport;
|
.'</p>' |
open(OUTPUT, "zip -r $imszip * 2> /dev/null |");
|
.'<p>' |
close(OUTPUT);
|
.&mt('Please [_1]go back[_2] to select either content items' |
chdir $cwd;
|
.' or discussions for export.' |
$outcome .= &mt('Download the zip file from <a href="[_1]">IMS '.lc($type).' archive</a><br />',$imszipfile,);
|
,'<a href="javascript:history.go(-1)">' |
if ($copyresult) {
|
,'</a>') |
$outcome .= &mt('The following errors occurred during export - [_1]',$copyresult);
|
.'</p>'; |
}
|
} else { |
} else {
|
my $now = time; |
$outcome = '<br />'.&mt('Unfortunately you will not be able to retrieve an IMS archive of this posts at this time, because there was a problem creating a manifest file.').'<br />';
|
my %symbs; |
}
|
my $manifestok = 0; |
}
|
my $imsresources; |
$r->print(&Apache::loncommon::start_page('Export '.lc($type).' to IMS content package'));
|
my $tempexport; |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Export '.lc($type).' to IMS content package'));
|
my $copyresult; |
$r->print($outcome);
|
my $ims_manifest = &create_ims_store($now,\$manifestok,\$outcome,\$tempexport); |
$r->print(&Apache::loncommon::end_page());
|
if ($manifestok) { |
} else {
|
&build_package($now,$navmap,\@exportitems,\@discussions,\$outcome,$tempexport,\$copyresult,$ims_manifest); |
my $display;
|
close($ims_manifest); |
$display = '<form name="exportdoc" method="post">'."\n";
|
|
$display .= &mt('Choose which items you wish to export from your '.$type.'.<br /><br />');
|
#Create zip file in prtspool |
$display .= '<table border="0" cellspacing="0" cellpadding="3">'.
|
my $imszipfile = '/prtspool/'. |
'<tr><td><fieldset><legend> <b>Content items</b></legend>'.
|
$env{'user.name'}.'_'.$env{'user.domain'}.'_'. |
'<input type="button" value="check all" '.
|
time.'_'.rand(1000000000).'.zip'; |
'onclick="javascript:checkAll(document.exportdoc.archive)" />'.
|
my $cwd = &Cwd::getcwd(); |
' <input type="button" value="uncheck all"'.
|
my $imszip = '/home/httpd/'.$imszipfile; |
' onclick="javascript:uncheckAll(document.exportdoc.archive)" /></fieldset></td>'.
|
chdir $tempexport; |
'<td> </td><td> </td>'.
|
open(OUTPUT, "zip -r $imszip * 2> /dev/null |"); |
'<td align="right"><fieldset><legend> <b>Discussion posts'.
|
close(OUTPUT); |
'</b></legend><input type="button" value="check all"'.
|
chdir $cwd; |
' onclick="javascript:checkAll(document.exportdoc.discussion)" />'.
|
$outcome .= '<p>' |
' <input type="button" value="uncheck all"'.
|
.&mt('[_1]Your IMS package[_2] is ready for download.' |
' onclick="javascript:uncheckAll(document.exportdoc.discussion)" /></fieldset></td>'.
|
,'<a href="'.$imszipfile.'">','</a>') |
'</tr></table>';
|
.'</p>'; |
my $curRes;
|
if ($copyresult) { |
my $depth = 0;
|
$outcome .= '<p class="LC_error">' |
my $count = 0;
|
.&mt('The following errors occurred during export - [_1]' |
my $boards = 0;
|
,$copyresult) |
my $startcount = 5;
|
.'</p>'; |
my %parent = ();
|
} |
my %children = ();
|
} else { |
my $lastcontainer = $startcount;
|
$outcome = '<p class="LC_error">' |
my @bgcolors = ('#F6F6F6','#FFFFFF');
|
.&mt('Unfortunately you will not be able to retrieve' |
$display .= '<table cellspacing="0"><tr>'.
|
.' an IMS archive of your course at this time,' |
'<td><b>Export content item?<br /></b></td><td> </td><td align="right">'."\n";
|
.' because there was a problem creating a' |
if ($numdisc > 0) {
|
.' manifest file.') |
$display.='<b>Export discussion posts?</b>'."\n";
|
.'</p>' |
}
|
.'<p><a href="javascript:history.go(-1)">' |
$display.=' </td></tr>';
|
.&mt('Go Back') |
while ($curRes = $it->next()) {
|
.'</a></p>'; |
if (ref($curRes)) {
|
} |
$count ++;
|
} |
}
|
$r->print(&Apache::loncommon::start_page('Export '.$crstype.' to IMS Package')); |
if ($curRes == $it->BEGIN_MAP()) {
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('IMS Export')); |
$depth++;
|
$r->print($outcome); |
$parent{$depth} = $lastcontainer;
|
$r->print(&Apache::loncommon::end_page()); |
}
|
} else { |
if ($curRes == $it->END_MAP()) {
|
my $display='<form name="exportdoc" action="" method="post">'."\n". |
$depth--;
|
'<p>'. |
$lastcontainer = $parent{$depth};
|
&mt('Choose which items you wish to export from your '.$crstype.'.'). |
}
|
'</p>'. |
if (ref($curRes)) {
|
'<div class="LC_columnSection"><fieldset>'. |
my $symb = $curRes->symb();
|
'<legend>'.&mt('Content items').'</legend>'. |
my $ressymb = $symb;
|
'<input type="button" value="'.&mt('check all').'" '. |
if ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) {
|
'onclick="javascript:checkAll(document.exportdoc.archive)" />'. |
unless ($ressymb =~ m|adm/wrapper/adm|) {
|
' <input type="button" value="'.&mt('uncheck all').'"'. |
$ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';
|
' onclick="javascript:uncheckAll(document.exportdoc.archive)" /></fieldset>'; |
}
|
if ($numdisc > 0) { |
}
|
$display .= '<fieldset>'. |
my $color = $count%2;
|
'<legend>'.&mt('Discussion posts').'</legend>'. |
$display .='<tr bgcolor='.$bgcolors[$color].'><td>'."\n".
|
'<input type="button" value="'.&mt('check all').'"'. |
'<input type="checkbox" name="archive" value="'.$count.'" ';
|
' onclick="javascript:checkAll(document.exportdoc.discussion)" />'. |
if (($curRes->is_sequence()) || ($curRes->is_page())) {
|
' <input type="button" value="'.&mt('uncheck all').'"'. |
my $checkitem = $count + $boards + $startcount;
|
' onclick="javascript:uncheckAll(document.exportdoc.discussion)" />'. |
$display .= 'onClick="javascript:propagateCheck('."'$checkitem'".')"';
|
'</fieldset>'; |
}
|
} |
$display .= ' />'."\n";
|
$display .= '</div>'; |
for (my $i=0; $i<$depth; $i++) {
|
my $curRes; |
$display .= '<img src="/adm/lonIcons/whitespace1.gif" class="LC_docs_spacer" /><img src="/adm/lonIcons/whitespace1.gif" class="LC_docs_spacer" />'."\n";
|
my $depth = 0; |
}
|
my $count = 0; |
if ($curRes->is_sequence()) {
|
my $boards = 0; |
$display .= '<img src="/adm/lonIcons/navmap.folder.open.gif"> '."\n";
|
my $startcount = 5; |
$lastcontainer = $count + $startcount + $boards;
|
my %parent = (); |
} elsif ($curRes->is_page()) {
|
my %children = (); |
$display .= '<img src="/adm/lonIcons/navmap.page.open.gif"> '."\n";
|
my $lastcontainer = $startcount; |
$lastcontainer = $count + $startcount + $boards;
|
$display .= &Apache::loncommon::start_data_table() |
}
|
.&Apache::loncommon::start_data_table_header_row() |
my $currelem = $count+$boards+$startcount;
|
.'<th>'.&mt('Export content item?').'</th>'; |
$children{$parent{$depth}} .= $currelem.':';
|
if ($numdisc > 0) { |
$display .= ' '.$curRes->title().'</td>';
|
$display .= '<th>'.&mt('Export discussion posts?').'</th>'; |
if ($discussiontime{$ressymb} > 0) {
|
} |
$boards ++;
|
$display .= &Apache::loncommon::end_data_table_header_row(); |
$currelem = $count+$boards+$startcount;
|
while ($curRes = $it->next()) { |
$display .= '<td> </td><td align="right"><input type="checkbox" name="discussion" value="'.$count.'" /> </td>'."\n";
|
if (ref($curRes)) { |
} else {
|
$count ++; |
$display .= '<td colspan="2"> </td>'."\n";
|
} |
}
|
if ($curRes == $it->BEGIN_MAP()) { |
}
|
$depth++; |
}
|
$parent{$depth} = $lastcontainer; |
my $scripttag = qq|
|
} |
<script>
|
if ($curRes == $it->END_MAP()) { |
|
$depth--; |
function checkAll(field) {
|
$lastcontainer = $parent{$depth}; |
if (field.length > 0) {
|
} |
for (i = 0; i < field.length; i++) {
|
if (ref($curRes)) { |
field[i].checked = true ;
|
my $symb = $curRes->symb(); |
}
|
my $ressymb = $symb; |
} else {
|
if ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) { |
field.checked = true
|
unless ($ressymb =~ m|adm/wrapper/adm|) { |
}
|
$ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard'; |
}
|
} |
|
} |
function uncheckAll(field) {
|
my $currelem = $count+$boards+$startcount; |
if (field.length > 0) {
|
$display .= &Apache::loncommon::start_data_table_row() |
for (i = 0; i < field.length; i++) {
|
.'<td>'."\n" |
field[i].checked = false ;
|
.'<input type="checkbox" name="archive" value="'.$count.'" '; |
}
|
if (($curRes->is_sequence()) || ($curRes->is_page())) { |
} else {
|
$lastcontainer = $currelem; |
field.checked = false ;
|
$display .= 'onclick="javascript:propagateCheck('."'$currelem'".')"'; |
}
|
} |
}
|
$display .= ' />'."\n"; |
|
for (my $i=0; $i<$depth; $i++) { |
function propagateCheck(item) {
|
$display .= ('<img src="/adm/lonIcons/whitespace1.gif" class="LC_docs_spacer" alt="" />' x2)."\n"; |
if (document.exportdoc.elements[item].checked == true) {
|
} |
containerCheck(item)
|
if ($curRes->is_sequence()) { |
}
|
$display .= '<img src="/adm/lonIcons/navmap.folder.open.gif" alt="" /> '."\n"; |
}
|
} elsif ($curRes->is_page()) { |
|
$display .= '<img src="/adm/lonIcons/navmap.page.open.gif" alt="" /> '."\n"; |
function containerCheck(item) {
|
} |
document.exportdoc.elements[item].checked = true
|
$children{$parent{$depth}} .= $currelem.':'; |
var numitems = $count + $boards + $startcount
|
$display .= ' '.$curRes->title().'</td>'."\n"; |
var parents = new Array(numitems)
|
|
for (var i=$startcount; i<numitems; i++) {
|
# Existing discussion posts? |
parents[i] = new Array
|
if ($discussiontime{$ressymb} > 0) { |
}
|
$boards ++; |
|;
|
$display .= '<td align="right">' |
|
.'<input type="checkbox" name="discussion" value="'.$count.'" />' |
foreach my $container (sort { $a <=> $b } (keys(%children))) {
|
.'</td>'."\n"; |
my @contents = split(/:/,$children{$container});
|
} elsif ($numdisc > 0) { |
for (my $i=0; $i<@contents; $i ++) {
|
$display .= '<td> </td>'."\n"; |
$scripttag .= ' parents['.$container.']['.$i.'] = '.$contents[$i]."\n";
|
} |
}
|
$display .= &Apache::loncommon::end_data_table_row(); |
}
|
} |
|
} |
$scripttag .= qq|
|
$display .= &Apache::loncommon::end_data_table(); |
if (parents[item].length > 0) {
|
my $scripttag = qq| |
for (var j=0; j<parents[item].length; j++) {
|
<script type="text/javascript"> |
containerCheck(parents[item][j])
|
// <![CDATA[ |
}
|
function checkAll(field) { |
}
|
if (field.length > 0) { |
}
|
for (i = 0; i < field.length; i++) { |
|
field[i].checked = true ; |
</script>
|
} |
|;
|
} else { |
$r->print(&Apache::loncommon::start_page('Export '.lc($type).' to IMS content package',
|
field.checked = true |
$scripttag));
|
} |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Export '.lc($type).' to IMS content package'));
|
} |
$r->print($display.'</table>'.
|
|
'<p><input type="hidden" name="finishexport" value="1">'.
|
function uncheckAll(field) { |
'<input type="submit" name="exportcourse" value="'.
|
if (field.length > 0) { |
&mt('Export '.$type.' DOCS').'" /></p></form>');
|
for (i = 0; i < field.length; i++) { |
}
|
field[i].checked = false ; |
}
|
} |
|
} else { |
sub create_ims_store {
|
field.checked = false ; |
my ($now,$manifestok,$outcome,$tempexport) = @_;
|
} |
$$tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';
|
} |
my $ims_manifest;
|
|
if (!-e $$tempexport) {
|
function propagateCheck(item) { |
mkdir($$tempexport,0700);
|
if (document.exportdoc.elements[item].checked == true) { |
}
|
containerCheck(item) |
$$tempexport .= '/'.$now;
|
} |
if (!-e $$tempexport) {
|
} |
mkdir($$tempexport,0700);
|
|
}
|
function containerCheck(item) { |
$$tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'};
|
document.exportdoc.elements[item].checked = true |
if (!-e $$tempexport) {
|
var numitems = $count + $boards + $startcount |
mkdir($$tempexport,0700);
|
var parents = new Array(numitems) |
}
|
for (var i=$startcount; i<numitems; i++) { |
if (!-e "$$tempexport/resources") {
|
parents[i] = new Array |
mkdir("$$tempexport/resources",0700);
|
} |
}
|
|; |
# open manifest file
|
|
my $manifest = '/imsmanifest.xml';
|
foreach my $container (sort { $a <=> $b } (keys(%children))) { |
my $manifestfilename = $$tempexport.$manifest;
|
my @contents = split(/:/,$children{$container}); |
if ($ims_manifest = Apache::File->new('>'.$manifestfilename)) {
|
for (my $i=0; $i<@contents; $i ++) { |
$$manifestok=1;
|
$scripttag .= ' parents['.$container.']['.$i.'] = '.$contents[$i]."\n"; |
print $ims_manifest
|
} |
'<?xml version="1.0" encoding="UTF-8"?>'."\n".
|
} |
'<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"'.
|
|
' xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"'.
|
$scripttag .= qq| |
' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'.
|
if (parents[item].length > 0) { |
' identifier="MANIFEST-'.$env{'request.course.id'}.'-'.$now.'"'.
|
for (var j=0; j<parents[item].length; j++) { |
' xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1imscp_v1p1.xsd'.
|
containerCheck(parents[item][j]) |
' http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">'."\n".
|
} |
' <metadata>
|
} |
<schema></schema>
|
} |
<imsmd:lom>
|
// ]]> |
<imsmd:general>
|
</script> |
<imsmd:identifier>'.$env{'request.course.id'}.'</imsmd:identifier>
|
|; |
<imsmd:title>
|
$r->print(&Apache::loncommon::start_page('Export '.$crstype.' to IMS Package', |
<imsmd:langstring xml:lang="en">'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</imsmd:langstring>
|
$scripttag)); |
</imsmd:title>
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('IMS Export')); |
</imsmd:general>
|
$r->print($display. |
</imsmd:lom>
|
'<p><input type="hidden" name="finishexport" value="1" />'. |
</metadata>'."\n".
|
'<input type="submit" name="exportcourse" value="'. |
' <organizations default="ORG-'.$env{'request.course.id'}.'-'.$now.'">'."\n".
|
&mt('Export').'" /></p></form>'); |
' <organization identifier="ORG-'.$env{'request.course.id'}.'-'.$now.'"'.
|
} |
' structure="hierarchical">'."\n".
|
} |
' <title>'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</title>'
|
|
} else {
|
sub create_ims_store { |
$$outcome .= 'An error occurred opening the IMS manifest file.<br />'
|
my ($now,$manifestok,$outcome,$tempexport) = @_; |
;
|
$$tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports'; |
}
|
my $ims_manifest; |
return $ims_manifest;
|
if (!-e $$tempexport) { |
}
|
mkdir($$tempexport,0700); |
|
} |
sub build_package {
|
$$tempexport .= '/'.$now; |
my ($now,$navmap,$exportitems,$discussions,$outcome,$tempexport,$copyresult,$ims_manifest) = @_;
|
if (!-e $$tempexport) { |
# first iterator to look for dependencies
|
mkdir($$tempexport,0700); |
my $it = $navmap->getIterator(undef,undef,undef,1,undef,undef);
|
} |
my $curRes;
|
$$tempexport .= '/'.$env{'user.domain'}.'_'.$env{'user.name'}; |
my $count = 0;
|
if (!-e $$tempexport) { |
my $depth = 0;
|
mkdir($$tempexport,0700); |
my $lastcontainer = 0;
|
} |
my %parent = ();
|
if (!-e "$$tempexport/resources") { |
my @dependencies = ();
|
mkdir("$$tempexport/resources",0700); |
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
|
} |
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
|
# open manifest file |
while ($curRes = $it->next()) {
|
my $manifest = '/imsmanifest.xml'; |
if (ref($curRes)) {
|
my $manifestfilename = $$tempexport.$manifest; |
$count ++;
|
if ($ims_manifest = Apache::File->new('>'.$manifestfilename)) { |
}
|
$$manifestok=1; |
if ($curRes == $it->BEGIN_MAP()) {
|
print $ims_manifest |
$depth++;
|
'<?xml version="1.0" encoding="UTF-8"?>'."\n". |
$parent{$depth} = $lastcontainer;
|
'<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"'. |
}
|
' xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"'. |
if ($curRes == $it->END_MAP()) {
|
' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'. |
$depth--;
|
' identifier="MANIFEST-'.$env{'request.course.id'}.'-'.$now.'"'. |
$lastcontainer = $parent{$depth};
|
' xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1imscp_v1p1.xsd'. |
}
|
' http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">'."\n". |
if (ref($curRes)) {
|
' <metadata> |
if ($curRes->is_sequence() || $curRes->is_page()) {
|
<schema></schema> |
$lastcontainer = $count;
|
<imsmd:lom> |
}
|
<imsmd:general> |
if (grep(/^$count$/,@$exportitems)) {
|
<imsmd:identifier>'.$env{'request.course.id'}.'</imsmd:identifier> |
&get_dependencies($exportitems,\%parent,$depth,\@dependencies);
|
<imsmd:title> |
}
|
<imsmd:langstring xml:lang="en">'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</imsmd:langstring> |
}
|
</imsmd:title> |
}
|
</imsmd:general> |
# second iterator to build manifest and store resources
|
</imsmd:lom> |
$it = $navmap->getIterator(undef,undef,undef,1,undef,undef);
|
</metadata>'."\n". |
$depth = 0;
|
' <organizations default="ORG-'.$env{'request.course.id'}.'-'.$now.'">'."\n". |
my $prevdepth;
|
' <organization identifier="ORG-'.$env{'request.course.id'}.'-'.$now.'"'. |
$count = 0;
|
' structure="hierarchical">'."\n". |
my $imsresources;
|
' <title>'.$env{'course.'.$env{'request.course.id'}.'.description'}.'</title>' |
my $pkgdepth;
|
} else { |
while ($curRes = $it->next()) {
|
$$outcome .= 'An error occurred opening the IMS manifest file.<br />' |
if ($curRes == $it->BEGIN_MAP()) {
|
; |
$prevdepth = $depth;
|
} |
$depth++;
|
return $ims_manifest; |
}
|
} |
if ($curRes == $it->END_MAP()) {
|
|
$prevdepth = $depth;
|
sub build_package { |
$depth--;
|
my ($now,$navmap,$exportitems,$discussions,$outcome,$tempexport,$copyresult,$ims_manifest) = @_; |
}
|
# first iterator to look for dependencies |
|
my $it = $navmap->getIterator(undef,undef,undef,1,undef,undef); |
if (ref($curRes)) {
|
my $curRes; |
$count ++;
|
my $count = 0; |
if ((grep(/^$count$/,@$exportitems)) || (grep(/^$count$/,@dependencies))) {
|
my $depth = 0; |
my $symb = $curRes->symb();
|
my $lastcontainer = 0; |
my $isvisible = 'true';
|
my %parent = (); |
my $resourceref;
|
my @dependencies = (); |
if ($curRes->randomout()) {
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
$isvisible = 'false';
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
}
|
while ($curRes = $it->next()) { |
unless ($curRes->is_sequence()) {
|
if (ref($curRes)) { |
$resourceref = 'identifierref="RES-'.$env{'request.course.id'}.'-'.$count.'"';
|
$count ++; |
}
|
} |
my $step = $prevdepth - $depth;
|
if ($curRes == $it->BEGIN_MAP()) { |
if (($step >= 0) && ($count > 1)) {
|
$depth++; |
while ($step >= 0) {
|
$parent{$depth} = $lastcontainer; |
print $ims_manifest "\n".' </item>'."\n";
|
} |
$step --;
|
if ($curRes == $it->END_MAP()) { |
}
|
$depth--; |
}
|
$lastcontainer = $parent{$depth}; |
$prevdepth = $depth;
|
} |
|
if (ref($curRes)) { |
my $itementry =
|
if ($curRes->is_sequence() || $curRes->is_page()) { |
'<item identifier="ITEM-'.$env{'request.course.id'}.'-'.$count.
|
$lastcontainer = $count; |
'" isvisible="'.$isvisible.'" '.$resourceref.'>'.
|
} |
'<title>'.$curRes->title().'</title>';
|
if (grep(/^$count$/,@$exportitems)) { |
print $ims_manifest "\n".$itementry;
|
&get_dependencies($exportitems,\%parent,$depth,\@dependencies); |
|
} |
unless ($curRes->is_sequence()) {
|
} |
my $content_file;
|
} |
my @hrefs = ();
|
# second iterator to build manifest and store resources |
&process_content($count,$curRes,$cdom,$cnum,$symb,\$content_file,\@hrefs,$copyresult,$tempexport);
|
$it = $navmap->getIterator(undef,undef,undef,1,undef,undef); |
if ($content_file) {
|
$depth = 0; |
$imsresources .= "\n".
|
my $prevdepth; |
' <resource identifier="RES-'.$env{'request.course.id'}.'-'.$count.
|
$count = 0; |
'" type="webcontent" href="'.$content_file.'">'."\n".
|
my $imsresources; |
' <file href="'.$content_file.'" />'."\n";
|
my $pkgdepth; |
foreach my $item (@hrefs) {
|
while ($curRes = $it->next()) { |
$imsresources .=
|
if ($curRes == $it->BEGIN_MAP()) { |
' <file href="'.$item.'" />'."\n";
|
$prevdepth = $depth; |
}
|
$depth++; |
if (grep(/^$count$/,@$discussions)) {
|
} |
my $ressymb = $symb;
|
if ($curRes == $it->END_MAP()) { |
my $mode;
|
$prevdepth = $depth; |
if ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) {
|
$depth--; |
unless ($ressymb =~ m|adm/wrapper/adm|) {
|
} |
$ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';
|
|
}
|
if (ref($curRes)) { |
$mode = 'board';
|
$count ++; |
}
|
if ((grep(/^$count$/,@$exportitems)) || (grep(/^$count$/,@dependencies))) { |
my %extras = (
|
my $symb = $curRes->symb(); |
caller => 'imsexport',
|
my $isvisible = 'true'; |
tempexport => $tempexport.'/resources',
|
my $resourceref; |
count => $count
|
if ($curRes->randomout()) { |
);
|
$isvisible = 'false'; |
my $discresult = &Apache::lonfeedback::list_discussion($mode,undef,$ressymb,\%extras);
|
} |
}
|
unless ($curRes->is_sequence()) { |
$imsresources .= ' </resource>'."\n";
|
$resourceref = 'identifierref="RES-'.$env{'request.course.id'}.'-'.$count.'"'; |
}
|
} |
}
|
my $step = $prevdepth - $depth; |
$pkgdepth = $depth;
|
if (($step >= 0) && ($count > 1)) { |
}
|
while ($step >= 0) { |
}
|
print $ims_manifest "\n".' </item>'."\n"; |
}
|
$step --; |
while ($pkgdepth > 0) {
|
} |
print $ims_manifest " </item>\n";
|
} |
$pkgdepth --;
|
$prevdepth = $depth; |
}
|
|
my $resource_text = qq|
|
my $itementry = |
</organization>
|
'<item identifier="ITEM-'.$env{'request.course.id'}.'-'.$count. |
</organizations>
|
'" isvisible="'.$isvisible.'" '.$resourceref.'>'. |
<resources>
|
'<title>'.$curRes->title().'</title>'; |
$imsresources
|
print $ims_manifest "\n".$itementry; |
</resources>
|
|
</manifest>
|
unless ($curRes->is_sequence()) { |
|;
|
my $content_file; |
print $ims_manifest $resource_text;
|
my @hrefs = (); |
}
|
&process_content($count,$curRes,$cdom,$cnum,$symb,\$content_file,\@hrefs,$copyresult,$tempexport); |
|
if ($content_file) { |
sub get_dependencies {
|
$imsresources .= "\n". |
my ($exportitems,$parent,$depth,$dependencies) = @_;
|
' <resource identifier="RES-'.$env{'request.course.id'}.'-'.$count. |
if ($depth > 1) {
|
'" type="webcontent" href="'.$content_file.'">'."\n". |
if ((!grep(/^$$parent{$depth}$/,@$exportitems)) && (!grep(/^$$parent{$depth}$/,@$dependencies))) {
|
' <file href="'.$content_file.'" />'."\n"; |
push(@{$dependencies},$$parent{$depth});
|
foreach my $item (@hrefs) { |
if ($depth > 2) {
|
$imsresources .= |
&get_dependencies($exportitems,$parent,$depth-1,$dependencies);
|
' <file href="'.$item.'" />'."\n"; |
}
|
} |
}
|
if (grep(/^$count$/,@$discussions)) { |
}
|
my $ressymb = $symb; |
}
|
my $mode; |
|
if ($ressymb =~ m|adm/($match_domain)/($match_username)/(\d+)/bulletinboard$|) { |
sub process_content {
|
unless ($ressymb =~ m|adm/wrapper/adm|) { |
my ($count,$curRes,$cdom,$cnum,$symb,$content_file,$href,$copyresult,$tempexport) = @_;
|
$ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard'; |
my $content_type;
|
} |
my $message;
|
$mode = 'board'; |
my @uploads = ();
|
} |
if ($curRes->is_sequence()) {
|
my %extras = ( |
$content_type = 'sequence';
|
caller => 'imsexport', |
} elsif ($curRes->is_page()) {
|
tempexport => $tempexport.'/resources', |
$content_type = 'page'; # need to handle individual items in pages.
|
count => $count |
} elsif ($symb =~ m-public/$cdom/$cnum/syllabus$-) {
|
); |
$content_type = 'syllabus';
|
my $discresult = &Apache::lonfeedback::list_discussion($mode,undef,$ressymb,\%extras); |
my $contents = &Apache::imsexport::templatedpage($content_type);
|
} |
if ($contents) {
|
$imsresources .= ' </resource>'."\n"; |
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
} |
}
|
} |
} elsif ($symb =~ m-\.sequence___\d+___ext-) {
|
$pkgdepth = $depth; |
$content_type = 'external';
|
} |
my $title = $curRes->title;
|
} |
my $contents = &Apache::imsexport::external($symb,$title);
|
} |
if ($contents) {
|
while ($pkgdepth > 0) { |
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
print $ims_manifest " </item>\n"; |
}
|
$pkgdepth --; |
} elsif ($symb =~ m-adm/navmaps$-) {
|
} |
$content_type = 'navmap';
|
my $resource_text = qq| |
} elsif ($symb =~ m-adm/[^/]+/[^/]+/(\d+)/smppg$-) {
|
</organization> |
$content_type = 'simplepage';
|
</organizations> |
my $contents = &Apache::imsexport::templatedpage($content_type,$1,$count,\@uploads);
|
<resources> |
if ($contents) {
|
$imsresources |
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
</resources> |
}
|
</manifest> |
} elsif ($symb =~ m-lib/templates/simpleproblem\.problem$-) {
|
|; |
$content_type = 'simpleproblem';
|
print $ims_manifest $resource_text; |
my $contents = &Apache::imsexport::simpleproblem($symb);
|
} |
if ($contents) {
|
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
sub get_dependencies { |
}
|
my ($exportitems,$parent,$depth,$dependencies) = @_; |
} elsif ($symb =~ m-lib/templates/examupload\.problem$-) {
|
if ($depth > 1) { |
$content_type = 'examupload';
|
if ((!grep(/^$$parent{$depth}$/,@$exportitems)) && (!grep(/^$$parent{$depth}$/,@$dependencies))) { |
} elsif ($symb =~ m-adm/($match_domain)/($match_username)/(\d+)/bulletinboard$-) {
|
push(@{$dependencies},$$parent{$depth}); |
$content_type = 'bulletinboard';
|
if ($depth > 2) { |
my $contents = &Apache::imsexport::templatedpage($content_type,$3,$count,\@uploads,$1,$2);
|
&get_dependencies($exportitems,$parent,$depth-1,$dependencies); |
if ($contents) {
|
} |
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
} |
}
|
} |
} elsif ($symb =~ m-adm/([^/]+)/([^/]+)/aboutme$-) {
|
} |
$content_type = 'aboutme';
|
|
my $contents = &Apache::imsexport::templatedpage($content_type,undef,$count,\@uploads,$1,$2);
|
sub process_content { |
if ($contents) {
|
my ($count,$curRes,$cdom,$cnum,$symb,$content_file,$href,$copyresult,$tempexport) = @_; |
$$content_file = &store_template($contents,$tempexport,$count,$content_type);
|
my $content_type; |
}
|
my $message; |
} elsif ($symb =~ m-\.(sequence|page)___\d+___uploaded/$cdom/$cnum/-) {
|
my @uploads = (); |
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');
|
if ($curRes->is_sequence()) { |
} elsif ($symb =~ m-\.(sequence|page)___\d+___([^/]+)/([^/]+)-) {
|
$content_type = 'sequence'; |
my $canedit = 0;
|
} elsif ($curRes->is_page()) { |
if ($2 eq $env{'user.domain'} && $3 eq $env{'user.name'}) {
|
$content_type = 'page'; # need to handle individual items in pages. |
$canedit= 1;
|
} elsif ($symb =~ m-public/$cdom/$cnum/syllabus$-) { |
}
|
$content_type = 'syllabus'; |
# only include problem code where current user is author
|
my $contents = &Apache::imsexport::templatedpage($content_type); |
if ($canedit) {
|
if ($contents) { |
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'resource');
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
} else {
|
} |
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'noedit');
|
} elsif ($symb =~ m-\.sequence___\d+___ext-) { |
}
|
$content_type = 'external'; |
} elsif ($symb =~ m-uploaded/$cdom/$cnum-) {
|
my $title = $curRes->title; |
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');
|
my $contents = &Apache::imsexport::external($symb,$title); |
}
|
if ($contents) { |
if (@uploads > 0) {
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
foreach my $item (@uploads) {
|
} |
my $uploadmsg = '';
|
} elsif ($symb =~ m-adm/navmaps$-) { |
&replicate_content($cdom,$cnum,$tempexport,$item,$count,\$uploadmsg,$href,'templateupload');
|
$content_type = 'navmap'; |
if ($uploadmsg) {
|
} elsif ($symb =~ m-adm/[^/]+/[^/]+/(\d+)/smppg$-) { |
$$copyresult .= $uploadmsg."\n";
|
$content_type = 'simplepage'; |
}
|
my $contents = &Apache::imsexport::templatedpage($content_type,$1,$count,\@uploads); |
}
|
if ($contents) { |
}
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
if ($message) {
|
} |
$$copyresult .= $message."\n";
|
} elsif ($symb =~ m-lib/templates/simpleproblem\.problem$-) { |
}
|
$content_type = 'simpleproblem'; |
}
|
my $contents = &Apache::imsexport::simpleproblem($symb); |
|
if ($contents) { |
sub replicate_content {
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
my ($cdom,$cnum,$tempexport,$symb,$count,$message,$href,$caller) = @_;
|
} |
my ($map,$ind,$url);
|
} elsif ($symb =~ m-lib/templates/examupload\.problem$-) { |
if ($caller eq 'templateupload') {
|
$content_type = 'examupload'; |
$url = $symb;
|
} elsif ($symb =~ m-adm/($match_domain)/($match_username)/(\d+)/bulletinboard$-) { |
$url =~ s#//#/#g;
|
$content_type = 'bulletinboard'; |
} else {
|
my $contents = &Apache::imsexport::templatedpage($content_type,$3,$count,\@uploads,$1,$2); |
($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
|
if ($contents) { |
}
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
my $content;
|
} |
my $filename;
|
} elsif ($symb =~ m-adm/([^/]+)/([^/]+)/aboutme$-) { |
my $repstatus;
|
$content_type = 'aboutme'; |
my $content_name;
|
my $contents = &Apache::imsexport::templatedpage($content_type,undef,$count,\@uploads,$1,$2); |
if ($url =~ m-/([^/]+)$-) {
|
if ($contents) { |
$filename = $1;
|
$$content_file = &store_template($contents,$tempexport,$count,$content_type); |
if (!-e $tempexport.'/resources') {
|
} |
mkdir($tempexport.'/resources',0700);
|
} elsif ($symb =~ m-\.(sequence|page)___\d+___uploaded/$cdom/$cnum/-) { |
}
|
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded'); |
if (!-e $tempexport.'/resources/'.$count) {
|
} elsif ($symb =~ m-\.(sequence|page)___\d+___([^/]+)/([^/]+)-) { |
mkdir($tempexport.'/resources/'.$count,0700);
|
my $canedit = 0; |
}
|
if ($2 eq $env{'user.domain'} && $3 eq $env{'user.name'}) { |
my $destination = $tempexport.'/resources/'.$count.'/'.$filename;
|
$canedit= 1; |
my $copiedfile;
|
} |
if ($copiedfile = Apache::File->new('>'.$destination)) {
|
# only include problem code where current user is author |
my $content;
|
if ($canedit) { |
if ($caller eq 'resource') {
|
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'resource'); |
my $respath = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res';
|
} else { |
my $filepath = &Apache::lonnet::filelocation($respath,$url);
|
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'noedit'); |
$content = &Apache::lonnet::getfile($filepath);
|
} |
if ($content eq -1) {
|
} elsif ($symb =~ m-uploaded/$cdom/$cnum-) { |
$$message = 'Could not copy file '.$filename;
|
$$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded'); |
} else {
|
} |
&extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'resource');
|
if (@uploads > 0) { |
$repstatus = 'ok';
|
foreach my $item (@uploads) { |
}
|
my $uploadmsg = ''; |
} elsif ($caller eq 'uploaded' || $caller eq 'templateupload') {
|
&replicate_content($cdom,$cnum,$tempexport,$item,$count,\$uploadmsg,$href,'templateupload'); |
my $rtncode;
|
if ($uploadmsg) { |
$repstatus = &Apache::lonnet::getuploaded('GET',$url,$cdom,$cnum,\$content,$rtncode);
|
$$copyresult .= $uploadmsg."\n"; |
if ($repstatus eq 'ok') {
|
} |
if ($url =~ /\.html?$/i) {
|
} |
&extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'uploaded');
|
} |
}
|
if ($message) { |
} else {
|
$$copyresult .= $message."\n"; |
$$message = 'Could not render '.$url.' server message - '.$rtncode."<br />\n";
|
} |
}
|
} |
} elsif ($caller eq 'noedit') {
|
|
# Need to render the resource without the LON-CAPA Internal header and the Post discussion footer, and then set $content equal to this.
|
sub replicate_content { |
$repstatus = 'ok';
|
my ($cdom,$cnum,$tempexport,$symb,$count,$message,$href,$caller) = @_; |
$content = 'Not the owner of this resource';
|
my ($map,$ind,$url); |
}
|
if ($caller eq 'templateupload') { |
if ($repstatus eq 'ok') {
|
$url = $symb; |
print $copiedfile $content;
|
$url =~ s#//#/#g; |
}
|
} else { |
close($copiedfile);
|
($map,$ind,$url)=&Apache::lonnet::decode_symb($symb); |
} else {
|
} |
$$message = 'Could not open destination file for '.$filename."<br />\n";
|
my $content; |
}
|
my $filename; |
} else {
|
my $repstatus; |
$$message = 'Could not determine name of file for '.$symb."<br />\n";
|
my $content_name; |
}
|
if ($url =~ m-/([^/]+)$-) { |
if ($repstatus eq 'ok') {
|
$filename = $1; |
$content_name = 'resources/'.$count.'/'.$filename;
|
if (!-e $tempexport.'/resources') { |
}
|
mkdir($tempexport.'/resources',0700); |
return $content_name;
|
} |
}
|
if (!-e $tempexport.'/resources/'.$count) { |
|
mkdir($tempexport.'/resources/'.$count,0700); |
sub extract_media {
|
} |
my ($url,$cdom,$cnum,$content,$count,$tempexport,$href,$message,$caller) = @_;
|
my $destination = $tempexport.'/resources/'.$count.'/'.$filename; |
my ($dirpath,$container);
|
my $copiedfile; |
my %allfiles = ();
|
if ($copiedfile = Apache::File->new('>'.$destination)) { |
my %codebase = ();
|
my $content; |
if ($url =~ m-(.*/)([^/]+)$-) {
|
if ($caller eq 'resource') { |
$dirpath = $1;
|
my $respath = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res'; |
$container = $2;
|
my $filepath = &Apache::lonnet::filelocation($respath,$url); |
} else {
|
$content = &Apache::lonnet::getfile($filepath); |
$dirpath = $url;
|
if ($content eq -1) { |
$container = '';
|
$$message = 'Could not copy file '.$filename; |
}
|
} else { |
&Apache::lonnet::extract_embedded_items(undef,\%allfiles,\%codebase,$content);
|
&extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'resource'); |
foreach my $embed_file (keys(%allfiles)) {
|
$repstatus = 'ok'; |
my $filename;
|
} |
if ($embed_file =~ m#([^/]+)$#) {
|
} elsif ($caller eq 'uploaded' || $caller eq 'templateupload') { |
$filename = $1;
|
my $rtncode; |
} else {
|
$repstatus = &Apache::lonnet::getuploaded('GET',$url,$cdom,$cnum,\$content,$rtncode); |
$filename = $embed_file;
|
if ($repstatus eq 'ok') { |
}
|
if ($url =~ /\.html?$/i) { |
my $newname = 'res/'.$filename;
|
&extract_media($url,$cdom,$cnum,\$content,$count,$tempexport,$href,$message,'uploaded'); |
my ($rtncode,$embed_content,$repstatus);
|
} |
my $embed_url;
|
} else { |
if ($embed_file =~ m-^/-) {
|
$$message = 'Could not render '.$url.' server message - '.$rtncode."<br />\n"; |
$embed_url = $embed_file; # points to absolute path
|
} |
} else {
|
} elsif ($caller eq 'noedit') { |
if ($embed_file =~ m-https?://-) {
|
# Need to render the resource without the LON-CAPA Internal header and the Post discussion footer, and then set $content equal to this. |
next; # points to url
|
$repstatus = 'ok'; |
} else {
|
$content = 'Not the owner of this resource'; |
$embed_url = $dirpath.$embed_file; # points to relative path
|
} |
}
|
if ($repstatus eq 'ok') { |
}
|
print $copiedfile $content; |
if ($caller eq 'resource') {
|
} |
my $respath = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res';
|
close($copiedfile); |
my $embed_path = &Apache::lonnet::filelocation($respath,$embed_url);
|
} else { |
$embed_content = &Apache::lonnet::getfile($embed_path);
|
$$message = 'Could not open destination file for '.$filename."<br />\n"; |
unless ($embed_content eq -1) {
|
} |
$repstatus = 'ok';
|
} else { |
}
|
$$message = 'Could not determine name of file for '.$symb."<br />\n"; |
} elsif ($caller eq 'uploaded') {
|
} |
|
if ($repstatus eq 'ok') { |
$repstatus = &Apache::lonnet::getuploaded('GET',$embed_url,$cdom,$cnum,\$embed_content,$rtncode);
|
$content_name = 'resources/'.$count.'/'.$filename; |
}
|
} |
if ($repstatus eq 'ok') {
|
return $content_name; |
my $destination = $tempexport.'/resources/'.$count.'/res';
|
} |
if (!-e "$destination") {
|
|
mkdir($destination,0755);
|
sub extract_media { |
}
|
my ($url,$cdom,$cnum,$content,$count,$tempexport,$href,$message,$caller) = @_; |
$destination .= '/'.$filename;
|
my ($dirpath,$container); |
my $copiedfile;
|
my %allfiles = (); |
if ($copiedfile = Apache::File->new('>'.$destination)) {
|
my %codebase = (); |
print $copiedfile $embed_content;
|
if ($url =~ m-(.*/)([^/]+)$-) { |
push(@{$href},'resources/'.$count.'/res/'.$filename);
|
$dirpath = $1; |
my $attrib_regexp = '';
|
$container = $2; |
if (@{$allfiles{$embed_file}} > 1) {
|
} else { |
$attrib_regexp = join('|',@{$allfiles{$embed_file}});
|
$dirpath = $url; |
} else {
|
$container = ''; |
$attrib_regexp = $allfiles{$embed_file}[0];
|
} |
}
|
&Apache::lonnet::extract_embedded_items(undef,\%allfiles,\%codebase,$content); |
$$content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$embed_file\E(['"]?)#$1$newname$2#gi;
|
foreach my $embed_file (keys(%allfiles)) { |
if ($caller eq 'resource' && $container =~ /\.(problem|library)$/) {
|
my $filename; |
$$content =~ s#\Q$embed_file\E#$newname#gi;
|
if ($embed_file =~ m#([^/]+)$#) { |
}
|
$filename = $1; |
}
|
} else { |
} else {
|
$filename = $embed_file; |
$$message .= 'replication of embedded file - '.$embed_file.' in '.$url.' failed, reason -'.$rtncode."<br />\n";
|
} |
}
|
my $newname = 'res/'.$filename; |
}
|
my ($rtncode,$embed_content,$repstatus); |
return;
|
my $embed_url; |
}
|
if ($embed_file =~ m-^/-) { |
|
$embed_url = $embed_file; # points to absolute path |
sub store_template {
|
} else { |
my ($contents,$tempexport,$count,$content_type) = @_;
|
if ($embed_file =~ m-https?://-) { |
if ($contents) {
|
next; # points to url |
if ($tempexport) {
|
} else { |
if (!-e $tempexport.'/resources') {
|
$embed_url = $dirpath.$embed_file; # points to relative path |
mkdir($tempexport.'/resources',0700);
|
} |
}
|
} |
if (!-e $tempexport.'/resources/'.$count) {
|
if ($caller eq 'resource') { |
mkdir($tempexport.'/resources/'.$count,0700);
|
my $respath = $Apache::lonnet::perlvar{'lonDocRoot'}.'/res'; |
}
|
my $embed_path = &Apache::lonnet::filelocation($respath,$embed_url); |
my $destination = $tempexport.'/resources/'.$count.'/'.$content_type.'.xml';
|
$embed_content = &Apache::lonnet::getfile($embed_path); |
my $storetemplate;
|
unless ($embed_content eq -1) { |
if ($storetemplate = Apache::File->new('>'.$destination)) {
|
$repstatus = 'ok'; |
print $storetemplate $contents;
|
} |
close($storetemplate);
|
} elsif ($caller eq 'uploaded') { |
}
|
|
if ($content_type eq 'external') {
|
$repstatus = &Apache::lonnet::getuploaded('GET',$embed_url,$cdom,$cnum,\$embed_content,$rtncode); |
return 'resources/'.$count.'/'.$content_type.'.html';
|
} |
} else {
|
if ($repstatus eq 'ok') { |
return 'resources/'.$count.'/'.$content_type.'.xml';
|
my $destination = $tempexport.'/resources/'.$count.'/res'; |
}
|
if (!-e "$destination") { |
}
|
mkdir($destination,0755); |
}
|
} |
}
|
$destination .= '/'.$filename; |
|
my $copiedfile; |
|
if ($copiedfile = Apache::File->new('>'.$destination)) { |
sub group_import {
|
print $copiedfile $embed_content; |
my ($coursenum, $coursedom, $folder, $container, $caller, @files) = @_;
|
push(@{$href},'resources/'.$count.'/res/'.$filename); |
|
my $attrib_regexp = ''; |
while (@files) {
|
if (@{$allfiles{$embed_file}} > 1) { |
my ($name, $url, $residx) = @{ shift(@files) };
|
$attrib_regexp = join('|',@{$allfiles{$embed_file}}); |
if (($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$})
|
} else { |
&& ($caller eq 'londocs')
|
$attrib_regexp = $allfiles{$embed_file}[0]; |
&& (!&Apache::lonnet::stat_file($url))) {
|
} |
|
$$content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$embed_file\E(['"]?)#$1$newname$2#gi; |
my $errtext = '';
|
if ($caller eq 'resource' && $container =~ /\.(problem|library)$/) { |
my $fatal = 0;
|
$$content =~ s#\Q$embed_file\E#$newname#gi; |
my $newmapstr = '<map>'."\n".
|
} |
'<resource id="1" src="" type="start"></resource>'."\n".
|
} |
'<link from="1" to="2" index="1"></link>'."\n".
|
} else { |
'<resource id="2" src="" type="finish"></resource>'."\n".
|
$$message .= 'replication of embedded file - '.$embed_file.' in '.$url.' failed, reason -'.$rtncode."<br />\n"; |
'</map>';
|
} |
$env{'form.output'}=$newmapstr;
|
} |
my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom,
|
return; |
'output',$1.$2);
|
} |
if ($result != m|^/uploaded/|) {
|
|
$errtext.='Map not saved: A network error occurred when trying to save the new map. ';
|
sub store_template { |
$fatal = 2;
|
my ($contents,$tempexport,$count,$content_type) = @_; |
}
|
if ($contents) { |
if ($fatal) {
|
if ($tempexport) { |
return ($errtext,$fatal);
|
if (!-e $tempexport.'/resources') { |
}
|
mkdir($tempexport.'/resources',0700); |
}
|
} |
if ($url) {
|
if (!-e $tempexport.'/resources/'.$count) { |
if (!$residx
|
mkdir($tempexport.'/resources/'.$count,0700); |
|| defined($LONCAPA::map::zombies[$residx])) {
|
} |
$residx = &LONCAPA::map::getresidx($url,$residx);
|
my $destination = $tempexport.'/resources/'.$count.'/'.$content_type.'.xml'; |
push(@LONCAPA::map::order, $residx);
|
my $storetemplate; |
}
|
if ($storetemplate = Apache::File->new('>'.$destination)) { |
my $ext = 'false';
|
print $storetemplate $contents; |
if ($url=~m{^http://} || $url=~m{^https://}) { $ext = 'true'; }
|
close($storetemplate); |
$url = &LONCAPA::map::qtunescape($url);
|
} |
$name = &LONCAPA::map::qtunescape($name);
|
if ($content_type eq 'external') { |
$LONCAPA::map::resources[$residx] =
|
return 'resources/'.$count.'/'.$content_type.'.html'; |
join(':', ($name, $url, $ext, 'normal', 'res'));
|
} else { |
}
|
return 'resources/'.$count.'/'.$content_type.'.xml'; |
}
|
} |
return &storemap($coursenum, $coursedom, $folder.'.'.$container);
|
} |
}
|
} |
|
} |
sub breadcrumbs {
|
|
my ($where,$allowed,$type)=@_;
|
|
&Apache::lonhtmlcommon::clear_breadcrumbs();
|
sub group_import { |
my (@folders);
|
my ($coursenum, $coursedom, $folder, $container, $caller, @files) = @_; |
if ($env{'form.pagepath'}) {
|
|
@folders = split('&',$env{'form.pagepath'});
|
while (@files) { |
} else {
|
my ($name, $url, $residx) = @{ shift(@files) }; |
@folders=split('&',$env{'form.folderpath'});
|
if (($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$}) |
}
|
&& ($caller eq 'londocs') |
my $folderpath;
|
&& (!&Apache::lonnet::stat_file($url))) { |
my $cpinfo='';
|
|
my $plain='';
|
my $errtext = ''; |
my $randompick=-1;
|
my $fatal = 0; |
my $isencrypted=0;
|
my $newmapstr = '<map>'."\n". |
my $ishidden=0;
|
'<resource id="1" src="" type="start"></resource>'."\n". |
my $is_random_order=0;
|
'<link from="1" to="2" index="1"></link>'."\n". |
while (@folders) {
|
'<resource id="2" src="" type="finish"></resource>'."\n". |
my $folder=shift(@folders);
|
'</map>'; |
my $foldername=shift(@folders);
|
$env{'form.output'}=$newmapstr; |
if ($folderpath) {$folderpath.='&';}
|
my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom, |
$folderpath.=$folder.'&'.$foldername;
|
'output',$1.$2); |
my $url='/adm/coursedocs?folderpath='.
|
if ($result != m|^/uploaded/|) { |
&escape($folderpath);
|
$errtext.='Map not saved: A network error occurred when trying to save the new map. '; |
my $name=&unescape($foldername);
|
$fatal = 2; |
# randompick number, hidden, encrypted, random order, is appended with ":"s to the foldername
|
} |
$name=~s/\:(\d*)\:(\w*)\:(\w*):(\d*)$//;
|
if ($fatal) { |
if ($1 ne '') {
|
return ($errtext,$fatal); |
$randompick=$1;
|
} |
} else {
|
} |
$randompick=-1;
|
if ($url) { |
}
|
if (!$residx |
if ($2) { $ishidden=1; }
|
|| defined($LONCAPA::map::zombies[$residx])) { |
if ($3) { $isencrypted=1; }
|
$residx = &LONCAPA::map::getresidx($url,$residx); |
if ($4 ne '') { $is_random_order = 1; }
|
push(@LONCAPA::map::order, $residx); |
if ($folder eq 'supplemental') {
|
} |
if ($allowed) {
|
my $ext = 'false'; |
$name = &mt('Supplemental '.$type.' Documents');
|
if ($url=~m{^http://} || $url=~m{^https://}) { $ext = 'true'; } |
} else {
|
$url = &LONCAPA::map::qtunescape($url); |
$name = &mt($type.' Documents');
|
$name = &LONCAPA::map::qtunescape($name); |
}
|
$LONCAPA::map::resources[$residx] = |
}
|
join(':', ($name, $url, $ext, 'normal', 'res')); |
&Apache::lonhtmlcommon::add_breadcrumb(
|
} |
{'href'=>$url.$cpinfo,
|
} |
'title'=>$name,
|
return &storemap($coursenum, $coursedom, $folder.'.'.$container); |
'text'=>'<font size="+1">'.
|
} |
$name.'</font>',
|
|
'no_mt'=>1,
|
sub breadcrumbs { |
});
|
my ($allowed,$crstype)=@_; |
$plain.=$name.' > ';
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
}
|
my (@folders); |
$plain=~s/\>\;\s*$//;
|
if ($env{'form.pagepath'}) { |
return (&Apache::lonhtmlcommon::breadcrumbs(undef,undef,0,'nohelp',
|
@folders = split('&',$env{'form.pagepath'}); |
'LC_docs_path'),$randompick,$ishidden,$isencrypted,$plain,$is_random_order);
|
} else { |
}
|
@folders=split('&',$env{'form.folderpath'}); |
|
} |
sub log_docs {
|
my $folderpath; |
return &Apache::lonnet::instructor_log('docslog',@_);
|
my $cpinfo=''; |
}
|
my $plain=''; |
|
my $randompick=-1; |
{
|
my $isencrypted=0; |
my @oldresources=();
|
my $ishidden=0; |
my @oldorder=();
|
my $is_random_order=0; |
my $parmidx;
|
if (!$allowed) { |
my %parmaction=();
|
my $description = $env{'course.'.$env{'request.course.id'}.'.description'}; |
my %parmvalue=();
|
&Apache::lonhtmlcommon::add_breadcrumb( |
my $changedflag;
|
{'href' => '/adm/menu', |
|
'title'=> 'Go to main menu', |
sub snapshotbefore {
|
'text' => $description, |
@oldresources=@LONCAPA::map::resources;
|
}); |
@oldorder=@LONCAPA::map::order;
|
$plain .= $description.' >'; |
$parmidx=undef;
|
} |
%parmaction=();
|
while (@folders) { |
%parmvalue=();
|
my $folder=shift(@folders); |
$changedflag=0;
|
my $foldername=shift(@folders); |
}
|
if ($folderpath) {$folderpath.='&';} |
|
$folderpath.=$folder.'&'.$foldername; |
sub remember_parms {
|
my $url='/adm/coursedocs?folderpath='. |
my ($idx,$parameter,$action,$value)=@_;
|
&escape($folderpath); |
$parmidx=$idx;
|
my $name=&unescape($foldername); |
$parmaction{$parameter}=$action;
|
# randompick number, hidden, encrypted, random order, is appended with ":"s to the foldername |
$parmvalue{$parameter}=$value;
|
$name=~s/\:(\d*)\:(\w*)\:(\w*):(\d*)$//; |
$changedflag=1;
|
if ($1 ne '') { |
}
|
$randompick=$1; |
|
} else { |
sub log_differences {
|
$randompick=-1; |
my ($plain)=@_;
|
} |
my %storehash=('folder' => $plain,
|
if ($2) { $ishidden=1; } |
'currentfolder' => $env{'form.folder'});
|
if ($3) { $isencrypted=1; } |
if ($parmidx) {
|
if ($4 ne '') { $is_random_order = 1; } |
$storehash{'parameter_res'}=$oldresources[$parmidx];
|
if ($folder eq 'supplemental') { |
foreach my $parm (keys(%parmaction)) {
|
$name = &mt('Supplemental '.$crstype.' Documents'); |
$storehash{'parameter_action_'.$parm}=$parmaction{$parm};
|
} |
$storehash{'parameter_value_'.$parm}=$parmvalue{$parm};
|
&Apache::lonhtmlcommon::add_breadcrumb( |
}
|
{'href'=>$url.$cpinfo, |
}
|
'title'=>$name, |
my $maxidx=$#oldresources;
|
'text'=>$name, |
if ($#LONCAPA::map::resources>$#oldresources) {
|
'no_mt'=>1, |
$maxidx=$#LONCAPA::map::resources;
|
}); |
}
|
$plain.=$name.' > '; |
for (my $idx=0; $idx<=$maxidx; $idx++) {
|
} |
if ($LONCAPA::map::resources[$idx] ne $oldresources[$idx]) {
|
$plain=~s/\>\;\s*$//; |
$storehash{'before_resources_'.$idx}=$oldresources[$idx];
|
return (&Apache::lonhtmlcommon::breadcrumbs(undef,undef,0,'nohelp', |
$storehash{'after_resources_'.$idx}=$LONCAPA::map::resources[$idx];
|
undef, undef, 1 ),$randompick,$ishidden,$isencrypted,$plain,$is_random_order); |
$changedflag=1;
|
} |
}
|
|
if ($LONCAPA::map::order[$idx] ne $oldorder[$idx]) {
|
sub log_docs { |
$storehash{'before_order_res_'.$idx}=$oldresources[$oldorder[$idx]];
|
return &Apache::lonnet::instructor_log('docslog',@_); |
$storehash{'after_order_res_'.$idx}=$LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
|
} |
$changedflag=1;
|
|
}
|
{ |
}
|
my @oldresources=(); |
$storehash{'maxidx'}=$maxidx;
|
my @oldorder=(); |
if ($changedflag) { &log_docs(\%storehash); }
|
my $parmidx; |
}
|
my %parmaction=(); |
}
|
my %parmvalue=(); |
|
my $changedflag; |
|
|
|
sub snapshotbefore { |
|
@oldresources=@LONCAPA::map::resources; |
|
@oldorder=@LONCAPA::map::order; |
sub docs_change_log {
|
$parmidx=undef; |
my ($r)=@_;
|
%parmaction=(); |
my $folder=$env{'form.folder'};
|
%parmvalue=(); |
$r->print(&Apache::loncommon::start_page('Course Document Change Log'));
|
$changedflag=0; |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Document Change Log'));
|
} |
my %docslog=&Apache::lonnet::dump('nohist_docslog',
|
|
$env{'course.'.$env{'request.course.id'}.'.domain'},
|
sub remember_parms { |
$env{'course.'.$env{'request.course.id'}.'.num'});
|
my ($idx,$parameter,$action,$value)=@_; |
|
$parmidx=$idx; |
if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); }
|
$parmaction{$parameter}=$action; |
|
$parmvalue{$parameter}=$value; |
$r->print('<form action="/adm/coursedocs" method="post" name="docslog">'.
|
$changedflag=1; |
'<input type="hidden" name="docslog" value="1" />');
|
} |
|
|
my %saveable_parameters = ('show' => 'scalar',);
|
sub log_differences { |
&Apache::loncommon::store_course_settings('docs_log',
|
my ($plain)=@_; |
\%saveable_parameters);
|
my %storehash=('folder' => $plain, |
&Apache::loncommon::restore_course_settings('docs_log',
|
'currentfolder' => $env{'form.folder'}); |
\%saveable_parameters);
|
if ($parmidx) { |
if (!$env{'form.show'}) { $env{'form.show'}=10; }
|
$storehash{'parameter_res'}=$oldresources[$parmidx]; |
my %lt=('hiddenresource' => 'Resources hidden',
|
foreach my $parm (keys(%parmaction)) { |
'encrypturl' => 'URL hidden',
|
$storehash{'parameter_action_'.$parm}=$parmaction{$parm}; |
'randompick' => 'Randomly pick',
|
$storehash{'parameter_value_'.$parm}=$parmvalue{$parm}; |
'randomorder' => 'Randomly ordered',
|
} |
'set' => 'set to',
|
} |
'del' => 'deleted');
|
my $maxidx=$#oldresources; |
$r->print(&Apache::loncommon::display_filter().
|
if ($#LONCAPA::map::resources>$#oldresources) { |
'<input type="hidden" name="folder" value="'.$folder.'" />'.
|
$maxidx=$#LONCAPA::map::resources; |
'<input type="submit" value="'.&mt('Display').'" /></form>');
|
} |
$r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row().
|
for (my $idx=0; $idx<=$maxidx; $idx++) { |
'<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'.
|
if ($LONCAPA::map::resources[$idx] ne $oldresources[$idx]) { |
&mt('After').'</th>'.
|
$storehash{'before_resources_'.$idx}=$oldresources[$idx]; |
&Apache::loncommon::end_data_table_header_row());
|
$storehash{'after_resources_'.$idx}=$LONCAPA::map::resources[$idx]; |
my $shown=0;
|
$changedflag=1; |
foreach my $id (sort { $docslog{$b}{'exe_time'}<=>$docslog{$a}{'exe_time'} } (keys(%docslog))) {
|
} |
if ($env{'form.displayfilter'} eq 'currentfolder') {
|
if ($LONCAPA::map::order[$idx] ne $oldorder[$idx]) { |
if ($docslog{$id}{'logentry'}{'currentfolder'} ne $folder) { next; }
|
$storehash{'before_order_res_'.$idx}=$oldresources[$oldorder[$idx]]; |
}
|
$storehash{'after_order_res_'.$idx}=$LONCAPA::map::resources[$LONCAPA::map::order[$idx]]; |
my @changes=keys(%{$docslog{$id}{'logentry'}});
|
$changedflag=1; |
if ($env{'form.displayfilter'} eq 'containing') {
|
} |
my $wholeentry=$docslog{$id}{'exe_uname'}.':'.$docslog{$id}{'exe_udom'}.':'.
|
} |
&Apache::loncommon::plainname($docslog{$id}{'exe_uname'},$docslog{$id}{'exe_udom'});
|
$storehash{'maxidx'}=$maxidx; |
foreach my $key (@changes) {
|
if ($changedflag) { &log_docs(\%storehash); } |
$wholeentry.=':'.$docslog{$id}{'logentry'}{$key};
|
} |
}
|
} |
if ($wholeentry!~/\Q$env{'form.containingphrase'}\E/i) { next; }
|
|
}
|
|
my $count = 0;
|
|
my $time =
|
|
&Apache::lonlocal::locallocaltime($docslog{$id}{'exe_time'});
|
|
my $plainname =
|
sub docs_change_log { |
&Apache::loncommon::plainname($docslog{$id}{'exe_uname'},
|
my ($r)=@_; |
$docslog{$id}{'exe_udom'});
|
my $folder=$env{'form.folder'}; |
my $about_me_link =
|
$r->print(&Apache::loncommon::start_page('Course Document Change Log')); |
&Apache::loncommon::aboutmewrapper($plainname,
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Course Document Change Log')); |
$docslog{$id}{'exe_uname'},
|
my %docslog=&Apache::lonnet::dump('nohist_docslog', |
$docslog{$id}{'exe_udom'});
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
my $send_msg_link='';
|
$env{'course.'.$env{'request.course.id'}.'.num'}); |
if ((($docslog{$id}{'exe_uname'} ne $env{'user.name'})
|
|
|| ($docslog{$id}{'exe_udom'} ne $env{'user.domain'}))) {
|
if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); } |
$send_msg_link ='<br />'.
|
|
&Apache::loncommon::messagewrapper(&mt('Send message'),
|
$r->print('<form action="/adm/coursedocs" method="post" name="docslog">'. |
$docslog{$id}{'exe_uname'},
|
'<input type="hidden" name="docslog" value="1" />'); |
$docslog{$id}{'exe_udom'});
|
|
}
|
my %saveable_parameters = ('show' => 'scalar',); |
$r->print(&Apache::loncommon::start_data_table_row());
|
&Apache::loncommon::store_course_settings('docs_log', |
$r->print('<td>'.$time.'</td>
|
\%saveable_parameters); |
<td>'.$about_me_link.
|
&Apache::loncommon::restore_course_settings('docs_log', |
'<br /><tt>'.$docslog{$id}{'exe_uname'}.
|
\%saveable_parameters); |
':'.$docslog{$id}{'exe_udom'}.'</tt>'.
|
if (!$env{'form.show'}) { $env{'form.show'}=10; } |
$send_msg_link.'</td><td>'.
|
my %lt=('hiddenresource' => 'Resources hidden', |
$docslog{$id}{'logentry'}{'folder'}.'</td><td>');
|
'encrypturl' => 'URL hidden', |
# Before
|
'randompick' => 'Randomly pick', |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
|
'randomorder' => 'Randomly ordered', |
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
|
'set' => 'set to', |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
|
'del' => 'deleted'); |
if ($oldname ne $newname) {
|
$r->print(&Apache::loncommon::display_filter(). |
$r->print(&LONCAPA::map::qtescape($oldname));
|
'<input type="hidden" name="folder" value="'.$folder.'" />'. |
}
|
'<input type="submit" value="'.&mt('Display').'" /></form>'); |
}
|
$r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row(). |
$r->print('<ul>');
|
'<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'. |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
|
&mt('After').'</th>'. |
if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) {
|
&Apache::loncommon::end_data_table_header_row()); |
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]).'</li>');
|
my $shown=0; |
}
|
foreach my $id (sort { $docslog{$b}{'exe_time'}<=>$docslog{$a}{'exe_time'} } (keys(%docslog))) { |
}
|
if ($env{'form.displayfilter'} eq 'currentfolder') { |
$r->print('</ul>');
|
if ($docslog{$id}{'logentry'}{'currentfolder'} ne $folder) { next; } |
# After
|
} |
$r->print('</td><td>');
|
my @changes=keys(%{$docslog{$id}{'logentry'}}); |
|
if ($env{'form.displayfilter'} eq 'containing') { |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
|
my $wholeentry=$docslog{$id}{'exe_uname'}.':'.$docslog{$id}{'exe_udom'}.':'. |
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
|
&Apache::loncommon::plainname($docslog{$id}{'exe_uname'},$docslog{$id}{'exe_udom'}); |
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
|
foreach my $key (@changes) { |
if ($oldname ne '' && $oldname ne $newname) {
|
$wholeentry.=':'.$docslog{$id}{'logentry'}{$key}; |
$r->print(&LONCAPA::map::qtescape($newname));
|
} |
}
|
if ($wholeentry!~/\Q$env{'form.containingphrase'}\E/i) { next; } |
}
|
} |
$r->print('<ul>');
|
my $count = 0; |
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
|
my $time = |
if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) {
|
&Apache::lonlocal::locallocaltime($docslog{$id}{'exe_time'}); |
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]).'</li>');
|
my $plainname = |
}
|
&Apache::loncommon::plainname($docslog{$id}{'exe_uname'}, |
}
|
$docslog{$id}{'exe_udom'}); |
$r->print('</ul>');
|
my $about_me_link = |
if ($docslog{$id}{'logentry'}{'parameter_res'}) {
|
&Apache::loncommon::aboutmewrapper($plainname, |
$r->print(&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'parameter_res'}))[0]).':<ul>');
|
$docslog{$id}{'exe_uname'}, |
foreach my $parameter ('randompick','hiddenresource','encrypturl','randomorder') {
|
$docslog{$id}{'exe_udom'}); |
if ($docslog{$id}{'logentry'}{'parameter_action_'.$parameter}) {
|
my $send_msg_link=''; |
$r->print('<li>'.
|
if ((($docslog{$id}{'exe_uname'} ne $env{'user.name'}) |
&mt($lt{$parameter}.' '.$lt{$docslog{$id}{'logentry'}{'parameter_action_'.$parameter}}.' [_1]',
|
|| ($docslog{$id}{'exe_udom'} ne $env{'user.domain'}))) { |
$docslog{$id}{'logentry'}{'parameter_value_'.$parameter})
|
$send_msg_link ='<br />'. |
.'</li>');
|
&Apache::loncommon::messagewrapper(&mt('Send message'), |
}
|
$docslog{$id}{'exe_uname'}, |
}
|
$docslog{$id}{'exe_udom'}); |
$r->print('</ul>');
|
} |
}
|
$r->print(&Apache::loncommon::start_data_table_row()); |
# End
|
$r->print('<td>'.$time.'</td> |
$r->print('</td>'.&Apache::loncommon::end_data_table_row());
|
<td>'.$about_me_link. |
$shown++;
|
'<br /><tt>'.$docslog{$id}{'exe_uname'}. |
if (!($env{'form.show'} eq &mt('all')
|
':'.$docslog{$id}{'exe_udom'}.'</tt>'. |
|| $shown<=$env{'form.show'})) { last; }
|
$send_msg_link.'</td><td>'. |
}
|
$docslog{$id}{'logentry'}{'folder'}.'</td><td>'); |
$r->print(&Apache::loncommon::end_data_table());
|
# Before |
}
|
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
|
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
sub update_paste_buffer {
|
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
my ($coursenum,$coursedom) = @_;
|
if ($oldname ne $newname) { |
|
$r->print(&LONCAPA::map::qtescape($oldname)); |
return if (!defined($env{'form.markcopy'}));
|
} |
return if (!defined($env{'form.copyfolder'}));
|
} |
return if ($env{'form.markcopy'} < 0);
|
$r->print('<ul>'); |
|
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
|
if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) { |
$env{'form.copyfolder'});
|
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]).'</li>'); |
|
} |
return if ($fatal);
|
} |
|
$r->print('</ul>'); |
# Mark for copying
|
# After |
my ($title,$url)=split(':',$LONCAPA::map::resources[$LONCAPA::map::order[$env{'form.markcopy'}]]);
|
$r->print('</td><td>'); |
if (&is_supplemental_title($title)) {
|
|
&Apache::lonnet::appenv({'docs.markedcopy_supplemental' => $title});
|
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
($title) = &parse_supplemental_title($title);
|
my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0]; |
} elsif ($env{'docs.markedcopy_supplemental'}) {
|
my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0]; |
&Apache::lonnet::delenv('docs\\.markedcopy_supplemental');
|
if ($oldname ne '' && $oldname ne $newname) { |
}
|
$r->print(&LONCAPA::map::qtescape($newname)); |
$url=~s{http(:|:)//https(:|:)//}{https$2//};
|
} |
|
} |
&Apache::lonnet::appenv({'docs.markedcopy_title' => $title,
|
$r->print('<ul>'); |
'docs.markedcopy_url' => $url});
|
for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) { |
delete($env{'form.markcopy'});
|
if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) { |
}
|
$r->print('<li>'.&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]).'</li>'); |
|
} |
sub print_paste_buffer {
|
} |
my ($r,$container) = @_;
|
$r->print('</ul>'); |
return if (!defined($env{'docs.markedcopy_url'}));
|
if ($docslog{$id}{'logentry'}{'parameter_res'}) { |
|
$r->print(&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'parameter_res'}))[0]).':<ul>'); |
$r->print(<<ENDPASTE);
|
foreach my $parameter ('randompick','hiddenresource','encrypturl','randomorder') { |
<form name="pasteform" action="/adm/coursedocs" method="post"><p>
|
if ($docslog{$id}{'logentry'}{'parameter_action_'.$parameter}) { |
ENDPASTE
|
$r->print('<li>'. |
$r->print('<input type="submit" name="pastemarked" value="'.&mt('Paste').'" /> ');
|
&mt($lt{$parameter}.' '.$lt{$docslog{$id}{'logentry'}{'parameter_action_'.$parameter}}.' [_1]', |
|
$docslog{$id}{'logentry'}{'parameter_value_'.$parameter}) |
my $type;
|
.'</li>'); |
if ($env{'docs.markedcopy_url'} =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//} ) {
|
} |
$type = &mt('External Resource');
|
} |
$r->print($type.': '.
|
$r->print('</ul>'); |
&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}).' ('.
|
} |
&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}).')');
|
# End |
} else {
|
$r->print('</td>'.&Apache::loncommon::end_data_table_row()); |
my $extension = (split(/\./,$env{'docs.markedcopy_url'}))[-1];
|
$shown++; |
my $icon = &Apache::loncommon::icon($extension);
|
if (!($env{'form.show'} eq &mt('all') |
if ($extension eq 'sequence' &&
|
|| $shown<=$env{'form.show'})) { last; } |
$env{'docs.markedcopy_url'} =~ m{/default_\d+\.sequence$ }x) {
|
} |
$icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
|
$r->print(&Apache::loncommon::end_data_table()); |
$icon .= '/folder_closed.gif';
|
} |
}
|
|
$icon = '<img src="'.$icon.'" alt="" class="LC_icon" />';
|
sub update_paste_buffer { |
$r->print($icon.$type.': '. &parse_supplemental_title(&LONCAPA::map::qtescape($env{'docs.markedcopy_title'})));
|
my ($coursenum,$coursedom) = @_; |
}
|
|
if ($container eq 'page') {
|
return if (!defined($env{'form.markcopy'})); |
$r->print('
|
return if (!defined($env{'form.copyfolder'})); |
<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />
|
return if ($env{'form.markcopy'} < 0); |
<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" />
|
|
');
|
my ($errtext,$fatal) = &mapread($coursenum,$coursedom, |
} else {
|
$env{'form.copyfolder'}); |
$r->print('
|
|
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />
|
return if ($fatal); |
');
|
|
}
|
# Mark for copying |
$r->print('</p></form>');
|
my ($title,$url)=split(':',$LONCAPA::map::resources[$LONCAPA::map::order[$env{'form.markcopy'}]]); |
}
|
if (&is_supplemental_title($title)) { |
|
&Apache::lonnet::appenv({'docs.markedcopy_supplemental' => $title}); |
sub do_paste_from_buffer {
|
($title) = &parse_supplemental_title($title); |
my ($coursenum,$coursedom,$folder) = @_;
|
} elsif ($env{'docs.markedcopy_supplemental'}) { |
|
&Apache::lonnet::delenv('docs.markedcopy_supplemental'); |
if (!$env{'form.pastemarked'}) {
|
} |
return;
|
$url=~s{http(:|:)//https(:|:)//}{https$2//}; |
}
|
|
|
&Apache::lonnet::appenv({'docs.markedcopy_title' => $title, |
# paste resource to end of list
|
'docs.markedcopy_url' => $url}); |
my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url'});
|
delete($env{'form.markcopy'}); |
my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title'});
|
} |
# Maps need to be copied first
|
|
if (($url=~/\.(page|sequence)$/) && ($url=~/^\/uploaded\//)) {
|
sub print_paste_buffer { |
$title=&mt('Copy of').' '.$title;
|
my ($r,$container) = @_; |
my $newid=$$.int(rand(100)).time;
|
return if (!defined($env{'docs.markedcopy_url'})); |
my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/);
|
|
if ($oldid =~ m{^(/uploaded/\Q$coursedom\E/\Q$coursenum\E/)(\D+)(\d+)$}) {
|
$r->print('<fieldset>' |
my $path = $1;
|
.'<legend>'.&mt('Clipboard').'</legend>' |
my $prefix = $2;
|
.'<form name="pasteform" action="/adm/coursedocs" method="post">' |
my $ancestor = $3;
|
.'<input type="submit" name="pastemarked" value="'.&mt('Paste').'" /> ' |
if (length($ancestor) > 10) {
|
); |
$ancestor = substr($ancestor,-10,10);
|
|
}
|
my $type; |
$oldid = $path.$prefix.$ancestor;
|
if ($env{'docs.markedcopy_url'} =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//} ) { |
}
|
$type = &mt('External Resource'); |
my $counter = 0;
|
$r->print($type.': '. |
my $newurl=$oldid.$newid.'.'.$ext;
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}).' ('. |
my $is_unique = &uniqueness_check($newurl);
|
&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}).')'); |
while (!$is_unique && $counter < 100) {
|
} else { |
$counter ++;
|
my $extension = (split(/\./,$env{'docs.markedcopy_url'}))[-1]; |
$newid ++;
|
my $icon = &Apache::loncommon::icon($extension); |
$newurl = $oldid.$newid;
|
if ($extension eq 'sequence' && |
$is_unique = &uniqueness_check($newurl);
|
$env{'docs.markedcopy_url'} =~ m{/default_\d+\.sequence$ }x) { |
}
|
$icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL')); |
if (!$is_unique) {
|
$icon .= '/navmap.folder.closed.gif'; |
if ($url=~/\.page$/) {
|
} |
return &mt('Paste failed: an error occurred creating a unique URL for the composite page');
|
$icon = '<img src="'.$icon.'" alt="" class="LC_icon" />'; |
} else {
|
$r->print($icon.$type.': '. &parse_supplemental_title(&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}))); |
return &mt('Paste failed: an error occurred creating a unique URL for the folder');
|
} |
}
|
if ($container eq 'page') { |
}
|
$r->print(' |
my $storefn=$newurl;
|
<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" /> |
$storefn=~s{^/\w+/$match_domain/$match_username/}{};
|
<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" /> |
my $paste_map_result =
|
'); |
&Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn,
|
} else { |
&Apache::lonnet::getfile($url));
|
$r->print(' |
if ($paste_map_result eq '/adm/notfound.html') {
|
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /> |
if ($url=~/\.page$/) {
|
'); |
return &mt('Paste failed: an error occurred saving the composite page');
|
} |
} else {
|
$r->print('</form></fieldset>'); |
return &mt('Paste failed: an error occurred saving the folder');
|
} |
}
|
|
}
|
sub do_paste_from_buffer { |
$url = $newurl;
|
my ($coursenum,$coursedom,$folder) = @_; |
}
|
|
# published maps can only exists once, so remove it from paste buffer when done
|
if (!$env{'form.pastemarked'}) { |
if (($url=~/\.(page|sequence)$/) && ($url=~m {^/res/})) {
|
return; |
&Apache::lonnet::delenv('docs\\.markedcopy');
|
} |
}
|
|
if ($url=~ m{/smppg$}) {
|
# paste resource to end of list |
my $db_name = &Apache::lonsimplepage::get_db_name($url);
|
my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url'}); |
if ($db_name =~ /^smppage_/) {
|
my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title'}); |
#simple pages, need to copy the db contents to a new one.
|
# Maps need to be copied first |
my %contents=&Apache::lonnet::dump($db_name,$coursedom,$coursenum);
|
if (($url=~/\.(page|sequence)$/) && ($url=~/^\/uploaded\//)) { |
my $now = time();
|
$title=&mt('Copy of').' '.$title; |
$db_name =~ s{_\d*$ }{_$now}x;
|
my $newid=$$.int(rand(100)).time; |
my $result=&Apache::lonnet::put($db_name,\%contents,
|
my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/); |
$coursedom,$coursenum);
|
if ($oldid =~ m{^(/uploaded/\Q$coursedom\E/\Q$coursenum\E/)(\D+)(\d+)$}) { |
$url =~ s{/(\d*)/smppg$ }{/$now/smppg}x;
|
my $path = $1; |
$title=&mt('Copy of').' '.$title;
|
my $prefix = $2; |
}
|
my $ancestor = $3; |
}
|
if (length($ancestor) > 10) { |
$title = &LONCAPA::map::qtunescape($title);
|
$ancestor = substr($ancestor,-10,10); |
my $ext='false';
|
} |
if ($url=~m{^http(|s)://}) { $ext='true'; }
|
$oldid = $path.$prefix.$ancestor; |
$url = &LONCAPA::map::qtunescape($url);
|
} |
# Now insert the URL at the bottom
|
my $counter = 0; |
my $newidx = &LONCAPA::map::getresidx($url);
|
my $newurl=$oldid.$newid.'.'.$ext; |
if ($env{'docs.markedcopy_supplemental'}) {
|
my $is_unique = &uniqueness_check($newurl); |
if ($folder =~ /^supplemental/) {
|
while (!$is_unique && $counter < 100) { |
$title = $env{'docs.markedcopy_supplemental'};
|
$counter ++; |
} else {
|
$newid ++; |
(undef,undef,$title) =
|
$newurl = $oldid.$newid; |
&parse_supplemental_title($env{'docs.markedcopy_supplemental'});
|
$is_unique = &uniqueness_check($newurl); |
}
|
} |
} else {
|
if (!$is_unique) { |
if ($folder=~/^supplemental/) {
|
if ($url=~/\.page$/) { |
$title=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
|
return &mt('Paste failed: an error occurred creating a unique URL for the composite page'); |
$env{'user.domain'}.'___&&&___'.$title;
|
} else { |
}
|
return &mt('Paste failed: an error occurred creating a unique URL for the folder'); |
}
|
} |
|
} |
$LONCAPA::map::resources[$newidx]= $title.':'.$url.':'.$ext.':normal:res';
|
my $storefn=$newurl; |
push(@LONCAPA::map::order, $newidx);
|
$storefn=~s{^/\w+/$match_domain/$match_username/}{}; |
return 'ok';
|
my $paste_map_result = |
# Store the result
|
&Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn, |
}
|
&Apache::lonnet::getfile($url)); |
|
if ($paste_map_result eq '/adm/notfound.html') { |
sub uniqueness_check {
|
if ($url=~/\.page$/) { |
my ($newurl) = @_;
|
return &mt('Paste failed: an error occurred saving the composite page'); |
my $unique = 1;
|
} else { |
foreach my $res (@LONCAPA::map::order) {
|
return &mt('Paste failed: an error occurred saving the folder'); |
my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
|
} |
$url=&LONCAPA::map::qtescape($url);
|
} |
if ($newurl eq $url) {
|
$url = $newurl; |
$unique = 0;
|
} |
last;
|
# 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'); |
return $unique;
|
} |
}
|
if ($url=~ m{/smppg$}) { |
|
my $db_name = &Apache::lonsimplepage::get_db_name($url); |
my %parameter_type = ( 'randompick' => 'int_pos',
|
if ($db_name =~ /^smppage_/) { |
'hiddenresource' => 'string_yesno',
|
#simple pages, need to copy the db contents to a new one. |
'encrypturl' => 'string_yesno',
|
my %contents=&Apache::lonnet::dump($db_name,$coursedom,$coursenum); |
'randomorder' => 'string_yesno',);
|
my $now = time(); |
my $valid_parameters_re = join('|',keys(%parameter_type));
|
$db_name =~ s{_\d*$ }{_$now}x; |
# set parameters
|
my $result=&Apache::lonnet::put($db_name,\%contents, |
sub update_parameter {
|
$coursedom,$coursenum); |
|
$url =~ s{/(\d*)/smppg$ }{/$now/smppg}x; |
return 0 if ($env{'form.changeparms'} !~ /^($valid_parameters_re)$/);
|
$title=&mt('Copy of').' '.$title; |
|
} |
my $which = $env{'form.changeparms'};
|
} |
my $idx = $env{'form.setparms'};
|
$title = &LONCAPA::map::qtunescape($title); |
if ($env{'form.'.$which.'_'.$idx}) {
|
my $ext='false'; |
my $value = ($which eq 'randompick') ? $env{'form.'.$which.'_'.$idx}
|
if ($url=~m{^http(|s)://}) { $ext='true'; } |
: 'yes';
|
$url = &LONCAPA::map::qtunescape($url); |
&LONCAPA::map::storeparameter($idx, 'parameter_'.$which, $value,
|
# Now insert the URL at the bottom |
$parameter_type{$which});
|
my $newidx = &LONCAPA::map::getresidx($url); |
&remember_parms($idx,$which,'set',$value);
|
if ($env{'docs.markedcopy_supplemental'}) { |
} else {
|
if ($folder =~ /^supplemental/) { |
&LONCAPA::map::delparameter($idx,'parameter_'.$which);
|
$title = $env{'docs.markedcopy_supplemental'}; |
|
} else { |
&remember_parms($idx,$which,'del');
|
(undef,undef,$title) = |
}
|
&parse_supplemental_title($env{'docs.markedcopy_supplemental'}); |
return 1;
|
} |
}
|
} else { |
|
if ($folder=~/^supplemental/) { |
|
$title=time.'___&&&___'.$env{'user.name'}.'___&&&___'. |
sub handle_edit_cmd {
|
$env{'user.domain'}.'___&&&___'.$title; |
my ($coursenum,$coursedom) =@_;
|
} |
|
} |
my ($cmd,$idx)=split('_',$env{'form.cmd'});
|
|
|
$LONCAPA::map::resources[$newidx]= $title.':'.$url.':'.$ext.':normal:res'; |
my $ratstr = $LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
|
push(@LONCAPA::map::order, $newidx); |
my ($title, $url, @rrest) = split(':', $ratstr);
|
return 'ok'; |
|
# Store the result |
if ($cmd eq 'del') {
|
} |
if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
|
|
($url!~/\.(page|sequence|problem|exam|quiz|assess|survey|form|library|task)$/)) {
|
sub uniqueness_check { |
&Apache::lonnet::removeuploadedurl($url);
|
my ($newurl) = @_; |
} else {
|
my $unique = 1; |
&LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
|
foreach my $res (@LONCAPA::map::order) { |
}
|
my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]); |
splice(@LONCAPA::map::order, $idx, 1);
|
$url=&LONCAPA::map::qtescape($url); |
|
if ($newurl eq $url) { |
} elsif ($cmd eq 'cut') {
|
$unique = 0; |
&LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
|
last; |
splice(@LONCAPA::map::order, $idx, 1);
|
} |
|
} |
} elsif ($cmd eq 'up'
|
return $unique; |
&& ($idx) && (defined($LONCAPA::map::order[$idx-1]))) {
|
} |
@LONCAPA::map::order[$idx-1,$idx] = @LONCAPA::map::order[$idx,$idx-1];
|
|
|
my %parameter_type = ( 'randompick' => 'int_pos', |
} elsif ($cmd eq 'down'
|
'hiddenresource' => 'string_yesno', |
&& defined($LONCAPA::map::order[$idx+1])) {
|
'encrypturl' => 'string_yesno', |
@LONCAPA::map::order[$idx+1,$idx] = @LONCAPA::map::order[$idx,$idx+1];
|
'randomorder' => 'string_yesno',); |
|
my $valid_parameters_re = join('|',keys(%parameter_type)); |
} elsif ($cmd eq 'rename') {
|
# set parameters |
|
sub update_parameter { |
my $comment = &LONCAPA::map::qtunescape($env{'form.title'});
|
|
if ($comment=~/\S/) {
|
return 0 if ($env{'form.changeparms'} !~ /^($valid_parameters_re)$/); |
$LONCAPA::map::resources[$LONCAPA::map::order[$idx]]=
|
|
$comment.':'.join(':', $url, @rrest);
|
my $which = $env{'form.changeparms'}; |
}
|
my $idx = $env{'form.setparms'}; |
# Devalidate title cache
|
if ($env{'form.'.$which.'_'.$idx}) { |
my $renamed_url=&LONCAPA::map::qtescape($url);
|
my $value = ($which eq 'randompick') ? $env{'form.'.$which.'_'.$idx} |
&Apache::lonnet::devalidate_title_cache($renamed_url);
|
: 'yes'; |
} else {
|
&LONCAPA::map::storeparameter($idx, 'parameter_'.$which, $value, |
return 0;
|
$parameter_type{$which}); |
}
|
&remember_parms($idx,$which,'set',$value); |
return 1;
|
} else { |
}
|
&LONCAPA::map::delparameter($idx,'parameter_'.$which); |
|
|
sub editor {
|
&remember_parms($idx,$which,'del'); |
my ($r,$coursenum,$coursedom,$folder,$allowed,$upload_output,$type)=@_;
|
} |
|
return 1; |
my $container= ($env{'form.pagepath'}) ? 'page'
|
} |
: 'sequence';
|
|
|
|
my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
|
sub handle_edit_cmd { |
$folder.'.'.$container);
|
my ($coursenum,$coursedom) =@_; |
return $errtext if ($fatal);
|
|
|
my ($cmd,$idx)=split('_',$env{'form.cmd'}); |
if ($#LONCAPA::map::order<1) {
|
|
my $idx=&LONCAPA::map::getresidx();
|
my $ratstr = $LONCAPA::map::resources[$LONCAPA::map::order[$idx]]; |
if ($idx<=0) { $idx=1; }
|
my ($title, $url, @rrest) = split(':', $ratstr); |
$LONCAPA::map::order[0]=$idx;
|
|
$LONCAPA::map::resources[$idx]='';
|
if ($cmd eq 'del') { |
}
|
if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) && |
|
($url!~/\.(page|sequence|problem|exam|quiz|assess|survey|form|library|task)$/)) { |
my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,$is_random_order)=
|
&Apache::lonnet::removeuploadedurl($url); |
&breadcrumbs($folder,$allowed,$type);
|
} else { |
$r->print($breadcrumbtrail);
|
&LONCAPA::map::makezombie($LONCAPA::map::order[$idx]); |
|
} |
# ------------------------------------------------------------ Process commands
|
splice(@LONCAPA::map::order, $idx, 1); |
|
|
# ---------------- if they are for this folder and user allowed to make changes
|
} elsif ($cmd eq 'cut') { |
if (($allowed) && ($env{'form.folder'} eq $folder)) {
|
&LONCAPA::map::makezombie($LONCAPA::map::order[$idx]); |
# set parameters and change order
|
splice(@LONCAPA::map::order, $idx, 1); |
&snapshotbefore();
|
|
|
} elsif ($cmd eq 'up' |
if (&update_parameter()) {
|
&& ($idx) && (defined($LONCAPA::map::order[$idx-1]))) { |
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
|
@LONCAPA::map::order[$idx-1,$idx] = @LONCAPA::map::order[$idx,$idx-1]; |
return $errtext if ($fatal);
|
|
}
|
} elsif ($cmd eq 'down' |
|
&& defined($LONCAPA::map::order[$idx+1])) { |
if ($env{'form.newpos'} && $env{'form.currentpos'}) {
|
@LONCAPA::map::order[$idx+1,$idx] = @LONCAPA::map::order[$idx,$idx+1]; |
# change order
|
|
my $res = splice(@LONCAPA::map::order,$env{'form.currentpos'}-1,1);
|
} elsif ($cmd eq 'rename') { |
splice(@LONCAPA::map::order,$env{'form.newpos'}-1,0,$res);
|
|
|
my $comment = &LONCAPA::map::qtunescape($env{'form.title'}); |
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
|
if ($comment=~/\S/) { |
return $errtext if ($fatal);
|
$LONCAPA::map::resources[$LONCAPA::map::order[$idx]]= |
}
|
$comment.':'.join(':', $url, @rrest); |
|
} |
if ($env{'form.pastemarked'}) {
|
# Devalidate title cache |
my $paste_res =
|
my $renamed_url=&LONCAPA::map::qtescape($url); |
&do_paste_from_buffer($coursenum,$coursedom,$folder);
|
&Apache::lonnet::devalidate_title_cache($renamed_url); |
if ($paste_res eq 'ok') {
|
} else { |
($errtext,$fatal) = &storemap($coursenum,$coursedom,$folder.'.'.$container);
|
return 0; |
return $errtext if ($fatal);
|
} |
} elsif ($paste_res ne '') {
|
return 1; |
$r->print('<p><span class="LC_error">'.$paste_res.'</span></p>');
|
} |
}
|
|
}
|
sub editor { |
|
my ($r,$coursenum,$coursedom,$folder,$allowed,$upload_output,$crstype)=@_; |
$r->print($upload_output);
|
my $container= ($env{'form.pagepath'}) ? 'page' |
|
: 'sequence'; |
if (&handle_edit_cmd()) {
|
|
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
|
my ($errtext,$fatal) = &mapread($coursenum,$coursedom, |
return $errtext if ($fatal);
|
$folder.'.'.$container); |
}
|
return $errtext if ($fatal); |
# Group import/search
|
|
if ($env{'form.importdetail'}) {
|
if ($#LONCAPA::map::order<1) { |
my @imports;
|
my $idx=&LONCAPA::map::getresidx(); |
foreach my $item (split(/\&/,$env{'form.importdetail'})) {
|
if ($idx<=0) { $idx=1; } |
if (defined($item)) {
|
$LONCAPA::map::order[0]=$idx; |
my ($name,$url,$residx)=
|
$LONCAPA::map::resources[$idx]=''; |
map {&unescape($_)} split(/\=/,$item);
|
} |
push(@imports, [$name, $url, $residx]);
|
|
}
|
my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,$is_random_order); |
}
|
if ($allowed) { |
($errtext,$fatal)=&group_import($coursenum, $coursedom, $folder,
|
($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,$is_random_order) = |
$container,'londocs',@imports);
|
&breadcrumbs($allowed,$crstype); |
return $errtext if ($fatal);
|
$r->print($breadcrumbtrail); |
}
|
} else { |
# Loading a complete map
|
$randompick = -1; |
if ($env{'form.loadmap'}) {
|
} |
if ($env{'form.importmap'}=~/\w/) {
|
|
foreach my $res (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$env{'form.importmap'}))) {
|
# ------------------------------------------------------------ Process commands |
my ($title,$url,$ext,$type)=split(/\:/,$res);
|
|
my $idx=&LONCAPA::map::getresidx($url);
|
# ---------------- if they are for this folder and user allowed to make changes |
$LONCAPA::map::resources[$idx]=$res;
|
if (($allowed) && ($env{'form.folder'} eq $folder)) { |
$LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx;
|
# set parameters and change order |
}
|
&snapshotbefore(); |
($errtext,$fatal)=&storemap($coursenum,$coursedom,
|
|
$folder.'.'.$container);
|
if (&update_parameter()) { |
return $errtext if ($fatal);
|
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container); |
} else {
|
return $errtext if ($fatal); |
$r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>');
|
} |
|
|
}
|
if ($env{'form.newpos'} && $env{'form.currentpos'}) { |
}
|
# change order |
&log_differences($plain);
|
my $res = splice(@LONCAPA::map::order,$env{'form.currentpos'}-1,1); |
}
|
splice(@LONCAPA::map::order,$env{'form.newpos'}-1,0,$res); |
# ---------------------------------------------------------------- End commands
|
|
# ---------------------------------------------------------------- Print screen
|
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container); |
my $idx=0;
|
return $errtext if ($fatal); |
my $shown=0;
|
} |
if (($ishidden) || ($isencrypted) || ($randompick>=0) || ($is_random_order)) {
|
|
$r->print('<p>'.&mt('Parameters').':<ul>'.
|
if ($env{'form.pastemarked'}) { |
($randompick>=0?'<li>'.&mt('randomly pick [_1] resources',$randompick).'</li>':'').
|
my $paste_res = |
($ishidden?'<li>'.&mt('contents hidden').'</li>':'').
|
&do_paste_from_buffer($coursenum,$coursedom,$folder); |
($isencrypted?'<li>'.&mt('URLs hidden').'</li>':'').
|
if ($paste_res eq 'ok') { |
'</ul></p>');
|
($errtext,$fatal) = &storemap($coursenum,$coursedom,$folder.'.'.$container); |
}
|
return $errtext if ($fatal); |
if ($randompick>=0) {
|
} elsif ($paste_res ne '') { |
$r->print('<p>'.&mt('Caution: this folder is set to randomly pick a subset of resources. Adding or removing resources from this folder will change the set of resources that the students see, resulting in spurious or missing credit for completed problems, not limited to ones you modify. Do not modify the contents of this folder if it is in active student use.').'</p>');
|
$r->print('<p><span class="LC_error">'.$paste_res.'</span></p>'); |
}
|
} |
if ($is_random_order) {
|
} |
$r->print('<p>'.&mt('Caution: this folder is set to randomly order its contents. Adding or removing resources from this folder will change the order of resources shown.').'</p>');
|
|
}
|
$r->print($upload_output); |
$r->print('<table class="LC_docs_editor">');
|
|
foreach my $res (@LONCAPA::map::order) {
|
if (&handle_edit_cmd()) { |
my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
|
($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container); |
$name=&LONCAPA::map::qtescape($name);
|
return $errtext if ($fatal); |
$url=&LONCAPA::map::qtescape($url);
|
} |
unless ($name) { $name=(split(/\//,$url))[-1]; }
|
# Group import/search |
unless ($name) { $idx++; next; }
|
if ($env{'form.importdetail'}) { |
$r->print(&entryline($idx,$name,$url,$folder,$allowed,$res,
|
my @imports; |
$coursenum));
|
foreach my $item (split(/\&/,$env{'form.importdetail'})) { |
$idx++;
|
if (defined($item)) { |
$shown++;
|
my ($name,$url,$residx)= |
}
|
map {&unescape($_)} split(/\=/,$item); |
unless ($shown) {
|
push(@imports, [$name, $url, $residx]); |
$r->print('<tr><td>'.&mt('Currently no documents.').'</td></tr>');
|
} |
}
|
} |
$r->print("\n</table>\n");
|
($errtext,$fatal)=&group_import($coursenum, $coursedom, $folder, |
if ($allowed) {
|
$container,'londocs',@imports); |
&print_paste_buffer($r,$container);
|
return $errtext if ($fatal); |
}
|
} |
return;
|
# Loading a complete map |
}
|
if ($env{'form.loadmap'}) { |
|
if ($env{'form.importmap'}=~/\w/) { |
sub process_file_upload {
|
foreach my $res (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$env{'form.importmap'}))) { |
my ($upload_output,$coursenum,$coursedom,$allfiles,$codebase,$uploadcmd) = @_;
|
my ($title,$url,$ext,$type)=split(/\:/,$res); |
# upload a file, if present
|
my $idx=&LONCAPA::map::getresidx($url); |
my $parseaction;
|
$LONCAPA::map::resources[$idx]=$res; |
if ($env{'form.parserflag'}) {
|
$LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx; |
$parseaction = 'parse';
|
} |
}
|
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
my $phase_status;
|
$folder.'.'.$container); |
my $folder=$env{'form.folder'};
|
return $errtext if ($fatal); |
if ($folder eq '') {
|
} else { |
$folder='default';
|
$r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>'); |
}
|
|
if ( ($folder=~/^$uploadcmd/) || ($uploadcmd eq 'default') ) {
|
} |
my $errtext='';
|
} |
my $fatal=0;
|
&log_differences($plain); |
my $container='sequence';
|
} |
if ($env{'form.pagepath'}) {
|
# ---------------------------------------------------------------- End commands |
$container='page';
|
# ---------------------------------------------------------------- Print screen |
}
|
my $idx=0; |
($errtext,$fatal)=
|
my $shown=0; |
&mapread($coursenum,$coursedom,$folder.'.'.$container);
|
if (($ishidden) || ($isencrypted) || ($randompick>=0) || ($is_random_order)) { |
if ($#LONCAPA::map::order<1) {
|
$r->print('<div class="LC_Box">'. |
$LONCAPA::map::order[0]=1;
|
'<ol class="LC_docs_parameters"><li class="LC_docs_parameters_title">'.&mt('Parameters:').'</li>'. |
$LONCAPA::map::resources[1]='';
|
($randompick>=0?'<li>'.&mt('randomly pick [quant,_1,resource]',$randompick).'</li>':''). |
}
|
($ishidden?'<li>'.&mt('contents hidden').'</li>':''). |
if ($fatal) {
|
($isencrypted?'<li>'.&mt('URLs hidden').'</li>':''). |
return 'failed';
|
($is_random_order?'<li>'.&mt('random order').'</li>':''). |
}
|
'</ol>'); |
my $destination = 'docs/';
|
if ($randompick>=0) { |
if ($folder =~ /^supplemental/) {
|
$r->print('<p class="LC_warning">' |
$destination = 'supplemental/';
|
.&mt('Caution: this folder is set to randomly pick a subset' |
}
|
.' of resources. Adding or removing resources from this' |
if (($folder eq 'default') || ($folder eq 'supplemental')) {
|
.' folder will change the set of resources that the' |
$destination .= 'default/';
|
.' students see, resulting in spurious or missing credit' |
} elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
|
.' for completed problems, not limited to ones you' |
$destination .= $2.'/';
|
.' modify. Do not modify the contents of this folder if' |
}
|
.' it is in active student use.') |
# this is for a course, not a user, so set coursedoc flag
|
.'</p>' |
# probably the only place in the system where this should be "1"
|
); |
my $newidx=&LONCAPA::map::getresidx();
|
} |
$destination .= $newidx;
|
if ($is_random_order) { |
my $url=&Apache::lonnet::userfileupload('uploaddoc',1,$destination,
|
$r->print('<p class="LC_warning">' |
$parseaction,$allfiles,
|
.&mt('Caution: this folder is set to randomly order its' |
$codebase);
|
.' contents. Adding or removing resources from this folder' |
my $ext='false';
|
.' will change the order of resources shown.') |
if ($url=~m{^http://}) { $ext='true'; }
|
.'</p>' |
$url = &LONCAPA::map::qtunescape($url);
|
); |
my $comment=$env{'form.comment'};
|
} |
$comment = &LONCAPA::map::qtunescape($comment);
|
$r->print('</div>'); |
if ($folder=~/^supplemental/) {
|
} |
$comment=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
|
|
$env{'user.domain'}.'___&&&___'.$comment;
|
my $output; |
}
|
|
|
&Apache::loncommon::start_data_table_count(); #setup a row counter |
$LONCAPA::map::resources[$newidx]=
|
foreach my $res (@LONCAPA::map::order) { |
$comment.':'.$url.':'.$ext.':normal:res';
|
my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]); |
$LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx;
|
$name=&LONCAPA::map::qtescape($name); |
($errtext,$fatal)=&storemap($coursenum,$coursedom,
|
$url=&LONCAPA::map::qtescape($url); |
$folder.'.'.$container);
|
unless ($name) { $name=(split(/\//,$url))[-1]; } |
if ($fatal) {
|
unless ($name) { $idx++; next; } |
$$upload_output .= '<p><span class="LC_error">'.$errtext.'</span></p>';
|
$output .= &entryline($idx,$name,$url,$folder,$allowed,$res, |
return 'failed';
|
$coursenum,$crstype); |
} else {
|
$idx++; |
if ($parseaction eq 'parse') {
|
$shown++; |
my $total_embedded = keys(%{$allfiles});
|
} |
if ($total_embedded > 0) {
|
&Apache::loncommon::end_data_table_count(); |
my $num = 0;
|
|
my $state = '
|
if ($shown) { |
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />
|
$r->print(&Apache::loncommon::start_data_table()); |
<input type="hidden" name="cmd" value="upload_embedded" />
|
if ($allowed) { |
<input type="hidden" name="newidx" value="'.$newidx.'" />
|
$r->print(&Apache::loncommon::start_data_table_header_row() |
<input type="hidden" name="primaryurl" value="'.&escape($url).'" />
|
.'<th colspan="2">'.&mt('Move').'</th>' |
<input type="hidden" name="phasetwo" value="'.$total_embedded.'" />';
|
.'<th>'.&mt('Actions').'</th>' |
$phase_status = 'phasetwo';
|
.'<th colspan="2">'.&mt('Document').'</th>'); |
|
if ($folder !~ /^supplemental/) { |
$$upload_output .=
|
$->print('<th colspan="4">'.&mt('Settings').'</th>'); |
'This file contains embedded multimedia objects, which need to be uploaded to LON-CAPA.<br />'.
|
} |
&Apache::loncommon::ask_for_embedded_content(
|
$r->print(&Apache::loncommon::end_data_table_header_row()); |
'/adm/coursedocs',$state,$allfiles,$codebase);
|
} |
} else {
|
$r->print($output |
$$upload_output .= 'No embedded items identified<br />';
|
.&Apache::loncommon::end_data_table() |
}
|
); |
}
|
} else { |
}
|
$r->print('<p class="LC_info">' |
}
|
.&mt('Currently no documents.') |
return $phase_status;
|
.'</p>' |
}
|
); |
|
} |
sub process_secondary_uploads {
|
if ($allowed) { |
my ($upload_output,$coursedom,$coursenum,$formname,$num,$newidx) = @_;
|
&print_paste_buffer($r,$container); |
my $folder=$env{'form.folder'};
|
} |
my $destination = 'docs/';
|
return; |
if ($folder =~ /^supplemental/) {
|
} |
$destination = 'supplemental/';
|
|
}
|
sub process_file_upload { |
if (($folder eq 'default') || ($folder eq 'supplemental')) {
|
my ($upload_output,$coursenum,$coursedom,$allfiles,$codebase,$uploadcmd) = @_; |
$destination .= 'default/';
|
# upload a file, if present |
} elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
|
my $parseaction; |
$destination .= $2.'/';
|
if ($env{'form.parserflag'}) { |
}
|
$parseaction = 'parse'; |
$destination .= $newidx;
|
} |
my ($url,$filename);
|
my $phase_status; |
$url=&Apache::lonnet::userfileupload($formname.$num,1,$destination);
|
my $folder=$env{'form.folder'}; |
($filename) = ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/\Q$destination\E/(.+)$});
|
if ($folder eq '') { |
return $filename;
|
$folder='default'; |
}
|
} |
|
if ( ($folder=~/^$uploadcmd/) || ($uploadcmd eq 'default') ) { |
sub is_supplemental_title {
|
my $errtext=''; |
my ($title) = @_;
|
my $fatal=0; |
return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/);
|
my $container='sequence'; |
}
|
if ($env{'form.pagepath'}) { |
|
$container='page'; |
sub parse_supplemental_title {
|
} |
my ($title) = @_;
|
($errtext,$fatal)= |
|
&mapread($coursenum,$coursedom,$folder.'.'.$container); |
my ($foldertitle,$renametitle);
|
if ($#LONCAPA::map::order<1) { |
if ($title =~ /&&&/) {
|
$LONCAPA::map::order[0]=1; |
$title = &HTML::Entites::decode($title);
|
$LONCAPA::map::resources[1]=''; |
}
|
} |
if ($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/) {
|
if ($fatal) { |
$renametitle=$4;
|
return 'failed'; |
my ($time,$uname,$udom) = ($1,$2,$3);
|
} |
$foldertitle=&Apache::lontexconvert::msgtexconverted($4);
|
my $destination = 'docs/'; |
my $name = &Apache::loncommon::plainname($uname,$udom);
|
if ($folder =~ /^supplemental/) { |
$name = &HTML::Entities::encode($name,'"<>&\'');
|
$destination = 'supplemental/'; |
$title='<i>'.&Apache::lonlocal::locallocaltime($time).'</i> '.
|
} |
$name.': <br />'.$foldertitle;
|
if (($folder eq 'default') || ($folder eq 'supplemental')) { |
}
|
$destination .= 'default/'; |
if (wantarray) {
|
} elsif ($folder =~ /^(default|supplemental)_(\d+)$/) { |
return ($title,$foldertitle,$renametitle);
|
$destination .= $2.'/'; |
}
|
} |
return $title;
|
# this is for a course, not a user, so set coursedoc flag |
}
|
# probably the only place in the system where this should be "1" |
|
my $newidx=&LONCAPA::map::getresidx(); |
# --------------------------------------------------------------- An entry line
|
$destination .= $newidx; |
|
my $url=&Apache::lonnet::userfileupload('uploaddoc',1,$destination, |
sub entryline {
|
$parseaction,$allfiles, |
my ($index,$title,$url,$folder,$allowed,$residx,$coursenum)=@_;
|
$codebase); |
|
my $ext='false'; |
my ($foldertitle,$pagetitle,$renametitle);
|
if ($url=~m{^http://}) { $ext='true'; } |
if (&is_supplemental_title($title)) {
|
$url = &LONCAPA::map::qtunescape($url); |
($title,$foldertitle,$renametitle) = &parse_supplemental_title($title);
|
my $comment=$env{'form.comment'}; |
$pagetitle = $foldertitle;
|
$comment = &LONCAPA::map::qtunescape($comment); |
} else {
|
if ($folder=~/^supplemental/) { |
$title=&HTML::Entities::encode($title,'"<>&\'');
|
$comment=time.'___&&&___'.$env{'user.name'}.'___&&&___'. |
$renametitle=$title;
|
$env{'user.domain'}.'___&&&___'.$comment; |
$foldertitle=$title;
|
} |
$pagetitle=$title;
|
|
}
|
$LONCAPA::map::resources[$newidx]= |
|
$comment.':'.$url.':'.$ext.':normal:res'; |
my $orderidx=$LONCAPA::map::order[$index];
|
$LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx; |
|
($errtext,$fatal)=&storemap($coursenum,$coursedom, |
|
$folder.'.'.$container); |
$renametitle=~s/\\/\\\\/g;
|
if ($fatal) { |
$renametitle=~s/\"\;/\\\"/g;
|
$$upload_output .= '<p><span class="LC_error">'.$errtext.'</span></p>'; |
$renametitle=~s/ /%20/g;
|
return 'failed'; |
my $line='<tr>';
|
} else { |
my ($form_start,$form_end);
|
if ($parseaction eq 'parse') { |
# Edit commands
|
my $total_embedded = scalar(keys(%{$allfiles})); |
my ($container, $type, $esc_path, $path, $symb);
|
if ($total_embedded > 0) { |
if ($env{'form.folderpath'}) {
|
my $num = 0; |
$type = 'folder';
|
my $state = ' |
$container = 'sequence';
|
<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /> |
$esc_path=&escape($env{'form.folderpath'});
|
<input type="hidden" name="cmd" value="upload_embedded" /> |
$path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
|
<input type="hidden" name="newidx" value="'.$newidx.'" /> |
# $htmlfoldername=&HTML::Entities::encode($env{'form.foldername'},'<>&"');
|
<input type="hidden" name="primaryurl" value="'.&escape($url).'" /> |
}
|
<input type="hidden" name="phasetwo" value="'.$total_embedded.'" />'; |
if ($env{'form.pagepath'}) {
|
$phase_status = 'phasetwo'; |
$type = $container = 'page';
|
|
$esc_path=&escape($path = $env{'form.pagepath'});
|
$$upload_output .= |
$path = &HTML::Entities::encode($env{'form.pagepath'},'<>&"');
|
'This file contains embedded multimedia objects, which need to be uploaded to LON-CAPA.<br />'. |
$symb=&escape($env{'form.pagesymb'});
|
&Apache::loncommon::ask_for_embedded_content( |
}
|
'/adm/coursedocs',$state,$allfiles,$codebase); |
my $cpinfo='';
|
} else { |
if ($allowed) {
|
$$upload_output .= 'No embedded items identified<br />'; |
my $incindex=$index+1;
|
} |
my $selectbox='';
|
} |
if (($folder!~/^supplemental/) &&
|
} |
($#LONCAPA::map::order>0) &&
|
} |
((split(/\:/,
|
return $phase_status; |
$LONCAPA::map::resources[$LONCAPA::map::order[0]]))[1]
|
} |
ne '') &&
|
|
((split(/\:/,
|
sub process_secondary_uploads { |
$LONCAPA::map::resources[$LONCAPA::map::order[1]]))[1]
|
my ($upload_output,$coursedom,$coursenum,$formname,$num,$newidx) = @_; |
ne '')) {
|
my $folder=$env{'form.folder'}; |
$selectbox=
|
my $destination = 'docs/'; |
'<input type="hidden" name="currentpos" value="'.$incindex.'" />'.
|
if ($folder =~ /^supplemental/) { |
'<select name="newpos" onChange="this.form.submit()">';
|
$destination = 'supplemental/'; |
for (my $i=1;$i<=$#LONCAPA::map::order+1;$i++) {
|
} |
if ($i==$incindex) {
|
if (($folder eq 'default') || ($folder eq 'supplemental')) { |
$selectbox.='<option value="" selected="1">('.$i.')</option>';
|
$destination .= 'default/'; |
} else {
|
} elsif ($folder =~ /^(default|supplemental)_(\d+)$/) { |
$selectbox.='<option value="'.$i.'">'.$i.'</option>';
|
$destination .= $2.'/'; |
}
|
} |
}
|
$destination .= $newidx; |
$selectbox.='</select>';
|
my ($url,$filename); |
}
|
$url=&Apache::lonnet::userfileupload($formname.$num,1,$destination); |
my %lt=&Apache::lonlocal::texthash(
|
($filename) = ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/\Q$destination\E/(.+)$}); |
'up' => 'Move Up',
|
return $filename; |
'dw' => 'Move Down',
|
} |
'rm' => 'Remove',
|
|
'ct' => 'Cut',
|
sub is_supplemental_title { |
'rn' => 'Rename',
|
my ($title) = @_; |
'cp' => 'Copy');
|
return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/); |
my $nocopy=0;
|
} |
my $nocut=0;
|
|
if ($url=~/\.(page|sequence)$/) {
|
sub parse_supplemental_title { |
if ($url =~ m{/res/}) {
|
my ($title) = @_; |
# no copy for published maps
|
|
$nocopy = 1;
|
my ($foldertitle,$renametitle); |
} else {
|
if ($title =~ /&&&/) { |
foreach my $item (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$url),1)) {
|
$title = &HTML::Entites::decode($title); |
my ($title,$url,$ext,$type)=split(/\:/,$item);
|
} |
if (($url=~/\.(page|sequence)/) && ($type ne 'zombie')) {
|
if ($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/) { |
$nocopy=1;
|
$renametitle=$4; |
last;
|
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,'"<>&\''); |
if ($url=~/^\/res\/lib\/templates\//) {
|
$title='<i>'.&Apache::lonlocal::locallocaltime($time).'</i> '. |
$nocopy=1;
|
$name.': <br />'.$foldertitle; |
$nocut=1;
|
} |
}
|
if (wantarray) { |
my $copylink=' ';
|
return ($title,$foldertitle,$renametitle); |
my $cutlink=' ';
|
} |
|
return $title; |
my $skip_confirm = 0;
|
} |
if ( $folder =~ /^supplemental/
|
|
|| ($url =~ m{( /smppg$
|
# --------------------------------------------------------------- An entry line |
|/syllabus$
|
|
|/aboutme$
|
sub entryline { |
|/navmaps$
|
my ($index,$title,$url,$folder,$allowed,$residx,$coursenum,$crstype)=@_; |
|/bulletinboard$
|
my ($foldertitle,$pagetitle,$renametitle); |
|\.html$
|
if (&is_supplemental_title($title)) { |
|^/adm/wrapper/ext)}x)) {
|
($title,$foldertitle,$renametitle) = &parse_supplemental_title($title); |
$skip_confirm = 1;
|
$pagetitle = $foldertitle; |
}
|
} else { |
|
$title=&HTML::Entities::encode($title,'"<>&\''); |
if (!$nocopy) {
|
$renametitle=$title; |
$copylink=(<<ENDCOPY);
|
$foldertitle=$title; |
<a href='javascript:markcopy("$esc_path","$index","$renametitle","$container","$symb","$folder");' class="LC_docs_copy">$lt{'cp'}</a>
|
$pagetitle=$title; |
ENDCOPY
|
} |
}
|
|
if (!$nocut) {
|
my $orderidx=$LONCAPA::map::order[$index]; |
$cutlink=(<<ENDCUT);
|
|
<a href='javascript:cutres("$esc_path","$index","$renametitle","$container","$symb","$folder",$skip_confirm);' class="LC_docs_cut">$lt{'ct'}</a>
|
|
ENDCUT
|
$renametitle=~s/\\/\\\\/g; |
}
|
$renametitle=~s/\"\;/\\\"/g; |
$form_start = (<<END);
|
$renametitle=~s/ /%20/g; |
<form action="/adm/coursedocs" method="post">
|
my $line=&Apache::loncommon::start_data_table_row(); |
<input type="hidden" name="${type}path" value="$path" />
|
my ($form_start,$form_end); |
<input type="hidden" name="${type}symb" value="$symb" />
|
# Edit commands |
<input type="hidden" name="setparms" value="$orderidx" />
|
my ($container, $type, $esc_path, $path, $symb); |
<input type="hidden" name="changeparms" value="0" />
|
if ($env{'form.folderpath'}) { |
END
|
$type = 'folder'; |
$form_end = '</form>';
|
$container = 'sequence'; |
$line.=(<<END);
|
$esc_path=&escape($env{'form.folderpath'}); |
<td>
|
$path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"'); |
<table class="LC_docs_entry_move">
|
# $htmlfoldername=&HTML::Entities::encode($env{'form.foldername'},'<>&"'); |
<tr>
|
} |
<td>
|
if ($env{'form.pagepath'}) { |
<a href='/adm/coursedocs?cmd=up_$index&${type}path=$esc_path&${type}symb=$symb$cpinfo'><img src="${iconpath}move_up.gif" alt='$lt{'up'}' class="LC_icon" /></a>
|
$type = $container = 'page'; |
</td>
|
$esc_path=&escape($path = $env{'form.pagepath'}); |
</tr>
|
$path = &HTML::Entities::encode($env{'form.pagepath'},'<>&"'); |
<tr>
|
$symb=&escape($env{'form.pagesymb'}); |
<td>
|
} |
<a href='/adm/coursedocs?cmd=down_$index&${type}path=$esc_path&${type}symb=$symb$cpinfo'><img src="${iconpath}move_down.gif" alt='$lt{'dw'}' class="LC_icon" /></a>
|
my $cpinfo=''; |
</td>
|
if ($allowed) { |
</tr>
|
my $incindex=$index+1; |
</table>
|
my $selectbox=''; |
</td>
|
if (($folder!~/^supplemental/) && |
<td>
|
($#LONCAPA::map::order>0) && |
$form_start
|
((split(/\:/, |
$selectbox
|
$LONCAPA::map::resources[$LONCAPA::map::order[0]]))[1] |
$form_end
|
ne '') && |
</td>
|
((split(/\:/, |
<td class="LC_docs_entry_commands">
|
$LONCAPA::map::resources[$LONCAPA::map::order[1]]))[1] |
<a href='javascript:removeres("$esc_path","$index","$renametitle","$container","$symb",$skip_confirm);' class="LC_docs_remove">$lt{'rm'}</a>
|
ne '')) { |
$cutlink
|
$selectbox= |
<a href='javascript:changename("$esc_path","$index","$renametitle","$container","$symb");' class="LC_docs_rename">$lt{'rn'}</a>
|
'<input type="hidden" name="currentpos" value="'.$incindex.'" />'. |
$copylink
|
'<select name="newpos" onchange="this.form.submit()">'; |
</td>
|
for (my $i=1;$i<=$#LONCAPA::map::order+1;$i++) { |
END
|
if ($i==$incindex) { |
|
$selectbox.='<option value="" selected="selected">('.$i.')</option>'; |
}
|
} else { |
# Figure out what kind of a resource this is
|
$selectbox.='<option value="'.$i.'">'.$i.'</option>'; |
my ($extension)=($url=~/\.(\w+)$/);
|
} |
my $uploaded=($url=~/^\/*uploaded\//);
|
} |
my $icon=&Apache::loncommon::icon($url);
|
$selectbox.='</select>'; |
my $isfolder=0;
|
} |
my $ispage=0;
|
my %lt=&Apache::lonlocal::texthash( |
my $folderarg;
|
'up' => 'Move Up', |
my $pagearg;
|
'dw' => 'Move Down', |
my $pagefile;
|
'rm' => 'Remove', |
if ($uploaded) {
|
'ct' => 'Cut', |
if ($extension eq 'sequence') {
|
'rn' => 'Rename', |
$icon=$iconpath.'/folder_closed.gif';
|
'cp' => 'Copy'); |
$url=~/\Q$coursenum\E\/([\/\w]+)\.sequence$/;
|
my $nocopy=0; |
$url='/adm/coursedocs?';
|
my $nocut=0; |
$folderarg=$1;
|
if ($url=~/\.(page|sequence)$/) { |
$isfolder=1;
|
if ($url =~ m{/res/}) { |
} elsif ($extension eq 'page') {
|
# no copy for published maps |
$icon=$iconpath.'/page.gif';
|
$nocopy = 1; |
$url=~/\Q$coursenum\E\/([\/\w]+)\.page$/;
|
} else { |
$pagearg=$1;
|
foreach my $item (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$url),1)) { |
$url='/adm/coursedocs?';
|
my ($title,$url,$ext,$type)=split(/\:/,$item); |
$ispage=1;
|
if (($url=~/\.(page|sequence)/) && ($type ne 'zombie')) { |
} else {
|
$nocopy=1; |
&Apache::lonnet::allowuploaded('/adm/coursedoc',$url);
|
last; |
}
|
} |
}
|
} |
|
} |
my $orig_url = $url;
|
} |
my $external = ($url=~s{^http(|s)(:|:)//}{/adm/wrapper/ext/});
|
if ($url=~/^\/res\/lib\/templates\//) { |
if ((!$isfolder) && ($residx) && ($folder!~/supplemental/) && (!$ispage)) {
|
$nocopy=1; |
my $symb=&Apache::lonnet::symbclean(
|
$nocut=1; |
&Apache::lonnet::declutter('uploaded/'.
|
} |
$env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.
|
my $copylink=' '; |
$env{'course.'.$env{'request.course.id'}.'.num'}.'/'.$folder.
|
my $cutlink=' '; |
'.sequence').
|
|
'___'.$residx.'___'.
|
my $skip_confirm = 0; |
&Apache::lonnet::declutter($url));
|
if ( $folder =~ /^supplemental/ |
(undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
|
|| ($url =~ m{( /smppg$ |
$url=&Apache::lonnet::clutter($url);
|
|/syllabus$ |
if ($url=~/^\/*uploaded\//) {
|
|/aboutme$ |
$url=~/\.(\w+)$/;
|
|/navmaps$ |
my $embstyle=&Apache::loncommon::fileembstyle($1);
|
|/bulletinboard$ |
if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
|
|\.html$ |
$url='/adm/wrapper'.$url;
|
|^/adm/wrapper/ext)}x)) { |
} elsif ($embstyle eq 'ssi') {
|
$skip_confirm = 1; |
#do nothing with these
|
} |
} elsif ($url!~/\.(sequence|page)$/) {
|
|
$url='/adm/coursedocs/showdoc'.$url;
|
if (!$nocopy) { |
}
|
$copylink=(<<ENDCOPY); |
} elsif ($url=~m|^/ext/|) {
|
<a href='javascript:markcopy("$esc_path","$index","$renametitle","$container","$symb","$folder");' class="LC_docs_copy">$lt{'cp'}</a> |
$url='/adm/wrapper'.$url;
|
ENDCOPY |
$external = 1;
|
} |
}
|
if (!$nocut) { |
if (&Apache::lonnet::symbverify($symb,$url)) {
|
$cutlink=(<<ENDCUT); |
$url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb);
|
<a href='javascript:cutres("$esc_path","$index","$renametitle","$container","$symb","$folder",$skip_confirm);' class="LC_docs_cut">$lt{'ct'}</a> |
} else {
|
ENDCUT |
$url='';
|
} |
}
|
$form_start = (<<END); |
if ($container eq 'page') {
|
<form action="/adm/coursedocs" method="post"> |
my $symb=$env{'form.pagesymb'};
|
<input type="hidden" name="${type}path" value="$path" /> |
|
<input type="hidden" name="${type}symb" value="$symb" /> |
$url=&Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
|
<input type="hidden" name="setparms" value="$orderidx" /> |
$url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb);
|
<input type="hidden" name="changeparms" value="0" /> |
}
|
END |
}
|
$form_end = '</form>'; |
my ($parameterset,$rand_order_text) = (' ', ' ');
|
$line.=(<<END); |
if ($isfolder || $extension eq 'sequence') {
|
<td> |
my $foldername=&escape($foldertitle);
|
<div class="LC_docs_entry_move"> |
my $folderpath=$env{'form.folderpath'};
|
<a href='/adm/coursedocs?cmd=up_$index&${type}path=$esc_path&${type}symb=$symb$cpinfo'> |
if ($folderpath) { $folderpath.='&' };
|
<img src="${iconpath}move_up.gif" alt='$lt{'up'}' class="LC_icon" /> |
# Append randompick number, hidden, and encrypted with ":" to foldername,
|
</a> |
# so it gets transferred between levels
|
</div> |
$folderpath.=$folderarg.'&'.$foldername.':'.(&LONCAPA::map::getparameter($orderidx,
|
<div class="LC_docs_entry_move"> |
'parameter_randompick'))[0]
|
<a href='/adm/coursedocs?cmd=down_$index&${type}path=$esc_path&${type}symb=$symb$cpinfo'> |
.':'.((&LONCAPA::map::getparameter($orderidx,
|
<img src="${iconpath}move_down.gif" alt='$lt{'dw'}' class="LC_icon" /> |
'parameter_hiddenresource'))[0]=~/^yes$/i)
|
</a> |
.':'.((&LONCAPA::map::getparameter($orderidx,
|
</div> |
'parameter_encrypturl'))[0]=~/^yes$/i)
|
</td> |
.':'.((&LONCAPA::map::getparameter($orderidx,
|
<td> |
'parameter_randomorder'))[0]=~/^yes$/i);
|
$form_start |
$url.='folderpath='.&escape($folderpath).$cpinfo;
|
$selectbox |
$parameterset='<label>'.&mt('Randomly Pick: ').
|
$form_end |
'<input type="text" size="4" onChange="this.form.changeparms.value='."'randompick'".';this.form.submit()" name="randompick_'.$orderidx.'" value="'.
|
</td> |
(&LONCAPA::map::getparameter($orderidx,
|
<td class="LC_docs_entry_commands"> |
'parameter_randompick'))[0].
|
<a href='javascript:removeres("$esc_path","$index","$renametitle","$container","$symb",$skip_confirm);' class="LC_docs_remove">$lt{'rm'}</a> |
'" />'.
|
$cutlink |
'<a href="javascript:void(0)">'.&mt('Save').'</a></label>';
|
<a href='javascript:changename("$esc_path","$index","$renametitle","$container","$symb");' class="LC_docs_rename">$lt{'rn'}</a> |
my $ro_set=
|
$copylink |
((&LONCAPA::map::getparameter($orderidx,'parameter_randomorder'))[0]=~/^yes$/i?' checked="checked"':'');
|
</td> |
$rand_order_text ='
|
END |
<span class="LC_nobreak"><label><input type="checkbox" name="randomorder_'.$orderidx.'" onClick="this.form.changeparms.value=\'randomorder\';this.form.submit()" '.$ro_set.' /> '.&mt('Random Order').' </label></span>';
|
|
}
|
} |
if ($ispage) {
|
# Figure out what kind of a resource this is |
my $pagename=&escape($pagetitle);
|
my ($extension)=($url=~/\.(\w+)$/); |
my $pagepath;
|
my $uploaded=($url=~/^\/*uploaded\//); |
my $folderpath=$env{'form.folderpath'};
|
my $icon=&Apache::loncommon::icon($url); |
if ($folderpath) { $pagepath = $folderpath.'&' };
|
my $isfolder=0; |
$pagepath.=$pagearg.'&'.$pagename;
|
my $ispage=0; |
my $symb=$env{'form.pagesymb'};
|
my $folderarg; |
if (!$symb) {
|
my $pagearg; |
my $path='uploaded/'.
|
my $pagefile; |
$env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.
|
if ($uploaded) { |
$env{'course.'.$env{'request.course.id'}.'.num'}.'/';
|
if ($extension eq 'sequence') { |
$symb=&Apache::lonnet::encode_symb($path.$folder.'.sequence',
|
$icon=$iconpath.'/navmap.folder.closed.gif'; |
$residx,
|
$url=~/\Q$coursenum\E\/([\/\w]+)\.sequence$/; |
$path.$pagearg.'.page');
|
$url='/adm/coursedocs?'; |
}
|
$folderarg=$1; |
$url.='pagepath='.&escape($pagepath).
|
$isfolder=1; |
'&pagesymb='.&escape($symb).$cpinfo;
|
} elsif ($extension eq 'page') { |
}
|
$icon=$iconpath.'/page.gif'; |
if ($external) {
|
$url=~/\Q$coursenum\E\/([\/\w]+)\.page$/; |
my $form = ($folder =~ /^default/)? 'newext' : 'supnewext';
|
$pagearg=$1; |
$external = ' <a class="LC_docs_ext_edit" href="javascript:edittext(\''.$form.'\',\''.$residx.'\',\''.&escape($title).'\',\''.&escape($orig_url).'\');" >'.&mt('Edit').'</a>';
|
$url='/adm/coursedocs?'; |
} else {
|
$ispage=1; |
undef($external);
|
} else { |
}
|
&Apache::lonnet::allowuploaded('/adm/coursedoc',$url); |
$line.='
|
} |
<td class="LC_docs_entry_icon">
|
} |
'.($url?'<a href="'.$url.'">':'').'<img src="'.$icon.'" alt="" class="LC_icon" />'.($url?'</a>':'').'
|
|
</td>
|
my $orig_url = $url; |
<td class="LC_docs_entry_title">
|
$orig_url=~s{http(:|:)//https(:|:)//}{https$2//}; |
'.($url?"<a href=\"$url\">":'').$title.($url?'</a>':' <span class="LC_docs_reinit_warn">'.&mt('(re-initialize course to access)').'</span>').$external."
|
my $external = ($url=~s{^http(|s)(:|:)//}{/adm/wrapper/ext/}); |
</td>";
|
if ((!$isfolder) && ($residx) && ($folder!~/supplemental/) && (!$ispage)) { |
if (($allowed) && ($folder!~/^supplemental/)) {
|
my $symb=&Apache::lonnet::symbclean( |
my %lt=&Apache::lonlocal::texthash(
|
&Apache::lonnet::declutter('uploaded/'. |
'hd' => 'Hidden',
|
$env{'course.'.$env{'request.course.id'}.'.domain'}.'/'. |
'ec' => 'URL hidden');
|
$env{'course.'.$env{'request.course.id'}.'.num'}.'/'.$folder. |
my $enctext=
|
'.sequence'). |
((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i?' checked="1"':'');
|
'___'.$residx.'___'. |
my $hidtext=
|
&Apache::lonnet::declutter($url)); |
((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i?' checked="1"':'');
|
(undef,undef,$url)=&Apache::lonnet::decode_symb($symb); |
$line.=(<<ENDPARMS);
|
$url=&Apache::lonnet::clutter($url); |
<td class="LC_docs_entry_parameter">
|
if ($url=~/^\/*uploaded\//) { |
$form_start
|
$url=~/\.(\w+)$/; |
<label><input type="checkbox" name="hiddenresource_$orderidx" onClick="this.form.changeparms.value='hiddenresource';this.form.submit()" $hidtext /> $lt{'hd'}</label>
|
my $embstyle=&Apache::loncommon::fileembstyle($1); |
$form_end
|
if (($embstyle eq 'img') || ($embstyle eq 'emb')) { |
</td>
|
$url='/adm/wrapper'.$url; |
<td class="LC_docs_entry_parameter">
|
} elsif ($embstyle eq 'ssi') { |
$form_start
|
#do nothing with these |
<label><input type="checkbox" name="encrypturl_$orderidx" onClick="this.form.changeparms.value='encrypturl';this.form.submit()" $enctext /> $lt{'ec'}</label>
|
} elsif ($url!~/\.(sequence|page)$/) { |
$form_end
|
$url='/adm/coursedocs/showdoc'.$url; |
</td>
|
} |
<td class="LC_docs_entry_parameter">$form_start $rand_order_text $form_end</td>
|
} elsif ($url=~m|^/ext/|) { |
<td class="LC_docs_entry_parameter">$form_start $parameterset $form_end</td>
|
$url='/adm/wrapper'.$url; |
ENDPARMS
|
$external = 1; |
}
|
} |
$line.="</tr>";
|
if (&Apache::lonnet::symbverify($symb,$url)) { |
return $line;
|
$url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb); |
}
|
} else { |
|
$url=''; |
=pod
|
} |
|
if ($container eq 'page') { |
=item tiehash()
|
my $symb=$env{'form.pagesymb'}; |
|
|
tie the hash
|
$url=&Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]); |
|
$url.=(($url=~/\?/)?'&':'?').'symb='.&escape($symb); |
=cut
|
} |
|
} |
sub tiehash {
|
my ($parameterset,$rand_order_text) = (' ', ' '); |
my ($mode)=@_;
|
if ($isfolder || $extension eq 'sequence') { |
$hashtied=0;
|
my $foldername=&escape($foldertitle); |
if ($env{'request.course.fn'}) {
|
my $folderpath=$env{'form.folderpath'}; |
if ($mode eq 'write') {
|
if ($folderpath) { $folderpath.='&' }; |
if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db",
|
# Append randompick number, hidden, and encrypted with ":" to foldername, |
&GDBM_WRCREAT(),0640)) {
|
# so it gets transferred between levels |
$hashtied=2;
|
$folderpath.=$folderarg.'&'.$foldername.':'.(&LONCAPA::map::getparameter($orderidx, |
}
|
'parameter_randompick'))[0] |
} else {
|
.':'.((&LONCAPA::map::getparameter($orderidx, |
if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db",
|
'parameter_hiddenresource'))[0]=~/^yes$/i) |
&GDBM_READER(),0640)) {
|
.':'.((&LONCAPA::map::getparameter($orderidx, |
$hashtied=1;
|
'parameter_encrypturl'))[0]=~/^yes$/i) |
}
|
.':'.((&LONCAPA::map::getparameter($orderidx, |
}
|
'parameter_randomorder'))[0]=~/^yes$/i); |
}
|
$url.='folderpath='.&escape($folderpath).$cpinfo; |
}
|
$parameterset='<label>'.&mt('Randomly Pick: '). |
|
'<input type="text" size="4" onchange="this.form.changeparms.value='."'randompick'".';this.form.submit()" name="randompick_'.$orderidx.'" value="'. |
sub untiehash {
|
(&LONCAPA::map::getparameter($orderidx, |
if ($hashtied) { untie %hash; }
|
'parameter_randompick'))[0]. |
$hashtied=0;
|
'" />'. |
return OK;
|
'<a href="javascript:void(0)">'.&mt('Save').'</a></label>'; |
}
|
my $ro_set= |
|
((&LONCAPA::map::getparameter($orderidx,'parameter_randomorder'))[0]=~/^yes$/i?' checked="checked"':''); |
|
$rand_order_text =' |
|
<span class="LC_nobreak"><label><input type="checkbox" name="randomorder_'.$orderidx.'" onclick="this.form.changeparms.value=\'randomorder\';this.form.submit()" '.$ro_set.' /> '.&mt('Random Order').' </label></span>'; |
|
} |
sub checkonthis {
|
if ($ispage) { |
my ($r,$url,$level,$title)=@_;
|
my $pagename=&escape($pagetitle); |
$url=&unescape($url);
|
my $pagepath; |
$alreadyseen{$url}=1;
|
my $folderpath=$env{'form.folderpath'}; |
$r->rflush();
|
if ($folderpath) { $pagepath = $folderpath.'&' }; |
if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {
|
$pagepath.=$pagearg.'&'.$pagename; |
$r->print("\n<br />");
|
my $symb=$env{'form.pagesymb'}; |
if ($level==0) {
|
if (!$symb) { |
$r->print("<br />");
|
my $path='uploaded/'. |
}
|
$env{'course.'.$env{'request.course.id'}.'.domain'}.'/'. |
for (my $i=0;$i<=$level*5;$i++) {
|
$env{'course.'.$env{'request.course.id'}.'.num'}.'/'; |
$r->print(' ');
|
$symb=&Apache::lonnet::encode_symb($path.$folder.'.sequence', |
}
|
$residx, |
$r->print('<a href="'.$url.'" target="cat">'.
|
$path.$pagearg.'.page'); |
($title?$title:$url).'</a> ');
|
} |
if ($url=~/^\/res\//) {
|
$url.='pagepath='.&escape($pagepath). |
my $result=&Apache::lonnet::repcopy(
|
'&pagesymb='.&escape($symb).$cpinfo; |
&Apache::lonnet::filelocation('',$url));
|
} |
if ($result eq 'ok') {
|
if (($external) && ($allowed)) { |
$r->print('<span class="LC_success">'.&mt('ok').'</span>');
|
my $form = ($folder =~ /^default/)? 'newext' : 'supnewext'; |
$r->rflush();
|
$external = ' <a class="LC_docs_ext_edit" href="javascript:edittext(\''.$form.'\',\''.$residx.'\',\''.&escape($title).'\',\''.&escape($orig_url).'\');" >'.&mt('Edit').'</a>'; |
&Apache::lonnet::countacc($url);
|
} else { |
$url=~/\.(\w+)$/;
|
undef($external); |
if (&Apache::loncommon::fileembstyle($1) eq 'ssi') {
|
} |
$r->print('<br />');
|
my $reinit; |
$r->rflush();
|
if ($crstype eq 'Community') { |
for (my $i=0;$i<=$level*5;$i++) {
|
$reinit = &mt('(re-initialize community to access)'); |
$r->print(' ');
|
} else { |
}
|
$reinit = &mt('(re-initialize course to access)'); |
$r->print('- '.&mt('Rendering:').' ');
|
} |
my ($errorcount,$warningcount)=split(/:/,
|
$line.=' |
&Apache::lonnet::ssi_body($url,
|
<td> |
('grade_target'=>'web',
|
'.($url?'<a href="'.$url.'">':'').'<img src="'.$icon.'" alt="" class="LC_icon" />'.($url?'</a>':'').' |
'return_only_error_and_warning_counts' => 1)));
|
</td> |
if (($errorcount) ||
|
<td> |
($warningcount)) {
|
'.($url?"<a href=\"$url\">":'').$title.($url?'</a>':' <span class="LC_docs_reinit_warn">'.$reinit.'</span>').$external." |
if ($errorcount) {
|
</td>"; |
$r->print('<img src="/adm/lonMisc/bomb.gif" /><span class="LC_error">'.
|
if (($allowed) && ($folder!~/^supplemental/)) { |
&mt('[quant,_1,error]',$errorcount).'</span>');
|
my %lt=&Apache::lonlocal::texthash( |
}
|
'hd' => 'Hidden', |
if ($warningcount) {
|
'ec' => 'URL hidden'); |
$r->print('<span class="LC_warning">'.
|
my $enctext= |
&mt('[quant,_1,warning]',$warningcount).'</span>');
|
((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i?' checked="checked"':''); |
}
|
my $hidtext= |
} else {
|
((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i?' checked="checked"':''); |
$r->print('<span class="LC_success">'.&mt('ok').'</span>');
|
$line.=(<<ENDPARMS); |
}
|
<td class="LC_docs_entry_parameter"> |
$r->rflush();
|
$form_start |
}
|
<label><input type="checkbox" name="hiddenresource_$orderidx" onclick="this.form.changeparms.value='hiddenresource';this.form.submit()" $hidtext /> $lt{'hd'}</label> |
my $dependencies=
|
$form_end |
&Apache::lonnet::metadata($url,'dependencies');
|
</td> |
foreach my $dep (split(/\,/,$dependencies)) {
|
<td class="LC_docs_entry_parameter"> |
if (($dep=~/^\/res\//) && (!$alreadyseen{$dep})) {
|
$form_start |
&checkonthis($r,$dep,$level+1);
|
<label><input type="checkbox" name="encrypturl_$orderidx" onclick="this.form.changeparms.value='encrypturl';this.form.submit()" $enctext /> $lt{'ec'}</label> |
}
|
$form_end |
}
|
</td> |
} elsif ($result eq 'unavailable') {
|
<td class="LC_docs_entry_parameter">$form_start $rand_order_text $form_end</td> |
$r->print('<span class="LC_error">'.&mt('connection down').'</span>');
|
<td class="LC_docs_entry_parameter">$form_start $parameterset $form_end</td> |
} elsif ($result eq 'not_found') {
|
ENDPARMS |
unless ($url=~/\$/) {
|
} |
$r->print('<span class="LC_error">'.&mt('not found').'</b></span>');
|
$line.=&Apache::loncommon::end_data_table_row(); |
} else {
|
return $line; |
$r->print('<span class="LC_unknown">'.&mt('unable to verify variable URL').'</span>');
|
} |
}
|
|
} else {
|
=pod |
$r->print('<span class="LC_error">'.&mt('access denied').'</span>');
|
|
}
|
=item tiehash() |
}
|
|
}
|
tie the hash |
}
|
|
|
=cut |
|
|
|
sub tiehash { |
=pod
|
my ($mode)=@_; |
|
$hashtied=0; |
=item list_symbs()
|
if ($env{'request.course.fn'}) { |
|
if ($mode eq 'write') { |
List Symbs
|
if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db", |
|
&GDBM_WRCREAT(),0640)) { |
=cut
|
$hashtied=2; |
|
} |
sub list_symbs {
|
} else { |
my ($r) = @_;
|
if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db", |
|
&GDBM_READER(),0640)) { |
my $type = &Apache::loncommon::course_type();
|
$hashtied=1; |
$r->print(&Apache::loncommon::start_page('Symb List'));
|
} |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Symb List'));
|
} |
my $navmap = Apache::lonnavmaps::navmap->new();
|
} |
if (!defined($navmap)) {
|
} |
$r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'.
|
|
'<div class="LC_error">'.
|
sub untiehash { |
&mt('Unable to retrieve information about course contents').
|
if ($hashtied) { untie %hash; } |
'</div>');
|
$hashtied=0; |
&Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($type).':'.$env{'request.course.id'});
|
return OK; |
} else {
|
} |
$r->print("<pre>\n");
|
|
foreach my $res ($navmap->retrieveResources()) {
|
|
$r->print($res->compTitle()."\t".$res->symb()."\n");
|
|
}
|
|
$r->print("\n</pre>\n");
|
sub checkonthis { |
}
|
my ($r,$url,$level,$title)=@_; |
$r->print('<a href="/adm/coursedocs">'.&mt('Return to DOCS').'</a>');
|
$url=&unescape($url); |
}
|
$alreadyseen{$url}=1; |
|
$r->rflush(); |
|
if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) { |
sub verifycontent {
|
$r->print("\n<br />"); |
my ($r) = @_;
|
if ($level==0) { |
my $type = &Apache::loncommon::course_type();
|
$r->print("<br />"); |
my $loaderror=&Apache::lonnet::overloaderror($r);
|
} |
if ($loaderror) { return $loaderror; }
|
for (my $i=0;$i<=$level*5;$i++) { |
$r->print(&Apache::loncommon::start_page('Verify '.$type.' Documents'));
|
$r->print(' '); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$type.' Documents'));
|
} |
$hashtied=0;
|
$r->print('<a href="'.$url.'" target="cat">'. |
undef %alreadyseen;
|
($title?$title:$url).'</a> '); |
%alreadyseen=();
|
if ($url=~/^\/res\//) { |
&tiehash();
|
my $result=&Apache::lonnet::repcopy( |
foreach my $key (keys(%hash)) {
|
&Apache::lonnet::filelocation('',$url)); |
if ($hash{$key}=~/\.(page|sequence)$/) {
|
if ($result eq 'ok') { |
if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) {
|
$r->print('<span class="LC_success">'.&mt('ok').'</span>'); |
$r->print('<hr /><span class="LC_error">'.
|
$r->rflush(); |
&mt('The following sequence or page is included more than once in your '.$type.': ').
|
&Apache::lonnet::countacc($url); |
&unescape($hash{$key}).'</span><br />'.
|
$url=~/\.(\w+)$/; |
&mt('Note that grading records for problems included in this sequence or folder will overlap.<hr />'));
|
if (&Apache::loncommon::fileembstyle($1) eq 'ssi') { |
}
|
$r->print('<br />'); |
}
|
$r->rflush(); |
if (($key=~/^src\_(.+)$/) && (!$alreadyseen{&unescape($hash{$key})})) {
|
for (my $i=0;$i<=$level*5;$i++) { |
&checkonthis($r,$hash{$key},0,$hash{'title_'.$1});
|
$r->print(' '); |
}
|
} |
}
|
$r->print('- '.&mt('Rendering:').' '); |
&untiehash();
|
my ($errorcount,$warningcount)=split(/:/, |
$r->print('<h1>'.&mt('Done').'.</h1>'.'<a href="/adm/coursedocs">'.
|
&Apache::lonnet::ssi_body($url, |
&mt('Return to DOCS').'</a>');
|
('grade_target'=>'web', |
}
|
'return_only_error_and_warning_counts' => 1))); |
|
if (($errorcount) || |
|
($warningcount)) { |
sub devalidateversioncache {
|
if ($errorcount) { |
my $src=shift;
|
$r->print('<img src="/adm/lonMisc/bomb.gif" alt="'.&mt('bomb').'" /><span class="LC_error">'. |
&Apache::lonnet::devalidate_cache_new('courseresversion',$env{'request.course.id'}.'_'.
|
&mt('[quant,_1,error]',$errorcount).'</span>'); |
&Apache::lonnet::clutter($src));
|
} |
}
|
if ($warningcount) { |
|
$r->print('<span class="LC_warning">'. |
sub checkversions {
|
&mt('[quant,_1,warning]',$warningcount).'</span>'); |
my ($r) = @_;
|
} |
my $type = &Apache::loncommon::course_type();
|
} else { |
$r->print(&Apache::loncommon::start_page("Check $type Document Versions"));
|
$r->print('<span class="LC_success">'.&mt('ok').'</span>'); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $type Document Versions"));
|
} |
my $header='';
|
$r->rflush(); |
my $startsel='';
|
} |
my $monthsel='';
|
my $dependencies= |
my $weeksel='';
|
&Apache::lonnet::metadata($url,'dependencies'); |
my $daysel='';
|
foreach my $dep (split(/\,/,$dependencies)) { |
my $allsel='';
|
if (($dep=~/^\/res\//) && (!$alreadyseen{$dep})) { |
my %changes=();
|
&checkonthis($r,$dep,$level+1); |
my $starttime=0;
|
} |
my $haschanged=0;
|
} |
my %setversions=&Apache::lonnet::dump('resourceversions',
|
} elsif ($result eq 'unavailable') { |
$env{'course.'.$env{'request.course.id'}.'.domain'},
|
$r->print('<span class="LC_error">'.&mt('connection down').'</span>'); |
$env{'course.'.$env{'request.course.id'}.'.num'});
|
} elsif ($result eq 'not_found') { |
|
unless ($url=~/\$/) { |
$hashtied=0;
|
$r->print('<span class="LC_error">'.&mt('not found').'</b></span>'); |
&tiehash();
|
} else { |
my %newsetversions=();
|
$r->print('<span class="LC_error">'.&mt('unable to verify variable URL').'</span>'); |
if ($env{'form.setmostrecent'}) {
|
} |
$haschanged=1;
|
} else { |
foreach my $key (keys(%hash)) {
|
$r->print('<span class="LC_error">'.&mt('access denied').'</span>'); |
if ($key=~/^ids\_(\/res\/.+)$/) {
|
} |
$newsetversions{$1}='mostrecent';
|
} |
&devalidateversioncache($1);
|
} |
}
|
} |
}
|
|
} elsif ($env{'form.setcurrent'}) {
|
|
$haschanged=1;
|
|
foreach my $key (keys(%hash)) {
|
=pod |
if ($key=~/^ids\_(\/res\/.+)$/) {
|
|
my $getvers=&Apache::lonnet::getversion($1);
|
=item list_symbs() |
if ($getvers>0) {
|
|
$newsetversions{$1}=$getvers;
|
List Symbs |
&devalidateversioncache($1);
|
|
}
|
=cut |
}
|
|
}
|
sub list_symbs { |
} elsif ($env{'form.setversions'}) {
|
my ($r) = @_; |
$haschanged=1;
|
|
foreach my $key (keys(%env)) {
|
my $crstype = &Apache::loncommon::course_type(); |
if ($key=~/^form\.set_version_(.+)$/) {
|
$r->print(&Apache::loncommon::start_page('Symb List')); |
my $src=$1;
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Symb List')); |
if (($env{$key}) && ($env{$key} ne $setversions{$src})) {
|
my $navmap = Apache::lonnavmaps::navmap->new(); |
$newsetversions{$src}=$env{$key};
|
if (!defined($navmap)) { |
&devalidateversioncache($src);
|
$r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'. |
}
|
'<div class="LC_error">'. |
}
|
&mt('Unable to retrieve information about course contents'). |
}
|
'</div>'); |
}
|
&Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'}); |
if ($haschanged) {
|
} else { |
if (&Apache::lonnet::put('resourceversions',\%newsetversions,
|
$r->print("<pre>\n"); |
$env{'course.'.$env{'request.course.id'}.'.domain'},
|
foreach my $res ($navmap->retrieveResources()) { |
$env{'course.'.$env{'request.course.id'}.'.num'}) eq 'ok') {
|
$r->print($res->compTitle()."\t".$res->symb()."\n"); |
$r->print('<h1>'.&mt('Your Version Settings have been Saved').'</h1>');
|
} |
} else {
|
$r->print("\n</pre>\n"); |
$r->print('<h1><span class="LC_error">'.&mt('An Error Occured while Attempting to Save your Version Settings').'</span></h1>');
|
} |
}
|
$r->print('<hr /><a href="/adm/coursedocs">'.&mt('Back to Course Editor').'</a>'); |
&mark_hash_old();
|
} |
}
|
|
&changewarning($r,'');
|
|
if ($env{'form.timerange'} eq 'all') {
|
sub verifycontent { |
# show all documents
|
my ($r) = @_; |
$header=&mt('All Documents in '.$type);
|
my $crstype = &Apache::loncommon::course_type(); |
$allsel=1;
|
$r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Documents')); |
foreach my $key (keys(%hash)) {
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Documents')); |
if ($key=~/^ids\_(\/res\/.+)$/) {
|
$hashtied=0; |
my $src=$1;
|
undef %alreadyseen; |
$changes{$src}=1;
|
%alreadyseen=(); |
}
|
&tiehash(); |
}
|
foreach my $key (keys(%hash)) { |
} else {
|
if ($hash{$key}=~/\.(page|sequence)$/) { |
# show documents which changed
|
if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) { |
%changes=&Apache::lonnet::dump
|
$r->print('<hr /><span class="LC_error">'. |
('versionupdate',$env{'course.'.$env{'request.course.id'}.'.domain'},
|
&mt('The following sequence or page is included more than once in your '.$crstype.':').' '. |
$env{'course.'.$env{'request.course.id'}.'.num'});
|
&unescape($hash{$key}).'</span><br />'. |
my $firstkey=(keys(%changes))[0];
|
&mt('Note that grading records for problems included in this sequence or folder will overlap.').'<hr />'); |
unless ($firstkey=~/^error\:/) {
|
} |
unless ($env{'form.timerange'}) {
|
} |
$env{'form.timerange'}=604800;
|
if (($key=~/^src\_(.+)$/) && (!$alreadyseen{&unescape($hash{$key})})) { |
}
|
&checkonthis($r,$hash{$key},0,$hash{'title_'.$1}); |
my $seltext=&mt('during the last').' '.$env{'form.timerange'}.' '
|
} |
.&mt('seconds');
|
} |
if ($env{'form.timerange'}==-1) {
|
&untiehash(); |
$seltext='since start of course';
|
$r->print( |
$startsel='selected';
|
'<p class="LC_success">'.&mt('Done').'</p>' |
$env{'form.timerange'}=time;
|
.'<hr />' |
}
|
.'<p><a href="/adm/coursedocs">' |
$starttime=time-$env{'form.timerange'};
|
.&mt('Back to Course Editor') |
if ($env{'form.timerange'}==2592000) {
|
.'</a></p>' |
$seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
|
); |
$monthsel='selected';
|
} |
} elsif ($env{'form.timerange'}==604800) {
|
|
$seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
|
|
$weeksel='selected';
|
sub devalidateversioncache { |
} elsif ($env{'form.timerange'}==86400) {
|
my $src=shift; |
$seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
|
&Apache::lonnet::devalidate_cache_new('courseresversion',$env{'request.course.id'}.'_'. |
$daysel='selected';
|
&Apache::lonnet::clutter($src)); |
}
|
} |
$header=&mt('Content changed').' '.$seltext;
|
|
} else {
|
sub checkversions { |
$header=&mt('No content modifications yet.');
|
my ($r) = @_; |
}
|
my $crstype = &Apache::loncommon::course_type(); |
}
|
$r->print(&Apache::loncommon::start_page("Check $crstype Document Versions")); |
%setversions=&Apache::lonnet::dump('resourceversions',
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $crstype Document Versions")); |
$env{'course.'.$env{'request.course.id'}.'.domain'},
|
my $header=''; |
$env{'course.'.$env{'request.course.id'}.'.num'});
|
my $startsel=''; |
my %lt=&Apache::lonlocal::texthash
|
my $monthsel=''; |
('st' => 'Version changes since start of '.$type,
|
my $weeksel=''; |
'lm' => 'Version changes since last Month',
|
my $daysel=''; |
'lw' => 'Version changes since last Week',
|
my $allsel=''; |
'sy' => 'Version changes since Yesterday',
|
my %changes=(); |
'al' => 'All Resources (possibly large output)',
|
my $starttime=0; |
'sd' => 'Display',
|
my $haschanged=0; |
'fi' => 'File',
|
my %setversions=&Apache::lonnet::dump('resourceversions', |
'md' => 'Modification Date',
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
'mr' => 'Most recently published Version',
|
$env{'course.'.$env{'request.course.id'}.'.num'}); |
've' => 'Version used in '.$type,
|
|
'vu' => 'Set Version to be used in '.$type,
|
$hashtied=0; |
'sv' => 'Set Versions to be used in '.$type.' according to Selections below',
|
&tiehash(); |
'sm' => 'Keep all Resources up-to-date with most recent Versions (default)',
|
my %newsetversions=(); |
'sc' => 'Set all Resource Versions to current Version (Fix Versions)',
|
if ($env{'form.setmostrecent'}) { |
'di' => 'Differences');
|
$haschanged=1; |
$r->print(<<ENDHEADERS);
|
foreach my $key (keys(%hash)) { |
<form action="/adm/coursedocs" method="post">
|
if ($key=~/^ids\_(\/res\/.+)$/) { |
<input type="hidden" name="versions" value="1" />
|
$newsetversions{$1}='mostrecent'; |
<input type="submit" name="setmostrecent" value="$lt{'sm'}" />
|
&devalidateversioncache($1); |
<input type="submit" name="setcurrent" value="$lt{'sc'}" /><hr />
|
} |
<select name="timerange">
|
} |
<option value='all' $allsel>$lt{'al'}</option>
|
} elsif ($env{'form.setcurrent'}) { |
<option value="-1" $startsel>$lt{'st'}</option>
|
$haschanged=1; |
<option value="2592000" $monthsel>$lt{'lm'}</option>
|
foreach my $key (keys(%hash)) { |
<option value="604800" $weeksel>$lt{'lw'}</option>
|
if ($key=~/^ids\_(\/res\/.+)$/) { |
<option value="86400" $daysel>$lt{'sy'}</option>
|
my $getvers=&Apache::lonnet::getversion($1); |
</select>
|
if ($getvers>0) { |
<input type="submit" name="display" value="$lt{'sd'}" />
|
$newsetversions{$1}=$getvers; |
<h3>$header</h3>
|
&devalidateversioncache($1); |
<input type="submit" name="setversions" value="$lt{'sv'}" />
|
} |
<table border="0">
|
} |
ENDHEADERS
|
} |
foreach my $key (sort(keys(%changes))) {
|
} elsif ($env{'form.setversions'}) { |
if ($changes{$key}>$starttime) {
|
$haschanged=1; |
my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
|
foreach my $key (keys(%env)) { |
my $currentversion=&Apache::lonnet::getversion($key);
|
if ($key=~/^form\.set_version_(.+)$/) { |
if ($currentversion<0) {
|
my $src=$1; |
$currentversion=&mt('Could not be determined.');
|
if (($env{$key}) && ($env{$key} ne $setversions{$src})) { |
}
|
$newsetversions{$src}=$env{$key}; |
my $linkurl=&Apache::lonnet::clutter($key);
|
&devalidateversioncache($src); |
$r->print(
|
} |
'<tr><td colspan="5"><br /><br /><font size="+1"><b>'.
|
} |
&Apache::lonnet::gettitle($linkurl).
|
} |
'</b></font></td></tr>'.
|
} |
'<tr><td> </td>'.
|
if ($haschanged) { |
'<td colspan="4">'.
|
if (&Apache::lonnet::put('resourceversions',\%newsetversions, |
'<a href="'.$linkurl.'" target="cat">'.$linkurl.
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
'</a></td></tr>'.
|
$env{'course.'.$env{'request.course.id'}.'.num'}) eq 'ok') { |
'<tr><td></td>'.
|
$r->print('<h1>'.&mt('Your Version Settings have been Saved').'</h1>'); |
'<td title="'.$lt{'md'}.'">'.
|
} else { |
&Apache::lonlocal::locallocaltime(
|
$r->print('<h1><span class="LC_error">'.&mt('An Error Occured while Attempting to Save your Version Settings').'</span></h1>'); |
&Apache::lonnet::metadata($root.'.'.$extension,
|
} |
'lastrevisiondate')
|
&mark_hash_old(); |
).
|
} |
'</td>'.
|
&changewarning($r,''); |
'<td title="'.$lt{'mr'}.'"><span class="LC_nobreak">Most Recent: '.
|
if ($env{'form.timerange'} eq 'all') { |
'<font size="+1">'.$currentversion.'</font>'.
|
# show all documents |
'</span></td>'.
|
$header=&mt('All Documents in '.$crstype); |
'<td title="'.$lt{'ve'}.'"><span class="LC_nobreak">In '.$type.': '.
|
$allsel=1; |
'<font size="+1">');
|
foreach my $key (keys(%hash)) { |
# Used in course
|
if ($key=~/^ids\_(\/res\/.+)$/) { |
my $usedversion=$hash{'version_'.$linkurl};
|
my $src=$1; |
if (($usedversion) && ($usedversion ne 'mostrecent')) {
|
$changes{$src}=1; |
$r->print($usedversion);
|
} |
} else {
|
} |
$r->print($currentversion);
|
} else { |
}
|
# show documents which changed |
$r->print('</font></span></td><td title="'.$lt{'vu'}.'">'.
|
%changes=&Apache::lonnet::dump |
'<span class="LC_nobreak">Use: ');
|
('versionupdate',$env{'course.'.$env{'request.course.id'}.'.domain'}, |
# Set version
|
$env{'course.'.$env{'request.course.id'}.'.num'}); |
$r->print(&Apache::loncommon::select_form($setversions{$linkurl},
|
my $firstkey=(keys(%changes))[0]; |
'set_version_'.$linkurl,
|
unless ($firstkey=~/^error\:/) { |
('select_form_order' =>
|
unless ($env{'form.timerange'}) { |
['',1..$currentversion,'mostrecent'],
|
$env{'form.timerange'}=604800; |
'' => '',
|
} |
'mostrecent' => 'most recent',
|
my $seltext=&mt('during the last').' '.$env{'form.timerange'}.' ' |
map {$_,$_} (1..$currentversion))));
|
.&mt('seconds'); |
$r->print('</span></td></tr><tr><td></td>');
|
if ($env{'form.timerange'}==-1) { |
my $lastold=1;
|
$seltext='since start of course'; |
for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
|
$startsel='selected'; |
my $url=$root.'.'.$prevvers.'.'.$extension;
|
$env{'form.timerange'}=time; |
if (&Apache::lonnet::metadata($url,'lastrevisiondate')<
|
} |
$starttime) {
|
$starttime=time-$env{'form.timerange'}; |
$lastold=$prevvers;
|
if ($env{'form.timerange'}==2592000) { |
}
|
$seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')'; |
}
|
$monthsel='selected'; |
#
|
} elsif ($env{'form.timerange'}==604800) { |
# Code to figure out how many version entries should go in
|
$seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')'; |
# each of the four columns
|
$weeksel='selected'; |
my $entries_per_col = 0;
|
} elsif ($env{'form.timerange'}==86400) { |
my $num_entries = ($currentversion-$lastold);
|
$seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')'; |
if ($num_entries % 4 == 0) {
|
$daysel='selected'; |
$entries_per_col = $num_entries/4;
|
} |
} else {
|
$header=&mt('Content changed').' '.$seltext; |
$entries_per_col = $num_entries/4 + 1;
|
} else { |
}
|
$header=&mt('No content modifications yet.'); |
my $entries_count = 0;
|
} |
$r->print('<td valign="top"><font size="-2">');
|
} |
my $cols_output = 1;
|
%setversions=&Apache::lonnet::dump('resourceversions', |
for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {
|
$env{'course.'.$env{'request.course.id'}.'.domain'}, |
my $url=$root.'.'.$prevvers.'.'.$extension;
|
$env{'course.'.$env{'request.course.id'}.'.num'}); |
$r->print('<span class="LC_nobreak"><a href="'.&Apache::lonnet::clutter($url).
|
my %lt=&Apache::lonlocal::texthash |
'">'.&mt('Version').' '.$prevvers.'</a> ('.
|
('st' => 'Version changes since start of '.$crstype, |
&Apache::lonlocal::locallocaltime(
|
'lm' => 'Version changes since last Month', |
&Apache::lonnet::metadata($url,
|
'lw' => 'Version changes since last Week', |
'lastrevisiondate')
|
'sy' => 'Version changes since Yesterday', |
).
|
'al' => 'All Resources (possibly large output)', |
')');
|
'sd' => 'Display', |
if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {
|
'fi' => 'File', |
$r->print(' <a href="/adm/diff?filename='.
|
'md' => 'Modification Date', |
&Apache::lonnet::clutter($root.'.'.$extension).
|
'mr' => 'Most recently published Version', |
'&versionone='.$prevvers.
|
've' => 'Version used in '.$crstype, |
'">'.&mt('Diffs').'</a>');
|
'vu' => 'Set Version to be used in '.$crstype, |
}
|
'sv' => 'Set Versions to be used in '.$crstype.' according to Selections below', |
$r->print('</span><br />');
|
'sm' => 'Keep all Resources up-to-date with most recent Versions (default)', |
if (++$entries_count % $entries_per_col == 0) {
|
'sc' => 'Set all Resource Versions to current Version (Fix Versions)', |
$r->print('</font></td>');
|
'di' => 'Differences'); |
if ($cols_output != 4) {
|
$r->print(<<ENDHEADERS); |
$r->print('<td valign="top"><font size="-2">');
|
<form action="/adm/coursedocs" method="post"> |
$cols_output++;
|
<input type="hidden" name="versions" value="1" /> |
}
|
<input type="submit" name="setmostrecent" value="$lt{'sm'}" /> |
}
|
<input type="submit" name="setcurrent" value="$lt{'sc'}" /><hr /> |
}
|
<select name="timerange"> |
while($cols_output++ < 4) {
|
<option value='all' $allsel>$lt{'al'}</option> |
$r->print('</font></td><td><font>')
|
<option value="-1" $startsel>$lt{'st'}</option> |
}
|
<option value="2592000" $monthsel>$lt{'lm'}</option> |
$r->print('</font></td></tr>'."\n");
|
<option value="604800" $weeksel>$lt{'lw'}</option> |
}
|
<option value="86400" $daysel>$lt{'sy'}</option> |
}
|
</select> |
$r->print('</table></form>');
|
<input type="submit" name="display" value="$lt{'sd'}" /> |
$r->print('<h1>'.&mt('Done').'.</h1>');
|
<h3>$header</h3> |
|
<input type="submit" name="setversions" value="$lt{'sv'}" /> |
&untiehash();
|
<table border="0"> |
}
|
ENDHEADERS |
|
foreach my $key (sort(keys(%changes))) { |
sub mark_hash_old {
|
if ($changes{$key}>$starttime) { |
my $retie_hash=0;
|
my ($root,$extension)=($key=~/^(.*)\.(\w+)$/); |
if ($hashtied) {
|
my $currentversion=&Apache::lonnet::getversion($key); |
$retie_hash=1;
|
if ($currentversion<0) { |
&untiehash();
|
$currentversion=&mt('Could not be determined.'); |
}
|
} |
&tiehash('write');
|
my $linkurl=&Apache::lonnet::clutter($key); |
$hash{'old'}=1;
|
$r->print( |
&untiehash();
|
'<tr><td colspan="5"><br /><br /><font size="+1"><b>'. |
if ($retie_hash) { &tiehash(); }
|
&Apache::lonnet::gettitle($linkurl). |
}
|
'</b></font></td></tr>'. |
|
'<tr><td> </td>'. |
sub is_hash_old {
|
'<td colspan="4">'. |
my $untie_hash=0;
|
'<a href="'.$linkurl.'" target="cat">'.$linkurl. |
if (!$hashtied) {
|
'</a></td></tr>'. |
$untie_hash=1;
|
'<tr><td></td>'. |
&tiehash();
|
'<td title="'.$lt{'md'}.'">'. |
}
|
&Apache::lonlocal::locallocaltime( |
my $return=$hash{'old'};
|
&Apache::lonnet::metadata($root.'.'.$extension, |
if ($untie_hash) { &untiehash(); }
|
'lastrevisiondate') |
return $return;
|
). |
}
|
'</td>'. |
|
'<td title="'.$lt{'mr'}.'"><span class="LC_nobreak">Most Recent: '. |
sub changewarning {
|
'<font size="+1">'.$currentversion.'</font>'. |
my ($r,$postexec,$message,$url)=@_;
|
'</span></td>'. |
if (!&is_hash_old()) { return; }
|
'<td title="'.$lt{'ve'}.'"><span class="LC_nobreak">In '.$crstype.': '. |
my $pathvar='folderpath';
|
'<font size="+1">'); |
my $path=&escape($env{'form.folderpath'});
|
# Used in course |
if (!defined($url)) {
|
my $usedversion=$hash{'version_'.$linkurl}; |
if (defined($env{'form.pagepath'})) {
|
if (($usedversion) && ($usedversion ne 'mostrecent')) { |
$pathvar='pagepath';
|
$r->print($usedversion); |
$path=&escape($env{'form.pagepath'});
|
} else { |
$path.='&pagesymb='.&escape($env{'form.pagesymb'});
|
$r->print($currentversion); |
}
|
} |
$url='/adm/coursedocs?'.$pathvar.'='.$path;
|
$r->print('</font></span></td><td title="'.$lt{'vu'}.'">'. |
}
|
'<span class="LC_nobreak">Use: '); |
my $course_type = &Apache::loncommon::course_type();
|
# Set version |
if (!defined($message)) {
|
$r->print(&Apache::loncommon::select_form($setversions{$linkurl}, |
$message='Changes will become active for your current session after [_1], or the next time you log in.';
|
'set_version_'.$linkurl, |
}
|
{'select_form_order' => |
$r->print("\n\n".
|
['',1..$currentversion,'mostrecent'], |
'<script type="text/javascript">function reinit(tf) { tf.submit();'.$postexec.' }</script>'."\n".
|
'' => '', |
'<form name="reinitform" method="post" action="/adm/roles" target="loncapaclient">'.
|
'mostrecent' => &mt('most recent'), |
'<input type="hidden" name="orgurl" value="'.$url.
|
map {$_,$_} (1..$currentversion)})); |
'" /><input type="hidden" name="selectrole" value="1" /><h3><span class="LC_warning">'.
|
$r->print('</span></td></tr><tr><td></td>'); |
&mt($message,' <input type="hidden" name="'.
|
my $lastold=1; |
$env{'request.role'}.'" value="1" /><input type="button" value="'.
|
for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) { |
&mt('re-initializing '.$course_type).'" onClick="reinit(this.form)" />').
|
my $url=$root.'.'.$prevvers.'.'.$extension; |
$help{'Caching'}.'</span></h3></form>'."\n\n");
|
if (&Apache::lonnet::metadata($url,'lastrevisiondate')< |
}
|
$starttime) { |
|
$lastold=$prevvers; |
|
} |
sub init_breadcrumbs {
|
} |
my ($form,$text)=@_;
|
# |
&Apache::lonhtmlcommon::clear_breadcrumbs();
|
# Code to figure out how many version entries should go in |
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs",
|
# each of the four columns |
text=>"Edit ".&Apache::loncommon::course_type(),
|
my $entries_per_col = 0; |
faq=>273,
|
my $num_entries = ($currentversion-$lastold); |
bug=>'Instructor Interface',
|
if ($num_entries % 4 == 0) { |
help => 'Docs_Adding_Course_Doc'});
|
$entries_per_col = $num_entries/4; |
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?".$form.'=1',
|
} else { |
text=>$text,
|
$entries_per_col = $num_entries/4 + 1; |
faq=>273,
|
} |
bug=>'Instructor Interface'});
|
my $entries_count = 0; |
}
|
$r->print('<td valign="top"><font size="-2">'); |
|
my $cols_output = 1; |
|
for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) { |
|
my $url=$root.'.'.$prevvers.'.'.$extension; |
|
$r->print('<span class="LC_nobreak"><a href="'.&Apache::lonnet::clutter($url). |
sub handler {
|
'">'.&mt('Version').' '.$prevvers.'</a> ('. |
my $r = shift;
|
&Apache::lonlocal::locallocaltime( |
&Apache::loncommon::content_type($r,'text/html');
|
&Apache::lonnet::metadata($url, |
$r->send_http_header;
|
'lastrevisiondate') |
return OK if $r->header_only;
|
). |
my $type = &Apache::loncommon::course_type();
|
')'); |
|
if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') { |
|
$r->print(' <a href="/adm/diff?filename='. |
# --------------------------------------------- Initialize help topics for this
|
&Apache::lonnet::clutter($root.'.'.$extension). |
foreach my $topic ('Adding_Course_Doc','Main_Course_Documents',
|
'&versionone='.$prevvers. |
'Adding_External_Resource','Navigate_Content',
|
'">'.&mt('Diffs').'</a>'); |
'Adding_Folders','Docs_Overview', 'Load_Map',
|
} |
'Supplemental','Score_Upload_Form','Adding_Pages',
|
$r->print('</span><br />'); |
'Importing_LON-CAPA_Resource','Uploading_From_Harddrive',
|
if (++$entries_count % $entries_per_col == 0) { |
'Check_Resource_Versions','Verify_Content') {
|
$r->print('</font></td>'); |
$help{$topic}=&Apache::loncommon::help_open_topic('Docs_'.$topic);
|
if ($cols_output != 4) { |
}
|
$r->print('<td valign="top"><font size="-2">'); |
# Composite help files
|
$cols_output++; |
$help{'Syllabus'} = &Apache::loncommon::help_open_topic(
|
} |
'Docs_About_Syllabus,Docs_Editing_Templated_Pages');
|
} |
$help{'Simple Page'} = &Apache::loncommon::help_open_topic(
|
} |
'Docs_About_Simple_Page,Docs_Editing_Templated_Pages');
|
while($cols_output++ < 4) { |
$help{'Simple Problem'} = &Apache::loncommon::help_open_topic(
|
$r->print('</font></td><td><font>') |
'Option_Response_Simple');
|
} |
$help{'Bulletin Board'} = &Apache::loncommon::help_open_topic(
|
$r->print('</font></td></tr>'."\n"); |
'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages');
|
} |
$help{'My Personal Info'} = &Apache::loncommon::help_open_topic(
|
} |
'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages');
|
$r->print('</table></form>'); |
$help{'Group Files'} = &Apache::loncommon::help_open_topic('Docs_About_Group_Files');
|
$r->print('<p class="LC_success">'.&mt('Done').'</p>'); |
$help{'Caching'} = &Apache::loncommon::help_open_topic('Caching');
|
|
|
&untiehash(); |
# does this user have privileges to modify docs
|
} |
my $allowed=&Apache::lonnet::allowed('mdc',$env{'request.course.id'});
|
|
if ($allowed && $env{'form.verify'}) {
|
sub mark_hash_old { |
&init_breadcrumbs('verify','Verify Content');
|
my $retie_hash=0; |
&verifycontent($r);
|
if ($hashtied) { |
} elsif ($allowed && $env{'form.listsymbs'}) {
|
$retie_hash=1; |
&init_breadcrumbs('listsymbs','List Symbs');
|
&untiehash(); |
&list_symbs($r);
|
} |
} elsif ($allowed && $env{'form.docslog'}) {
|
&tiehash('write'); |
&init_breadcrumbs('docslog','Show Log');
|
$hash{'old'}=1; |
&docs_change_log($r);
|
&untiehash(); |
} elsif ($allowed && $env{'form.versions'}) {
|
if ($retie_hash) { &tiehash(); } |
&init_breadcrumbs('versions','Check/Set Resource Versions');
|
} |
&checkversions($r);
|
|
} elsif ($allowed && $env{'form.dumpcourse'}) {
|
sub is_hash_old { |
&init_breadcrumbs('dumpcourse','Dump '.&Apache::loncommon::course_type().' DOCS to Construction Space');
|
my $untie_hash=0; |
&dumpcourse($r);
|
if (!$hashtied) { |
} elsif ($allowed && $env{'form.exportcourse'}) {
|
$untie_hash=1; |
&init_breadcrumbs('exportcourse','Export '.&Apache::loncommon::course_type().' to IMS');
|
&tiehash(); |
&exportcourse($r);
|
} |
} else {
|
my $return=$hash{'old'}; |
# is this a standard course?
|
if ($untie_hash) { &untiehash(); } |
|
return $return; |
my $standard=($env{'request.course.uri'}=~/^\/uploaded\//);
|
} |
my $forcestandard = 0;
|
|
my $forcesupplement;
|
sub changewarning { |
my $script='';
|
my ($r,$postexec,$message,$url)=@_; |
my $showdoc=0;
|
if (!&is_hash_old()) { return; } |
my $containertag;
|
my $pathvar='folderpath'; |
my $uploadtag;
|
my $path=&escape($env{'form.folderpath'}); |
|
if (!defined($url)) { |
|
if (defined($env{'form.pagepath'})) { |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
|
$pathvar='pagepath'; |
['folderpath','pagepath',
|
$path=&escape($env{'form.pagepath'}); |
'pagesymb']);
|
$path.='&pagesymb='.&escape($env{'form.pagesymb'}); |
# No folderpath, no pagepath, see if we have something stored
|
} |
if ((!$env{'form.folderpath'}) && (!$env{'form.pagepath'})) {
|
$url='/adm/coursedocs?'.$pathvar.'='.$path; |
&Apache::loncommon::restore_course_settings('docs_folderpath',
|
} |
{'folderpath' => 'scalar'});
|
my $course_type = &Apache::loncommon::course_type(); |
}
|
if (!defined($message)) { |
if (!$env{'form.folderpath'}) {
|
$message='Changes will become active for your current session after [_1], or the next time you log in.'; |
&Apache::loncommon::restore_course_settings('docs_folderpath',
|
} |
{'pagepath' => 'scalar'});
|
$r->print("\n\n". |
}
|
'<script type="text/javascript">'."\n". |
if ($env{'form.pagepath'}) {
|
'// <![CDATA['."\n". |
$env{'form.folderpath'}='';
|
'function reinit(tf) { tf.submit();'.$postexec.' }'."\n". |
}
|
'// ]]>'."\n". |
if ($env{'form.folderpath'} =~ /^supplemental_\d+/) {
|
'</script>'."\n". |
$env{'form.folderpath'} = 'supplemental&'.
|
'<form name="reinitform" method="post" action="/adm/roles" target="loncapaclient">'. |
&escape(&mt('Supplemental '.$type.' Documents')).'&'.
|
'<input type="hidden" name="orgurl" value="'.$url. |
$env{'form.folderpath'};
|
'" /><input type="hidden" name="selectrole" value="1" /><p class="LC_warning">'. |
}
|
&mt($message,' <input type="hidden" name="'. |
&Apache::loncommon::store_course_settings('docs_folderpath',
|
$env{'request.role'}.'" value="1" /><input type="button" value="'. |
{'pagepath' => 'scalar',
|
&mt('re-initializing '.$course_type).'" onclick="reinit(this.form)" />'). |
'folderpath' => 'scalar'});
|
$help{'Caching'}.'</p></form>'."\n\n"); |
if ($env{'form.folderpath'}) {
|
} |
my (@folderpath)=split('&',$env{'form.folderpath'});
|
|
$env{'form.foldername'}=&unescape(pop(@folderpath));
|
|
$env{'form.folder'}=pop(@folderpath);
|
sub init_breadcrumbs { |
}
|
my ($form,$text)=@_; |
if ($env{'form.pagepath'}) {
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
my (@pagepath)=split('&',$env{'form.pagepath'});
|
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs", |
$env{'form.pagename'}=&unescape(pop(@pagepath));
|
text=>&Apache::loncommon::course_type().' Editor', |
$env{'form.folder'}=pop(@pagepath);
|
faq=>273, |
$containertag = '<input type="hidden" name="pagepath" value="" />'.
|
bug=>'Instructor Interface', |
'<input type="hidden" name="pagesymb" value="" />';
|
help => 'Docs_Adding_Course_Doc'}); |
$uploadtag = '<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />'.
|
&Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?".$form.'=1', |
'<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" />';
|
text=>$text, |
}
|
faq=>273, |
if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {
|
bug=>'Instructor Interface'}); |
$showdoc='/'.$1;
|
} |
}
|
|
unless ($showdoc) { # got called from remote
|
|
if (($env{'form.folder'}=~/^(?:group|default)_/) ||
|
|
($env{'form.folder'} =~ m:^\d+/(pages|sequences)/:)) {
|
|
$forcestandard = 1;
|
sub handler { |
}
|
my $r = shift; |
$forcesupplement=($env{'form.folder'}=~/^supplemental_/);
|
&Apache::loncommon::content_type($r,'text/html'); |
|
$r->send_http_header; |
if ($allowed) {
|
return OK if $r->header_only; |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);
|
my $crstype = &Apache::loncommon::course_type(); |
$script=&Apache::lonratedt::editscript('simple');
|
|
}
|
|
} else { # got called in sequence from course
|
# --------------------------------------------- Initialize help topics for this |
$allowed=0;
|
foreach my $topic ('Adding_Course_Doc','Main_Course_Documents', |
}
|
'Adding_External_Resource','Navigate_Content', |
|
'Adding_Folders','Docs_Overview', 'Load_Map', |
# get course data
|
'Supplemental','Score_Upload_Form','Adding_Pages', |
my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'};
|
'Importing_LON-CAPA_Resource','Uploading_From_Harddrive', |
my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'};
|
'Check_Resource_Versions','Verify_Content') { |
|
$help{$topic}=&Apache::loncommon::help_open_topic('Docs_'.$topic); |
# get personal data
|
} |
my $uname=$env{'user.name'};
|
# Composite help files |
my $udom=$env{'user.domain'};
|
$help{'Syllabus'} = &Apache::loncommon::help_open_topic( |
my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom));
|
'Docs_About_Syllabus,Docs_Editing_Templated_Pages'); |
|
$help{'Simple Page'} = &Apache::loncommon::help_open_topic( |
# graphics settings
|
'Docs_About_Simple_Page,Docs_Editing_Templated_Pages'); |
|
$help{'Simple Problem'} = &Apache::loncommon::help_open_topic( |
$iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL') . "/");
|
'Option_Response_Simple'); |
|
$help{'Bulletin Board'} = &Apache::loncommon::help_open_topic( |
if ($allowed) {
|
'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages'); |
$script .= &editing_js($udom,$uname);
|
$help{'My Personal Information Page'} = &Apache::loncommon::help_open_topic( |
}
|
'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages'); |
# -------------------------------------------------------------------- Body tag
|
$help{'Group Portfolio'} = &Apache::loncommon::help_open_topic('Docs_About_Group_Files'); |
$script = '<script type="text/javascript">'."\n".$script."\n".'</script>';
|
$help{'Caching'} = &Apache::loncommon::help_open_topic('Caching'); |
my $brcrum = [{href=>"/adm/createuser",text=>"$type Documents"}];
|
|
$r->print(&Apache::loncommon::start_page("$type Documents", $script,
|
# does this user have privileges to modify docs |
{'force_register' => $showdoc,
|
my $allowed=&Apache::lonnet::allowed('mdc',$env{'request.course.id'}); |
'bread_crumbs' => $brcrum}).
|
if ($allowed && $env{'form.verify'}) { |
&Apache::loncommon::help_open_menu('','',273,'RAT'));
|
&init_breadcrumbs('verify','Verify Content'); |
|
&verifycontent($r); |
my %allfiles = ();
|
} elsif ($allowed && $env{'form.listsymbs'}) { |
my %codebase = ();
|
&init_breadcrumbs('listsymbs','List Symbs'); |
my ($upload_result,$upload_output);
|
&list_symbs($r); |
if ($allowed) {
|
} elsif ($allowed && $env{'form.docslog'}) { |
if (($env{'form.uploaddoc.filename'}) &&
|
&init_breadcrumbs('docslog','Show Log'); |
($env{'form.cmd'}=~/^upload_(\w+)/)) {
|
&docs_change_log($r); |
# Process file upload - phase one - upload and parse primary file.
|
} elsif ($allowed && $env{'form.versions'}) { |
undef($hadchanges);
|
&init_breadcrumbs('versions','Check/Set Resource Versions'); |
$upload_result = &process_file_upload(\$upload_output,$coursenum,
|
&checkversions($r); |
$coursedom,\%allfiles,
|
} elsif ($allowed && $env{'form.dumpcourse'}) { |
\%codebase,$1);
|
&init_breadcrumbs('dumpcourse','Dump '.&Apache::loncommon::course_type().' Documents to Construction Space'); |
if ($hadchanges) {
|
&dumpcourse($r); |
&mark_hash_old();
|
} elsif ($allowed && $env{'form.exportcourse'}) { |
}
|
&init_breadcrumbs('exportcourse','IMS Export'); |
if ($upload_result eq 'phasetwo') {
|
&exportcourse($r); |
$r->print($upload_output);
|
} else { |
}
|
# is this a standard course? |
} elsif ($env{'form.phasetwo'}) {
|
|
my %newname = ();
|
my $standard=($env{'request.course.uri'}=~/^\/uploaded\//); |
my %origname = ();
|
my $forcestandard = 0; |
my %attribs = ();
|
my $forcesupplement; |
my $updateflag = 0;
|
my $script=''; |
my $residx = $env{'form.newidx'};
|
my $showdoc=0; |
my $primary_url = &unescape($env{'form.primaryurl'});
|
my $containertag; |
# Process file upload - phase two - gather secondary files.
|
my $uploadtag; |
for (my $i=0; $i<$env{'form.phasetwo'}; $i++) {
|
|
if ($env{'form.embedded_item_'.$i.'.filename'}) {
|
|
my $javacodebase;
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
$newname{$i} = &process_secondary_uploads(\$upload_output,$coursedom,$coursenum,'embedded_item_',$i,$residx);
|
['folderpath','pagepath', |
$origname{$i} = &unescape($env{'form.embedded_orig_'.$i});
|
'pagesymb']); |
if (exists($env{'form.embedded_codebase_'.$i})) {
|
# No folderpath, no pagepath, see if we have something stored |
$javacodebase = &unescape($env{'form.embedded_codebase_'.$i});
|
if ((!$env{'form.folderpath'}) && (!$env{'form.pagepath'})) { |
$origname{$i} =~ s#^\Q$javacodebase\E/##;
|
&Apache::loncommon::restore_course_settings('docs_folderpath', |
}
|
{'folderpath' => 'scalar'}); |
my @attributes = ();
|
} |
if ($env{'form.embedded_attrib_'.$i} =~ /:/) {
|
if (!$allowed) { |
@attributes = split(/:/,$env{'form.embedded_attrib_'.$i});
|
unless($env{'form.folderpath'} =~ /^supplemental/) { |
} else {
|
$env{'form.folderpath'} = ''; |
@attributes = ($env{'form.embedded_attrib_'.$i});
|
} |
}
|
} |
foreach my $attr (@attributes) {
|
if (!$env{'form.folderpath'} && $allowed) { |
push(@{$attribs{$i}},&unescape($attr));
|
&Apache::loncommon::restore_course_settings('docs_folderpath', |
}
|
{'pagepath' => 'scalar'}); |
if ($javacodebase) {
|
} |
$codebase{$i} = $javacodebase;
|
if ($env{'form.pagepath'}) { |
$codebase{$i} =~ s#/$##;
|
$env{'form.folderpath'}=''; |
$updateflag = 1;
|
} |
}
|
if ($env{'form.folderpath'} =~ /^supplemental_\d+/) { |
}
|
$env{'form.folderpath'} = 'supplemental&'. |
unless ($newname{$i} eq $origname{$i}) {
|
&escape(&mt('Supplemental '.$crstype.' Documents')).'&'. |
$updateflag = 1;
|
$env{'form.folderpath'}; |
}
|
} |
}
|
&Apache::loncommon::store_course_settings('docs_folderpath', |
# Process file upload - phase three - modify primary file
|
{'pagepath' => 'scalar', |
if ($updateflag) {
|
'folderpath' => 'scalar'}); |
my ($content,$rtncode);
|
if ($env{'form.folderpath'}) { |
my $updateflag = 0;
|
my (@folderpath)=split('&',$env{'form.folderpath'}); |
my $getstatus = &Apache::lonnet::getuploaded('GET',$primary_url,$coursedom,$coursenum,\$content,\$rtncode);
|
$env{'form.foldername'}=&unescape(pop(@folderpath)); |
if ($getstatus eq 'ok') {
|
$env{'form.folder'}=pop(@folderpath); |
foreach my $item (keys(%newname)) {
|
} |
if ($newname{$item} ne $origname{$item}) {
|
if ($env{'form.pagepath'}) { |
my $attrib_regexp = '';
|
my (@pagepath)=split('&',$env{'form.pagepath'}); |
if (@{$attribs{$item}} > 1) {
|
$env{'form.pagename'}=&unescape(pop(@pagepath)); |
$attrib_regexp = join('|',@{$attribs{$item}});
|
$env{'form.folder'}=pop(@pagepath); |
} else {
|
$containertag = '<input type="hidden" name="pagepath" value="" />'. |
$attrib_regexp = $attribs{$item}[0];
|
'<input type="hidden" name="pagesymb" value="" />'; |
}
|
$uploadtag = |
if ($content =~ m#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#) {
|
'<input type="hidden" name="pagepath" value="'.&HTML::Entities::encode($env{'form.pagepath'},'<>&"').'" />'. |
}
|
'<input type="hidden" name="pagesymb" value="'.&HTML::Entities::encode($env{'form.pagesymb'},'<>&"').'" />'. |
$content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#$1$newname{$item}$2#gi;
|
'<input type="hidden" name="folderpath" value="" />'; |
}
|
} else { |
if (exists($codebase{$item})) {
|
my $folderpath=$env{'form.folderpath'}; |
$content =~ s/(codebase\s*=\s*["']?)\Q$codebase{$item}\E(["']?)/$1.$2/i; #' stupid emacs
|
if (!$folderpath) { |
}
|
if ($env{'form.folder'} eq '' || |
}
|
$env{'form.folder'} eq 'supplemental') { |
# Save edited file.
|
$folderpath='default&'. |
my $saveresult;
|
&escape(&mt('Main '.$crstype.' Documents')); |
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
|
} |
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
|
} |
my $url = &Apache::lonnet::store_edited_file($primary_url,$content,$docudom,$docuname,\$saveresult);
|
$containertag = '<input type="hidden" name="folderpath" value="" />'; |
} else {
|
$uploadtag = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />'; |
&Apache::lonnet::logthis('retrieval of uploaded file - '.$primary_url.' - for editing, failed: '.$getstatus);
|
} |
}
|
if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) { |
}
|
$showdoc='/'.$1; |
}
|
} |
}
|
if ($showdoc) { # got called in sequence from course |
|
$allowed=0; |
unless ($showdoc || $upload_result eq 'phasetwo') {
|
} else { |
# -----------------------------------------------------------------------------
|
if (($env{'form.folder'}=~/^(?:group|default)_/) || |
my %lt=&Apache::lonlocal::texthash(
|
($env{'form.folder'} =~ m:^\d+/(pages|sequences)/:)) { |
'uplm' => 'Upload a new main '.lc($type).' document',
|
$forcestandard = 1; |
'upls' => 'Upload a new supplemental '.lc($type).' document',
|
} |
'impp' => 'Import a document',
|
$forcesupplement=($env{'form.folder'}=~/^supplemental_/); |
'pubd' => 'Published Documents',
|
|
'copm' => 'All documents out of a published map into this folder',
|
if ($allowed) { |
'upld' => 'Upload Document',
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']); |
'srch' => 'Search',
|
$script=&Apache::lonratedt::editscript('simple'); |
'impo' => 'Import',
|
} |
'book' => 'Import Bookmarks',
|
} |
'selm' => 'Select Map',
|
|
'load' => 'Load Map',
|
# subroutine to list form elements |
'reco' => 'Recover Deleted Resources',
|
sub create_list_elements { |
'newf' => 'New Folder',
|
my @formarr = @_; |
'newp' => 'New Composite Page',
|
my $list = ''; |
'extr' => 'External Resource',
|
for my $button (@formarr){ |
'syll' => 'Syllabus',
|
for my $picture(keys %$button) { |
'navc' => 'Navigate Contents',
|
#my $link = Apache::lonhtmlcommon::htmltag('a' ,$button->{$picture}, {href => "test"}); |
'sipa' => 'Simple Page',
|
$list .= Apache::lonhtmlcommon::htmltag('li', $picture.' '.$button->{$picture}, {class => 'LC_menubuttons_inline_text'}); |
'sipr' => 'Simple Problem',
|
} |
'drbx' => 'Drop Box',
|
} |
'scuf' => 'Score Upload Form',
|
return $list; |
'bull' => 'Bulletin Board',
|
} |
'mypi' => 'My Personal Info',
|
|
'grpo' => 'Group Files',
|
# subroutine to create ul from list elements |
'rost' => 'Course Roster',
|
sub create_form_ul { |
'abou' => 'About User',
|
my $list = shift; |
'imsf' => 'Import IMS package',
|
my $ul = Apache::lonhtmlcommon::htmltag('ul',$list, {class => 'LC_ListStyleNormal'}); |
'file' => 'File',
|
return $ul; |
'title' => 'Title',
|
} |
'comment' => 'Comment',
|
|
'parse' => 'Upload embedded images/multimedia files if HTML file!',
|
# get course data |
'nd' => 'New Document',
|
my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'}; |
'pm' => 'Published Map',
|
my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
'sd' => 'Special Document',
|
|
'mo' => 'More Options',
|
# get personal data |
'hao' => 'Hide all Options'
|
my $uname=$env{'user.name'}; |
);
|
my $udom=$env{'user.domain'}; |
# -----------------------------------------------------------------------------
|
my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom)); |
my $fileupload=(<<FIUP);
|
|
$lt{'file'}:<br />
|
# graphics settings |
<input type="file" name="uploaddoc" size="40" />
|
|
FIUP
|
$iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL') . "/"); |
|
|
my $checkbox=(<<CHBO);
|
if ($allowed) { |
<!-- <label>$lt{'parse'}?
|
$script .= &editing_js($udom,$uname); |
<input type="checkbox" name="parserflag" />
|
} |
</label> -->
|
# -------------------------------------------------------------------- Body tag |
<label>
|
$script = '<script type="text/javascript">'."\n" |
<input type="checkbox" name="parserflag" checked="checked" /> $lt{'parse'}
|
.'// <![CDATA['."\n" |
</label>
|
.$script."\n" |
CHBO
|
.'// ]]>'."\n" |
|
.'</script>'."\n"; |
my $fileuploadform=(<<FUFORM);
|
|
<form name="uploaddocument" action="/adm/coursedocs" method="post" enctype="multipart/form-data">
|
# Breadcrumbs |
$fileupload
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
<br />
|
if ($allowed) { |
$lt{'title'}:<br />
|
&Apache::lonhtmlcommon::add_breadcrumb({ |
<input type="text" size="50" name="comment" />
|
href=>"/adm/coursedocs",text=>"$crstype Editor"}); |
$uploadtag
|
|
<input type="hidden" name="cmd" value="upload_default" />
|
$r->print(&Apache::loncommon::start_page("$crstype Editor", $script, |
<br />
|
{'force_register' => $showdoc,}) |
<span class="LC_nobreak">
|
.&Apache::loncommon::help_open_menu('','',273,'RAT') |
$checkbox
|
.&Apache::lonhtmlcommon::breadcrumbs( |
</span>
|
'Editing the Table of Contents for your '.$crstype, |
<br />
|
'Docs_Adding_Course_Doc') |
<br />
|
); |
<span class="LC_nobreak">
|
} elsif ($showdoc) { |
<input type="submit" value="$lt{'upld'}" />
|
$r->print(&Apache::loncommon::start_page("$crstype documents",undef, |
$help{'Uploading_From_Harddrive'}
|
{'force_register' => $showdoc,})); |
</span>
|
} else { |
</form>
|
my $folder=$env{'form.folder'}; |
FUFORM
|
if ($folder eq '' || $folder eq 'supplemental') { |
|
$env{'form.folderpath'} = 'supplemental&'. |
my $simpleeditdefaultform=(<<SEDFFORM);
|
&escape(&mt('Supplemental '.$crstype.' Documents')); |
<form action="/adm/coursedocs" method="post" name="simpleeditdefault">
|
} |
$lt{'pubd'}<br />
|
my ($breadcrumbtrail) = &breadcrumbs($allowed,$crstype); |
$uploadtag
|
$r->print(&Apache::loncommon::start_page("Supplemental documents"). |
<input type="button" onClick="javascript:groupsearch()" value="$lt{'srch'}" />
|
$breadcrumbtrail); |
<br />
|
} |
<span class="LC_nobreak">
|
|
<input type="button" onClick="javascript:groupimport();" value="$lt{'impo'}" />
|
my %allfiles = (); |
$help{'Importing_LON-CAPA_Resource'}
|
my %codebase = (); |
</span>
|
my ($upload_result,$upload_output); |
<br />
|
if ($allowed) { |
<input type="button" onClick="javascript:groupopen(0,1,1);" value="$lt{'book'}" />
|
if (($env{'form.uploaddoc.filename'}) && |
<hr />
|
($env{'form.cmd'}=~/^upload_(\w+)/)) { |
<p>
|
# Process file upload - phase one - upload and parse primary file. |
$lt{'copm'}<br />
|
undef($hadchanges); |
<input type="text" size="40" name="importmap" /><br />
|
$upload_result = &process_file_upload(\$upload_output,$coursenum, |
<span class="LC_nobreak"><input type="button"
|
$coursedom,\%allfiles, |
onClick="javascript:openbrowser('simpleeditdefault','importmap','sequence,page','')"
|
\%codebase,$1); |
value="$lt{'selm'}" /> <input type="submit" name="loadmap" value="$lt{'load'}" />
|
if ($hadchanges) { |
$help{'Load_Map'}</span>
|
&mark_hash_old(); |
</p>
|
} |
</form>
|
if ($upload_result eq 'phasetwo') { |
SEDFFORM
|
$r->print($upload_output); |
|
} |
my $extresourcesform=(<<ERFORM);
|
} elsif ($env{'form.phasetwo'}) { |
<form action="/adm/coursedocs" method="post" name="newext">
|
my %newname = (); |
$uploadtag
|
my %origname = (); |
<input type="hidden" name="importdetail" value="" />
|
my %attribs = (); |
<span class="LC_nobreak">
|
my $updateflag = 0; |
<input name="newext" type="button" onClick="javascript:makenewext('newext');"
|
my $residx = $env{'form.newidx'}; |
value="$lt{'extr'}" /> $help{'Adding_External_Resource'}
|
my $primary_url = &unescape($env{'form.primaryurl'}); |
</span>
|
# Process file upload - phase two - gather secondary files. |
</form>
|
for (my $i=0; $i<$env{'form.phasetwo'}; $i++) { |
ERFORM
|
if ($env{'form.embedded_item_'.$i.'.filename'}) { |
|
my $javacodebase; |
if ($allowed) {
|
$newname{$i} = &process_secondary_uploads(\$upload_output,$coursedom,$coursenum,'embedded_item_',$i,$residx); |
&update_paste_buffer($coursenum,$coursedom);
|
$origname{$i} = &unescape($env{'form.embedded_orig_'.$i}); |
my %lt=&Apache::lonlocal::texthash(
|
if (exists($env{'form.embedded_codebase_'.$i})) { |
'vc' => 'Verify Content',
|
$javacodebase = &unescape($env{'form.embedded_codebase_'.$i}); |
'cv' => 'Check/Set Resource Versions',
|
$origname{$i} =~ s#^\Q$javacodebase\E/##; |
'ls' => 'List Symbs',
|
} |
'sl' => 'Show Log'
|
my @attributes = (); |
);
|
if ($env{'form.embedded_attrib_'.$i} =~ /:/) { |
|
@attributes = split(/:/,$env{'form.embedded_attrib_'.$i}); |
my $folderpath=$env{'form.folderpath'};
|
} else { |
if (!$folderpath) {
|
@attributes = ($env{'form.embedded_attrib_'.$i}); |
if ($env{'form.folder'} eq '' ||
|
} |
$env{'form.folder'} eq 'supplemental') {
|
foreach my $attr (@attributes) { |
$folderpath='default&'.
|
push(@{$attribs{$i}},&unescape($attr)); |
&escape(&mt('Main '.$type.' Documents'));
|
} |
}
|
if ($javacodebase) { |
}
|
$codebase{$i} = $javacodebase; |
unless ($env{'form.pagepath'}) {
|
$codebase{$i} =~ s#/$##; |
$containertag = '<input type="hidden" name="folderpath" value="" />';
|
$updateflag = 1; |
$uploadtag = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />';
|
} |
}
|
} |
$r->print(&generate_admin_options($containertag,$uploadtag,\%lt,\%help,\%env));
|
unless ($newname{$i} eq $origname{$i}) { |
$r->print(&Apache::loncommon::help_open_topic('Docs_Adding_Course_Doc',
|
$updateflag = 1; |
&mt('Editing the Table of Contents for your '.$type)));
|
} |
}
|
} |
# --------------------------------------------------------- Standard documents
|
# Process file upload - phase three - modify primary file |
$r->print('<table class="LC_docs_documents">');
|
if ($updateflag) { |
|
my ($content,$rtncode); |
if (($standard) && ($allowed) && (!$forcesupplement)) {
|
my $updateflag = 0; |
$r->print('<tr><td class="LC_docs_document">');
|
my $getstatus = &Apache::lonnet::getuploaded('GET',$primary_url,$coursedom,$coursenum,\$content,\$rtncode); |
# '<h2>'.&mt('Main Course Documents').
|
if ($getstatus eq 'ok') { |
# ($allowed?' '.$help{'Main_Course_Documents'}:'').'</h2>');
|
foreach my $item (keys(%newname)) { |
my $folder=$env{'form.folder'};
|
if ($newname{$item} ne $origname{$item}) { |
if ($folder eq '' || $folder eq 'supplemental') {
|
my $attrib_regexp = ''; |
$folder='default';
|
if (@{$attribs{$item}} > 1) { |
$env{'form.folderpath'}='default&'.&escape(&mt('Main '.$type.' Documents'));
|
$attrib_regexp = join('|',@{$attribs{$item}}); |
$uploadtag = '<input type="hidden" name="folderpath" value="'.
|
} else { |
&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />';
|
$attrib_regexp = $attribs{$item}[0]; |
}
|
} |
my $postexec='';
|
if ($content =~ m#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#) { |
if ($folder eq 'default') {
|
} |
$r->print('<script type="text/javascript">this.window.name="loncapaclient";</script>');
|
$content =~ s#($attrib_regexp\s*=\s*['"]?)\Q$origname{$item}\E(['"]?)#$1$newname{$item}$2#gi; |
} else {
|
} |
#$postexec='self.close();';
|
if (exists($codebase{$item})) { |
}
|
$content =~ s/(codebase\s*=\s*["']?)\Q$codebase{$item}\E(["']?)/$1.$2/i; #' stupid emacs |
$hadchanges=0;
|
} |
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,
|
} |
$upload_output,$type);
|
# Save edited file. |
if ($error) {
|
my $saveresult; |
$r->print('<p><span class="LC_error">'.$error.'</span></p>');
|
my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'}; |
}
|
my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'}; |
if ($hadchanges) {
|
my $url = &Apache::lonnet::store_edited_file($primary_url,$content,$docudom,$docuname,\$saveresult); |
&mark_hash_old();
|
} else { |
}
|
&Apache::lonnet::logthis('retrieval of uploaded file - '.$primary_url.' - for editing, failed: '.$getstatus); |
&changewarning($r,$postexec);
|
} |
my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.
|
} |
'.sequence';
|
} |
my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.
|
} |
'.page';
|
|
my $container='sequence';
|
unless ($showdoc || $upload_result eq 'phasetwo') { |
if ($env{'form.pagepath'}) {
|
# ----------------------------------------------------------------------------- |
$container='page';
|
my %lt=&Apache::lonlocal::texthash( |
}
|
'uplm' => 'Upload a new main '.lc($crstype).' document', |
my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container;
|
'upls' => 'Upload a new supplemental '.lc($crstype).' document', |
|
'impp' => 'Import a document', |
|
'copm' => 'All documents out of a published map into this folder', |
|
'upld' => 'Import Document', |
my $recoverform=(<<RFORM);
|
'srch' => 'Search', |
<form action="/adm/groupsort" method="post" name="recover">
|
'impo' => 'Import', |
<input type="button" name="recovermap" onClick="javascript:groupopen('$readfile',1,0)" value="$lt{'reco'}" />
|
'wish' => 'Import from Wishlist', |
</form>
|
'selm' => 'Select Map', |
RFORM
|
'load' => 'Load Map', |
|
'reco' => 'Recover Deleted Documents', |
my $imspform=(<<IMSPFORM);
|
'newf' => 'New Folder', |
<form action="/adm/imsimportdocs" method="post" name="ims">
|
'newp' => 'New Composite Page', |
<input type="hidden" name="folder" value="$folder" />
|
'extr' => 'External Resource', |
<input name="imsimport" type="button" value="$lt{'imsf'}" onClick="javascript:makeims();" />
|
'syll' => 'Syllabus', |
</form>
|
'navc' => 'Table of Contents', |
IMSPFORM
|
'sipa' => 'Simple Course Page', |
|
'sipr' => 'Simple Problem', |
my $newnavform=(<<NNFORM);
|
'drbx' => 'Drop Box', |
<form action="/adm/coursedocs" method="post" name="newnav">
|
'scuf' => 'Score Upload Form', |
$uploadtag
|
'bull' => 'Discussion Board', |
<input type="hidden" name="importdetail"
|
'mypi' => 'My Personal Information Page', |
value="$lt{'navc'}=/adm/navmaps" />
|
'grpo' => 'Group Portfolio', |
<span class="LC_nobreak">
|
'rost' => 'Course Roster', |
<input name="newnav" type="submit" value="$lt{'navc'}" />
|
'abou' => 'Personal Information Page for a User', |
$help{'Navigate_Content'}
|
'imsf' => 'IMS Import', |
</span>
|
'imsl' => 'Import IMS package', |
</form>
|
'file' => 'File', |
NNFORM
|
'title' => 'Title', |
my $newsmppageform=(<<NSPFORM);
|
'comment' => 'Comment', |
<form action="/adm/coursedocs" method="post" name="newsmppg">
|
'parse' => 'Upload embedded images/multimedia files if HTML file', |
$uploadtag
|
'nd' => 'Upload Document', |
<input type="hidden" name="importdetail" value="" />
|
'pm' => 'Published Map', |
<span class="LC_nobreak">
|
'sd' => 'Special Document', |
<input name="newsmppg" type="button" value="$lt{'sipa'}"
|
'mo' => 'More Options', |
onClick="javascript:makesmppage();" /> $help{'Simple Page'}
|
); |
</span>
|
# ----------------------------------------------------------------------------- |
</form>
|
my $fileupload=(<<FIUP); |
NSPFORM
|
$lt{'file'}:<br /> |
|
<input type="file" name="uploaddoc" size="40" /> |
my $newsmpproblemform=(<<NSPROBFORM);
|
FIUP |
<form action="/adm/coursedocs" method="post" name="newsmpproblem">
|
|
$uploadtag
|
my $checkbox=(<<CHBO); |
<input type="hidden" name="importdetail" value="" />
|
<!-- <label>$lt{'parse'}? |
<span class="LC_nobreak">
|
<input type="checkbox" name="parserflag" /> |
<input name="newsmpproblem" type="button" value="$lt{'sipr'}"
|
</label> --> |
onClick="javascript:makesmpproblem();" />$help{'Simple Problem'}
|
<label> |
</span>
|
<input type="checkbox" name="parserflag" checked="checked" /> $lt{'parse'} |
</form>
|
</label> |
|
CHBO |
NSPROBFORM
|
|
|
my $fileuploada = "<input type='submit' value='".$lt{'upld'}."' /> $help{'Uploading_From_Harddrive'}"; |
my $newdropboxform=(<<NDBFORM);
|
my $fileuploadform=(<<FUFORM); |
<form action="/adm/coursedocs" method="post" name="newdropbox">
|
<form name="uploaddocument" action="/adm/coursedocs" method="post" enctype="multipart/form-data"> |
$uploadtag
|
<input type="hidden" name="active" value="aa" /> |
<input type="hidden" name="importdetail" value="" />
|
$fileupload |
<span class="LC_nobreak">
|
<br /> |
<input name="newdropbox" type="button" value="$lt{'drbx'}"
|
$lt{'title'}:<br /> |
onClick="javascript:makedropbox();" />
|
<input type="text" size="50" name="comment" /> |
</span>
|
$uploadtag |
</form>
|
<input type="hidden" name="cmd" value="upload_default" /> |
NDBFORM
|
<br /> |
|
<span class="LC_nobreak"> |
my $newexuploadform=(<<NEXUFORM);
|
$checkbox |
<form action="/adm/coursedocs" method="post" name="newexamupload">
|
</span> |
$uploadtag
|
FUFORM |
<input type="hidden" name="importdetail" value="" />
|
#$list .= Apache::lonhtmlcommon::htmltag('li', $picture.' '.$button->{$picture}, {class => 'LC_menubuttons_inline_text'}); |
<span class="LC_nobreak">
|
#$fileuploadform .= create_form_ul(create_list_elements(@fileuploada)); |
<input name="newexamupload" type="button" value="$lt{'scuf'}"
|
$fileuploadform .= create_form_ul(Apache::lonhtmlcommon::htmltag('li',$fileuploada,{class => 'LC_menubuttons_inline_text'})); |
onClick="javascript:makeexamupload();" />
|
$fileuploadform .= (<<FUFORM); |
$help{'Score_Upload_Form'}
|
</form> |
</span>
|
FUFORM |
</form>
|
|
NEXUFORM
|
my $simpleeditdefaultform=(<<SEDFFORM); |
|
<form action="/adm/coursedocs" method="post" name="simpleeditdefault"> |
my $newbulform=(<<NBFORM);
|
<input type="hidden" name="active" value="bb" /> |
<form action="/adm/coursedocs" method="post" name="newbul">
|
SEDFFORM |
$uploadtag
|
my @simpleeditdefaultforma = ( |
<input type="hidden" name="importdetail" value="" />
|
{ '<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>" }, |
<span class="LC_nobreak">
|
{ '<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'}" }, |
<input name="newbulletin" type="button" value="$lt{'bull'}"
|
{ '<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>" }, |
onClick="javascript:makebulboard();" />
|
); |
$help{'Bulletin Board'}
|
$simpleeditdefaultform .= create_form_ul(create_list_elements(@simpleeditdefaultforma)); |
</span>
|
$simpleeditdefaultform .=(<<SEDFFORM); |
</form>
|
<hr /> |
NBFORM
|
<p> |
|
$lt{'copm'}<br /> |
my $newaboutmeform=(<<NAMFORM);
|
<input type="text" size="40" name="importmap" /><br /> |
<form action="/adm/coursedocs" method="post" name="newaboutme">
|
<span class="LC_nobreak"><input type="button" |
$uploadtag
|
onclick="javascript:openbrowser('simpleeditdefault','importmap','sequence,page','')" |
<input type="hidden" name="importdetail"
|
value="$lt{'selm'}" /> <input type="submit" name="loadmap" value="$lt{'load'}" /> |
value="$plainname=/adm/$udom/$uname/aboutme" />
|
$help{'Load_Map'}</span> |
<span class="LC_nobreak">
|
</p> |
<input name="newaboutme" type="submit" value="$lt{'mypi'}" />
|
</form> |
$help{'My Personal Info'}
|
SEDFFORM |
</span>
|
|
</form>
|
my $extresourcesform=(<<ERFORM); |
NAMFORM
|
<form action="/adm/coursedocs" method="post" name="newext"> |
|
$uploadtag |
my $newaboutsomeoneform=(<<NASOFORM);
|
<input type="hidden" name="importdetail" value="" /> |
<form action="/adm/coursedocs" method="post" name="newaboutsomeone">
|
<a class="LC_menubuttons_link" href="javascript:makenewext('newext');">$lt{'extr'}</a>$help{'Adding_External_Resource'} |
$uploadtag
|
</form> |
<input type="hidden" name="importdetail" value="" />
|
ERFORM |
<span class="LC_nobreak">
|
|
<input name="newaboutsomeone" type="button" value="$lt{'abou'}"
|
if ($allowed) { |
onClick="javascript:makeabout();" />
|
&update_paste_buffer($coursenum,$coursedom); |
</span>
|
my %lt=&Apache::lonlocal::texthash( |
</form>
|
'vc' => 'Verify Content', |
NASOFORM
|
'cv' => 'Check/Set Resource Versions', |
|
'ls' => 'List Symbs', |
|
'sl' => 'Show Log' |
my $newrosterform=(<<NROSTFORM);
|
); |
<form action="/adm/coursedocs" method="post" name="newroster">
|
|
$uploadtag
|
$r->print(<<HIDDENFORM); |
<input type="hidden" name="importdetail"
|
<form name="renameform" method="post" action="/adm/coursedocs"> |
value="$lt{'rost'}=/adm/viewclasslist" />
|
<input type="hidden" name="title" /> |
<span class="LC_nobreak">
|
<input type="hidden" name="cmd" /> |
<input name="newroster" type="submit" value="$lt{'rost'}" />
|
<input type="hidden" name="markcopy" /> |
$help{'Course Roster'}
|
<input type="hidden" name="copyfolder" /> |
</span>
|
$containertag |
</form>
|
</form> |
NROSTFORM
|
<form name="simpleedit" method="post" action="/adm/coursedocs"> |
|
<input type="hidden" name="importdetail" value="" /> |
$r->print(<<ENDFORM);
|
$uploadtag |
|
</form> |
<ul class="LC_TabContent">
|
HIDDENFORM |
<li>$lt{'nd'}</li>
|
} |
<li>$lt{'pm'}</li>
|
# --------------------------------------------------------- Main tab structure |
<li>$lt{'pubd'}</li>
|
|
<li>$lt{'sd'}</li>
|
my $activeClass = 1; |
<li>$lt{'mo'}</li>
|
my $active = ''; |
<li>$lt{'hao'}</li>
|
my %tabtitles = ( |
</ul>
|
main => { |
|
Course => &mt('Main Course Documents'), |
<table class="LC_docs_adddocs">
|
Community => &mt('Main Community Documents'), |
<!-- <tr>
|
}, |
<th>$lt{'uplm'}</th>
|
supplemental => { |
<th>$lt{'impp'}</th>
|
Course => &mt('Supplemental Course Documents'), |
<th>$lt{'spec'}</th>
|
Community => &mt('Supplemental Community Documents'), |
</tr> -->
|
}, |
<tr>
|
); |
<td>
|
if ($allowed) { |
$fileuploadform
|
$r->print('<ul class="LC_TabContentBigger" id="mainnav">'); |
</td>
|
if (($standard) && ($allowed) && (!$forcesupplement) && (($env{'form.folderpath'}=~/^default/) || $env{'form.folderpath'}eq"" || ($env{'form.pagepath'}))) { |
<td>
|
if($activeClass == 1){ |
$simpleeditdefaultform
|
$active = 'class="active"'; |
<hr />
|
$activeClass = 0; |
$recoverform
|
} |
ENDFORM
|
} |
unless ($env{'form.pagepath'}) {
|
$r->print('<li '.$active |
$r->print(<<ENDFORM);
|
. ' onclick="javascript:showPage(this,\'mainCourseDocuments\',\'mainnav\',\'maincoursedoc\');"><a href="#"><b>'.$tabtitles{'main'}{$crstype}.'</b></a></li>'); |
<hr />
|
$active = ''; |
$extresourcesform
|
if (!$forcestandard || ($env{'form.folderpath'}=~/^supplemental/)) { |
<br />
|
if($activeClass == 1){ |
$imspform
|
$active = 'class="active"'; |
ENDFORM
|
} |
}
|
} |
$r->print('</td><td>');
|
$r->print('<li '.$active |
unless ($env{'form.pagepath'}) {
|
.' onclick="javascript:showPage(this,\'supplCourseDocuments\',\'mainnav\',\'maincoursedoc\');"><a href="#"><b>'.$tabtitles{'supplemental'}{$crstype}.'</b></a></li>'); |
my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
|
$r->print('</ul>'); |
|
} else { |
|
$r->print('<br />'); |
|
} |
my $newpageform=(<<NPFORM);
|
$r->print('<div class="LC_Box" style="clear:both;margin:0;">' |
<form action="/adm/coursedocs" method="post" name="newpage">
|
.'<div id="maincoursedoc" style="margin:0 0;padding:0 0;">'); |
<input type="hidden" name="folderpath" value="$path" />
|
# --------------------------------------------------------- Standard documents |
<input type="hidden" name="importdetail" value="" />
|
my $savefolderpath; |
<span class="LC_nobreak">
|
$active = 'style="display: none;"'; |
<input name="newpage" type="button"
|
if($activeClass == 0){ |
onClick="javascript:makenewpage(this.form,'$pageseq');"
|
$active = 'style="display: block;"'; |
value="$lt{'newp'}" />$help{'Adding_Pages'}
|
} |
</span>
|
if ($allowed) { |
</form>
|
$r->print('<div class="LC_ContentBox" id="mainCourseDocuments" '.$active.'>'); |
NPFORM
|
my $folder=$env{'form.folder'}; |
|
if ($folder eq '' || $folder=~/^supplemental/) { |
my $newfolderform=(<<NFFORM);
|
$folder='default'; |
<form action="/adm/coursedocs" method="post" name="newfolder">
|
$savefolderpath = $env{'form.folderpath'}; |
<input type="hidden" name="folderpath" value="$path" />
|
$env{'form.folderpath'}='default&'.&escape($tabtitles{'main'}{$crstype}); |
<input type="hidden" name="importdetail" value="" />
|
$uploadtag = '<input type="hidden" name="folderpath" value="'. |
<span class="LC_nobreak">
|
&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />'; |
<input name="newfolder" type="button"
|
} |
onClick="javascript:makenewfolder(this.form,'$folderseq');"
|
my $postexec=''; |
value="$lt{'newf'}" />$help{'Adding_Folders'}
|
if ($folder eq 'default') { |
</span>
|
$r->print('<script type="text/javascript">'."\n" |
</form>
|
.'// <![CDATA['."\n" |
NFFORM
|
.'this.window.name="loncapaclient";'."\n" |
|
.'// ]]>'."\n" |
my $newsylform=(<<NSYLFORM);
|
.'</script>'."\n" |
<form action="/adm/coursedocs" method="post" name="newsyl">
|
); |
$uploadtag
|
} else { |
<input type="hidden" name="importdetail"
|
#$postexec='self.close();'; |
value="$lt{'syll'}=/public/$coursedom/$coursenum/syllabus" />
|
} |
<span class="LC_nobreak">
|
my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time. |
<input name="newsyl" type="submit" value="$lt{'syll'}" />
|
'.sequence'; |
$help{'Syllabus'}
|
my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time. |
</span>
|
'.page'; |
</form>
|
my $container='sequence'; |
NSYLFORM
|
if ($env{'form.pagepath'}) { |
|
$container='page'; |
my $newgroupfileform=(<<NGFFORM);
|
} |
<form action="/adm/coursedocs" method="post" name="newgroupfiles">
|
my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container; |
$uploadtag
|
|
<input type="hidden" name="importdetail"
|
|
value="$lt{'grpo'}=/adm/$coursedom/$coursenum/aboutme" />
|
|
<span class="LC_nobreak">
|
my $recoverform=(<<RFORM); |
<input name="newgroupfiles" type="submit" value="$lt{'grpo'}" />
|
<form action="/adm/groupsort" method="post" name="recover"> |
$help{'Group Files'}
|
<a class="LC_menubuttons_link" href="javascript:groupopen('$readfile',1)">$lt{'reco'}</a> |
</span>
|
</form> |
</form>
|
RFORM |
NGFFORM
|
|
|
my $imspform=(<<IMSPFORM); |
|
<form action="/adm/imsimportdocs" method="post" name="ims"> |
$r->print(<<ENDFORM);
|
<input type="hidden" name="folder" value="$folder" /> |
<br />
|
<a class="LC_menubuttons_link" href="javascript:makeims();">$lt{'imsf'}</a> |
$newfolderform
|
</form> |
<br />
|
IMSPFORM |
$newpageform
|
|
<br />
|
my $newnavform=(<<NNFORM); |
$newsylform
|
<form action="/adm/coursedocs" method="post" name="newnav"> |
<br />
|
<input type="hidden" name="active" value="cc" /> |
$newnavform
|
$uploadtag |
<br />
|
<input type="hidden" name="importdetail" |
$newsmppageform
|
value="$lt{'navc'}=/adm/navmaps" /> |
<br />
|
<a class="LC_menubuttons_link" href="javascript:document.newnav.submit()">$lt{'navc'}</a> |
$newsmpproblemform
|
$help{'Navigate_Content'} |
<br />
|
</form> |
$newdropboxform
|
NNFORM |
<br />
|
my $newsmppageform=(<<NSPFORM); |
$newexuploadform
|
<form action="/adm/coursedocs" method="post" name="newsmppg"> |
<br />
|
<input type="hidden" name="active" value="cc" /> |
$newbulform
|
$uploadtag |
<br />
|
<input type="hidden" name="importdetail" value="" /> |
$newaboutmeform
|
<a class="LC_menubuttons_link" href="javascript:makesmppage();"> $lt{'sipa'}</a> |
<br />
|
$help{'Simple Page'} |
$newaboutsomeoneform
|
</form> |
<br />
|
NSPFORM |
$newgroupfileform
|
|
<br />
|
my $newsmpproblemform=(<<NSPROBFORM); |
$newrosterform
|
<form action="/adm/coursedocs" method="post" name="newsmpproblem"> |
ENDFORM
|
<input type="hidden" name="active" value="cc" /> |
}
|
$uploadtag |
if ($env{'form.pagepath'}) {
|
<input type="hidden" name="importdetail" value="" /> |
$r->print(<<ENDBLOCK);
|
<a class="LC_menubuttons_link" href="javascript:makesmpproblem();">$lt{'sipr'}</a> |
$newsmpproblemform
|
$help{'Simple Problem'} |
<br />
|
</form> |
$newexuploadform
|
|
ENDBLOCK
|
NSPROBFORM |
}
|
|
$r->print('</td></tr>'."\n".
|
my $newdropboxform=(<<NDBFORM); |
'</table>');
|
<form action="/adm/coursedocs" method="post" name="newdropbox"> |
$r->print('</td></tr>');
|
<input type="hidden" name="active" value="cc" /> |
}
|
$uploadtag |
# ----------------------------------------------------- Supplemental documents
|
<input type="hidden" name="importdetail" value="" /> |
if (!$forcestandard) {
|
<a class="LC_menubuttons_link" href="javascript:makedropbox();">$lt{'drbx'}</a> |
$r->print('<tr><td class="LC_docs_document">');
|
</form> |
# '<h2>'.&mt('Supplemental Course Documents').
|
NDBFORM |
# ($allowed?' '.$help{'Supplemental'}:'').'</h2>');
|
|
my $folder=$env{'form.folder'};
|
my $newexuploadform=(<<NEXUFORM); |
unless ($folder=~/^supplemental/) {
|
<form action="/adm/coursedocs" method="post" name="newexamupload"> |
$folder='supplemental';
|
<input type="hidden" name="active" value="cc" /> |
}
|
$uploadtag |
if ($folder =~ /^supplemental$/ &&
|
<input type="hidden" name="importdetail" value="" /> |
(($env{'form.folderpath'} =~ /^default\&/) || ($env{'form.folderpath'} eq ''))) {
|
<a class="LC_menubuttons_link" href="javascript:makeexamupload();">$lt{'scuf'}</a> |
$env{'form.folderpath'} = 'supplemental&'.
|
$help{'Score_Upload_Form'} |
&escape(&mt('Supplemental '.$type.' Documents'));
|
</form> |
}
|
NEXUFORM |
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$type);
|
|
if ($error) {
|
my $newbulform=(<<NBFORM); |
$r->print('<p><span class="LC_error">'.$error.'</span></p>');
|
<form action="/adm/coursedocs" method="post" name="newbul"> |
}
|
<input type="hidden" name="active" value="cc" /> |
if ($allowed) {
|
$uploadtag |
my $folderseq=
|
<input type="hidden" name="importdetail" value="" /> |
'/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_'.time.
|
<a class="LC_menubuttons_link" href="javascript:makebulboard();" >$lt{'bull'}</a> |
'.sequence';
|
$help{'Bulletin Board'} |
|
</form> |
my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
|
NBFORM |
|
|
my $supupdocform=(<<SUPDOCFORM);
|
my $newaboutmeform=(<<NAMFORM); |
<form action="/adm/coursedocs" method="post" enctype="multipart/form-data">
|
<form action="/adm/coursedocs" method="post" name="newaboutme"> |
$fileupload
|
<input type="hidden" name="active" value="cc" /> |
<br />
|
$uploadtag |
<br />
|
<input type="hidden" name="importdetail" |
<span class="LC_nobreak">
|
value="$plainname=/adm/$udom/$uname/aboutme" /> |
$checkbox
|
<a class="LC_menubuttons_link" href="javascript:document.newaboutme.submit()">$lt{'mypi'}</a> |
</span>
|
$help{'My Personal Information Page'} |
<br /><br />
|
</form> |
$lt{'comment'}:<br />
|
NAMFORM |
<textarea cols=50 rows=4 name='comment'>
|
|
</textarea>
|
my $newaboutsomeoneform=(<<NASOFORM); |
<br />
|
<form action="/adm/coursedocs" method="post" name="newaboutsomeone"> |
<input type="hidden" name="folderpath" value="$path" />
|
<input type="hidden" name="active" value="cc" /> |
<input type="hidden" name="cmd" value="upload_supplemental" />
|
$uploadtag |
<span class="LC_nobreak">
|
<input type="hidden" name="importdetail" value="" /> |
<input type="submit" value="$lt{'upld'}" />
|
<a class="LC_menubuttons_link" href="javascript:makeabout();">$lt{'abou'}</a> |
$help{'Uploading_From_Harddrive'}
|
</form> |
</span>
|
NASOFORM |
</form>
|
|
SUPDOCFORM
|
|
|
my $newrosterform=(<<NROSTFORM); |
my $supnewfolderform=(<<SNFFORM);
|
<form action="/adm/coursedocs" method="post" name="newroster"> |
<form action="/adm/coursedocs" method="post" name="supnewfolder">
|
<input type="hidden" name="active" value="cc" /> |
<input type="hidden" name="folderpath" value="$path" />
|
$uploadtag |
<input type="hidden" name="importdetail" value="" />
|
<input type="hidden" name="importdetail" |
<span class="LC_nobreak">
|
value="$lt{'rost'}=/adm/viewclasslist" /> |
<input name="newfolder" type="button"
|
<a class="LC_menubuttons_link" href="javascript:document.newroster.submit()">$lt{'rost'}</a> |
onClick="javascript:makenewfolder(this.form,'$folderseq');"
|
$help{'Course Roster'} |
value="$lt{'newf'}" /> $help{'Adding_Folders'}
|
</form> |
</span>
|
NROSTFORM |
</form>
|
|
SNFFORM
|
my $specialdocumentsform; |
|
my @specialdocumentsforma; |
|
my $newfolderform; |
my $supnewextform=(<<SNEFORM);
|
my $newfolderb; |
<form action="/adm/coursedocs" method="post" name="supnewext">
|
|
<input type="hidden" name="folderpath" value="$path" />
|
unless ($env{'form.pagepath'}) { |
<input type="hidden" name="importdetail" value="" />
|
my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"'); |
<span class="LC_nobreak">
|
|
<input name="newext" type="button"
|
my $newpageform=(<<NPFORM); |
onClick="javascript:makenewext('supnewext');"
|
<form action="/adm/coursedocs" method="post" name="newpage"> |
value="$lt{'extr'}" /> $help{'Adding_External_Resource'}
|
<input type="hidden" name="folderpath" value="$path" /> |
</span>
|
<input type="hidden" name="importdetail" value="" /> |
</form>
|
<input type="hidden" name="active" value="cc" /> |
SNEFORM
|
<a class="LC_menubuttons_link" href="javascript:makenewpage(document.newpage,'$pageseq');">$lt{'newp'}</a> |
|
$help{'Adding_Pages'} |
my $supnewsylform=(<<SNSFORM);
|
</form> |
<form action="/adm/coursedocs" method="post" name="supnewsyl">
|
NPFORM |
<input type="hidden" name="folderpath" value="$path" />
|
|
<input type="hidden" name="importdetail"
|
|
value="Syllabus=/public/$coursedom/$coursenum/syllabus" />
|
$newfolderform=(<<NFFORM); |
<span class="LC_nobreak">
|
<form action="/adm/coursedocs" method="post" name="newfolder"> |
<input name="newsyl" type="submit" value="$lt{'syll'}" />
|
<input type="hidden" name="folderpath" value="$path" /> |
$help{'Syllabus'}
|
<input type="hidden" name="importdetail" value="" /> |
</span>
|
<input type="hidden" name="active" value="aa" /> |
</form>
|
<a href="javascript:makenewfolder(document.newfolder,'$folderseq');">$lt{'newf'}</a>$help{'Adding_Folders'} |
SNSFORM
|
</form> |
|
NFFORM |
my $supnewaboutmeform=(<<SNAMFORM);
|
|
<form action="/adm/coursedocs" method="post" name="subnewaboutme">
|
my $newsylform=(<<NSYLFORM); |
<input type="hidden" name="folderpath" value="$path" />
|
<form action="/adm/coursedocs" method="post" name="newsyl"> |
<input type="hidden" name="importdetail"
|
<input type="hidden" name="active" value="cc" /> |
value="$plainname=/adm/$udom/$uname/aboutme" />
|
$uploadtag |
<span class="LC_nobreak">
|
<input type="hidden" name="importdetail" |
<input name="newaboutme" type="submit" value="$lt{'mypi'}" />
|
value="$lt{'syll'}=/public/$coursedom/$coursenum/syllabus" /> |
$help{'My Personal Info'}
|
<a class="LC_menubuttons_link" href="javascript:document.newsyl.submit()">$lt{'syll'}</a> |
</span>
|
$help{'Syllabus'} |
</form>
|
|
SNAMFORM
|
</form> |
|
NSYLFORM |
$r->print(<<ENDSUPFORM);
|
|
<ul class="LC_TabContent">
|
my $newgroupfileform=(<<NGFFORM); |
<li>$lt{'nd'}</li>
|
<form action="/adm/coursedocs" method="post" name="newgroupfiles"> |
<li>$lt{'sd'}</li>
|
<input type="hidden" name="active" value="cc" /> |
<li>$lt{'hao'}</li>
|
$uploadtag |
</ul>
|
<input type="hidden" name="importdetail" |
<table class="LC_docs_adddocs">
|
value="$lt{'grpo'}=/adm/$coursedom/$coursenum/aboutme" /> |
<tr><td>
|
<a class="LC_menubuttons_link" href="javascript:document.newgroupfiles.submit()">$lt{'grpo'}</a> |
$supupdocform
|
$help{'Group Portfolio'} |
</td>
|
</form> |
<td>
|
NGFFORM |
$supnewfolderform
|
@specialdocumentsforma=( |
<br />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/page.png" alt="'.$lt{newp}.'" onclick="javascript:makenewpage(document.newpage,\''.$pageseq.'\');" />'=>$newpageform}, |
$supnewextform
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="document.newsyl.submit()" />'=>$newsylform}, |
<br />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/groupportfolio.png" alt="'.$lt{grpo}.'" onclick="document.newgroupfiles.submit()" />'=>$newgroupfileform}, |
$supnewsylform
|
); |
<br />
|
|
$supnewaboutmeform
|
my @importdoc = ( |
</td></tr>
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="javascript:makenewext(\'newext\');" />'=>$extresourcesform}, |
</table></td></tr>
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/ims.png" alt="'.$lt{imsf}.'" onclick="javascript:makeims();" />'=>$imspform},); |
ENDSUPFORM
|
$fileuploadform = create_form_ul(create_list_elements(@importdoc)) . '<hr/>' . $fileuploadform; |
}
|
|
}
|
push @specialdocumentsforma, ({'<img class="LC_noBorder LC_middle" src="/res/adm/pages/navigation.png" alt="'.$lt{navc}.'" onclick="document.newnav.submit()" />'=>$newnavform}, |
$r->print('</table>');
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simple.png" alt="'.$lt{sipa}.'" onclick="javascript:makesmppage();" />'=>$newsmppageform}, |
if ($allowed) {
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.$lt{sipr}.'" onclick="javascript:makesmpproblem();" />'=>$newsmpproblemform}, |
$r->print('
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/dropbox.png" alt="'.$lt{drbx}.'" onclick="javascript:makedropbox();" />'=>$newdropboxform}, |
<form method="post" name="extimport" action="/adm/coursedocs">
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/scoreupfrm.png" alt="'.$lt{scuf}.'" onclick="javascript:makeexamupload();" />'=>$newexuploadform}, |
<input type="hidden" name="title" />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/bchat.png" alt="'.$lt{bull}.'" onclick="javascript:makebulboard();" />'=>$newbulform}, |
<input type="hidden" name="url" />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="javascript:makebulboard();" />'=>$newaboutmeform}, |
<input type="hidden" name="useform" />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/aboutme.png" alt="'.$lt{abou}.'" onclick="javascript:makeabout();" />'=>$newaboutsomeoneform}, |
<input type="hidden" name="residx" />
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/clst.png" alt="'.$lt{rost}.'" onclick="document.newroster.submit()" />'=>$newrosterform},); |
</form>');
|
|
}
|
$specialdocumentsform = create_form_ul(create_list_elements(@specialdocumentsforma)); |
} else {
|
} |
unless ($upload_result eq 'phasetwo') {
|
|
# -------------------------------------------------------- This is showdoc mode
|
if($env{'form.pagepath'}) { |
$r->print("<h1>".&mt('Uploaded Document').' - '.
|
|
&Apache::lonnet::gettitle($r->uri).'</h1><p>'.
|
@specialdocumentsforma=( |
&mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>".
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.&mt('Simple Problem').'" onclick="javascript:makesmpproblem();" />'=>$newsmpproblemform}, |
&entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>');
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/scoreupfrm.png" alt="'.&mt('Score Upload Form').'" onclick="javascript:makeexamupload();" />'=>$newexuploadform} |
}
|
); |
}
|
$specialdocumentsform= create_form_ul(create_list_elements(@specialdocumentsforma)); |
}
|
} |
$r->print(&Apache::loncommon::end_page());
|
|
return OK;
|
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}, |
sub generate_admin_options {
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/recover.png" alt="'.$lt{reco}.'" onclick="javascript:groupopen(\''.$readfile.'\',1)" />'=>$recoverform}, |
my ($containertag,$uploadtag,$lt_ref,$help_ref,$env_ref) = @_;
|
); |
my %lt = %{$lt_ref};
|
|
my %help = %{$help_ref};
|
my %orderhash = ( |
my %env = %{$env_ref};
|
'aa' => ['Import Documents',$fileuploadform], |
my $dumpbut=&dumpbutton();
|
'bb' => ['Published Resources',$simpleeditdefaultform], |
my $exportbut=&exportbutton();
|
'cc' => ['Special Documents',$specialdocumentsform], |
return (<<ENDOPTIONFORM);
|
'dd' => ['Tools', create_form_ul(create_list_elements(@tools)).&generate_admin_options(\%help,\%env)], |
<form name="renameform" method="post" action="/adm/coursedocs">
|
); |
<input type="hidden" name="title" />
|
unless($env{'form.pagepath'}) { |
<input type="hidden" name="cmd" />
|
$orderhash{'00'} = ['Newfolder',$newfolderform]; |
<input type="hidden" name="markcopy" />
|
} |
<input type="hidden" name="copyfolder" />
|
|
$containertag
|
my $tid='1'; |
</form>
|
$hadchanges=0; |
<form name="simpleedit" method="post" action="/adm/coursedocs">
|
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype); |
<input type="hidden" name="importdetail" value="" />
|
if ($error) { |
$uploadtag
|
$r->print('<p><span class="LC_error">'.$error.'</span></p>'); |
</form>
|
} |
<form action="/adm/coursedocs" method="post" name="courseverify">
|
if ($hadchanges) { |
<ul style="list-style-type:none">
|
&mark_hash_old(); |
<li>
|
} |
<input type="submit" name="verify" value="$lt{'vc'}" />$help{'Verify_Content'}
|
|
</li>
|
&changewarning($r,''); |
<li>
|
$r->print(&generate_edit_table($tid,\%orderhash)); |
<input type="submit" name="versions" value="$lt{'cv'}" />$help{'Check_Resource_Versions'}
|
|
</li>
|
$r->print('</div>'); |
<li>
|
} |
$dumpbut
|
# ----------------------------------------------------- Supplemental documents |
</li>
|
$active = 'style="display: none;"'; |
<li>
|
if($activeClass == 1){ |
$exportbut
|
$active = 'style="display: block;"'; |
</li>
|
} |
<li>
|
$r->print('<div class="LC_ContentBox" id="supplCourseDocuments" '.$active.'>'); |
<input type="submit" name="listsymbs" value="$lt{'ls'}" />
|
my $folder=$env{'form.folder'}; |
</li>
|
unless ($folder=~/^supplemental/) { |
<li>
|
$folder='supplemental'; |
<input type="hidden" name="folder" value="$env{'form.folder'}" />
|
} |
<input type="submit" name="docslog" value="$lt{'sl'}" />
|
if ($folder =~ /^supplemental$/ && |
</li>
|
(($env{'form.folderpath'} =~ /^default\&/) || ($env{'form.folderpath'} eq ''))) { |
</ul>
|
$env{'form.folderpath'} = 'supplemental&'. |
</form>
|
&escape(&mt('Supplemental '.$crstype.' Documents')); |
<div style="clear: both; height: 0px;"> </div>
|
} elsif ($allowed) { |
ENDOPTIONFORM
|
$env{'form.folderpath'} = $savefolderpath; |
}
|
} |
|
$env{'form.pagepath'} = ''; |
sub generate_edit_table {
|
if ($allowed) { |
my ($optionhash_ref,$namehash_ref,$orderhash_ref) = @_;
|
my $folderseq= |
my %optionhash = %{$optionhash_ref}; #id verlinkt mit inhalt
|
'/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_'.time. |
my %namehash = %{$namehash_ref}; #name verlinkt mit id
|
'.sequence'; |
my %orderhash = %{$orderhash_ref}; #name mit kürzel verlinkt mit name
|
|
my $form;
|
my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"'); |
$form = '<div class="LC_ContentBoxSpecial"><h4 class="LC_hcell">'.&mt('Upload Course Documents').'<h4>';
|
|
$form .= '<ul class="LC_TabContent">';
|
my $supupdocformbtn = "<input type='submit' value='".$lt{'upld'}."' />$help{'Uploading_From_Harddrive'}"; |
foreach my $name (sort(keys(%orderhash))){
|
my $supupdocform=(<<SUPDOCFORM); |
if($name eq 'zz_hide'){
|
<form action="/adm/coursedocs" method="post" name="supuploaddocument" enctype="multipart/form-data"> |
$form .= '<li><a onclick="hideAllSection();" href="#">'.&mt($orderhash{$name}).'</a></li>';
|
<input type="hidden" name="active" value="ee" /> |
}else{
|
$fileupload |
$form .= '<li><a onclick="popUpSection(\''.$namehash{$orderhash{$name}}.'\');" href="#">'.&mt($orderhash{$name}).'</a></li>';
|
<br /> |
}
|
<br /> |
}
|
<span class="LC_nobreak"> |
foreach my $field (keys(%optionhash)){
|
$checkbox |
$form .= '<div id="'.$field.'" class="LC_ContentBox LC_hideThis">'.$optionhash{$field}.'</div>';
|
</span> |
}
|
<br /><br /> |
$form .= '</div>';
|
$lt{'comment'}:<br /> |
return $form;
|
<textarea cols="50" rows="4" name="comment"></textarea> |
}
|
<br /> |
|
<input type="hidden" name="folderpath" value="$path" /> |
sub editing_js {
|
<input type="hidden" name="cmd" value="upload_supplemental" /> |
my ($udom,$uname) = @_;
|
SUPDOCFORM |
my $now = time();
|
$supupdocform .= create_form_ul(Apache::lonhtmlcommon::htmltag('li',$supupdocformbtn,{class => 'LC_menubuttons_inline_text'}))."</form>"; |
my %lt = &Apache::lonlocal::texthash(
|
|
p_mnf => 'Name of New Folder',
|
my $supnewfolderform=(<<SNFFORM); |
t_mnf => 'New Folder',
|
<form action="/adm/coursedocs" method="post" name="supnewfolder"> |
p_mnp => 'Name of New Page',
|
<input type="hidden" name="active" value="ee" /> |
t_mnp => 'New Page',
|
<input type="hidden" name="folderpath" value="$path" /> |
p_mxu => 'Title for the Uploaded Score',
|
<input type="hidden" name="importdetail" value="" /> |
p_msp => 'Title for the Page',
|
<a class="LC_menubuttons_link" href="javascript:makenewfolder(document.supnewfolder,'$folderseq');">$lt{'newf'}</a> |
p_msb => 'Title for the Problem',
|
$help{'Adding_Folders'} |
p_mdb => 'Title for the Drop Box',
|
</form> |
p_mbb => 'Title for the Bulletin Board',
|
SNFFORM |
p_mab => "Enter user:domain for User's 'About Me' Page",
|
|
p_mab2 => "About [_99]",
|
|
p_mab_alrt1 => 'Not a valid user:domain',
|
my $supnewextform=(<<SNEFORM); |
p_mab_alrt2 => 'Please enter both user and domain in the format user:domain',
|
<form action="/adm/coursedocs" method="post" name="supnewext"> |
p_chn => 'New Title',
|
<input type="hidden" name="active" value="ff" /> |
p_rmr1 => 'WARNING: Removing a resource makes associated grades and scores inaccessible!',
|
<input type="hidden" name="folderpath" value="$path" /> |
p_rmr2a => 'Remove[_99]',
|
<input type="hidden" name="importdetail" value="" /> |
p_rmr2b => '?[_99]',
|
<a class="LC_menubuttons_link" href="javascript:makenewext('supnewext');">$lt{'extr'}</a> $help{'Adding_External_Resource'} |
p_ctr1a => 'WARNING: Cutting a resource makes associated grades and scores inaccessible!',
|
</form> |
p_ctr1b => 'Grades remain inaccessible if resource is pasted into another folder.',
|
SNEFORM |
p_ctr2a => 'Cut[_98]',
|
|
p_ctr2b => '?[_98]'
|
my $supnewsylform=(<<SNSFORM); |
);
|
<form action="/adm/coursedocs" method="post" name="supnewsyl"> |
|
<input type="hidden" name="active" value="ff" /> |
return <<ENDNEWSCRIPT;
|
<input type="hidden" name="folderpath" value="$path" /> |
function makenewfolder(targetform,folderseq) {
|
<input type="hidden" name="importdetail" |
var foldername=prompt('$lt{"p_mnf"}','$lt{"t_mnf"}');
|
value="Syllabus=/public/$coursedom/$coursenum/syllabus" /> |
if (foldername) {
|
<a class="LC_menubuttons_link" href="javascript:document.supnewsyl.submit()">$lt{'syll'}</a> |
targetform.importdetail.value=escape(foldername)+"="+folderseq;
|
$help{'Syllabus'} |
targetform.submit();
|
</form> |
}
|
SNSFORM |
}
|
|
|
my $supnewaboutmeform=(<<SNAMFORM); |
function makenewpage(targetform,folderseq) {
|
<form action="/adm/coursedocs" method="post" name="supnewaboutme"> |
var pagename=prompt('$lt{"p_mnp"}','$lt{"t_mnp"}');
|
<input type="hidden" name="active" value="ff" /> |
if (pagename) {
|
<input type="hidden" name="folderpath" value="$path" /> |
targetform.importdetail.value=escape(pagename)+"="+folderseq;
|
<input type="hidden" name="importdetail" |
targetform.submit();
|
value="$plainname=/adm/$udom/$uname/aboutme" /> |
}
|
<a class="LC_menubuttons_link" href="javascript:document.supnewaboutme.submit()">$lt{'mypi'}</a> |
}
|
$help{'My Personal Information Page'} |
|
</form> |
function makenewext(targetname) {
|
SNAMFORM |
this.document.forms.extimport.useform.value=targetname;
|
|
this.document.forms.extimport.title.value='';
|
|
this.document.forms.extimport.url.value='';
|
my @specialdocs = ( |
this.document.forms.extimport.residx.value='';
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="document.supnewsyl.submit()" />' |
window.open('/adm/rat/extpickframe.html');
|
=>$supnewsylform}, |
}
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="document.supnewaboutme.submit()" />' |
|
=>$supnewaboutmeform}, |
function edittext(targetname,residx,title,url) {
|
); |
this.document.forms.extimport.useform.value=targetname;
|
my @supimportdoc = ( |
this.document.forms.extimport.residx.value=residx;
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="javascript:makenewext(\'supnewext\');" />' |
this.document.forms.extimport.url.value=url;
|
=>$supnewextform}, |
this.document.forms.extimport.title.value=title;
|
); |
window.open('/adm/rat/extpickframe.html');
|
$supupdocform = create_form_ul(create_list_elements(@supimportdoc)) . '<hr/>' . $supupdocform; |
}
|
my %suporderhash = ( |
|
'00' => ['Supnewfolder', $supnewfolderform], |
function makeexamupload() {
|
'ee' => ['Import Documents',$supupdocform], |
var title=prompt('$lt{"p_mxu"}');
|
'ff' => ['Special Documents',create_form_ul(create_list_elements(@specialdocs))] |
if (title) {
|
); |
this.document.forms.newexamupload.importdetail.value=
|
|
escape(title)+'=/res/lib/templates/examupload.problem';
|
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype); |
this.document.forms.newexamupload.submit();
|
if ($error) { |
}
|
$r->print('<p><span class="LC_error">'.$error.'</span></p>'); |
}
|
} |
|
my $tid='2'; |
function makesmppage() {
|
$r->print(&generate_edit_table($tid,\%suporderhash)); |
var title=prompt('$lt{"p_msp"}');
|
} else { |
if (title) {
|
my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype); |
this.document.forms.newsmppg.importdetail.value=
|
if ($error) { |
escape(title)+'=/adm/$udom/$uname/$now/smppg';
|
$r->print('<p><span class="LC_error">'.$error.'</span></p>'); |
this.document.forms.newsmppg.submit();
|
} |
}
|
} |
}
|
|
|
|
function makesmpproblem() {
|
$r->print('</div>'); |
var title=prompt('$lt{"p_msb"}');
|
$r->print('</div></div>'); |
if (title) {
|
|
this.document.forms.newsmpproblem.importdetail.value=
|
|
escape(title)+'=/res/lib/templates/simpleproblem.problem';
|
if ($allowed) { |
this.document.forms.newsmpproblem.submit();
|
$r->print(' |
}
|
<form method="post" name="extimport" action="/adm/coursedocs"> |
}
|
<input type="hidden" name="title" /> |
|
<input type="hidden" name="url" /> |
function makedropbox() {
|
<input type="hidden" name="useform" /> |
var title=prompt('$lt{"p_mdb"}');
|
<input type="hidden" name="residx" /> |
if (title) {
|
</form>'); |
this.document.forms.newdropbox.importdetail.value=
|
} |
escape(title)+'=/res/lib/templates/DropBox.problem';
|
} else { |
this.document.forms.newdropbox.submit();
|
unless ($upload_result eq 'phasetwo') { |
}
|
# -------------------------------------------------------- This is showdoc mode |
}
|
$r->print("<h1>".&mt('Uploaded Document').' - '. |
|
&Apache::lonnet::gettitle($r->uri).'</h1><p>'. |
function makebulboard() {
|
&mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>". |
var title=prompt('$lt{"p_mbb"}');
|
&entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>'); |
if (title) {
|
} |
this.document.forms.newbul.importdetail.value=
|
} |
escape(title)+'=/adm/$udom/$uname/$now/bulletinboard';
|
} |
this.document.forms.newbul.submit();
|
$r->print(&Apache::loncommon::end_page()); |
}
|
return OK; |
}
|
} |
|
|
function makeabout() {
|
sub generate_admin_options { |
var user=prompt("$lt{'p_mab'}");
|
my ($help_ref,$env_ref) = @_; |
if (user) {
|
my %lt=&Apache::lonlocal::texthash( |
var comp=new Array();
|
'vc' => 'Verify Content', |
comp=user.split(':');
|
'cv' => 'Check/Set Resource Versions', |
if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) {
|
'ls' => 'List Symbs', |
if ((comp[0]) && (comp[1])) {
|
'sl' => 'Show Log', |
this.document.forms.newaboutsomeone.importdetail.value=
|
'imse' => 'IMS Export', |
'$lt{"p_mab2"}'+escape(user)+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme';
|
'dcd' => 'Dump Course Documents to Construction Space: available on other servers' |
this.document.forms.newaboutsomeone.submit();
|
); |
} else {
|
my %help = %{$help_ref}; |
alert("$lt{'p_mab_alrt1'}");
|
my %env = %{$env_ref}; |
}
|
my $dumpbut=&dumpbutton(); |
} else {
|
my $exportbut=&exportbutton(); |
alert("$lt{'p_mab_alrt2'}");
|
my @list = ( |
}
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/verify.png" alt="'.$lt{vc}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "verify", "'.$lt{'vc'}.'")\' />' |
}
|
=> "<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"verify\", \"$lt{'vc'}\")'>$lt{'vc'}</a>$help{'Verify_Content'}"}, |
}
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/resversion.png" alt="'.$lt{cv}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "versions", "'.$lt{'cv'}.'")\' />' |
|
=>"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"versions\", \"$lt{'cv'}\")'>$lt{'cv'}</a>$help{'Check_Resource_Versions'}"}, |
function makeims() {
|
); |
var caller = document.forms.ims.folder.value;
|
if($dumpbut ne ''){ |
var newlocation = "/adm/imsimportdocs?folder="+caller+"&phase=one";
|
push @list, {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/dump.png" alt="'.$lt{dcd}.'" />'=>$dumpbut}; |
newWindow = window.open("","IMSimport","HEIGHT=700,WIDTH=750,scrollbars=yes");
|
} |
newWindow.location.href = newlocation;
|
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').'\');" />' |
}
|
=>$exportbut}, |
|
{'<img class="LC_noBorder LC_middle" src="/res/adm/pages/symbs.png" alt="'.$lt{ls}.'" onclick=\'javascript:injectData(document.courseverify, "dummy", "listsymbs", "'.$lt{'ls'}.'")\' />' |
|
=>"<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'}' />"}, |
function finishpick() {
|
{'<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'}.'")\' />' |
var title=this.document.forms.extimport.title.value;
|
=>"<a class='LC_menubuttons_link' href='javascript:injectData(document.courseverify, \"dummy\", \"docslog\", \"$lt{'sl'}\")'>$lt{'sl'}</a>"}, |
var url=this.document.forms.extimport.url.value;
|
); |
var form=this.document.forms.extimport.useform.value;
|
return '<form action="/adm/coursedocs" method="post" name="courseverify"><input type="hidden" id="dummy" />'.create_form_ul(create_list_elements(@list)).'</form>'; |
var residx=this.document.forms.extimport.residx.value;
|
|
eval('this.document.forms.'+form+'.importdetail.value="'+title+'='+url+'='+residx+'";this.document.forms.'+form+'.submit();');
|
} |
}
|
|
|
|
function changename(folderpath,index,oldtitle,container,pagesymb) {
|
sub generate_edit_table { |
var title=prompt('$lt{"p_chn"}',oldtitle);
|
my ($tid,$orderhash_ref) = @_; |
if (title) {
|
return unless(ref($orderhash_ref) eq 'HASH'); |
this.document.forms.renameform.markcopy.value=-1;
|
my %orderhash = %{$orderhash_ref}; |
this.document.forms.renameform.title.value=title;
|
my $form; |
this.document.forms.renameform.cmd.value='rename_'+index;
|
my $activetab; |
if (container == 'sequence') {
|
my $active; |
this.document.forms.renameform.folderpath.value=folderpath;
|
if($env{'form.active'} ne ''){ |
}
|
$activetab = $env{'form.active'}; |
if (container == 'page') {
|
} |
this.document.forms.renameform.pagepath.value=folderpath;
|
$form = '<div class="LC_Box" style="margin-right:0">'; |
this.document.forms.renameform.pagesymb.value=pagesymb;
|
$form .= '<ul id="navigation'.$tid.'" class="LC_TabContent">'; |
}
|
foreach my $name (sort(keys(%orderhash))){ |
this.document.forms.renameform.submit();
|
if($name ne '00'){ |
}
|
if($activetab eq '' || $activetab ne $name){ |
}
|
$active = ''; |
|
}elsif($activetab eq $name){ |
function removeres(folderpath,index,oldtitle,container,pagesymb,skip_confirm) {
|
$active = 'class="active"'; |
if (skip_confirm || confirm('$lt{"p_rmr1"}\\n\\n$lt{"p_rmr2a"} "'+oldtitle+'" $lt{"p_rmr2b"}')) {
|
} |
this.document.forms.renameform.markcopy.value=-1;
|
$form .= '<li '.$active |
this.document.forms.renameform.cmd.value='del_'+index;
|
.' onmouseover="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"' |
if (container == 'sequence') {
|
.' onclick="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"><a href="javascript:;"><b>'.&mt(${$orderhash{$name}}[0]).'</b></a></li>'; |
this.document.forms.renameform.folderpath.value=folderpath;
|
} else { |
}
|
$form .= '<li '.$active.'>'.${$orderhash{$name}}[1].'</li>'; |
if (container == 'page') {
|
|
this.document.forms.renameform.pagepath.value=folderpath;
|
} |
this.document.forms.renameform.pagesymb.value=pagesymb;
|
} |
}
|
$form .= '</ul>'; |
this.document.forms.renameform.submit();
|
$form .= '<div id="content'.$tid.'" style="padding: 0 0; margin: 0 0; clear: both;">'; |
}
|
foreach my $field (keys(%orderhash)){ |
}
|
if($field ne '00'){ |
|
if($activetab eq '' || $activetab ne $field){ |
function cutres(folderpath,index,oldtitle,container,pagesymb,folder,skip_confirm) {
|
$active = 'style="display: none;"'; |
if (skip_confirm || confirm('$lt{"p_ctr1a"}\\n$lt{"p_ctr1b"}\\n\\n$lt{"p_ctr2a"} "'+oldtitle+'" $lt{"p_ctr2b"}')) {
|
}elsif($activetab eq $field){ |
this.document.forms.renameform.cmd.value='cut_'+index;
|
$active = 'style="display:block;"'; |
this.document.forms.renameform.markcopy.value=index;
|
} |
this.document.forms.renameform.copyfolder.value=folder+'.'+container;
|
$form .= '<div id="'.$field.$tid.'"' |
if (container == 'sequence') {
|
.' class="LC_ContentBox" '.$active.'>'.${$orderhash{$field}}[1] |
this.document.forms.renameform.folderpath.value=folderpath;
|
.'</div>'; |
}
|
} |
if (container == 'page') {
|
} |
this.document.forms.renameform.pagepath.value=folderpath;
|
$form .= '</div></div>'; |
this.document.forms.renameform.pagesymb.value=pagesymb;
|
|
}
|
return $form; |
this.document.forms.renameform.submit();
|
} |
}
|
|
}
|
sub editing_js { |
|
my ($udom,$uname) = @_; |
function markcopy(folderpath,index,oldtitle,container,pagesymb,folder) {
|
my $now = time(); |
this.document.forms.renameform.markcopy.value=index;
|
my %lt = &Apache::lonlocal::texthash( |
this.document.forms.renameform.copyfolder.value=folder+'.'+container;
|
p_mnf => 'Name of New Folder', |
if (container == 'sequence') {
|
t_mnf => 'New Folder', |
this.document.forms.renameform.folderpath.value=folderpath;
|
p_mnp => 'Name of New Page', |
}
|
t_mnp => 'New Page', |
if (container == 'page') {
|
p_mxu => 'Title for the Uploaded Score', |
this.document.forms.renameform.pagepath.value=folderpath;
|
p_msp => 'Name of Simple Course Page', |
this.document.forms.renameform.pagesymb.value=pagesymb;
|
p_msb => 'Title for the Problem', |
}
|
p_mdb => 'Title for the Drop Box', |
this.document.forms.renameform.submit();
|
p_mbb => 'Title for the Discussion Board', |
}
|
p_mab => "Enter user:domain for User's Personal Information Page", |
|
p_mab2 => 'Personal Information Page of ', |
|
p_mab_alrt1 => 'Not a valid user:domain', |
ENDNEWSCRIPT
|
p_mab_alrt2 => 'Please enter both user and domain in the format user:domain', |
}
|
p_chn => 'New Title', |
1;
|
p_rmr1 => 'WARNING: Removing a resource makes associated grades and scores inaccessible!', |
__END__
|
p_rmr2a => 'Remove[_99]', |
|
p_rmr2b => '?[_99]', |
|
p_ctr1a => 'WARNING: Cutting a resource makes associated grades and scores inaccessible!', |
=head1 NAME
|
p_ctr1b => 'Grades remain inaccessible if resource is pasted into another folder.', |
|
p_ctr2a => 'Cut[_98]', |
Apache::londocs.pm
|
p_ctr2b => '?[_98]' |
|
); |
=head1 SYNOPSIS
|
|
|
my $crstype = &Apache::loncommon::course_type(); |
This is part of the LearningOnline Network with CAPA project
|
my $docs_folderpath = &HTML::Entities::encode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.folderpath'},'<>&"'); |
described at http://www.lon-capa.org.
|
my $docs_pagepath = &HTML::Entities::encode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.pagepath'},'<>&"'); |
|
my $main_container_page; |
=head1 SUBROUTINES
|
if ($docs_folderpath eq '') { |
|
if ($docs_pagepath ne '') { |
=over
|
$main_container_page = 1; |
|
} |
=item %help=()
|
} |
|
my $toplevelmain = 'default&Main%20'.$crstype.'%20Documents'; |
Available help topics
|
my $toplevelsupp = 'supplemental&Supplemental%20'.$crstype.'%20Documents'; |
|
|
=item mapread()
|
return <<ENDNEWSCRIPT; |
|
function makenewfolder(targetform,folderseq) { |
Mapread read maps into LONCAPA::map:: global arrays
|
var foldername=prompt('$lt{"p_mnf"}','$lt{"t_mnf"}'); |
@order and @resources, determines status
|
if (foldername) { |
sets @order - pointer to resources in right order
|
targetform.importdetail.value=escape(foldername)+"="+folderseq; |
sets @resources - array with the resources with correct idx
|
targetform.submit(); |
|
} |
=item authorhosts()
|
} |
|
|
Return hash with valid author names
|
function makenewpage(targetform,folderseq) { |
|
var pagename=prompt('$lt{"p_mnp"}','$lt{"t_mnp"}'); |
=item dumpbutton()
|
if (pagename) { |
|
targetform.importdetail.value=escape(pagename)+"="+folderseq; |
Generate "dump" button
|
targetform.submit(); |
|
} |
=item clean()
|
} |
|
|
=item dumpcourse()
|
function makenewext(targetname) { |
|
this.document.forms.extimport.useform.value=targetname; |
Actually dump course
|
this.document.forms.extimport.title.value=''; |
|
this.document.forms.extimport.url.value=''; |
|
this.document.forms.extimport.residx.value=''; |
=item exportbutton()
|
window.open('/adm/rat/extpickframe.html'); |
|
} |
Generate "export" button
|
|
|
function edittext(targetname,residx,title,url) { |
=item exportcourse()
|
this.document.forms.extimport.useform.value=targetname; |
|
this.document.forms.extimport.residx.value=residx; |
=item create_ims_store()
|
this.document.forms.extimport.url.value=url; |
|
this.document.forms.extimport.title.value=title; |
=item build_package()
|
window.open('/adm/rat/extpickframe.html'); |
|
} |
=item get_dependencies()
|
|
|
function makeexamupload() { |
=item process_content()
|
var title=prompt('$lt{"p_mxu"}'); |
|
if (title) { |
=item replicate_content()
|
this.document.forms.newexamupload.importdetail.value= |
|
escape(title)+'=/res/lib/templates/examupload.problem'; |
=item extract_media()
|
this.document.forms.newexamupload.submit(); |
|
} |
=item store_template()
|
} |
|
|
=item group_import()
|
function makesmppage() { |
|
var title=prompt('$lt{"p_msp"}'); |
Imports the given (name, url) resources into the course
|
if (title) { |
coursenum, coursedom, and folder must precede the list
|
this.document.forms.newsmppg.importdetail.value= |
|
escape(title)+'=/adm/$udom/$uname/$now/smppg'; |
=item breadcrumbs()
|
this.document.forms.newsmppg.submit(); |
|
} |
=item log_docs()
|
} |
|
|
=item docs_change_log()
|
function makesmpproblem() { |
|
var title=prompt('$lt{"p_msb"}'); |
=item update_paste_buffer()
|
if (title) { |
|
this.document.forms.newsmpproblem.importdetail.value= |
=item print_paste_buffer()
|
escape(title)+'=/res/lib/templates/simpleproblem.problem'; |
|
this.document.forms.newsmpproblem.submit(); |
=item do_paste_from_buffer()
|
} |
|
} |
=item update_parameter()
|
|
|
function makedropbox() { |
=item handle_edit_cmd()
|
var title=prompt('$lt{"p_mdb"}'); |
|
if (title) { |
=item editor()
|
this.document.forms.newdropbox.importdetail.value= |
|
escape(title)+'=/res/lib/templates/DropBox.problem'; |
=item process_file_upload()
|
this.document.forms.newdropbox.submit(); |
|
} |
=item process_secondary_uploads()
|
} |
|
|
=item is_supplemental_title()
|
function makebulboard() { |
|
var title=prompt('$lt{"p_mbb"}'); |
=item parse_supplemental_title()
|
if (title) { |
|
this.document.forms.newbul.importdetail.value= |
=item entryline()
|
escape(title)+'=/adm/$udom/$uname/$now/bulletinboard'; |
|
this.document.forms.newbul.submit(); |
=item tiehash()
|
} |
|
} |
=item untiehash()
|
|
|
function makeabout() { |
=item checkonthis()
|
var user=prompt("$lt{'p_mab'}"); |
|
if (user) { |
check on this
|
var comp=new Array(); |
|
comp=user.split(':'); |
=item verifycontent()
|
if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) { |
|
if ((comp[0]) && (comp[1])) { |
Verify Content
|
this.document.forms.newaboutsomeone.importdetail.value= |
|
'$lt{"p_mab2"}'+escape(user)+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme'; |
=item devalidateversioncache() & checkversions()
|
this.document.forms.newaboutsomeone.submit(); |
|
} else { |
Check Versions
|
alert("$lt{'p_mab_alrt1'}"); |
|
} |
=item mark_hash_old()
|
} else { |
|
alert("$lt{'p_mab_alrt2'}"); |
=item is_hash_old()
|
} |
|
} |
=item changewarning()
|
} |
|
|
=item init_breadcrumbs()
|
function makeims() { |
|
var caller = document.forms.ims.folder.value; |
Breadcrumbs for special functions
|
var newlocation = "/adm/imsimportdocs?folder="+caller+"&phase=one"; |
|
newWindow = window.open("","IMSimport","HEIGHT=700,WIDTH=750,scrollbars=yes"); |
=back
|
newWindow.location.href = newlocation; |
|
} |
=cut
|
|
|
|
|
function finishpick() { |
|
var title=this.document.forms.extimport.title.value; |
|
var url=this.document.forms.extimport.url.value; |
|
var form=this.document.forms.extimport.useform.value; |
|
var residx=this.document.forms.extimport.residx.value; |
|
eval('this.document.forms.'+form+'.importdetail.value="'+title+'='+url+'='+residx+'";this.document.forms.'+form+'.submit();'); |
|
} |
|
|
|
function changename(folderpath,index,oldtitle,container,pagesymb) { |
|
var title=prompt('$lt{"p_chn"}',oldtitle); |
|
if (title) { |
|
this.document.forms.renameform.markcopy.value=-1; |
|
this.document.forms.renameform.title.value=title; |
|
this.document.forms.renameform.cmd.value='rename_'+index; |
|
if (container == 'sequence') { |
|
this.document.forms.renameform.folderpath.value=folderpath; |
|
} |
|
if (container == 'page') { |
|
this.document.forms.renameform.pagepath.value=folderpath; |
|
this.document.forms.renameform.pagesymb.value=pagesymb; |
|
} |
|
this.document.forms.renameform.submit(); |
|
} |
|
} |
|
|
|
function removeres(folderpath,index,oldtitle,container,pagesymb,skip_confirm) { |
|
if (skip_confirm || confirm('$lt{"p_rmr1"}\\n\\n$lt{"p_rmr2a"} "'+oldtitle+'" $lt{"p_rmr2b"}')) { |
|
this.document.forms.renameform.markcopy.value=-1; |
|
this.document.forms.renameform.cmd.value='del_'+index; |
|
if (container == 'sequence') { |
|
this.document.forms.renameform.folderpath.value=folderpath; |
|
} |
|
if (container == 'page') { |
|
this.document.forms.renameform.pagepath.value=folderpath; |
|
this.document.forms.renameform.pagesymb.value=pagesymb; |
|
} |
|
this.document.forms.renameform.submit(); |
|
} |
|
} |
|
|
|
function cutres(folderpath,index,oldtitle,container,pagesymb,folder,skip_confirm) { |
|
if (skip_confirm || confirm('$lt{"p_ctr1a"}\\n$lt{"p_ctr1b"}\\n\\n$lt{"p_ctr2a"} "'+oldtitle+'" $lt{"p_ctr2b"}')) { |
|
this.document.forms.renameform.cmd.value='cut_'+index; |
|
this.document.forms.renameform.markcopy.value=index; |
|
this.document.forms.renameform.copyfolder.value=folder+'.'+container; |
|
if (container == 'sequence') { |
|
this.document.forms.renameform.folderpath.value=folderpath; |
|
} |
|
if (container == 'page') { |
|
this.document.forms.renameform.pagepath.value=folderpath; |
|
this.document.forms.renameform.pagesymb.value=pagesymb; |
|
} |
|
this.document.forms.renameform.submit(); |
|
} |
|
} |
|
|
|
function markcopy(folderpath,index,oldtitle,container,pagesymb,folder) { |
|
this.document.forms.renameform.markcopy.value=index; |
|
this.document.forms.renameform.copyfolder.value=folder+'.'+container; |
|
if (container == 'sequence') { |
|
this.document.forms.renameform.folderpath.value=folderpath; |
|
} |
|
if (container == 'page') { |
|
this.document.forms.renameform.pagepath.value=folderpath; |
|
this.document.forms.renameform.pagesymb.value=pagesymb; |
|
} |
|
this.document.forms.renameform.submit(); |
|
} |
|
|
|
function unselectInactive(nav) { |
|
currentNav = document.getElementById(nav); |
|
currentLis = currentNav.getElementsByTagName('LI'); |
|
for (i = 0; i < currentLis.length; i++) { |
|
if(currentLis[i].className == 'right active' || currentLis[i].className == 'right'){ |
|
currentLis[i].className = 'right'; |
|
}else{ |
|
currentLis[i].className = 'i'; |
|
} |
|
} |
|
} |
|
|
|
function hideAll(current, nav, data) { |
|
unselectInactive(nav); |
|
if(current.className == 'right'){ |
|
current.className = 'right active' |
|
}else{ |
|
current.className = 'active'; |
|
} |
|
currentData = document.getElementById(data); |
|
currentDivs = currentData.getElementsByTagName('DIV'); |
|
for (i = 0; i < currentDivs.length; i++) { |
|
if(currentDivs[i].className == 'LC_ContentBox'){ |
|
currentDivs[i].style.display = 'none'; |
|
} |
|
} |
|
} |
|
|
|
function openTabs(pageId) { |
|
tabnav = document.getElementById(pageId).getElementsByTagName('UL'); |
|
if(tabnav.length > 2 ){ |
|
currentNav = document.getElementById(tabnav[1].id); |
|
currentLis = currentNav.getElementsByTagName('LI'); |
|
for(i = 0; i< currentLis.length; i++){ |
|
if(currentLis[i].className == 'active') { |
|
funcString = currentLis[i].onclick.toString(); |
|
tab = funcString.split('"'); |
|
if(tab.length < 2) { |
|
tab = funcString.split("'"); |
|
} |
|
currentData = document.getElementById(tab[1]); |
|
currentData.style.display = 'block'; |
|
} |
|
} |
|
} |
|
} |
|
|
|
function showPage(current, pageId, nav, data) { |
|
hideAll(current, nav, data); |
|
openTabs(pageId); |
|
unselectInactive(nav); |
|
current.className = 'active'; |
|
currentData = document.getElementById(pageId); |
|
currentData.style.display = 'block'; |
|
if (nav == 'mainnav') { |
|
var storedpath = "$docs_folderpath"; |
|
if (storedpath == '') { |
|
storedpath = "$docs_pagepath"; |
|
} |
|
var storedpage = "$main_container_page"; |
|
var reg = new RegExp("^supplemental"); |
|
if (pageId == 'mainCourseDocuments') { |
|
if (storedpage == 1) { |
|
document.simpleedit.folderpath.value = ''; |
|
document.uploaddocument.folderpath.value = ''; |
|
} else { |
|
if (reg.test(storedpath)) { |
|
document.simpleedit.folderpath.value = '$toplevelmain'; |
|
document.uploaddocument.folderpath.value = '$toplevelmain'; |
|
document.newext.folderpath.value = '$toplevelmain'; |
|
} else { |
|
document.simpleedit.folderpath.value = storedpath; |
|
document.uploaddocument.folderpath.value = storedpath; |
|
document.newext.folderpath.value = storedpath; |
|
} |
|
} |
|
} else { |
|
if (reg.test(storedpath)) { |
|
document.simpleedit.folderpath.value = storedpath; |
|
document.supuploaddocument.folderpath.value = storedpath; |
|
document.supnewext.folderpath.value = storedpath; |
|
} else { |
|
document.simpleedit.folderpath.value = '$toplevelsupp'; |
|
document.supuploaddocument.folderpath.value = '$toplevelsupp'; |
|
document.supnewext.folderpath.value = '$toplevelsupp'; |
|
} |
|
} |
|
} |
|
return false; |
|
} |
|
|
|
function injectData(current, hiddenField, name, value) { |
|
currentElement = document.getElementById(hiddenField); |
|
currentElement.name = name; |
|
currentElement.value = value; |
|
current.submit(); |
|
} |
|
|
|
ENDNEWSCRIPT |
|
} |
|
1; |
|
__END__ |
|
|
|
|
|
=head1 NAME |
|
|
|
Apache::londocs.pm |
|
|
|
=head1 SYNOPSIS |
|
|
|
This is part of the LearningOnline Network with CAPA project |
|
described at http://www.lon-capa.org. |
|
|
|
=head1 SUBROUTINES |
|
|
|
=over |
|
|
|
=item %help=() |
|
|
|
Available help topics |
|
|
|
=item mapread() |
|
|
|
Mapread read maps into LONCAPA::map:: global arrays |
|
@order and @resources, determines status |
|
sets @order - pointer to resources in right order |
|
sets @resources - array with the resources with correct idx |
|
|
|
=item authorhosts() |
|
|
|
Return hash with valid author names |
|
|
|
=item dumpbutton() |
|
|
|
Generate "dump" button |
|
|
|
=item clean() |
|
|
|
=item dumpcourse() |
|
|
|
Actually dump course |
|
|
|
|
|
=item exportbutton() |
|
|
|
Generate "export" button |
|
|
|
=item exportcourse() |
|
|
|
=item create_ims_store() |
|
|
|
=item build_package() |
|
|
|
=item get_dependencies() |
|
|
|
=item process_content() |
|
|
|
=item replicate_content() |
|
|
|
=item extract_media() |
|
|
|
=item store_template() |
|
|
|
=item group_import() |
|
|
|
Imports the given (name, url) resources into the course |
|
coursenum, coursedom, and folder must precede the list |
|
|
|
=item breadcrumbs() |
|
|
|
=item log_docs() |
|
|
|
=item docs_change_log() |
|
|
|
=item update_paste_buffer() |
|
|
|
=item print_paste_buffer() |
|
|
|
=item do_paste_from_buffer() |
|
|
|
=item update_parameter() |
|
|
|
=item handle_edit_cmd() |
|
|
|
=item editor() |
|
|
|
=item process_file_upload() |
|
|
|
=item process_secondary_uploads() |
|
|
|
=item is_supplemental_title() |
|
|
|
=item parse_supplemental_title() |
|
|
|
=item entryline() |
|
|
|
=item tiehash() |
|
|
|
=item untiehash() |
|
|
|
=item checkonthis() |
|
|
|
check on this |
|
|
|
=item verifycontent() |
|
|
|
Verify Content |
|
|
|
=item devalidateversioncache() & checkversions() |
|
|
|
Check Versions |
|
|
|
=item mark_hash_old() |
|
|
|
=item is_hash_old() |
|
|
|
=item changewarning() |
|
|
|
=item init_breadcrumbs() |
|
|
|
Breadcrumbs for special functions |
|
|
|
=back |
|
|
|
=cut |