Annotation of loncom/interface/londocs.pm, revision 1.633
1.329 droeschl 1: # The LearningOnline Network
2: # Documents
3: #
1.633 ! raeburn 4: # $Id: londocs.pm,v 1.632 2017/05/19 18:24:03 raeburn Exp $
1.329 droeschl 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28:
29: package Apache::londocs;
30:
31: use strict;
32: use Apache::Constants qw(:common :http);
33: use Apache::imsexport;
34: use Apache::lonnet;
35: use Apache::loncommon;
1.383 tempelho 36: use Apache::lonhtmlcommon;
1.329 droeschl 37: use LONCAPA::map();
38: use Apache::lonratedt();
39: use Apache::lonxml;
40: use Apache::lonclonecourse;
41: use Apache::lonnavmaps;
1.472 raeburn 42: use Apache::lonnavdisplay();
1.510 raeburn 43: use Apache::lonextresedit();
1.567 raeburn 44: use Apache::lontemplate();
45: use Apache::lonsimplepage();
1.606 raeburn 46: use Apache::lonhomework();
47: use Apache::lonpublisher();
1.329 droeschl 48: use HTML::Entities;
1.488 raeburn 49: use HTML::TokeParser;
1.329 droeschl 50: use GDBM_File;
1.578 raeburn 51: use File::MMagic;
1.606 raeburn 52: use File::Copy;
1.329 droeschl 53: use Apache::lonlocal;
54: use Cwd;
55: use LONCAPA qw(:DEFAULT :match);
56:
57: my $iconpath;
58:
59: my %hash;
60:
61: my $hashtied;
62: my %alreadyseen=();
63:
64: my $hadchanges;
1.557 raeburn 65: my $suppchanges;
1.329 droeschl 66:
67:
68: my %help=();
69:
70:
71: sub mapread {
72: my ($coursenum,$coursedom,$map)=@_;
73: return
74: &LONCAPA::map::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
75: $map);
76: }
77:
78: sub storemap {
1.492 raeburn 79: my ($coursenum,$coursedom,$map,$contentchg)=@_;
80: my $report;
81: if (($contentchg) && ($map =~ /^default/)) {
82: $report = 1;
83: }
1.329 droeschl 84: my ($outtext,$errtext)=
85: &LONCAPA::map::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
1.492 raeburn 86: $map,1,$report);
1.329 droeschl 87: if ($errtext) { return ($errtext,2); }
1.364 bisitz 88:
1.557 raeburn 89: if ($map =~ /^default/) {
90: $hadchanges=1;
91: } else {
92: $suppchanges=1;
93: }
1.329 droeschl 94: return ($errtext,0);
95: }
96:
97:
98:
99: sub authorhosts {
100: my %outhash=();
101: my $home=0;
102: my $other=0;
103: foreach my $key (keys(%env)) {
104: if ($key=~/^user\.role\.(au|ca)\.(.+)$/) {
105: my $role=$1;
106: my $realm=$2;
107: my ($start,$end)=split(/\./,$env{$key});
108: if (($start) && ($start>time)) { next; }
109: if (($end) && (time>$end)) { next; }
110: my ($ca,$cd);
111: if ($1 eq 'au') {
112: $ca=$env{'user.name'};
113: $cd=$env{'user.domain'};
114: } else {
115: ($cd,$ca)=($realm=~/^\/($match_domain)\/($match_username)$/);
116: }
117: my $allowed=0;
118: my $myhome=&Apache::lonnet::homeserver($ca,$cd);
119: my @ids=&Apache::lonnet::current_machine_ids();
1.484 raeburn 120: foreach my $id (@ids) {
121: if ($id eq $myhome) {
122: $allowed=1;
123: last;
124: }
125: }
1.329 droeschl 126: if ($allowed) {
127: $home++;
1.484 raeburn 128: $outhash{'home_'.$ca.':'.$cd}=1;
1.329 droeschl 129: } else {
1.484 raeburn 130: $outhash{'otherhome_'.$ca.':'.$cd}=$myhome;
1.329 droeschl 131: $other++;
132: }
133: }
134: }
135: return ($home,$other,%outhash);
136: }
137:
138:
139: sub clean {
140: my ($title)=@_;
141: $title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs;
1.344 bisitz 142: return $title;
1.329 droeschl 143: }
144:
1.617 raeburn 145: sub default_folderpath {
146: my ($coursenum,$coursedom,$navmapref) = @_;
147: return unless ($coursenum && $coursedom && ref($navmapref));
148: # Check if entire course is hidden and/or encrypted
149: my ($hiddenmap,$encryptmap,$folderpath,$hiddentop);
150: my $toplevel = "uploaded/$coursedom/$coursenum/default.sequence";
151: unless (ref($$navmapref)) {
152: $$navmapref = Apache::lonnavmaps::navmap->new();
153: }
154: if (ref($$navmapref)) {
155: if (lc($$navmapref->get_mapparam(undef,$toplevel,"0.hiddenresource")) eq 'yes') {
156: my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
157: my @resources = $$navmapref->retrieveResources($toplevel,$filterFunc,1,1);
158: unless (@resources) {
159: $hiddenmap = 1;
160: unless ($env{'request.role.adv'}) {
161: $hiddentop = 1;
162: if ($env{'form.folder'}) {
163: undef($env{'form.folder'});
164: }
165: }
166: }
167: }
168: if (lc($$navmapref->get_mapparam(undef,$toplevel,"0.encrypturl")) eq 'yes') {
169: $encryptmap = 1;
170: }
171: }
172: unless ($hiddentop) {
173: $folderpath='default&'.&escape(&mt('Main Content')).
174: '::'.$hiddenmap.':'.$encryptmap.'::';
175: }
176: if (wantarray) {
177: return ($folderpath,$hiddentop);
178: } else {
179: return $folderpath;
180: }
181: }
1.329 droeschl 182:
183: sub dumpcourse {
184: my ($r) = @_;
1.408 raeburn 185: my $crstype = &Apache::loncommon::course_type();
1.567 raeburn 186: my ($starthash,$js);
187: unless (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {
188: $js = <<"ENDJS";
189: <script type="text/javascript">
190: // <![CDATA[
191:
192: function hide_searching() {
193: if (document.getElementById('searching')) {
194: document.getElementById('searching').style.display = 'none';
195: }
196: return;
197: }
198:
199: // ]]>
200: </script>
201: ENDJS
202: $starthash = {
203: add_entries => {'onload' => "hide_searching();"},
204: };
205: }
1.568 raeburn 206: $r->print(&Apache::loncommon::start_page('Copy '.$crstype.' Content to Authoring Space',$js,$starthash)."\n".
207: &Apache::lonhtmlcommon::breadcrumbs('Copy '.$crstype.' Content to Authoring Space')."\n");
1.484 raeburn 208: $r->print(&startContentScreen('tools'));
1.329 droeschl 209: my ($home,$other,%outhash)=&authorhosts();
1.484 raeburn 210: unless ($home) {
211: $r->print(&endContentScreen());
212: return '';
213: }
1.329 droeschl 214: my $origcrsid=$env{'request.course.id'};
215: my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid);
216: if (($env{'form.authorspace'}) && ($env{'form.authorfolder'}=~/\w/)) {
217: # Do the dumping
1.484 raeburn 218: unless ($outhash{'home_'.$env{'form.authorspace'}}) {
219: $r->print(&endContentScreen());
220: return '';
221: }
1.531 raeburn 222: my ($ca,$cd)=split(/\:/,$env{'form.authorspace'});
1.329 droeschl 223: $r->print('<h3>'.&mt('Copying Files').'</h3>');
224: my $title=$env{'form.authorfolder'};
225: $title=&clean($title);
1.567 raeburn 226: my ($navmap,$errormsg) =
227: &Apache::loncourserespicker::get_navmap_object($crstype,'dumpdocs');
228: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
229: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
230: my (%maps,%resources,%titles);
231: if (!ref($navmap)) {
232: $r->print($errormsg.
233: &endContentScreen());
234: return '';
235: } else {
236: &Apache::loncourserespicker::enumerate_course_contents($navmap,\%maps,\%resources,\%titles,
237: 'dumpdocs',$cdom,$cnum);
1.329 droeschl 238: }
1.567 raeburn 239: my @todump = &Apache::loncommon::get_env_multiple('form.archive');
240: my (%tocopy,%replacehash,%lookup,%deps,%display,%result,%depresult,%simpleproblems,%simplepages,
241: %newcontent,%has_simpleprobs);
242: foreach my $item (sort {$a <=> $b} (@todump)) {
243: my $name = $env{'form.namefor_'.$item};
244: if ($resources{$item}) {
245: my ($map,$id,$res) = &Apache::lonnet::decode_symb($resources{$item});
246: if ($res =~ m{^uploaded/$cdom/$cnum/\E((?:docs|supplemental)/.+)$}) {
247: $tocopy{$1} = $name;
248: $display{$item} = $1;
249: $lookup{$1} = $item;
250: } elsif ($res eq 'lib/templates/simpleproblem.problem') {
251: $simpleproblems{$item} = {
252: symb => $resources{$item},
253: name => $name,
254: };
255: $display{$item} = 'simpleproblem_'.$name;
256: if ($map =~ m{^\Quploaded/$cdom/$cnum/\E(.+)$}) {
257: $has_simpleprobs{$1}{$id} = $item;
258: }
259: } elsif ($res =~ m{^adm/$match_domain/$match_username/(\d+)/smppg}) {
260: my $marker = $1;
261: my $db_name = &Apache::lonsimplepage::get_db_name($res,$marker,$cdom,$cnum);
262: $simplepages{$item} = {
263: res => $res,
264: title => $titles{$item},
265: db => $db_name,
266: marker => $marker,
267: symb => $resources{$item},
268: name => $name,
269: };
270: $display{$item} = '/'.$res;
271: }
272: } elsif ($maps{$item}) {
273: if ($maps{$item} =~ m{^\Quploaded/$cdom/$cnum/\E((?:default|supplemental)_\d+\.(?:sequence|page))$}) {
274: $tocopy{$1} = $name;
275: $display{$item} = $1;
276: $lookup{$1} = $item;
277: }
278: } else {
279: next;
280: }
281: }
1.329 droeschl 282: my $crs='/uploaded/'.$env{'request.course.id'}.'/';
283: $crs=~s/\_/\//g;
1.567 raeburn 284: my $mm = new File::MMagic;
285: my $prefix = "/uploaded/$cdom/$cnum/";
286: %replacehash = %tocopy;
287: foreach my $item (sort(keys(%simpleproblems))) {
288: my $content = &Apache::imsexport::simpleproblem($simpleproblems{$item}{'symb'});
289: $newcontent{$display{$item}} = $content;
290: }
291: my $gateway = Apache::lonhtmlgateway->new('web');
292: foreach my $item (sort(keys(%simplepages))) {
293: if (ref($simplepages{$item}) eq 'HASH') {
294: my $pagetitle = $simplepages{$item}{'title'};
295: my %fields = &Apache::lonnet::dump($simplepages{$item}{'db'},$cdom,$cnum);
296: my %contents;
297: foreach my $field (keys(%fields)) {
298: if ($field =~ /^(?:aaa|bbb|ccc)_(\w+)$/) {
299: my $name = $1;
300: my $msg = $fields{$field};
301: if ($name eq 'webreferences') {
302: if ($msg =~ m{^https?://}) {
303: $contents{$name} = '<a href="'.$msg.'"><tt>'.$msg.'</tt></a>';
304: }
305: } else {
306: $msg = &Encode::decode('utf8',$msg);
307: $msg = $gateway->process_outgoing_html($msg,1);
308: $contents{$name} = $msg;
309: }
310: } elsif ($field eq 'uploaded.photourl') {
311: my $marker = $simplepages{$item}{marker};
312: if ($fields{$field} =~ m{^\Q$prefix\E(simplepage/$marker/.+)$}) {
313: my $filepath = $1;
314: my ($relpath,$fname) = ($filepath =~ m{^(.+/)([^/]+)$});
315: if ($fname ne '') {
316: $fname=~s/\.(\w+)$//;
317: my $ext=$1;
318: $fname = &clean($fname);
319: $fname.='.'.$ext;
320: $contents{image} = '<img src="'.$relpath.$fname.'" alt="Image" />';
321: $replacehash{$filepath} = $relpath.$fname;
322: $deps{$item}{$filepath} = 1;
323: }
324: }
325: }
326: }
327: $replacehash{'/'.$simplepages{$item}{'res'}} = $simplepages{$item}{'name'};
328: $lookup{'/'.$simplepages{$item}{'res'}} = $item;
329: my $content = '
330: <html>
331: <head>
332: <title>'.$pagetitle.'</title>
333: </head>
334: <body bgcolor="#ffffff">';
335: if ($contents{title}) {
336: $content .= "\n".'<h2>'.$contents{title}.'</h2>';
337: }
338: if ($contents{image}) {
339: $content .= "\n".$contents{image};
340: }
341: if ($contents{content}) {
342: $content .= '
343: <div class="LC_Box">
1.577 bisitz 344: <h4 class="LC_hcell">'.&mt('Content').'</h4>'.
1.567 raeburn 345: $contents{content}.'
346: </div>';
347: }
348: if ($contents{webreferences}) {
349: $content .= '
350: <div class="LC_Box">
1.577 bisitz 351: <h4 class="LC_hcell">'.&mt('Web References').'</h4>'.
1.567 raeburn 352: $contents{webreferences}.'
353: </div>';
354: }
355: $content .= '
356: </body>
357: </html>
358: ';
359: $newcontent{'/'.$simplepages{$item}{res}} = $content;
360: }
361: }
362: foreach my $item (keys(%tocopy)) {
363: unless ($item=~/\.(sequence|page)$/) {
364: my $currurlpath = $prefix.$item;
365: my $currdirpath = &Apache::lonnet::filelocation('',$currurlpath);
366: &recurse_html($mm,$prefix,$currdirpath,$currurlpath,$item,$lookup{$item},\%replacehash,\%deps);
367: }
368: }
369: foreach my $num (sort {$a <=> $b} (@todump)) {
370: my $src = $display{$num};
371: next if ($src eq '');
372: my @needcopy = ();
373: if ($replacehash{$src}) {
374: push(@needcopy,$src);
375: if (ref($deps{$num}) eq 'HASH') {
376: foreach my $dep (sort(keys(%{$deps{$num}}))) {
377: if ($replacehash{$dep}) {
378: push(@needcopy,$dep);
379: }
380: }
381: }
382: } elsif ($src =~ /^simpleproblem_/) {
383: push(@needcopy,$src);
384: }
385: next if (@needcopy == 0);
386: my ($result,$depresult);
387: for (my $i=0; $i<@needcopy; $i++) {
388: my $item = $needcopy[$i];
389: my $newfilename;
390: if ($simpleproblems{$num}) {
391: $newfilename=$title.'/'.$simpleproblems{$num}{'name'};
392: } else {
393: $newfilename=$title.'/'.$replacehash{$item};
394: }
395: $newfilename=~s/\.(\w+)$//;
396: my $ext=$1;
397: $newfilename=&clean($newfilename);
398: $newfilename.='.'.$ext;
399: my ($newrelpath) = ($newfilename =~ m{^\Q$title/\E(.+)$});
400: if ($newrelpath ne $replacehash{$item}) {
401: $replacehash{$item} = $newrelpath;
402: }
403: my @dirs=split(/\//,$newfilename);
404: my $path=$r->dir_config('lonDocRoot')."/priv/$cd/$ca";
405: my $makepath=$path;
406: my $fail;
407: my $origin;
408: for (my $i=0;$i<$#dirs;$i++) {
409: $makepath.='/'.$dirs[$i];
410: unless (-e $makepath) {
411: unless(mkdir($makepath,0755)) {
412: $fail = &mt('Directory creation failed.');
413: }
414: }
415: }
416: if ($i == 0) {
417: $result = '<br /><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt>: ';
418: } else {
419: $depresult .= '<li><tt>'.$item.'</tt> => <tt>'.$newfilename.'</tt> '.
420: '<span class="LC_fontsize_small" style="font-weight: bold;">'.
421: &mt('(dependency)').'</span>: ';
422: }
423: if (-e $path.'/'.$newfilename) {
424: $fail = &mt('Destination already exists -- not overwriting.');
425: } else {
426: if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) {
427: if (($item =~ m{^/adm/$match_domain/$match_username/\d+/smppg}) ||
428: ($item =~ /^simpleproblem_/)) {
429: print $fh $newcontent{$item};
430: } else {
431: my $fileloc = &Apache::lonnet::filelocation('',$prefix.$item);
432: if (-e $fileloc) {
433: if ($item=~/\.(sequence|page|html|htm|xml|xhtml)$/) {
434: if ((($1 eq 'sequence') || ($1 eq 'page')) &&
435: (ref($has_simpleprobs{$item}) eq 'HASH')) {
436: my %changes = %{$has_simpleprobs{$item}};
437: my $content = &Apache::lonclonecourse::rewritefile(
438: &Apache::lonclonecourse::readfile($env{'request.course.id'},$item),
439: (%replacehash,$crs => '')
440: );
441: my $updatedcontent = '';
442: my $parser = HTML::TokeParser->new(\$content);
443: $parser->attr_encoded(1);
444: while (my $token = $parser->get_token) {
445: if ($token->[0] eq 'S') {
446: if (($token->[1] eq 'resource') &&
447: ($token->[2]->{'src'} eq '/res/lib/templates/simpleproblem.problem') &&
448: ($changes{$token->[2]->{'id'}})) {
449: my $id = $token->[2]->{'id'};
450: $updatedcontent .= '<'.$token->[1];
451: foreach my $attrib (@{$token->[3]}) {
452: next unless ($attrib =~ /^(src|type|title|id)$/);
453: if ($attrib eq 'src') {
454: my ($file) = ($display{$changes{$id}} =~ /^\Qsimpleproblem_\E(.+)$/);
455: if ($file) {
456: $updatedcontent .= ' '.$attrib.'="'.$file.'"';
457: } else {
458: $updatedcontent .= ' '.$attrib.'="'.$token->[2]->{$attrib}.'"';
459: }
460: } else {
461: $updatedcontent .= ' '.$attrib.'="'.$token->[2]->{$attrib}.'"';
462: }
463: }
464: $updatedcontent .= ' />'."\n";
465: } else {
466: $updatedcontent .= $token->[4]."\n";
467: }
468: } else {
469: $updatedcontent .= $token->[2];
470: }
471: }
472: print $fh $updatedcontent;
473: } else {
474: print $fh &Apache::lonclonecourse::rewritefile(
475: &Apache::lonclonecourse::readfile($env{'request.course.id'},$item),
476: (%replacehash,$crs => '')
477: );
478: }
479: } else {
480: print $fh
481: &Apache::lonclonecourse::readfile($env{'request.course.id'},$item);
482: }
483: } else {
484: $fail = &mt('Source does not exist.');
485: }
486: }
487: $fh->close();
488: } else {
489: $fail = &mt('Could not write to destination.');
490: }
491: }
492: my $text;
493: if ($fail) {
494: $text = '<span class="LC_error">'.&mt('fail').(' 'x3).$fail.'</span>';
495: } else {
496: $text = '<span class="LC_success">'.&mt('ok').'</span>';
497: }
498: if ($i == 0) {
499: $result .= $text;
500: } else {
501: $depresult .= $text.'</li>';
502: }
503: }
504: $r->print($result);
505: if ($depresult) {
506: $r->print('<ul>'.$depresult.'</ul>');
507: }
508: }
509: } else {
510: my ($navmap,$errormsg) =
511: &Apache::loncourserespicker::get_navmap_object($crstype,'dumpdocs');
512: if (!ref($navmap)) {
513: $r->print($errormsg);
514: } else {
515: $r->print('<div id="searching">'.&mt('Searching ...').'</div>');
516: $r->rflush();
517: my ($preamble,$formname);
518: $formname = 'dumpdoc';
519: unless ($home==1) {
520: $preamble = '<div class="LC_left_float">'.
521: '<fieldset><legend>'.
522: &mt('Select the Authoring Space').
523: '</legend><select name="authorspace">';
1.329 droeschl 524: }
1.567 raeburn 525: my @orderspaces = ();
526: foreach my $key (sort(keys(%outhash))) {
527: if ($key=~/^home_(.+)$/) {
528: if ($1 eq $env{'user.name'}.':'.$env{'user.domain'}) {
529: unshift(@orderspaces,$1);
530: } else {
531: push(@orderspaces,$1);
532: }
533: }
534: }
1.569 raeburn 535: if ($home>1) {
536: $preamble .= '<option value="" selected="selected">'.&mt('Select').'</option>';
537: }
1.567 raeburn 538: foreach my $user (@orderspaces) {
1.329 droeschl 539: if ($home==1) {
1.567 raeburn 540: $preamble .= '<input type="hidden" name="authorspace" value="'.$user.'" />';
1.329 droeschl 541: } else {
1.567 raeburn 542: $preamble .= '<option value="'.$user.'">'.$user.' - '.
543: &Apache::loncommon::plainname(split(/\:/,$user)).'</option>';
544: }
1.329 droeschl 545: }
1.567 raeburn 546: unless ($home==1) {
547: $preamble .= '</select></fieldset></div>'."\n";
1.329 droeschl 548: }
1.567 raeburn 549: my $title=$origcrsdata{'description'};
550: $title=~s/[\/\s]+/\_/gs;
1.329 droeschl 551: $title=&clean($title);
1.567 raeburn 552: $preamble .= '<div class="LC_left_float">'.
553: '<fieldset><legend>'.&mt('Folder in Authoring Space').'</legend>'.
554: '<input type="text" size="50" name="authorfolder" value="'.
555: $title.'" />'.
556: '</fieldset></div><div style="padding:0;clear:both;margin:0;border:0"></div>'."\n";
557: my %uploadedfiles;
558: &tiehash();
559: foreach my $file (&Apache::lonclonecourse::crsdirlist($origcrsid,'userfiles')) {
560: my ($ext)=($file=~/\.(\w+)$/);
561: # FIXME Check supplemental here
562: my $title=$hash{'title_'.$hash{
563: 'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$file}};
564: if (!$title) {
565: $title=$file;
566: } else {
567: $title=~s|/|_|g;
568: }
569: $title=~s/\.(\w+)$//;
570: $title=&clean($title);
571: $title.='.'.$ext;
572: # $r->print("\n<td><input type='text' size='60' name='namefor_".$file."' value='".$title."' /></td>"
573: $uploadedfiles{$file} = $title;
574: }
575: &untiehash();
576: $r->print(&Apache::loncourserespicker::create_picker($navmap,'dumpdocs',$formname,$crstype,undef,
577: undef,undef,$preamble,$home,\%uploadedfiles));
578: }
1.329 droeschl 579: }
1.484 raeburn 580: $r->print(&endContentScreen());
1.329 droeschl 581: }
582:
1.567 raeburn 583: sub recurse_html {
584: my ($mm,$prefix,$currdirpath,$currurlpath,$container,$item,$replacehash,$deps) = @_;
585: return unless ((ref($replacehash) eq 'HASH') && (ref($deps) eq 'HASH'));
586: my (%allfiles,%codebase);
587: if (&Apache::lonnet::extract_embedded_items($currdirpath,\%allfiles,\%codebase) eq 'ok') {
588: if (keys(%allfiles)) {
589: foreach my $dependency (keys(%allfiles)) {
590: next if (($dependency =~ m{^/(res|adm)/}) || ($dependency =~ m{^https?://}));
591: my ($depurl,$relfile,$newcontainer);
592: if ($dependency =~ m{^/}) {
593: if ($dependency =~ m{^\Q$currurlpath/\E(.+)$}) {
594: $relfile = $1;
595: if ($dependency =~ m{^\Q$prefix\E(.+)$}) {
596: $newcontainer = $1;
597: next if ($replacehash->{$newcontainer});
598: }
599: $depurl = $dependency;
600: } else {
601: next;
602: }
603: } else {
604: $relfile = $dependency;
605: $depurl = $currurlpath;
1.630 raeburn 606: $depurl =~ s{[^/]+$}{};
1.567 raeburn 607: $depurl .= $dependency;
1.630 raeburn 608: ($newcontainer) = ($depurl =~ m{^\Q$prefix\E(.+)$});
1.567 raeburn 609: }
610: next if ($relfile eq '');
611: my $newname = $replacehash->{$container};
612: $newname =~ s{[^/]+$}{};
613: $replacehash->{$newcontainer} = $newname.$relfile;
614: $deps->{$item}{$newcontainer} = 1;
615: my ($newurlpath) = ($depurl =~ m{^(.*)/[^/]+$});
616: my $depfile = &Apache::lonnet::filelocation('',$depurl);
617: my $type = $mm->checktype_filename($depfile);
618: if ($type eq 'text/html') {
619: &recurse_html($mm,$prefix,$depfile,$newurlpath,$newcontainer,$item,$replacehash,$deps);
620: }
621: }
622: }
623: }
624: return;
625: }
626:
1.329 droeschl 627: sub group_import {
1.598 raeburn 628: my ($coursenum, $coursedom, $folder, $container, $caller, $ltitoolsref, @files) = @_;
1.529 raeburn 629: my ($donechk,$allmaps,%hierarchy,%titles,%addedmaps,%removefrommap,
630: %removeparam,$importuploaded,$fixuperrors);
631: $allmaps = {};
1.329 droeschl 632: while (@files) {
633: my ($name, $url, $residx) = @{ shift(@files) };
1.344 bisitz 634: if (($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$})
1.329 droeschl 635: && ($caller eq 'londocs')
636: && (!&Apache::lonnet::stat_file($url))) {
1.364 bisitz 637:
1.329 droeschl 638: my $errtext = '';
639: my $fatal = 0;
640: my $newmapstr = '<map>'."\n".
641: '<resource id="1" src="" type="start"></resource>'."\n".
642: '<link from="1" to="2" index="1"></link>'."\n".
643: '<resource id="2" src="" type="finish"></resource>'."\n".
644: '</map>';
645: $env{'form.output'}=$newmapstr;
646: my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom,
647: 'output',$1.$2);
1.534 raeburn 648: if ($result !~ m{^/uploaded/}) {
1.329 droeschl 649: $errtext.='Map not saved: A network error occurred when trying to save the new map. ';
650: $fatal = 2;
651: }
652: if ($fatal) {
653: return ($errtext,$fatal);
654: }
655: }
656: if ($url) {
1.626 raeburn 657: if ($url =~ m{^(/adm/$coursedom/$coursenum/(\d+)/ext\.tool)\:?(.*)$}) {
1.598 raeburn 658: $url = $1;
659: my $marker = $2;
660: my $info = $3;
1.604 raeburn 661: my ($toolid,%toolhash,%toolsettings);
1.624 raeburn 662: my @extras = ('linktext','explanation','crslabel','crstitle');
1.598 raeburn 663: my @toolinfo = split(/:/,$info);
664: if ($residx) {
1.604 raeburn 665: %toolsettings=&Apache::lonnet::dump('exttool_'.$marker,$coursedom,$coursenum);
1.598 raeburn 666: $toolid = $toolsettings{'id'};
667: } else {
1.604 raeburn 668: $toolid = shift(@toolinfo);
1.598 raeburn 669: }
670: $toolid =~ s/\D//g;
1.604 raeburn 671: ($toolhash{'target'},$toolhash{'width'},$toolhash{'height'},
1.624 raeburn 672: $toolhash{'linktext'},$toolhash{'explanation'},
1.604 raeburn 673: $toolhash{'crslabel'},$toolhash{'crstitle'}) = @toolinfo;
1.624 raeburn 674: foreach my $item (@extras) {
675: $toolhash{$item} = &unescape($toolhash{$item});
676: }
1.598 raeburn 677: if (ref($ltitoolsref) eq 'HASH') {
1.604 raeburn 678: my @deleted;
1.598 raeburn 679: if (ref($ltitoolsref->{$toolid}) eq 'HASH') {
680: $toolhash{'id'} = $toolid;
1.628 raeburn 681: if (($toolhash{'target'} eq 'iframe') || ($toolhash{'target'} eq 'tab') ||
682: ($toolhash{'target'} eq 'window')) {
1.604 raeburn 683: if ($toolhash{'target'} eq 'window') {
684: foreach my $item ('width','height') {
685: $toolhash{$item} =~ s/^\s+//;
686: $toolhash{$item} =~ s/\s+$//;
1.624 raeburn 687: if ($toolhash{$item} =~ /\D/) {
688: delete($toolhash{$item});
689: if ($residx) {
690: if ($toolsettings{$item}) {
691: push(@deleted,$item);
692: }
693: }
694: }
1.604 raeburn 695: }
696: }
697: } elsif ($residx) {
698: $toolhash{'target'} = $toolsettings{'target'};
699: if ($toolhash{'target'} eq 'window') {
1.630 raeburn 700: foreach my $item ('width','height') {
1.624 raeburn 701: $toolhash{$item} = $toolsettings{$item};
702: }
1.604 raeburn 703: }
704: } elsif (ref($ltitoolsref->{$toolid}->{'display'}) eq 'HASH') {
705: $toolhash{'target'} = $ltitoolsref->{$toolid}->{'display'}->{'target'};
706: if ($toolhash{'target'} eq 'window') {
707: $toolhash{'width'} = $ltitoolsref->{$toolid}->{'display'}->{'width'};
708: $toolhash{'height'} = $ltitoolsref->{$toolid}->{'display'}->{'height'};
709: }
710: }
1.598 raeburn 711: if ($toolhash{'target'} eq 'iframe') {
1.624 raeburn 712: foreach my $item ('width','height','linktext','explanation') {
713: delete($toolhash{$item});
714: if ($residx) {
715: if ($toolsettings{$item}) {
716: push(@deleted,$item);
717: }
1.604 raeburn 718: }
719: }
1.628 raeburn 720: } elsif ($toolhash{'target'} eq 'tab') {
721: foreach my $item ('width','height') {
722: delete($toolhash{$item});
723: if ($residx) {
724: if ($toolsettings{$item}) {
725: push(@deleted,$item);
726: }
727: }
728: }
1.604 raeburn 729: }
730: if (ref($ltitoolsref->{$toolid}->{'crsconf'}) eq 'HASH') {
1.624 raeburn 731: foreach my $item ('label','title','linktext','explanation') {
732: my $crsitem;
733: if (($item eq 'label') || ($item eq 'title')) {
734: $crsitem = 'crs'.$item;
735: } else {
736: $crsitem = $item;
737: }
1.604 raeburn 738: if ($ltitoolsref->{$toolid}->{'crsconf'}->{$item}) {
1.624 raeburn 739: $toolhash{$crsitem} =~ s/^\s+//;
740: $toolhash{$crsitem} =~ s/\s+$//;
741: if ($toolhash{$crsitem} eq '') {
742: delete($toolhash{$crsitem});
1.604 raeburn 743: }
744: } else {
1.624 raeburn 745: delete($toolhash{$crsitem});
1.604 raeburn 746: }
1.624 raeburn 747: if (($residx) && (exists($toolsettings{$crsitem}))) {
748: unless (exists($toolhash{$crsitem})) {
749: push(@deleted,$crsitem);
1.604 raeburn 750: }
751: }
1.598 raeburn 752: }
753: }
754: my $putres = &Apache::lonnet::put('exttool_'.$marker,\%toolhash,$coursedom,$coursenum);
1.604 raeburn 755: if ($putres eq 'ok') {
756: if (@deleted) {
757: &Apache::lonnet::del('exttool_'.$marker,\@deleted,$coursedom,$coursenum);
758: }
759: }
1.598 raeburn 760: }
761: }
762: }
1.529 raeburn 763: if (($caller eq 'londocs') &&
764: ($folder =~ /^default/)) {
1.534 raeburn 765: if (($url =~ /\.(page|sequence)$/) && (!$donechk)) {
1.529 raeburn 766: my $chome = &Apache::lonnet::homeserver($coursenum,$coursedom);
767: my $cid = $coursedom.'_'.$coursenum;
768: $allmaps =
769: &Apache::loncommon::allmaps_incourse($coursedom,$coursenum,
770: $chome,$cid);
771: $donechk = 1;
772: }
773: if ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E/(default_\d+\.)(page|sequence)$}) {
1.627 raeburn 774: &contained_map_check($url,$folder,$coursenum,$coursedom,\%removefrommap,
775: \%removeparam,\%addedmaps,\%hierarchy,\%titles,$allmaps);
1.529 raeburn 776: $importuploaded = 1;
777: } elsif ($url =~ m{^/res/.+\.(page|sequence)$}) {
778: next if ($allmaps->{$url});
779: }
780: }
1.344 bisitz 781: if (!$residx
1.329 droeschl 782: || defined($LONCAPA::map::zombies[$residx])) {
783: $residx = &LONCAPA::map::getresidx($url,$residx);
784: push(@LONCAPA::map::order, $residx);
785: }
786: my $ext = 'false';
787: if ($url=~m{^http://} || $url=~m{^https://}) { $ext = 'true'; }
788: $name = &LONCAPA::map::qtunescape($name);
1.534 raeburn 789: if ($name eq '') {
1.538 raeburn 790: $name = &LONCAPA::map::qtunescape(&mt('Web Page'));
1.534 raeburn 791: }
792: if ($url =~ m{^/uploaded/$coursedom/$coursenum/((?:docs|supplemental)/(?:default|\d+))/new\.html$}) {
793: my $filepath = $1;
794: my $fname = $name;
795: if ($fname =~ /^\W+$/) {
796: $fname = 'web';
797: } else {
798: $fname =~ s/\W/_/g;
799: }
1.599 damieng 800: if (length($fname) > 15) {
1.534 raeburn 801: $fname = substr($fname,0,14);
802: }
803: my $initialtext = &mt('Replace with your own content.');
804: my $newhtml = <<END;
1.545 raeburn 805: <html>
1.534 raeburn 806: <head>
807: <title>$name</title>
808: </head>
809: <body bgcolor="#ffffff">
810: $initialtext
811: </body>
812: </html>
813: END
814: $env{'form.output'}=$newhtml;
1.630 raeburn 815: my $result =
1.534 raeburn 816: &Apache::lonnet::finishuserfileupload($coursenum,$coursedom,
817: 'output',
818: "$filepath/$residx/$fname.html");
819: if ($result =~ m{^/uploaded/}) {
820: $url = $result;
821: if ($filepath =~ /^supplemental/) {
822: $name = time.'___&&&___'.$env{'user.name'}.'___&&&___'.
823: $env{'user.domain'}.'___&&&___'.$name;
824: }
825: } else {
826: return (&mt('Failed to save new web page.'),1);
827: }
828: }
1.538 raeburn 829: $url = &LONCAPA::map::qtunescape($url);
1.344 bisitz 830: $LONCAPA::map::resources[$residx] =
1.329 droeschl 831: join(':', ($name, $url, $ext, 'normal', 'res'));
832: }
833: }
1.529 raeburn 834: if ($importuploaded) {
835: my %import_errors;
836: my %updated = (
837: removefrommap => \%removefrommap,
838: removeparam => \%removeparam,
839: );
1.533 raeburn 840: my ($result,$msgsarray,$lockerror) =
841: &apply_fixups($folder,1,$coursedom,$coursenum,\%import_errors,\%updated);
1.529 raeburn 842: if (keys(%import_errors) > 0) {
1.530 raeburn 843: $fixuperrors =
1.529 raeburn 844: '<p span class="LC_warning">'."\n".
845: &mt('The following files are either dependencies of a web page or references within a folder and/or composite page for which errors occurred during import:')."\n".
846: '<ul>'."\n";
847: foreach my $key (sort(keys(%import_errors))) {
848: $fixuperrors .= '<li>'.$key.'</li>'."\n";
849: }
850: $fixuperrors .= '</ul></p>'."\n";
851: }
1.533 raeburn 852: if (ref($msgsarray) eq 'ARRAY') {
853: if (@{$msgsarray} > 0) {
854: $fixuperrors .= '<p class="LC_info">'.
855: join('<br />',@{$msgsarray}).
856: '</p>';
857: }
858: }
859: if ($lockerror) {
860: $fixuperrors .= '<p class="LC_error">'.
861: $lockerror.
862: '</p>';
863: }
1.529 raeburn 864: }
865: my ($errtext,$fatal) =
866: &storemap($coursenum, $coursedom, $folder.'.'.$container,1);
1.557 raeburn 867: unless ($fatal) {
868: if ($folder =~ /^supplemental/) {
869: &Apache::lonnet::get_numsuppfiles($coursenum,$coursedom,1);
1.561 raeburn 870: my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
871: $folder.'.'.$container);
1.557 raeburn 872: }
873: }
1.529 raeburn 874: return ($errtext,$fatal,$fixuperrors);
1.329 droeschl 875: }
876:
877: sub log_docs {
1.494 raeburn 878: return &Apache::lonnet::write_log('course','docslog',@_);
1.329 droeschl 879: }
880:
881: {
882: my @oldresources=();
883: my @oldorder=();
884: my $parmidx;
885: my %parmaction=();
886: my %parmvalue=();
887: my $changedflag;
888:
889: sub snapshotbefore {
890: @oldresources=@LONCAPA::map::resources;
891: @oldorder=@LONCAPA::map::order;
892: $parmidx=undef;
893: %parmaction=();
894: %parmvalue=();
895: $changedflag=0;
896: }
897:
898: sub remember_parms {
899: my ($idx,$parameter,$action,$value)=@_;
900: $parmidx=$idx;
901: $parmaction{$parameter}=$action;
902: $parmvalue{$parameter}=$value;
903: $changedflag=1;
904: }
905:
906: sub log_differences {
907: my ($plain)=@_;
908: my %storehash=('folder' => $plain,
909: 'currentfolder' => $env{'form.folder'});
910: if ($parmidx) {
911: $storehash{'parameter_res'}=$oldresources[$parmidx];
912: foreach my $parm (keys(%parmaction)) {
913: $storehash{'parameter_action_'.$parm}=$parmaction{$parm};
914: $storehash{'parameter_value_'.$parm}=$parmvalue{$parm};
915: }
916: }
917: my $maxidx=$#oldresources;
918: if ($#LONCAPA::map::resources>$#oldresources) {
919: $maxidx=$#LONCAPA::map::resources;
920: }
921: for (my $idx=0; $idx<=$maxidx; $idx++) {
922: if ($LONCAPA::map::resources[$idx] ne $oldresources[$idx]) {
923: $storehash{'before_resources_'.$idx}=$oldresources[$idx];
924: $storehash{'after_resources_'.$idx}=$LONCAPA::map::resources[$idx];
925: $changedflag=1;
926: }
927: if ($LONCAPA::map::order[$idx] ne $oldorder[$idx]) {
928: $storehash{'before_order_res_'.$idx}=$oldresources[$oldorder[$idx]];
929: $storehash{'after_order_res_'.$idx}=$LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
930: $changedflag=1;
931: }
932: }
933: $storehash{'maxidx'}=$maxidx;
934: if ($changedflag) { &log_docs(\%storehash); }
935: }
936: }
937:
938: sub docs_change_log {
1.611 raeburn 939: my ($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath,$canedit)=@_;
1.486 raeburn 940: my $supplementalflag=($env{'form.folderpath'}=~/^supplemental/);
1.617 raeburn 941: my $navmap;
1.483 raeburn 942: my $js = '<script type="text/javascript">'."\n".
943: '// <![CDATA['."\n".
944: &Apache::loncommon::display_filter_js('docslog')."\n".
1.606 raeburn 945: &editing_js($env{'user.domain'},$env{'user.name'},$supplementalflag,
1.622 raeburn 946: $coursedom,$coursenum,'','',$canedit,'',\$navmap)."\n".
1.483 raeburn 947: &history_tab_js()."\n".
1.484 raeburn 948: &Apache::lonratedt::editscript('simple')."\n".
1.483 raeburn 949: '// ]]>'."\n".
950: '</script>'."\n";
1.484 raeburn 951: $r->print(&Apache::loncommon::start_page('Content Change Log',$js));
952: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Change Log'));
1.489 raeburn 953: $r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs')));
1.484 raeburn 954: my %orderhash;
955: my $container='sequence';
956: my $pathitem;
1.519 raeburn 957: if ($env{'form.folderpath'} =~ /\:1$/) {
1.484 raeburn 958: $container='page';
959: }
1.519 raeburn 960: my $folderpath=$env{'form.folderpath'};
961: if ($folderpath eq '') {
1.617 raeburn 962: $folderpath = &default_folderpath($coursenum,$coursedom,\$navmap);
1.519 raeburn 963: }
1.617 raeburn 964: undef($navmap);
1.519 raeburn 965: $pathitem = '<input type="hidden" name="folderpath" value="'.
966: &HTML::Entities::encode($folderpath,'<>&"').'" />';
1.484 raeburn 967: my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container";
968: my $jumpto = $readfile;
969: $jumpto =~ s{^/}{};
970: my $tid = 1;
1.489 raeburn 971: if ($supplementalflag) {
972: $tid = 2;
973: }
1.630 raeburn 974: my ($breadcrumbtrail) =
1.509 raeburn 975: &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
1.484 raeburn 976: $r->print($breadcrumbtrail.
977: &generate_edit_table($tid,\%orderhash,undef,$iconpath,$jumpto,
978: $readfile));
1.329 droeschl 979: my %docslog=&Apache::lonnet::dump('nohist_docslog',
980: $env{'course.'.$env{'request.course.id'}.'.domain'},
981: $env{'course.'.$env{'request.course.id'}.'.num'});
982:
983: if ((keys(%docslog))[0]=~/^error\:/) { undef(%docslog); }
984:
985: my %saveable_parameters = ('show' => 'scalar',);
986: &Apache::loncommon::store_course_settings('docs_log',
987: \%saveable_parameters);
988: &Apache::loncommon::restore_course_settings('docs_log',
989: \%saveable_parameters);
990: if (!$env{'form.show'}) { $env{'form.show'}=10; }
1.452 www 991: # FIXME: internationalization seems wrong here
1.329 droeschl 992: my %lt=('hiddenresource' => 'Resources hidden',
993: 'encrypturl' => 'URL hidden',
994: 'randompick' => 'Randomly pick',
995: 'randomorder' => 'Randomly ordered',
996: 'set' => 'set to',
997: 'del' => 'deleted');
1.484 raeburn 998: my $filter = &Apache::loncommon::display_filter('docslog')."\n".
999: $pathitem."\n".
1000: '<input type="hidden" name="folder" value="'.$env{'form.folder'}.'" />'.
1001: (' 'x2).'<input type="submit" value="'.&mt('Display').'" />';
1002: $r->print('<div class="LC_left_float">'.
1003: '<fieldset><legend>'.&mt('Display of Content Changes').'</legend>'."\n".
1004: &makedocslogform($filter,1).
1005: '</fieldset></div><br clear="all" />');
1.329 droeschl 1006: $r->print(&Apache::loncommon::start_data_table().&Apache::loncommon::start_data_table_header_row().
1007: '<th>'.&mt('Time').'</th><th>'.&mt('User').'</th><th>'.&mt('Folder').'</th><th>'.&mt('Before').'</th><th>'.
1008: &mt('After').'</th>'.
1009: &Apache::loncommon::end_data_table_header_row());
1010: my $shown=0;
1011: foreach my $id (sort { $docslog{$b}{'exe_time'}<=>$docslog{$a}{'exe_time'} } (keys(%docslog))) {
1012: if ($env{'form.displayfilter'} eq 'currentfolder') {
1013: if ($docslog{$id}{'logentry'}{'currentfolder'} ne $folder) { next; }
1014: }
1015: my @changes=keys(%{$docslog{$id}{'logentry'}});
1016: if ($env{'form.displayfilter'} eq 'containing') {
1017: my $wholeentry=$docslog{$id}{'exe_uname'}.':'.$docslog{$id}{'exe_udom'}.':'.
1018: &Apache::loncommon::plainname($docslog{$id}{'exe_uname'},$docslog{$id}{'exe_udom'});
1019: foreach my $key (@changes) {
1020: $wholeentry.=':'.$docslog{$id}{'logentry'}{$key};
1021: }
1.344 bisitz 1022: if ($wholeentry!~/\Q$env{'form.containingphrase'}\E/i) { next; }
1.329 droeschl 1023: }
1024: my $count = 0;
1025: my $time =
1026: &Apache::lonlocal::locallocaltime($docslog{$id}{'exe_time'});
1027: my $plainname =
1028: &Apache::loncommon::plainname($docslog{$id}{'exe_uname'},
1029: $docslog{$id}{'exe_udom'});
1030: my $about_me_link =
1031: &Apache::loncommon::aboutmewrapper($plainname,
1032: $docslog{$id}{'exe_uname'},
1033: $docslog{$id}{'exe_udom'});
1034: my $send_msg_link='';
1035: if ((($docslog{$id}{'exe_uname'} ne $env{'user.name'})
1036: || ($docslog{$id}{'exe_udom'} ne $env{'user.domain'}))) {
1037: $send_msg_link ='<br />'.
1038: &Apache::loncommon::messagewrapper(&mt('Send message'),
1039: $docslog{$id}{'exe_uname'},
1040: $docslog{$id}{'exe_udom'});
1041: }
1042: $r->print(&Apache::loncommon::start_data_table_row());
1043: $r->print('<td>'.$time.'</td>
1044: <td>'.$about_me_link.
1045: '<br /><tt>'.$docslog{$id}{'exe_uname'}.
1046: ':'.$docslog{$id}{'exe_udom'}.'</tt>'.
1047: $send_msg_link.'</td><td>'.
1048: $docslog{$id}{'logentry'}{'folder'}.'</td><td>');
1.488 raeburn 1049: my $is_supp = 0;
1050: if ($docslog{$id}{'logentry'}{'currentfolder'} =~ /^supplemental/) {
1051: $is_supp = 1;
1052: }
1.329 droeschl 1053: # Before
1054: for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
1055: my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
1056: my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
1057: if ($oldname ne $newname) {
1.488 raeburn 1058: my $shown = &LONCAPA::map::qtescape($oldname);
1059: if ($is_supp) {
1060: $shown = &Apache::loncommon::parse_supplemental_title($shown);
1061: }
1062: $r->print($shown);
1.329 droeschl 1063: }
1064: }
1065: $r->print('<ul>');
1066: for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
1067: if ($docslog{$id}{'logentry'}{'before_order_res_'.$idx}) {
1.488 raeburn 1068: my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'before_order_res_'.$idx}))[0]);
1069: if ($is_supp) {
1070: $shown = &Apache::loncommon::parse_supplemental_title($shown);
1071: }
1072: $r->print('<li>'.$shown.'</li>');
1.329 droeschl 1073: }
1074: }
1075: $r->print('</ul>');
1076: # After
1077: $r->print('</td><td>');
1078:
1079: for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
1080: my $oldname=(split(/\:/,$docslog{$id}{'logentry'}{'before_resources_'.$idx}))[0];
1081: my $newname=(split(/\:/,$docslog{$id}{'logentry'}{'after_resources_'.$idx}))[0];
1082: if ($oldname ne '' && $oldname ne $newname) {
1.488 raeburn 1083: my $shown = &LONCAPA::map::qtescape($newname);
1084: if ($is_supp) {
1085: $shown = &Apache::loncommon::parse_supplemental_title(&LONCAPA::map::qtescape($newname));
1086: }
1087: $r->print($shown);
1.329 droeschl 1088: }
1.364 bisitz 1089: }
1.329 droeschl 1090: $r->print('<ul>');
1091: for (my $idx=0;$idx<=$docslog{$id}{'logentry'}{'maxidx'};$idx++) {
1092: if ($docslog{$id}{'logentry'}{'after_order_res_'.$idx}) {
1.488 raeburn 1093: my $shown = &LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'after_order_res_'.$idx}))[0]);
1094: if ($is_supp) {
1095: $shown = &Apache::loncommon::parse_supplemental_title($shown);
1096: }
1097: $r->print('<li>'.$shown.'</li>');
1.329 droeschl 1098: }
1099: }
1100: $r->print('</ul>');
1101: if ($docslog{$id}{'logentry'}{'parameter_res'}) {
1102: $r->print(&LONCAPA::map::qtescape((split(/\:/,$docslog{$id}{'logentry'}{'parameter_res'}))[0]).':<ul>');
1103: foreach my $parameter ('randompick','hiddenresource','encrypturl','randomorder') {
1104: if ($docslog{$id}{'logentry'}{'parameter_action_'.$parameter}) {
1.452 www 1105: # FIXME: internationalization seems wrong here
1.329 droeschl 1106: $r->print('<li>'.
1107: &mt($lt{$parameter}.' '.$lt{$docslog{$id}{'logentry'}{'parameter_action_'.$parameter}}.' [_1]',
1108: $docslog{$id}{'logentry'}{'parameter_value_'.$parameter})
1109: .'</li>');
1110: }
1111: }
1112: $r->print('</ul>');
1113: }
1114: # End
1115: $r->print('</td>'.&Apache::loncommon::end_data_table_row());
1116: $shown++;
1117: if (!($env{'form.show'} eq &mt('all')
1118: || $shown<=$env{'form.show'})) { last; }
1119: }
1.484 raeburn 1120: $r->print(&Apache::loncommon::end_data_table()."\n".
1121: &makesimpleeditform($pathitem)."\n".
1122: '</div></div>');
1123: $r->print(&endContentScreen());
1.329 droeschl 1124: }
1125:
1126: sub update_paste_buffer {
1.492 raeburn 1127: my ($coursenum,$coursedom,$folder) = @_;
1.591 raeburn 1128: my (@possibles,%removals,%cuts,$output);
1.538 raeburn 1129: if ($env{'form.multiremove'}) {
1130: $env{'form.multiremove'} =~ s/,$//;
1131: map { $removals{$_} = 1; } split(/,/,$env{'form.multiremove'});
1132: }
1133: if (($env{'form.multicopy'}) || ($env{'form.multicut'})) {
1134: if ($env{'form.multicut'}) {
1135: $env{'form.multicut'} =~ s/,$//;
1136: foreach my $item (split(/,/,$env{'form.multicut'})) {
1137: unless ($removals{$item}) {
1138: $cuts{$item} = 1;
1139: push(@possibles,$item.':cut');
1140: }
1141: }
1142: }
1143: if ($env{'form.multicopy'}) {
1144: $env{'form.multicopy'} =~ s/,$//;
1145: foreach my $item (split(/,/,$env{'form.multicopy'})) {
1146: unless ($removals{$item} || $cuts{$item}) {
1147: push(@possibles,$item.':copy');
1148: }
1149: }
1150: }
1151: } elsif ($env{'form.markcopy'}) {
1152: @possibles = split(/,/,$env{'form.markcopy'});
1153: }
1.329 droeschl 1154:
1.538 raeburn 1155: return if (@possibles == 0);
1.329 droeschl 1156: return if (!defined($env{'form.copyfolder'}));
1157:
1158: my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
1159: $env{'form.copyfolder'});
1.538 raeburn 1160: return if ($fatal);
1161:
1162: my %curr_groups = &Apache::longroup::coursegroups();
1.364 bisitz 1163:
1.538 raeburn 1164: # Retrieve current paste buffer suffixes.
1165: my @currpaste = split(/,/,$env{'docs.markedcopies'});
1166: my (%pasteurls,@newpaste);
1167:
1168: # Construct identifiers for current contents of user's paste buffer
1169: if (@currpaste) {
1170: foreach my $suffix (@currpaste) {
1171: my $cid = $env{'docs.markedcopy_crs_'.$suffix};
1172: my $url = $env{'docs.markedcopy_url_'.$suffix};
1.630 raeburn 1173: my $mapidx = $env{'docs.markedcopy_map_'.$suffix};
1.538 raeburn 1174: if (($cid =~ /^$match_domain(?:_)$match_courseid$/) &&
1175: ($url ne '')) {
1.597 raeburn 1176: $pasteurls{$cid.'_'.$url.'_'.$mapidx} = 1;
1.538 raeburn 1177: }
1178: }
1179: }
1180:
1181: # Mark items for copying (skip any items already in user's paste buffer)
1182: my %addtoenv;
1.597 raeburn 1183:
1184: my @pathitems = split(/\&/,$env{'form.folderpath'});
1185: my @folderconf = split(/\:/,$pathitems[-1]);
1186: my $ispage = $folderconf[4];
1187:
1.538 raeburn 1188: foreach my $item (@possibles) {
1189: my ($orderidx,$cmd) = split(/:/,$item);
1190: next if ($orderidx =~ /\D/);
1191: next unless (($cmd eq 'cut') || ($cmd eq 'copy') || ($cmd eq 'remove'));
1.597 raeburn 1192: my $mapidx = $folder.':'.$orderidx.':'.$ispage;
1.538 raeburn 1193: my ($title,$url)=split(':',$LONCAPA::map::resources[$orderidx]);
1194: my %denied = &action_restrictions($coursenum,$coursedom,
1195: &LONCAPA::map::qtescape($url),
1196: $env{'form.folderpath'},\%curr_groups);
1197: next if ($denied{'copy'});
1198: $url=~s{http(:|:)//https(:|:)//}{https$2//};
1.597 raeburn 1199: next if (exists($pasteurls{$coursedom.'_'.$coursenum.'_'.$mapidx}));
1.538 raeburn 1200: my ($suffix,$errortxt,$locknotfreed) =
1201: &new_timebased_suffix($env{'user.domain'},$env{'user.name'},'paste');
1.591 raeburn 1202: if ($suffix ne '') {
1203: push(@newpaste,$suffix);
1204: } else {
1205: if ($locknotfreed) {
1206: return $locknotfreed;
1207: }
1.538 raeburn 1208: }
1209: if (&is_supplemental_title($title)) {
1210: &Apache::lonnet::appenv({'docs.markedcopy_supplemental_'.$suffix => $title});
1211: ($title) = &Apache::loncommon::parse_supplemental_title($title);
1212: }
1.329 droeschl 1213:
1.538 raeburn 1214: $addtoenv{'docs.markedcopy_title_'.$suffix} = $title,
1215: $addtoenv{'docs.markedcopy_url_'.$suffix} = $url,
1216: $addtoenv{'docs.markedcopy_cmd_'.$suffix} = $cmd,
1217: $addtoenv{'docs.markedcopy_crs_'.$suffix} = $env{'request.course.id'};
1.597 raeburn 1218: $addtoenv{'docs.markedcopy_map_'.$suffix} = $mapidx;
1.538 raeburn 1219: if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(default|supplemental)_?(\d*)\.(page|sequence)$}) {
1220: my $prefix = $1;
1221: my $subdir =$2;
1222: if ($subdir eq '') {
1223: $subdir = $prefix;
1.492 raeburn 1224: }
1.538 raeburn 1225: my (%addedmaps,%removefrommap,%removeparam,%hierarchy,%titles,%allmaps);
1.627 raeburn 1226: &contained_map_check($url,$folder,$coursenum,$coursedom,\%removefrommap,
1227: \%removeparam,\%addedmaps,\%hierarchy,\%titles,\%allmaps);
1.538 raeburn 1228: if (ref($hierarchy{$url}) eq 'HASH') {
1229: my ($nested,$nestednames);
1230: &recurse_uploaded_maps($url,$subdir,\%hierarchy,\%titles,\$nested,\$nestednames);
1231: $nested =~ s/\&$//;
1232: $nestednames =~ s/\Q___&&&___\E$//;
1233: if ($nested ne '') {
1234: $addtoenv{'docs.markedcopy_nested_'.$suffix} = $nested;
1235: }
1236: if ($nestednames ne '') {
1237: $addtoenv{'docs.markedcopy_nestednames_'.$suffix} = $nestednames;
1238: }
1.492 raeburn 1239: }
1240: }
1.591 raeburn 1241: if ($locknotfreed) {
1242: $output = $locknotfreed;
1243: last;
1244: }
1.492 raeburn 1245: }
1.538 raeburn 1246: if (@newpaste) {
1247: $addtoenv{'docs.markedcopies'} = join(',',(@currpaste,@newpaste));
1248: }
1.492 raeburn 1249: &Apache::lonnet::appenv(\%addtoenv);
1.329 droeschl 1250: delete($env{'form.markcopy'});
1.591 raeburn 1251: return $output;
1.329 droeschl 1252: }
1253:
1.492 raeburn 1254: sub recurse_uploaded_maps {
1255: my ($url,$dir,$hierarchy,$titlesref,$nestref,$namesref) = @_;
1256: if (ref($hierarchy->{$url}) eq 'HASH') {
1257: my @maps = map { $hierarchy->{$url}{$_}; } sort { $a <=> $b } (keys(%{$hierarchy->{$url}}));
1258: my @titles = map { $titlesref->{$url}{$_}; } sort { $a <=> $b } (keys(%{$titlesref->{$url}}));
1259: my (@uploaded,@names,%shorter);
1260: for (my $i=0; $i<@maps; $i++) {
1261: my ($inner) = ($maps[$i] =~ m{^/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_(\d+)\.(?:page|sequence)$});
1262: if ($inner ne '') {
1263: push(@uploaded,$inner);
1264: push(@names,&escape($titles[$i]));
1265: $shorter{$maps[$i]} = $inner;
1266: }
1267: }
1268: $$nestref .= "$dir:".join(',',@uploaded).'&';
1269: $$namesref .= "$dir:".(join(',',@names)).'___&&&___';
1270: foreach my $map (@maps) {
1271: if ($shorter{$map} ne '') {
1272: &recurse_uploaded_maps($map,$shorter{$map},$hierarchy,$titlesref,$nestref,$namesref);
1273: }
1274: }
1275: }
1276: return;
1277: }
1278:
1.329 droeschl 1279: sub print_paste_buffer {
1.492 raeburn 1280: my ($r,$container,$folder,$coursedom,$coursenum) = @_;
1.538 raeburn 1281: return if (!defined($env{'docs.markedcopies'}));
1.329 droeschl 1282:
1.538 raeburn 1283: unless (($env{'form.pastemarked'}) || ($env{'form.clearmarked'})) {
1284: return if ($env{'docs.markedcopies'} eq '');
1.488 raeburn 1285: }
1286:
1.538 raeburn 1287: my @currpaste = split(/,/,$env{'docs.markedcopies'});
1288: my ($pasteitems,@pasteable);
1.575 raeburn 1289: my $clipboardcount = 0;
1.488 raeburn 1290:
1.538 raeburn 1291: # Construct identifiers for current contents of user's paste buffer
1292: foreach my $suffix (@currpaste) {
1293: next if ($suffix =~ /\D/);
1294: my $cid = $env{'docs.markedcopy_crs_'.$suffix};
1295: my $url = $env{'docs.markedcopy_url_'.$suffix};
1.597 raeburn 1296: my $mapidx = $env{'docs.markedcopy_map_'.$suffix};
1.538 raeburn 1297: if (($cid =~ /^$match_domain\_$match_courseid$/) &&
1298: ($url ne '')) {
1.575 raeburn 1299: $clipboardcount ++;
1.538 raeburn 1300: my ($is_external,$othercourse,$fromsupp,$is_uploaded_map,$parent,
1.598 raeburn 1301: $canpaste,$nopaste,$othercrs,$areachange,$is_exttool);
1.538 raeburn 1302: my $extension = (split(/\./,$env{'docs.markedcopy_url_'.$suffix}))[-1];
1303: if ($url =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//} ) {
1304: $is_external = 1;
1.626 raeburn 1305: } elsif ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$}) {
1.598 raeburn 1306: $is_exttool = 1;
1.538 raeburn 1307: }
1308: if ($folder =~ /^supplemental/) {
1309: $canpaste = &supp_pasteable($env{'docs.markedcopy_url_'.$suffix});
1310: unless ($canpaste) {
1311: $nopaste = &mt('Paste into Supplemental Content unavailable.');
1312: }
1313: } else {
1314: $canpaste = 1;
1315: }
1316: if ($canpaste) {
1317: if ($url =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) {
1318: my $srcdom = $1;
1319: my $srcnum = $2;
1320: my $rem = $3;
1321: if (($srcdom ne $coursedom) || ($srcnum ne $coursenum)) {
1322: $othercourse = 1;
1323: if ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) {
1.596 raeburn 1324: $othercrs = '<br />'.&mt('(from another course)');
1.538 raeburn 1325: } else {
1326: $canpaste = 0;
1327: $nopaste = &mt('Paste from another course unavailable.');
1328: }
1329: }
1330: if ($rem =~ m{^(default|supplemental)_?(\d*)\.(?:page|sequence)$}) {
1331: my $prefix = $1;
1332: $parent = $2;
1333: if ($folder !~ /^\Q$prefix\E/) {
1334: $areachange = 1;
1335: }
1336: $is_uploaded_map = 1;
1.492 raeburn 1337: }
1.597 raeburn 1338: } elsif (($url =~ m{^/res/lib/templates/\w+\.problem$}) ||
1.627 raeburn 1339: ($url =~ m{^/adm/($match_domain)/($match_username)/\d+/(bulletinboard|smppg|ext\.tool)$})) {
1.596 raeburn 1340: if ($cid ne $env{'request.course.id'}) {
1341: my ($srcdom,$srcnum) = split(/_/,$cid);
1342: if ($env{"user.priv.cm./$srcdom/$srcnum"} =~ /\Q:mdc&F\E/) {
1.627 raeburn 1343: if (($is_exttool) && ($srcdom ne $coursedom)) {
1344: $canpaste = 0;
1345: $nopaste = &mt('Paste from another domain unavailable.');
1346: } else {
1347: $othercrs = '<br />'.&mt('(from another course)');
1348: }
1.596 raeburn 1349: } else {
1350: $canpaste = 0;
1351: $nopaste = &mt('Paste from another course unavailable.');
1.629 raeburn 1352: }
1.596 raeburn 1353: }
1.492 raeburn 1354: }
1.596 raeburn 1355: if ($canpaste) {
1356: push(@pasteable,$suffix);
1.629 raeburn 1357: }
1.538 raeburn 1358: }
1359: my $buffer;
1.627 raeburn 1360: if ($is_external) {
1.538 raeburn 1361: $buffer = &mt('External Resource').': '.
1362: &LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix}).' ('.
1363: &LONCAPA::map::qtescape($url).')';
1.627 raeburn 1364: } elsif ($is_exttool) {
1365: $buffer = &mt('External Tool').': '.
1366: &LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix});
1.538 raeburn 1367: } else {
1368: my $icon = &Apache::loncommon::icon($extension);
1369: if ($extension eq 'sequence' &&
1370: $url =~ m{/default_\d+\.sequence$}x) {
1371: $icon = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL'));
1372: $icon .= '/navmap.folder.closed.gif';
1373: }
1.589 raeburn 1374: my $title = $env{'docs.markedcopy_title_'.$suffix};
1375: if ($title eq '') {
1376: ($title) = ($url =~ m{/([^/]+)$});
1377: }
1.538 raeburn 1378: $buffer = '<img src="'.$icon.'" alt="" class="LC_icon" />'.
1379: ': '.
1380: &Apache::loncommon::parse_supplemental_title(
1.589 raeburn 1381: &LONCAPA::map::qtescape($title));
1.538 raeburn 1382: }
1383: $pasteitems .= '<div class="LC_left_float">';
1384: my ($options,$onclick);
1385: if (($canpaste) && (!$areachange) && (!$othercourse) &&
1386: ($env{'docs.markedcopy_cmd_'.$suffix} eq 'cut')) {
1387: if (($is_uploaded_map) ||
1388: ($url =~ /(bulletinboard|smppg)$/) ||
1389: ($url =~ m{^/uploaded/$coursedom/$coursenum/(?:docs|supplemental)/(.+)$})) {
1390: $options = &paste_options($suffix,$is_uploaded_map,$parent);
1391: $onclick= 'onclick="showOptions(this,'."'$suffix'".');" ';
1392: }
1393: }
1394: $pasteitems .= '<label><input type="checkbox" name="pasting" id="pasting_'.$suffix.'" value="'.$suffix.'" '.$onclick.'/>'.$buffer.'</label>';
1395: if ($nopaste) {
1396: $pasteitems .= $nopaste;
1397: } else {
1398: if ($othercrs) {
1399: $pasteitems .= $othercrs;
1400: }
1401: if ($options) {
1402: $pasteitems .= $options;
1.492 raeburn 1403: }
1404: }
1.538 raeburn 1405: $pasteitems .= '</div>';
1406: }
1407: }
1408: if ($pasteitems eq '') {
1409: &Apache::lonnet::delenv('docs.markedcopies');
1410: }
1411: my ($pasteform,$form_start,$buttons,$form_end);
1412: if ($pasteitems) {
1413: $pasteitems .= '<div style="padding:0;clear:both;margin:0;border:0"></div>';
1.541 raeburn 1414: $form_start = '<form name="pasteform" action="/adm/coursedocs" method="post" onsubmit="return validateClipboard();">';
1.538 raeburn 1415: if (@pasteable) {
1.575 raeburn 1416: my $value = &mt('Paste to current folder');
1417: if ($container eq 'page') {
1418: $value = &mt('Paste to current page');
1419: }
1420: $buttons = '<input type="submit" name="pastemarked" value="'.$value.'" />'.(' 'x2);
1421: }
1422: $buttons .= '<input type="submit" name="clearmarked" value="'.&mt('Remove from clipboard').'" />'.(' 'x2);
1423: if ($clipboardcount > 1) {
1424: $buttons .=
1425: '<span style="text-decoration:line-through">'.(' 'x20).'</span>'.(' 'x2).
1426: '<input type="button" name="checkallclip" value="'.&mt('Check all').'" style="height:20px;" onclick="checkClipboard();" />'.
1427: (' 'x2).
1428: '<input type="button" name="uncheckallclip" value="'.&mt('Uncheck all').'" style="height:20px;" onclick="uncheckClipboard();" />'.
1429: (' 'x2);
1.492 raeburn 1430: }
1.575 raeburn 1431: $form_end = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />'.
1432: '</form>';
1.538 raeburn 1433: } else {
1434: $pasteitems = &mt('Clipboard is empty');
1.488 raeburn 1435: }
1.538 raeburn 1436: $r->print($form_start
1437: .'<fieldset>'
1438: .'<legend>'.&mt('Clipboard').(' ' x2).$buttons.'</legend>'
1439: .$pasteitems
1440: .'</fieldset>'
1441: .$form_end);
1442: }
1443:
1444: sub paste_options {
1445: my ($suffix,$is_uploaded_map,$parent) = @_;
1446: my ($copytext,$movetext);
1447: if ($is_uploaded_map) {
1448: $copytext = &mt('Copy to new folder');
1449: $movetext = &mt('Move old');
1450: } elsif ($env{'docs.markedcopy_url_'.$suffix} =~ /bulletinboard$/) {
1451: $copytext = &mt('Copy to new board');
1452: $movetext = &mt('Move (not posts)');
1453: } elsif ($env{'docs.markedcopy_url_'.$suffix} =~ /smppg$/) {
1454: $copytext = &mt('Copy to new page');
1455: $movetext = &mt('Move');
1.533 raeburn 1456: } else {
1.538 raeburn 1457: $copytext = &mt('Copy to new file');
1458: $movetext = &mt('Move');
1459: }
1460: my $output = '<br />'.
1461: '<span id="pasteoptionstext_'.$suffix.'" class="LC_fontsize_small LC_nobreak"></span>'.
1462: '<div id="pasteoptions_'.$suffix.'" class="LC_dccid" style="display:none;"><span class="LC_nobreak">'.(' 'x 4).
1463: '<label>'.
1464: '<input type="radio" name="docs.markedcopy_options_'.$suffix.'" value="new" checked="checked" />'.
1465: $copytext.'</label></span>'.(' 'x2).' '.
1466: '<span class="LC_nobreak"><label>'.
1467: '<input type="radio" name="docs.markedcopy_options_'.$suffix.'" value="move" />'.
1468: $movetext.'</label></span>';
1469: if (($is_uploaded_map) && ($env{'docs.markedcopy_nested_'.$suffix})) {
1470: $output .= '<br /><fieldset><legend>'.&mt('Folder to paste contains sub-folders').
1471: '</legend><table border="0">';
1472: my @pastemaps = split(/\&/,$env{'docs.markedcopy_nested_'.$suffix});
1473: my @titles = split(/\Q___&&&___\E/,$env{'docs.markedcopy_nestednames_'.$suffix});
1474: my $lastdir = $parent;
1475: my %depths = (
1476: $lastdir => 0,
1477: );
1478: my (%display,%deps);
1479: for (my $i=0; $i<@pastemaps; $i++) {
1480: ($lastdir,my $subfolderstr) = split(/\:/,$pastemaps[$i]);
1481: my ($namedir,$esctitlestr) = split(/\:/,$titles[$i]);
1482: my @subfolders = split(/,/,$subfolderstr);
1483: $deps{$lastdir} = \@subfolders;
1484: my @subfoldertitles = map { &unescape($_); } split(/,/,$esctitlestr);
1485: my $depth = $depths{$lastdir} + 1;
1486: my $offset = int($depth * 4);
1487: my $indent = (' ' x $offset);
1488: for (my $j=0; $j<@subfolders; $j++) {
1489: $depths{$subfolders[$j]} = $depth;
1490: $display{$subfolders[$j]} =
1491: '<tr><td>'.$indent.$subfoldertitles[$j].' </td>'.
1492: '<td><label>'.
1493: '<input type="radio" name="docs.markedcopy_'.$suffix.'_'.$subfolders[$j].'" value="new" checked="checked" />'.&mt('Copy to new').'</label>'.(' ' x2).
1494: '<label>'.
1495: '<input type="radio" name="docs.markedcopy_'.$suffix.'_'.$subfolders[$j].'" value="move" />'.
1496: &mt('Move old').'</label>'.
1497: '</td></tr>';
1498: }
1.492 raeburn 1499: }
1.538 raeburn 1500: &recurse_print(\$output,$parent,\%deps,\%display);
1501: $output .= '</table></fieldset>';
1.329 droeschl 1502: }
1.538 raeburn 1503: $output .= '</div>';
1504: return $output;
1.488 raeburn 1505: }
1506:
1.492 raeburn 1507: sub recurse_print {
1.538 raeburn 1508: my ($outputref,$dir,$deps,$display) = @_;
1509: $$outputref .= $display->{$dir}."\n";
1.492 raeburn 1510: if (ref($deps->{$dir}) eq 'ARRAY') {
1511: foreach my $subdir (@{$deps->{$dir}}) {
1.538 raeburn 1512: &recurse_print($outputref,$subdir,$deps,$display);
1.492 raeburn 1513: }
1514: }
1515: }
1516:
1.488 raeburn 1517: sub supp_pasteable {
1518: my ($url) = @_;
1519: if (($url =~ m{^(?:/adm/wrapper/ext|(?:http|https)(?::|:))//}) ||
1520: (($url =~ /\.sequence$/) && ($url =~ m{^/uploaded/})) ||
1521: ($url =~ m{^/uploaded/$match_domain/$match_courseid/(docs|supplemental)/(default|\d+)/\d+/}) ||
1522: ($url =~ m{^/adm/$match_domain/$match_username/aboutme}) ||
1.598 raeburn 1523: ($url =~ m{^/public/$match_domain/$match_courseid/syllabus}) ||
1.626 raeburn 1524: ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$})) {
1.488 raeburn 1525: return 1;
1526: }
1527: return;
1.329 droeschl 1528: }
1529:
1.492 raeburn 1530: sub paste_popup_js {
1.594 damieng 1531: my %html_js_lt = &Apache::lonlocal::texthash(
1.538 raeburn 1532: show => 'Show Options',
1533: hide => 'Hide Options',
1.594 damieng 1534: );
1535: my %js_lt = &Apache::lonlocal::texthash(
1.541 raeburn 1536: none => 'No items selected from clipboard.',
1.492 raeburn 1537: );
1.594 damieng 1538: &html_escape(\%html_js_lt);
1539: &js_escape(\%html_js_lt);
1540: &js_escape(\%js_lt);
1.492 raeburn 1541: return <<"END";
1542:
1.538 raeburn 1543: function showPasteOptions(suffix) {
1544: document.getElementById('pasteoptions_'+suffix).style.display='block';
1.594 damieng 1545: document.getElementById('pasteoptionstext_'+suffix).innerHTML = ' <a href="javascript:hidePasteOptions(\\''+suffix+'\\');" class="LC_menubuttons_link">$html_js_lt{'hide'}</a>';
1.492 raeburn 1546: return;
1547: }
1548:
1.538 raeburn 1549: function hidePasteOptions(suffix) {
1550: document.getElementById('pasteoptions_'+suffix).style.display='none';
1.594 damieng 1551: document.getElementById('pasteoptionstext_'+suffix).innerHTML =' <a href="javascript:showPasteOptions(\\''+suffix+'\\')" class="LC_menubuttons_link">$html_js_lt{'show'}</a>';
1.538 raeburn 1552: return;
1553: }
1554:
1555: function showOptions(caller,suffix) {
1556: if (document.getElementById('pasteoptionstext_'+suffix)) {
1557: if (caller.checked) {
1.594 damieng 1558: document.getElementById('pasteoptionstext_'+suffix).innerHTML =' <a href="javascript:showPasteOptions(\\''+suffix+'\\')" class="LC_menubuttons_link">$html_js_lt{'show'}</a>';
1.538 raeburn 1559: } else {
1560: document.getElementById('pasteoptionstext_'+suffix).innerHTML ='';
1561: }
1562: if (document.getElementById('pasteoptions_'+suffix)) {
1563: document.getElementById('pasteoptions_'+suffix).style.display='none';
1564: }
1565: }
1.492 raeburn 1566: return;
1567: }
1568:
1.541 raeburn 1569: function validateClipboard() {
1570: var numchk = 0;
1571: if (document.pasteform.pasting.length > 1) {
1572: for (var i=0; i<document.pasteform.pasting.length; i++) {
1573: if (document.pasteform.pasting[i].checked) {
1574: numchk ++;
1575: }
1576: }
1577: } else {
1578: if (document.pasteform.pasting.type == 'checkbox') {
1579: if (document.pasteform.pasting.checked) {
1580: numchk ++;
1581: }
1582: }
1583: }
1584: if (numchk > 0) {
1585: return true;
1586: } else {
1.594 damieng 1587: alert("$js_lt{'none'}");
1.541 raeburn 1588: return false;
1589: }
1590: }
1591:
1.575 raeburn 1592: function checkClipboard() {
1593: if (document.pasteform.pasting.length > 1) {
1594: for (var i=0; i<document.pasteform.pasting.length; i++) {
1595: document.pasteform.pasting[i].checked = true;
1596: }
1597: }
1598: return;
1599: }
1600:
1601: function uncheckClipboard() {
1602: if (document.pasteform.pasting.length >1) {
1603: for (var i=0; i<document.pasteform.pasting.length; i++) {
1604: document.pasteform.pasting[i].checked = false;
1605: }
1606: }
1607: return;
1608: }
1609:
1.492 raeburn 1610: END
1611:
1612: }
1613:
1.329 droeschl 1614: sub do_paste_from_buffer {
1.492 raeburn 1615: my ($coursenum,$coursedom,$folder,$container,$errors) = @_;
1.329 droeschl 1616:
1.538 raeburn 1617: # Array of items in paste buffer
1618: my (@currpaste,%pastebuffer,%allerrors);
1619: @currpaste = split(/,/,$env{'docs.markedcopies'});
1620:
1.492 raeburn 1621: # Early out if paste buffer is empty
1.538 raeburn 1622: if (@currpaste == 0) {
1.492 raeburn 1623: return ();
1.538 raeburn 1624: }
1625: map { $pastebuffer{$_} = 1; } @currpaste;
1626:
1627: # Array of items selected items to paste
1628: my @reqpaste = &Apache::loncommon::get_env_multiple('form.pasting');
1629:
1630: # Early out if nothing selected to paste
1631: if (@reqpaste == 0) {
1632: return();
1633: }
1634: my @topaste;
1635: foreach my $suffix (@reqpaste) {
1636: next if ($suffix =~ /\D/);
1637: next unless (exists($pastebuffer{$suffix}));
1638: push(@topaste,$suffix);
1639: }
1640:
1641: # Early out if nothing available to paste
1642: if (@topaste == 0) {
1643: return();
1.329 droeschl 1644: }
1645:
1.627 raeburn 1646: my (%msgs,%before,%after,@dopaste,%is_map,%notinsupp,%notincrs,%notindom,%duplicate,
1.597 raeburn 1647: %prefixchg,%srcdom,%srcnum,%srcmapidx,%marktomove,$save_err,$lockerrors,$allresult);
1.538 raeburn 1648:
1649: foreach my $suffix (@topaste) {
1650: my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url_'.$suffix});
1.596 raeburn 1651: my $cid=&LONCAPA::map::qtescape($env{'docs.markedcopy_crs_'.$suffix});
1.597 raeburn 1652: my $mapidx=&LONCAPA::map::qtescape($env{'docs.markedcopy_map_'.$suffix});
1.492 raeburn 1653: # Supplemental content may only include certain types of content
1654: # Early out if pasted content is not supported in Supplemental area
1.538 raeburn 1655: if ($folder =~ /^supplemental/) {
1656: unless (&supp_pasteable($url)) {
1657: $notinsupp{$suffix} = 1;
1658: next;
1659: }
1.492 raeburn 1660: }
1.538 raeburn 1661: if ($url =~ m{^/uploaded/($match_domain)/($match_courseid)/}) {
1662: my $srcd = $1;
1663: my $srcn = $2;
1.492 raeburn 1664: # When paste buffer was populated using an active role in a different course
1.538 raeburn 1665: # check for mdc privilege in the course from which the resource was pasted
1666: if (($srcd ne $coursedom) || ($srcn ne $coursenum)) {
1667: unless ($env{"user.priv.cm./$srcd/$srcn"} =~ /\Q:mdc&F\E/) {
1668: $notincrs{$suffix} = 1;
1669: next;
1670: }
1.491 raeburn 1671: }
1.538 raeburn 1672: $srcdom{$suffix} = $srcd;
1673: $srcnum{$suffix} = $srcn;
1.597 raeburn 1674: } elsif (($url =~ m{^/res/lib/templates/\w+\.problem$}) ||
1.632 raeburn 1675: ($url =~ m{^/adm/$match_domain/$match_username/\d+/(bulletinboard|smppg)$}) ||
1676: ($url =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$})) {
1.596 raeburn 1677: my ($srcd,$srcn) = split(/_/,$cid);
1678: # When paste buffer was populated using an active role in a different course
1679: # check for mdc privilege in the course from which the resource was pasted
1680: if (($srcd ne $coursedom) || ($srcn ne $coursenum)) {
1681: unless ($env{"user.priv.cm./$srcd/$srcn"} =~ /\Q:mdc&F\E/) {
1682: $notincrs{$suffix} = 1;
1683: next;
1684: }
1685: }
1.632 raeburn 1686: # When buffer was populated using an active role in a different course
1687: # disallow pasting of External Tool if course is in a different domain.
1688: if (($url =~ m{/ext\.tool$}) && ($srcd ne $coursedom)) {
1.627 raeburn 1689: $notindom{$suffix} = 1;
1690: next;
1691: }
1.596 raeburn 1692: $srcdom{$suffix} = $srcd;
1693: $srcnum{$suffix} = $srcn;
1.491 raeburn 1694: }
1.597 raeburn 1695: $srcmapidx{$suffix} = $mapidx;
1.538 raeburn 1696: push(@dopaste,$suffix);
1697: if ($url=~/\.(page|sequence)$/) {
1698: $is_map{$suffix} = 1;
1699: }
1700: if ($url =~ m{^/uploaded/$match_domain/$match_courseid/([^/]+)}) {
1701: my $oldprefix = $1;
1.492 raeburn 1702: # When pasting content from Main Content to Supplemental Content and vice versa
1703: # URLs will contain different paths (which depend on whether pasted item is
1.597 raeburn 1704: # a folder/page or a document).
1.538 raeburn 1705: if (($folder =~ /^supplemental/) && (($oldprefix =~ /^default/) || ($oldprefix eq 'docs'))) {
1706: $prefixchg{$suffix} = 'docstosupp';
1707: } elsif (($folder =~ /^default/) && ($oldprefix =~ /^supplemental/)) {
1708: $prefixchg{$suffix} = 'supptodocs';
1709: }
1.491 raeburn 1710:
1.492 raeburn 1711: # If pasting an uploaded map, get list of contained uploaded maps.
1.538 raeburn 1712: if ($env{'docs.markedcopy_nested_'.$suffix}) {
1713: my @nested;
1714: my ($type) = ($oldprefix =~ /^(default|supplemental)/);
1715: my @items = split(/\&/,$env{'docs.markedcopy_nested_'.$suffix});
1716: my @deps = map { /\d+:([\d,]+$)/ } @items;
1717: foreach my $dep (@deps) {
1718: if ($dep =~ /,/) {
1719: push(@nested,split(/,/,$dep));
1720: } else {
1721: push(@nested,$dep);
1722: }
1.492 raeburn 1723: }
1.538 raeburn 1724: foreach my $item (@nested) {
1725: if ($env{'form.docs.markedcopy_'.$suffix.'_'.$item} eq 'move') {
1726: push(@{$marktomove{$suffix}},$type.'_'.$item);
1727: }
1.492 raeburn 1728: }
1729: }
1.488 raeburn 1730: }
1731: }
1732:
1.538 raeburn 1733: # Early out if nothing available to paste
1734: if (@dopaste == 0) {
1735: return ();
1736: }
1737:
1738: # Populate message hash and hashes used for main content <=> supplemental content
1739: # changes
1740:
1741: %msgs = &Apache::lonlocal::texthash (
1742: notinsupp => 'Paste failed: content type is not supported within Supplemental Content',
1743: notincrs => 'Paste failed: Item is from a different course which you do not have rights to edit.',
1.627 raeburn 1744: notindom => 'Paste failed: Item is an external tool from a course in a different donain.',
1.538 raeburn 1745: duplicate => 'Paste failed: only one instance of a particular published sequence or page is allowed within each course.',
1746: );
1747:
1748: %before = (
1749: docstosupp => {
1750: map => 'default',
1751: doc => 'docs',
1752: },
1753: supptodocs => {
1754: map => 'supplemental',
1755: doc => 'supplemental',
1756: },
1757: );
1758:
1759: %after = (
1760: docstosupp => {
1761: map => 'supplemental',
1762: doc => 'supplemental'
1763: },
1764: supptodocs => {
1765: map => 'default',
1766: doc => 'docs',
1767: },
1768: );
1769:
1770: # Retrieve information about all course maps in main content area
1771:
1772: my $allmaps = {};
1773: if ($folder =~ /^default/) {
1774: $allmaps =
1775: &Apache::loncommon::allmaps_incourse($coursedom,$coursenum,
1776: $env{"course.$env{'request.course.id'}.home"},
1777: $env{'request.course.id'});
1778: }
1779:
1780: my (@toclear,%mapurls,%lockerrs,%msgerrs,%results);
1781:
1782: # Loop over the items to paste
1783: foreach my $suffix (@dopaste) {
1.329 droeschl 1784: # Maps need to be copied first
1.538 raeburn 1785: my (%removefrommap,%removeparam,%addedmaps,%rewrites,%retitles,%copies,
1786: %dbcopies,%zombies,%params,%docmoves,%mapmoves,%mapchanges,%newsubdir,
1.597 raeburn 1787: %newurls,%tomove,%resdatacopy);
1.538 raeburn 1788: if (ref($marktomove{$suffix}) eq 'ARRAY') {
1789: map { $tomove{$_} = 1; } @{$marktomove{$suffix}};
1790: }
1791: my $url=&LONCAPA::map::qtescape($env{'docs.markedcopy_url_'.$suffix});
1792: my $title=&LONCAPA::map::qtescape($env{'docs.markedcopy_title_'.$suffix});
1.596 raeburn 1793: my $cid=&LONCAPA::map::qtescape($env{'docs.markedcopy_crs_'.$suffix});
1.538 raeburn 1794: my $oldurl = $url;
1795: if ($is_map{$suffix}) {
1.491 raeburn 1796: # If pasting a map, check if map contains other maps
1.538 raeburn 1797: my (%hierarchy,%titles);
1.627 raeburn 1798: &contained_map_check($url,$folder,$coursenum,$coursedom,
1799: \%removefrommap,\%removeparam,\%addedmaps,
1800: \%hierarchy,\%titles,$allmaps);
1.538 raeburn 1801: if ($url=~ m{^/uploaded/}) {
1802: my $newurl;
1803: unless ($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') {
1804: ($newurl,my $error) =
1805: &get_newmap_url($url,$folder,$prefixchg{$suffix},$coursedom,
1806: $coursenum,$srcdom{$suffix},$srcnum{$suffix},
1807: \$title,$allmaps,\%newurls);
1808: if ($error) {
1809: $allerrors{$suffix} = $error;
1810: next;
1811: }
1812: if ($newurl ne '') {
1813: if ($newurl ne $url) {
1814: if ($newurl =~ /(?:default|supplemental)_(\d+).(?:sequence|page)$/) {
1815: $newsubdir{$url} = $1;
1816: }
1817: $mapchanges{$url} = 1;
1.492 raeburn 1818: }
1.538 raeburn 1819: }
1820: }
1821: if (($srcdom{$suffix} ne $coursedom) ||
1822: ($srcnum{$suffix} ne $coursenum) ||
1823: ($prefixchg{$suffix}) || (($newurl ne '') && ($newurl ne $url))) {
1824: unless (&url_paste_fixups($url,$folder,$prefixchg{$suffix},
1825: $coursedom,$coursenum,$srcdom{$suffix},
1826: $srcnum{$suffix},$allmaps,\%rewrites,
1827: \%retitles,\%copies,\%dbcopies,
1828: \%zombies,\%params,\%mapmoves,
1829: \%mapchanges,\%tomove,\%newsubdir,
1.597 raeburn 1830: \%newurls,\%resdatacopy)) {
1.538 raeburn 1831: $mapmoves{$url} = 1;
1832: }
1833: $url = $newurl;
1834: } elsif ($env{'docs.markedcopy_nested_'.$suffix}) {
1835: &url_paste_fixups($url,$folder,$prefixchg{$suffix},$coursedom,
1836: $coursenum,$srcdom{$suffix},$srcnum{$suffix},
1837: $allmaps,\%rewrites,\%retitles,\%copies,\%dbcopies,
1838: \%zombies,\%params,\%mapmoves,\%mapchanges,
1.597 raeburn 1839: \%tomove,\%newsubdir,\%newurls,\%resdatacopy);
1.538 raeburn 1840: }
1841: } elsif ($url=~m {^/res/}) {
1.597 raeburn 1842: # published map can only exist once, so remove from paste buffer when done
1.538 raeburn 1843: push(@toclear,$suffix);
1844: # if pasting published map (main content area only) check map not already in course
1845: if ($folder =~ /^default/) {
1846: if ((ref($allmaps) eq 'HASH') && ($allmaps->{$url})) {
1847: $duplicate{$suffix} = 1;
1848: next;
1.492 raeburn 1849: }
1.491 raeburn 1850: }
1851: }
1.538 raeburn 1852: }
1.627 raeburn 1853: if ($url=~ m{/(bulletinboard|smppg|ext\.tool)$}) {
1.538 raeburn 1854: my $prefix = $1;
1.596 raeburn 1855: my $fromothercrs;
1.538 raeburn 1856: #need to copy the db contents to a new one, unless this is a move.
1857: my %info = (
1858: src => $url,
1859: cdom => $coursedom,
1860: cnum => $coursenum,
1.596 raeburn 1861: );
1862: if (($srcdom{$suffix} =~ /^$match_domain$/) && ($srcnum{$suffix} =~ /^$match_courseid$/)) {
1863: unless (($srcdom{$suffix} eq $coursedom) && ($srcnum{$suffix} eq $coursenum)) {
1864: $fromothercrs = 1;
1865: $info{'cdom'} = $srcdom{$suffix};
1866: $info{'cnum'} = $srcnum{$suffix};
1867: }
1868: }
1869: unless (($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') && (!$fromothercrs)) {
1.630 raeburn 1870: my (%lockerr,$msg);
1.538 raeburn 1871: my ($newurl,$result,$errtext) =
1872: &dbcopy(\%info,$coursedom,$coursenum,\%lockerr);
1873: if ($result eq 'ok') {
1874: $url = $newurl;
1875: $title=&mt('Copy of').' '.$title;
1876: } else {
1877: if ($prefix eq 'smppg') {
1878: $msg = &mt('Paste failed: An error occurred when copying the simple page.').' '.$errtext;
1879: } elsif ($prefix eq 'bulletinboard') {
1.565 bisitz 1880: $msg = &mt('Paste failed: An error occurred when copying the discussion board.').' '.$errtext;
1.627 raeburn 1881: } elsif ($prefix eq 'ext.tool') {
1882: $msg = &mt('Paste failed: An error occurred when copying the external tool.').' '.$errtext;
1.538 raeburn 1883: }
1884: $results{$suffix} = $result;
1885: $msgerrs{$suffix} = $msg;
1886: $lockerrs{$suffix} = $lockerr{$prefix};
1887: next;
1888: }
1889: if ($lockerr{$prefix}) {
1890: $lockerrs{$suffix} = $lockerr{$prefix};
1.491 raeburn 1891: }
1.489 raeburn 1892: }
1893: }
1.538 raeburn 1894: $title = &LONCAPA::map::qtunescape($title);
1895: my $ext='false';
1896: if ($url=~m{^http(|s)://}) { $ext='true'; }
1897: if ($env{'docs.markedcopy_supplemental_'.$suffix}) {
1898: if ($folder !~ /^supplemental/) {
1899: (undef,undef,$title) =
1900: &Apache::loncommon::parse_supplemental_title($env{'docs.markedcopy_supplemental_'.$suffix});
1901: }
1902: } else {
1903: if ($folder=~/^supplemental/) {
1904: $title=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
1905: $env{'user.domain'}.'___&&&___'.$title;
1.491 raeburn 1906: }
1.533 raeburn 1907: }
1.491 raeburn 1908:
1909: # For uploaded files (excluding pages/sequences) path in copied file is changed
1910: # if paste is from Main to Supplemental (or vice versa), or if pasting between
1911: # courses.
1912:
1.538 raeburn 1913: unless ($is_map{$suffix}) {
1914: my $newidx;
1.492 raeburn 1915: # Now insert the URL at the bottom
1.538 raeburn 1916: $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
1917: if ($url =~ m{^/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(.+)$}) {
1918: my $relpath = $1;
1919: if ($relpath ne '') {
1920: my ($prefix,$subdir,$rem) = ($relpath =~ m{^(default|\d+)/(\d+)/(.+)$});
1921: my ($newloc,$newdocsdir) = ($folder =~ /^(default|supplemental)_?(\d*)/);
1922: my $newprefix = $newloc;
1923: if ($newloc eq 'default') {
1924: $newprefix = 'docs';
1925: }
1926: if ($newdocsdir eq '') {
1927: $newdocsdir = 'default';
1928: }
1.630 raeburn 1929: if (($prefixchg{$suffix}) ||
1930: ($srcdom{$suffix} ne $coursedom) ||
1.538 raeburn 1931: ($srcnum{$suffix} ne $coursenum) ||
1932: ($env{'form.docs.markedcopy_options_'.$suffix} ne 'move')) {
1933: my $newpath = "$newprefix/$newdocsdir/$newidx/$rem";
1934: $url =
1935: &Apache::lonclonecourse::writefile($env{'request.course.id'},$newpath,
1936: &Apache::lonnet::getfile($oldurl));
1937: if ($url eq '/adm/notfound.html') {
1938: $msgs{$suffix} = &mt('Paste failed: an error occurred saving the file.');
1939: next;
1940: } else {
1941: my ($newsubpath) = ($newpath =~ m{^(.*/)[^/]*$});
1942: $newsubpath =~ s{/+$}{/};
1943: $docmoves{$oldurl} = $newsubpath;
1944: }
1.491 raeburn 1945: }
1946: }
1.597 raeburn 1947: } elsif ($url =~ m{^/res/lib/templates/(\w+)\.problem$}) {
1948: my $template = $1;
1949: if ($newidx) {
1950: ©_templated_files($url,$srcdom{$suffix},$srcnum{$suffix},$srcmapidx{$suffix},
1951: $coursedom,$coursenum,$template,$newidx,"$folder.$container");
1952: }
1.491 raeburn 1953: }
1.538 raeburn 1954: $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
1955: ':'.$ext.':normal:res';
1956: push(@LONCAPA::map::order,$newidx);
1957: # Store the result
1958: my ($errtext,$fatal) =
1959: &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
1960: if ($fatal) {
1961: $save_err .= $errtext;
1962: $allresult = 'fail';
1963: }
1.488 raeburn 1964: }
1.538 raeburn 1965:
1.597 raeburn 1966: # Apply any changes to maps, or copy dependencies for uploaded HTML pages, or update
1967: # resourcedata for simpleproblems copied from another course
1.538 raeburn 1968: unless ($allresult eq 'fail') {
1969: my %updated = (
1970: rewrites => \%rewrites,
1971: zombies => \%zombies,
1972: removefrommap => \%removefrommap,
1973: removeparam => \%removeparam,
1974: dbcopies => \%dbcopies,
1.597 raeburn 1975: resdatacopy => \%resdatacopy,
1.538 raeburn 1976: retitles => \%retitles,
1977: );
1978: my %info = (
1979: newsubdir => \%newsubdir,
1980: params => \%params,
1981: );
1982: if ($prefixchg{$suffix}) {
1983: $info{'before'} = $before{$prefixchg{$suffix}};
1984: $info{'after'} = $after{$prefixchg{$suffix}};
1985: }
1986: my %moves = (
1987: copies => \%copies,
1988: docmoves => \%docmoves,
1989: mapmoves => \%mapmoves,
1990: );
1991: (my $result,$msgs{$suffix},my $lockerror) =
1992: &apply_fixups($folder,$is_map{$suffix},$coursedom,$coursenum,$errors,
1993: \%updated,\%info,\%moves,$prefixchg{$suffix},$oldurl,
1994: $url,'paste');
1995: $lockerrors .= $lockerror;
1996: if ($result eq 'ok') {
1997: if ($is_map{$suffix}) {
1998: my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
1999: $folder.'.'.$container);
2000: if ($fatal) {
2001: $allresult = 'failread';
2002: } else {
2003: if ($#LONCAPA::map::order<1) {
2004: my $idx=&LONCAPA::map::getresidx();
2005: if ($idx<=0) { $idx=1; }
2006: $LONCAPA::map::order[0]=$idx;
2007: $LONCAPA::map::resources[$idx]='';
2008: }
2009: my $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
2010: $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
2011: ':'.$ext.':normal:res';
2012: push(@LONCAPA::map::order,$newidx);
1.492 raeburn 2013:
2014: # Store the result
1.538 raeburn 2015: my ($errtext,$fatal) =
2016: &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
2017: if ($fatal) {
2018: $save_err .= $errtext;
2019: $allresult = 'failstore';
2020: }
2021: }
2022: }
2023: if ($env{'form.docs.markedcopy_options_'.$suffix} eq 'move') {
2024: push(@toclear,$suffix);
2025: }
2026: }
1.492 raeburn 2027: }
2028: }
1.538 raeburn 2029: &clear_from_buffer(\@toclear,\@currpaste);
2030: my $msgsarray;
2031: foreach my $suffix (keys(%msgs)) {
2032: if (ref($msgs{$suffix}) eq 'ARRAY') {
2033: $msgsarray .= join(',',@{$msgs{$suffix}});
2034: }
2035: }
2036: return ($allresult,$save_err,$msgsarray,$lockerrors);
2037: }
1.533 raeburn 2038:
1.538 raeburn 2039: sub do_buffer_empty {
2040: my @currpaste = split(/,/,$env{'docs.markedcopies'});
2041: if (@currpaste == 0) {
2042: return &mt('Clipboard is already empty');
2043: }
2044: my @toclear = &Apache::loncommon::get_env_multiple('form.pasting');
2045: if (@toclear == 0) {
2046: return &mt('Nothing selected to clear from clipboard');
2047: }
2048: my $numdel = &clear_from_buffer(\@toclear,\@currpaste);
2049: if ($numdel) {
2050: return &mt('[quant,_1,item] cleared from clipboard',$numdel);
2051: } else {
2052: return &mt('Clipboard unchanged');
1.492 raeburn 2053: }
1.538 raeburn 2054: return;
2055: }
2056:
2057: sub clear_from_buffer {
2058: my ($toclear,$currpaste) = @_;
2059: return unless ((ref($toclear) eq 'ARRAY') && (ref($currpaste) eq 'ARRAY'));
2060: my %pastebuffer;
2061: map { $pastebuffer{$_} = 1; } @{$currpaste};
2062: my $numdel = 0;
2063: foreach my $suffix (@{$toclear}) {
2064: next if ($suffix =~ /\D/);
2065: next unless (exists($pastebuffer{$suffix}));
2066: my $regexp = 'docs.markedcopy_[a-z]+_'.$suffix;
2067: if (&Apache::lonnet::delenv($regexp,1) eq 'ok') {
2068: delete($pastebuffer{$suffix});
2069: $numdel ++;
2070: }
2071: }
2072: my $newbuffer = join(',',sort(keys(%pastebuffer)));
2073: &Apache::lonnet::appenv({'docs.markedcopies' => $newbuffer});
2074: return $numdel;
1.492 raeburn 2075: }
2076:
2077: sub get_newmap_url {
2078: my ($url,$folder,$prefixchg,$coursedom,$coursenum,$srcdom,$srcnum,
2079: $titleref,$allmaps,$newurls) = @_;
2080: my $newurl;
2081: if ($url=~ m{^/uploaded/}) {
2082: $$titleref=&mt('Copy of').' '.$$titleref;
2083: }
2084: my $now = time;
2085: my $suffix=$$.int(rand(100)).$now;
2086: my ($oldid,$ext) = ($url=~/^(.+)\.(\w+)$/);
2087: if ($oldid =~ m{^(/uploaded/$match_domain/$match_courseid/)(\D+)(\d+)$}) {
2088: my $path = $1;
2089: my $prefix = $2;
2090: my $ancestor = $3;
2091: if (length($ancestor) > 10) {
2092: $ancestor = substr($ancestor,-10,10);
2093: }
2094: my $newid;
2095: if ($prefixchg) {
2096: if ($folder =~ /^supplemental/) {
2097: $prefix =~ s/^default/supplemental/;
2098: } else {
2099: $prefix =~ s/^supplemental/default/;
2100: }
2101: }
2102: if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) {
2103: $newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext;
2104: } else {
2105: $newurl = "/uploaded/$coursedom/$coursenum/$prefix".$now.'.'.$ext;
2106: }
2107: my $counter = 0;
2108: my $is_unique = &uniqueness_check($newurl);
2109: if ($folder =~ /^default/) {
2110: if ($allmaps->{$newurl}) {
2111: $is_unique = 0;
2112: }
2113: }
2114: while ((!$is_unique || $allmaps->{$newurl} || $newurls->{$newurl}) && ($counter < 100)) {
2115: $counter ++;
2116: $suffix ++;
2117: if (($srcdom eq $coursedom) && ($srcnum eq $coursenum)) {
2118: $newurl = $path.$prefix.$ancestor.$suffix.'.'.$ext;
2119: } else {
2120: $newurl = "/uploaded/$coursedom/$coursenum/$prefix".$ancestor.$suffix.'.'.$ext;
2121: }
2122: $is_unique = &uniqueness_check($newurl);
2123: }
2124: if ($is_unique) {
2125: $newurls->{$newurl} = 1;
2126: } else {
2127: if ($url=~/\.page$/) {
2128: return (undef,&mt('Paste failed: an error occurred creating a unique URL for the composite page'));
2129: } else {
2130: return (undef,&mt('Paste failed: an error occurred creating a unique URL for the folder'));
2131: }
2132: }
1.329 droeschl 2133: }
1.492 raeburn 2134: return ($newurl);
1.329 droeschl 2135: }
2136:
1.488 raeburn 2137: sub dbcopy {
1.533 raeburn 2138: my ($dbref,$coursedom,$coursenum,$lockerrorsref) = @_;
2139: my ($url,$result,$errtext);
2140: if (ref($dbref) eq 'HASH') {
1.596 raeburn 2141: $url = $dbref->{'src'};
1.627 raeburn 2142: if ($url =~ m{/(smppg|bulletinboard|ext\.tool)$}) {
1.533 raeburn 2143: my $prefix = $1;
1.627 raeburn 2144: if ($prefix eq 'ext.tool') {
2145: $prefix = 'exttool';
2146: }
1.533 raeburn 2147: if (($dbref->{'cdom'} =~ /^$match_domain$/) &&
2148: ($dbref->{'cnum'} =~ /^$match_courseid$/)) {
2149: my $db_name;
2150: my $marker = (split(m{/},$url))[4];
2151: $marker=~s/\D//g;
2152: if ($dbref->{'src'} =~ m{/smppg$}) {
2153: $db_name =
2154: &Apache::lonsimplepage::get_db_name($url,$marker,
2155: $dbref->{'cdom'},
2156: $dbref->{'cnum'});
1.627 raeburn 2157: } elsif ($dbref->{'src'} =~ m{/ext\.tool$}) {
2158: $db_name = 'exttool_'.$marker;
1.533 raeburn 2159: } else {
2160: $db_name = 'bulletinpage_'.$marker;
2161: }
2162: my ($suffix,$freedlock,$error) =
2163: &Apache::lonnet::get_timebased_id($prefix,'num','templated',
2164: $coursedom,$coursenum,
2165: 'concat');
2166: if (!$suffix) {
2167: if ($prefix eq 'smppg') {
2168: $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying a simple page [_1].',$url);
1.631 raeburn 2169: } elsif ($prefix eq 'exttool') {
2170: $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying an external tool [_1].',$url);
1.533 raeburn 2171: } else {
1.565 bisitz 2172: $errtext = &mt('Failed to acquire a unique timestamp-based suffix when copying a discussion board [_1].',$url);
1.533 raeburn 2173: }
2174: if ($error) {
2175: $errtext .= '<br />'.$error;
2176: }
2177: } else {
2178: #need to copy the db contents to a new one.
2179: my %contents=&Apache::lonnet::dump($db_name,
2180: $dbref->{'cdom'},
2181: $dbref->{'cnum'});
2182: if (exists($contents{'uploaded.photourl'})) {
2183: my $photo = $contents{'uploaded.photourl'};
2184: my ($subdir,$fname) =
2185: ($photo =~ m{^/uploaded/$match_domain/$match_courseid/+(bulletin|simplepage)/(?:|\d+/)([^/]+)$});
1.596 raeburn 2186: my $newphoto;
1.533 raeburn 2187: if ($fname ne '') {
2188: my $content = &Apache::lonnet::getfile($photo);
2189: unless ($content eq '-1') {
2190: $env{'form.'.$suffix.'.photourl'} = $content;
2191: $newphoto =
2192: &Apache::lonnet::finishuserfileupload($coursenum,$coursedom,$suffix.'.photourl',"$subdir/$suffix/$fname");
2193: delete($env{'form.'.$suffix.'.photourl'});
2194: }
2195: }
2196: if ($newphoto =~ m{^/uploaded/}) {
2197: $contents{'uploaded.photourl'} = $newphoto;
2198: }
2199: }
2200: $db_name =~ s{_\d*$ }{_$suffix}x;
2201: $result=&Apache::lonnet::put($db_name,\%contents,
2202: $coursedom,$coursenum);
2203: if ($result eq 'ok') {
1.627 raeburn 2204: $url =~ s{/(\d*)/(smppg|bulletinboard|ext\.tool)$}{/$suffix/$2}x;
1.533 raeburn 2205: }
2206: }
2207: if (($freedlock ne 'ok') && (ref($lockerrorsref) eq 'HASH')) {
1.559 raeburn 2208: $lockerrorsref->{$prefix} =
1.533 raeburn 2209: '<div class="LC_error">'.
2210: &mt('There was a problem removing a lockfile.');
2211: if ($prefix eq 'smppg') {
1.560 raeburn 2212: $lockerrorsref->{$prefix} .=
1.559 raeburn 2213: ' '.&mt('This will prevent creation of additional simple pages in this course.');
1.627 raeburn 2214: } elsif ($prefix eq 'exttool') {
2215: $lockerrorsref->{$prefix} .=
2216: ' '.&mt('This will prevent addition of more external tools to this course.');
1.533 raeburn 2217: } else {
1.565 bisitz 2218: $lockerrorsref->{$prefix} .= ' '.&mt('This will prevent creation of additional discussion boards in this course.');
1.533 raeburn 2219: }
1.560 raeburn 2220: $lockerrorsref->{$prefix} .= ' '.&mt('Please contact the [_1]helpdesk[_2] for assistance.',
2221: '<a href="/adm/helpdesk" target="_helpdesk">','</a>').
2222: '</div>';
1.533 raeburn 2223: }
2224: }
2225: } elsif ($url =~ m{/syllabus$}) {
2226: if (($dbref->{'cdom'} =~ /^$match_domain$/) &&
2227: ($dbref->{'cnum'} =~ /^$match_courseid$/)) {
2228: if (($dbref->{'cdom'} ne $coursedom) ||
2229: ($dbref->{'cnum'} ne $coursenum)) {
2230: my %contents=&Apache::lonnet::dump('syllabus',
2231: $dbref->{'cdom'},
2232: $dbref->{'cnum'});
2233: $result=&Apache::lonnet::put('syllabus',\%contents,
2234: $coursedom,$coursenum);
2235: }
2236: }
1.488 raeburn 2237: }
2238: }
1.533 raeburn 2239: return ($url,$result,$errtext);
1.488 raeburn 2240: }
2241:
1.597 raeburn 2242: sub copy_templated_files {
2243: my ($srcurl,$srcdom,$srcnum,$srcmapinfo,$coursedom,$coursenum,$template,$newidx,$newmapname) = @_;
2244: my ($srcfolder,$srcid,$srcwaspage) = split(/:/,$srcmapinfo);
2245: my $srccontainer = 'sequence';
2246: if ($srcwaspage) {
2247: $srccontainer = 'page';
2248: }
2249: my $srcsymb = "uploaded/$srcdom/$srcnum/$srcfolder.$srccontainer".
2250: '___'.$srcid.'___'.&Apache::lonnet::declutter($srcurl);
2251: my $srcprefix = $srcdom.'_'.$srcnum.'.'.$srcsymb;
2252: my %srcparms=&Apache::lonnet::dump('resourcedata',$srcdom,$srcnum,$srcprefix);
2253: my $newsymb = "uploaded/$coursedom/$coursenum/$newmapname".'___'.$newidx.'___lib/templates/'.
2254: $template.'.problem';
2255: my $newprefix = $coursedom.'_'.$coursenum.'.'.$newsymb;
2256: if ($template eq 'simpleproblem') {
2257: $srcprefix .= '.0.';
2258: my $weightprefix = $newprefix;
2259: $newprefix .= '.0.';
2260: my @simpleprobqtypes = qw(radio option string essay numerical);
2261: my $qtype=$srcparms{$srcprefix.'questiontype'};
2262: if (grep(/^\Q$qtype\E$/,@simpleprobqtypes)) {
2263: my %newdata;
2264: foreach my $type (@simpleprobqtypes) {
2265: if ($type eq $qtype) {
2266: $newdata{"$weightprefix.$type.weight"}=1;
2267: } else {
2268: $newdata{"$weightprefix.$type.weight"}=0;
2269: }
2270: }
2271: $newdata{$newprefix.'hiddenparts'} = '!'.$qtype;
2272: $newdata{$newprefix.'questiontext'} = $srcparms{$srcprefix.'questiontext'};
2273: $newdata{$newprefix.'hinttext'} = $srcparms{$srcprefix.'hinttext'};
2274: if ($qtype eq 'numerical') {
2275: $newdata{$newprefix.'numericalscript'} = $srcparms{$srcprefix.'numericalscript'};
2276: $newdata{$newprefix.'numericalanswer'} = $srcparms{$srcprefix.'numericalanswer'};
2277: $newdata{$newprefix.'numericaltolerance'} = $srcparms{$srcprefix.'numericaltolerance'};
2278: $newdata{$newprefix.'numericalsigfigs'} = $srcparms{$srcprefix.'numericalsigfigs'};
2279: } elsif (($qtype eq 'option') || ($qtype eq 'radio')) {
2280: my $maxfoils=$srcparms{$srcprefix.'maxfoils'};
2281: unless (defined($maxfoils)) { $maxfoils=10; }
2282: unless ($maxfoils=~/^\d+$/) { $maxfoils=10; }
2283: if ($maxfoils<=0) { $maxfoils=10; }
2284: my $randomize=$srcparms{$srcprefix.'randomize'};
2285: unless (defined($randomize)) { $randomize='yes'; }
2286: unless ($randomize eq 'no') { $randomize='yes'; }
2287: $newdata{$newprefix.'maxfoils'} = $maxfoils;
2288: $newdata{$newprefix.'randomize'} = $randomize;
2289: if ($qtype eq 'option') {
2290: $newdata{$newprefix.'options'} = $srcparms{$srcprefix.'options'};
2291: }
2292: for (my $i=1; $i<=10; $i++) {
2293: $newdata{$newprefix.'value'.$i} = $srcparms{$srcprefix.'value'.$i};
2294: $newdata{$newprefix.'position'.$i} = $srcparms{$srcprefix.'position'.$i};
2295: $newdata{$newprefix.'text'.$i} = $srcparms{$srcprefix.'text'.$i};
2296: }
2297:
2298: } elsif (($qtype eq 'option') || ($qtype eq 'radio')) {
2299: my $maxfoils=$srcparms{$srcprefix.'maxfoils'};
2300: unless (defined($maxfoils)) { $maxfoils=10; }
2301: unless ($maxfoils=~/^\d+$/) { $maxfoils=10; }
2302: if ($maxfoils<=0) { $maxfoils=10; }
2303: my $randomize=$srcparms{$srcprefix.'randomize'};
2304: unless (defined($randomize)) { $randomize='yes'; }
2305: unless ($randomize eq 'no') { $randomize='yes'; }
2306: $newdata{$newprefix.'maxfoils'} = $maxfoils;
2307: $newdata{$newprefix.'randomize'} = $randomize;
2308: if ($qtype eq 'option') {
2309: $newdata{$newprefix.'options'} = $srcparms{$srcprefix.'options'};
2310: }
2311: for (my $i=1; $i<=10; $i++) {
2312: $newdata{$newprefix.'value'.$i} = $srcparms{$srcprefix.'value'.$i};
2313: $newdata{$newprefix.'position'.$i} = $srcparms{$srcprefix.'position'.$i};
2314: $newdata{$newprefix.'text'.$i} = $srcparms{$srcprefix.'text'.$i};
2315: }
2316: } elsif ($qtype eq 'string') {
2317: $newdata{$newprefix.'stringanswer'} = $srcparms{$srcprefix.'stringanswer'};
2318: $newdata{$newprefix.'stringtype'} = $srcparms{$srcprefix.'stringtype'};
2319: }
2320: if (keys(%newdata)) {
2321: my $putres = &Apache::lonnet::cput('resourcedata',\%newdata,$coursedom,
2322: $coursenum);
2323: if ($putres eq 'ok') {
2324: &Apache::lonnet::devalidatecourseresdata($coursenum,$coursedom);
2325: }
2326: }
2327: }
2328: }
2329: }
2330:
1.329 droeschl 2331: sub uniqueness_check {
2332: my ($newurl) = @_;
2333: my $unique = 1;
2334: foreach my $res (@LONCAPA::map::order) {
2335: my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
2336: $url=&LONCAPA::map::qtescape($url);
2337: if ($newurl eq $url) {
2338: $unique = 0;
1.344 bisitz 2339: last;
1.329 droeschl 2340: }
2341: }
2342: return $unique;
2343: }
2344:
1.488 raeburn 2345: sub contained_map_check {
1.627 raeburn 2346: my ($url,$folder,$coursenum,$coursedom,$removefrommap,$removeparam,$addedmaps,
2347: $hierarchy,$titles,$allmaps) = @_;
1.488 raeburn 2348: my $content = &Apache::lonnet::getfile($url);
2349: unless ($content eq '-1') {
2350: my $parser = HTML::TokeParser->new(\$content);
2351: $parser->attr_encoded(1);
2352: while (my $token = $parser->get_token) {
2353: next if ($token->[0] ne 'S');
2354: if ($token->[1] eq 'resource') {
2355: next if ($token->[2]->{'type'} eq 'zombie');
2356: my $ressrc = $token->[2]->{'src'};
1.627 raeburn 2357: if ($ressrc =~ m{^/adm/($match_domain)/$match_courseid/\d+/ext\.tool$}) {
2358: my $srcdom = $1;
2359: unless ($srcdom eq $coursedom) {
2360: $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
2361: next;
2362: }
2363: } elsif ($folder =~ /^supplemental/) {
1.488 raeburn 2364: unless (&supp_pasteable($ressrc)) {
1.492 raeburn 2365: $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
1.488 raeburn 2366: next;
2367: }
2368: }
1.492 raeburn 2369: if ($ressrc =~ m{^/(res|uploaded)/.+\.(sequence|page)$}) {
2370: if ($1 eq 'uploaded') {
2371: $hierarchy->{$url}{$token->[2]->{'id'}} = $ressrc;
2372: $titles->{$url}{$token->[2]->{'id'}} = $token->[2]->{'title'};
1.488 raeburn 2373: } else {
1.492 raeburn 2374: if ($allmaps->{$ressrc}) {
1.529 raeburn 2375: $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
1.492 raeburn 2376: } elsif (ref($addedmaps->{$ressrc}) eq 'ARRAY') {
2377: $removefrommap->{$url}{$token->[2]->{'id'}} = $ressrc;
2378: } else {
2379: $addedmaps->{$ressrc} = [$url];
2380: }
1.488 raeburn 2381: }
1.627 raeburn 2382: &contained_map_check($ressrc,$folder,$coursenum,$coursedom,$removefrommap,
2383: $removeparam,$addedmaps,$hierarchy,$titles,$allmaps);
1.488 raeburn 2384: }
1.492 raeburn 2385: } elsif ($token->[1] eq 'param') {
1.488 raeburn 2386: if ($folder =~ /^supplemental/) {
1.492 raeburn 2387: if (ref($removeparam->{$url}{$token->[2]->{'to'}}) eq 'ARRAY') {
2388: push(@{$removeparam->{$url}{$token->[2]->{'to'}}},$token->[2]->{'name'});
2389: } else {
2390: $removeparam->{$url}{$token->[2]->{'to'}} = [$token->[2]->{'name'}];
2391: }
1.488 raeburn 2392: }
2393: }
2394: }
2395: }
2396: return;
2397: }
2398:
2399: sub url_paste_fixups {
1.533 raeburn 2400: my ($oldurl,$folder,$prefixchg,$cdom,$cnum,$fromcdom,$fromcnum,$allmaps,
2401: $rewrites,$retitles,$copies,$dbcopies,$zombies,$params,$mapmoves,
1.597 raeburn 2402: $mapchanges,$tomove,$newsubdir,$newurls,$resdatacopy) = @_;
1.491 raeburn 2403: my $checktitle;
2404: if (($prefixchg) &&
1.492 raeburn 2405: ($oldurl =~ m{^/uploaded/$match_domain/$match_courseid/supplemental})) {
1.491 raeburn 2406: $checktitle = 1;
2407: }
1.492 raeburn 2408: my $skip;
2409: if ($oldurl =~ m{^\Q/uploaded/$cdom/$cnum/\E(default|supplemental)(_?\d*)\.(?:page|sequence)$}) {
2410: my $mapid = $1.$2;
2411: if ($tomove->{$mapid}) {
2412: $skip = 1;
2413: }
2414: }
1.491 raeburn 2415: my $file = &Apache::lonnet::getfile($oldurl);
1.488 raeburn 2416: return if ($file eq '-1');
2417: my $parser = HTML::TokeParser->new(\$file);
2418: $parser->attr_encoded(1);
1.491 raeburn 2419: my $changed = 0;
1.488 raeburn 2420: while (my $token = $parser->get_token) {
2421: next if ($token->[0] ne 'S');
2422: if ($token->[1] eq 'resource') {
2423: my $ressrc = $token->[2]->{'src'};
2424: next if ($ressrc eq '');
1.491 raeburn 2425: my $id = $token->[2]->{'id'};
1.492 raeburn 2426: my $title = $token->[2]->{'title'};
1.491 raeburn 2427: if ($checktitle) {
2428: if ($title =~ m{\d+\Q___&&&___\E$match_username\Q___&&&___\E$match_domain\Q___&&&___\E(.+)$}) {
1.532 raeburn 2429: $retitles->{$oldurl}{$id} = $ressrc;
1.491 raeburn 2430: }
2431: }
1.488 raeburn 2432: next if ($token->[2]->{'type'} eq 'external');
2433: if ($token->[2]->{'type'} eq 'zombie') {
1.492 raeburn 2434: next if ($skip);
1.532 raeburn 2435: $zombies->{$oldurl}{$id} = $ressrc;
1.491 raeburn 2436: $changed = 1;
2437: } elsif ($ressrc =~ m{^/uploaded/($match_domain)/($match_courseid)/(.+)$}) {
1.492 raeburn 2438: my $srcdom = $1;
2439: my $srcnum = $2;
1.488 raeburn 2440: my $rem = $3;
1.492 raeburn 2441: my $newurl;
2442: my $mapname;
2443: if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) {
2444: my $prefix = $1;
2445: $mapname = $prefix.$2;
2446: if ($tomove->{$mapname}) {
1.533 raeburn 2447: &url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,$cnum,
2448: $srcdom,$srcnum,$allmaps,$rewrites,
2449: $retitles,$copies,$dbcopies,$zombies,
2450: $params,$mapmoves,$mapchanges,$tomove,
1.597 raeburn 2451: $newsubdir,$newurls,$resdatacopy);
1.492 raeburn 2452: next;
2453: } else {
2454: ($newurl,my $error) =
2455: &get_newmap_url($ressrc,$folder,$prefixchg,$cdom,$cnum,
2456: $srcdom,$srcnum,\$title,$allmaps,$newurls);
2457: if ($newurl =~ /(?:default|supplemental)_(\d+)\.(?:sequence|page)$/) {
2458: $newsubdir->{$ressrc} = $1;
2459: }
2460: if ($error) {
2461: next;
2462: }
2463: }
2464: }
2465: if (($srcdom ne $cdom) || ($srcnum ne $cnum) || ($prefixchg) ||
2466: ($mapchanges->{$oldurl}) || (($newurl ne '') && ($newurl ne $oldurl))) {
2467:
1.488 raeburn 2468: if ($rem =~ /^(default|supplemental)(_?\d*).(sequence|page)$/) {
1.532 raeburn 2469: $rewrites->{$oldurl}{$id} = $ressrc;
1.491 raeburn 2470: $mapchanges->{$ressrc} = 1;
1.533 raeburn 2471: unless (&url_paste_fixups($ressrc,$folder,$prefixchg,$cdom,
2472: $cnum,$srcdom,$srcnum,$allmaps,
2473: $rewrites,$retitles,$copies,$dbcopies,
2474: $zombies,$params,$mapmoves,$mapchanges,
1.597 raeburn 2475: $tomove,$newsubdir,$newurls,$resdatacopy)) {
1.491 raeburn 2476: $mapmoves->{$ressrc} = 1;
2477: }
2478: $changed = 1;
1.488 raeburn 2479: } else {
1.532 raeburn 2480: $rewrites->{$oldurl}{$id} = $ressrc;
1.488 raeburn 2481: $copies->{$oldurl}{$ressrc} = $id;
1.491 raeburn 2482: $changed = 1;
1.488 raeburn 2483: }
2484: }
1.533 raeburn 2485: } elsif ($ressrc =~ m{^/adm/($match_domain)/($match_courseid)/.+$}) {
2486: next if ($skip);
1.492 raeburn 2487: my $srcdom = $1;
2488: my $srcnum = $2;
2489: if (($srcdom ne $cdom) || ($srcnum ne $cnum)) {
1.532 raeburn 2490: $rewrites->{$oldurl}{$id} = $ressrc;
1.533 raeburn 2491: $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
2492: $dbcopies->{$oldurl}{$id}{'cdom'} = $srcdom;
2493: $dbcopies->{$oldurl}{$id}{'cnum'} = $srcnum;
2494: $changed = 1;
2495: }
2496: } elsif ($ressrc =~ m{^/adm/$match_domain/$match_username/\d+/(smppg|bulletinboard)$}) {
2497: if (($fromcdom ne $cdom) || ($fromcnum ne $cnum) ||
2498: ($env{'form.docs.markedcopy_options'} ne 'move')) {
2499: $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
2500: $dbcopies->{$oldurl}{$id}{'cdom'} = $fromcdom;
2501: $dbcopies->{$oldurl}{$id}{'cnum'} = $fromcnum;
1.491 raeburn 2502: $changed = 1;
1.488 raeburn 2503: }
1.597 raeburn 2504: } elsif ($ressrc eq '/res/lib/templates/simpleproblem.problem') {
2505: if (($fromcdom ne $cdom) || ($fromcnum ne $cnum)) {
2506: $resdatacopy->{$oldurl}{$id}{'src'} = $ressrc;
2507: $resdatacopy->{$oldurl}{$id}{'cdom'} = $fromcdom;
2508: $resdatacopy->{$oldurl}{$id}{'cnum'} = $fromcnum;
2509: }
1.488 raeburn 2510: } elsif ($ressrc =~ m{^/public/($match_domain)/($match_courseid)/(.+)$}) {
1.492 raeburn 2511: next if ($skip);
2512: my $srcdom = $1;
2513: my $srcnum = $2;
2514: if (($srcdom ne $cdom) || ($srcnum ne $cnum)) {
1.533 raeburn 2515: $dbcopies->{$oldurl}{$id}{'src'} = $ressrc;
2516: $dbcopies->{$oldurl}{$id}{'cdom'} = $srcdom;
2517: $dbcopies->{$oldurl}{$id}{'cnum'} = $srcnum;
1.491 raeburn 2518: $changed = 1;
1.488 raeburn 2519: }
2520: }
2521: } elsif ($token->[1] eq 'param') {
1.492 raeburn 2522: next if ($skip);
1.488 raeburn 2523: my $to = $token->[2]->{'to'};
2524: if ($to ne '') {
2525: if (ref($params->{$oldurl}{$to}) eq 'ARRAY') {
1.492 raeburn 2526: push(@{$params->{$oldurl}{$to}},$token->[2]->{'name'});
1.488 raeburn 2527: } else {
2528: @{$params->{$oldurl}{$to}} = ($token->[2]->{'name'});
2529: }
2530: }
2531: }
2532: }
1.491 raeburn 2533: return $changed;
1.488 raeburn 2534: }
2535:
2536: sub apply_fixups {
1.529 raeburn 2537: my ($folder,$is_map,$cdom,$cnum,$errors,$updated,$info,$moves,$prefixchg,
2538: $oldurl,$url,$caller) = @_;
2539: my (%rewrites,%zombies,%removefrommap,%removeparam,%dbcopies,%retitles,
1.533 raeburn 2540: %params,%newsubdir,%before,%after,%copies,%docmoves,%mapmoves,@msgs,
1.597 raeburn 2541: %resdatacopy,%lockerrors,$lockmsg);
1.529 raeburn 2542: if (ref($updated) eq 'HASH') {
2543: if (ref($updated->{'rewrites'}) eq 'HASH') {
2544: %rewrites = %{$updated->{'rewrites'}};
2545: }
2546: if (ref($updated->{'zombies'}) eq 'HASH') {
2547: %zombies = %{$updated->{'zombies'}};
2548: }
2549: if (ref($updated->{'removefrommap'}) eq 'HASH') {
2550: %removefrommap = %{$updated->{'removefrommap'}};
2551: }
2552: if (ref($updated->{'removeparam'}) eq 'HASH') {
2553: %removeparam = %{$updated->{'removeparam'}};
2554: }
2555: if (ref($updated->{'dbcopies'}) eq 'HASH') {
2556: %dbcopies = %{$updated->{'dbcopies'}};
2557: }
2558: if (ref($updated->{'retitles'}) eq 'HASH') {
2559: %retitles = %{$updated->{'retitles'}};
2560: }
1.597 raeburn 2561: if (ref($updated->{'resdatacopy'}) eq 'HASH') {
2562: %resdatacopy = %{$updated->{'resdatacopy'}};
2563: }
1.529 raeburn 2564: }
2565: if (ref($info) eq 'HASH') {
2566: if (ref($info->{'newsubdir'}) eq 'HASH') {
2567: %newsubdir = %{$info->{'newsubdir'}};
2568: }
2569: if (ref($info->{'params'}) eq 'HASH') {
2570: %params = %{$info->{'params'}};
2571: }
2572: if (ref($info->{'before'}) eq 'HASH') {
2573: %before = %{$info->{'before'}};
2574: }
2575: if (ref($info->{'after'}) eq 'HASH') {
2576: %after = %{$info->{'after'}};
2577: }
2578: }
2579: if (ref($moves) eq 'HASH') {
2580: if (ref($moves->{'copies'}) eq 'HASH') {
2581: %copies = %{$moves->{'copies'}};
2582: }
2583: if (ref($moves->{'docmoves'}) eq 'HASH') {
2584: %docmoves = %{$moves->{'docmoves'}};
2585: }
2586: if (ref($moves->{'mapmoves'}) eq 'HASH') {
2587: %mapmoves = %{$moves->{'mapmoves'}};
2588: }
2589: }
2590: foreach my $key (keys(%copies),keys(%docmoves)) {
1.491 raeburn 2591: my @allcopies;
1.529 raeburn 2592: if (exists($copies{$key})) {
2593: if (ref($copies{$key}) eq 'HASH') {
2594: my %added;
2595: foreach my $innerkey (keys(%{$copies{$key}})) {
2596: if (($innerkey ne '') && (!$added{$innerkey})) {
2597: push(@allcopies,$innerkey);
2598: $added{$innerkey} = 1;
2599: }
1.491 raeburn 2600: }
1.529 raeburn 2601: undef(%added);
1.491 raeburn 2602: }
2603: }
2604: if ($key eq $oldurl) {
1.529 raeburn 2605: if ((exists($docmoves{$key}))) {
1.532 raeburn 2606: unless (grep(/^\Q$oldurl\E$/,@allcopies)) {
1.491 raeburn 2607: push(@allcopies,$oldurl);
2608: }
2609: }
2610: }
2611: if (@allcopies > 0) {
2612: foreach my $item (@allcopies) {
1.492 raeburn 2613: my ($relpath,$oldsubdir,$fname) =
2614: ($item =~ m{^(/uploaded/$match_domain/$match_courseid/(?:docs|supplemental)/(default|\d+)/.*/)([^/]+)$});
1.491 raeburn 2615: if ($fname ne '') {
2616: my $content = &Apache::lonnet::getfile($item);
2617: unless ($content eq '-1') {
2618: my $storefn;
1.529 raeburn 2619: if (($key eq $oldurl) && (exists($docmoves{$key}))) {
2620: $storefn = $docmoves{$key};
1.491 raeburn 2621: } else {
2622: $storefn = $relpath;
2623: $storefn =~s{^/uploaded/$match_domain/$match_courseid/}{};
1.529 raeburn 2624: if ($prefixchg && $before{'doc'} && $after{'doc'}) {
2625: $storefn =~ s/^\Q$before{'doc'}\E/$after{'doc'}/;
1.491 raeburn 2626: }
1.529 raeburn 2627: if ($newsubdir{$key}) {
1.532 raeburn 2628: $storefn =~ s#^(docs|supplemental)/\Q$oldsubdir\E/#$1/$newsubdir{$key}/#;
1.491 raeburn 2629: }
2630: }
2631: ©_dependencies($item,$storefn,$relpath,$errors,\$content);
2632: my $copyurl =
2633: &Apache::lonclonecourse::writefile($env{'request.course.id'},
2634: $storefn.$fname,$content);
2635: if ($copyurl eq '/adm/notfound.html') {
1.529 raeburn 2636: if (exists($docmoves{$oldurl})) {
1.491 raeburn 2637: return &mt('Paste failed: an error occurred copying the file.');
2638: } elsif (ref($errors) eq 'HASH') {
2639: $errors->{$item} = 1;
1.489 raeburn 2640: }
2641: }
1.488 raeburn 2642: }
2643: }
1.491 raeburn 2644: }
2645: }
2646: }
1.529 raeburn 2647: foreach my $key (keys(%mapmoves)) {
1.491 raeburn 2648: my $storefn=$key;
2649: $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
1.529 raeburn 2650: if ($prefixchg && $before{'map'} && $after{'map'}) {
2651: $storefn =~ s/^\Q$before{'map'}\E/$after{'map'}/;
1.491 raeburn 2652: }
1.529 raeburn 2653: if ($newsubdir{$key}) {
2654: $storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
1.492 raeburn 2655: }
1.491 raeburn 2656: my $mapcontent = &Apache::lonnet::getfile($key);
2657: if ($mapcontent eq '-1') {
2658: if (ref($errors) eq 'HASH') {
2659: $errors->{$key} = 1;
2660: }
2661: } else {
2662: my $newmap =
2663: &Apache::lonclonecourse::writefile($env{'request.course.id'},$storefn,
2664: $mapcontent);
2665: if ($newmap eq '/adm/notfound.html') {
2666: if (ref($errors) eq 'HASH') {
2667: $errors->{$key} = 1;
1.489 raeburn 2668: }
1.488 raeburn 2669: }
2670: }
2671: }
1.491 raeburn 2672: my %updates;
2673: if ($is_map) {
1.529 raeburn 2674: if (ref($updated) eq 'HASH') {
2675: foreach my $type (keys(%{$updated})) {
2676: if (ref($updated->{$type}) eq 'HASH') {
2677: foreach my $key (keys(%{$updated->{$type}})) {
2678: $updates{$key} = 1;
2679: }
2680: }
2681: }
1.491 raeburn 2682: }
2683: foreach my $key (keys(%updates)) {
1.492 raeburn 2684: my (%torewrite,%toretitle,%toremove,%remparam,%currparam,%zombie,%newdb);
1.529 raeburn 2685: if (ref($rewrites{$key}) eq 'HASH') {
2686: %torewrite = %{$rewrites{$key}};
1.491 raeburn 2687: }
1.529 raeburn 2688: if (ref($retitles{$key}) eq 'HASH') {
2689: %toretitle = %{$retitles{$key}};
1.491 raeburn 2690: }
1.529 raeburn 2691: if (ref($removefrommap{$key}) eq 'HASH') {
2692: %toremove = %{$removefrommap{$key}};
1.491 raeburn 2693: }
1.529 raeburn 2694: if (ref($removeparam{$key}) eq 'HASH') {
2695: %remparam = %{$removeparam{$key}};
1.492 raeburn 2696: }
1.529 raeburn 2697: if (ref($zombies{$key}) eq 'HASH') {
2698: %zombie = %{$zombies{$key}};
1.491 raeburn 2699: }
1.529 raeburn 2700: if (ref($dbcopies{$key}) eq 'HASH') {
1.533 raeburn 2701: foreach my $idx (keys(%{$dbcopies{$key}})) {
2702: if (ref($dbcopies{$key}{$idx}) eq 'HASH') {
2703: my ($newurl,$result,$errtext) =
2704: &dbcopy($dbcopies{$key}{$idx},$cdom,$cnum,\%lockerrors);
2705: if ($result eq 'ok') {
2706: $newdb{$idx} = $newurl;
2707: } elsif (ref($errors) eq 'HASH') {
2708: $errors->{$key} = 1;
2709: }
2710: push(@msgs,$errtext);
2711: }
1.491 raeburn 2712: }
2713: }
1.597 raeburn 2714: if (ref($resdatacopy{$key}) eq 'HASH') {
2715: if ($newsubdir{$key}) {
2716:
2717: }
2718: foreach my $idx (keys(%{$resdatacopy{$key}})) {
2719: if (ref($resdatacopy{$key}{$idx}) eq 'HASH') {
2720: my $srcurl = $resdatacopy{$key}{$idx}{'src'};
2721: if ($srcurl =~ m{^/res/lib/templates/(\w+)\.problem$}) {
2722: my $template = $1;
2723: if (($resdatacopy{$key}{$idx}{'cdom'} =~ /^$match_domain$/) &&
2724: ($resdatacopy{$key}{$idx}{'cnum'} =~ /^$match_courseid$/)) {
2725: my $srcdom = $resdatacopy{$key}{$idx}{'cdom'};
2726: my $srcnum = $resdatacopy{$key}{$idx}{'cnum'};
2727: my ($newmapname) = ($key =~ m{/([^/]+)$});
2728: my ($srcfolder,$srccontainer) = split(/\./,$newmapname);
2729: my $srcmapinfo = $srcfolder.':'.$idx;
2730: if ($srccontainer eq 'page') {
2731: $srcmapinfo .= ':1';
2732: }
2733: if ($newsubdir{$key}) {
2734: $newmapname =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
2735: }
2736: ©_templated_files($srcurl,$srcdom,$srcnum,$srcmapinfo,$cdom,
2737: $cnum,$template,$idx,$newmapname);
2738: }
2739: }
2740: }
2741: }
2742: }
1.529 raeburn 2743: if (ref($params{$key}) eq 'HASH') {
2744: %currparam = %{$params{$key}};
1.492 raeburn 2745: }
2746: my ($errtext,$fatal) = &LONCAPA::map::mapread($key);
2747: if ($fatal) {
1.533 raeburn 2748: return ($errtext);
1.492 raeburn 2749: }
2750: for (my $i=0; $i<@LONCAPA::map::zombies; $i++) {
2751: if (defined($LONCAPA::map::zombies[$i])) {
2752: my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::zombies[$i]);
1.532 raeburn 2753: if ($zombie{$i} eq $src) {
1.492 raeburn 2754: undef($LONCAPA::map::zombies[$i]);
2755: }
2756: }
2757: }
1.529 raeburn 2758: for (my $i=0; $i<@LONCAPA::map::order; $i++) {
2759: my $idx = $LONCAPA::map::order[$i];
2760: if (defined($LONCAPA::map::resources[$idx])) {
1.492 raeburn 2761: my $changed;
1.529 raeburn 2762: my ($title,$src,$ext,$type)=split(/\:/,$LONCAPA::map::resources[$idx]);
1.538 raeburn 2763: if ((exists($toremove{$idx})) &&
2764: ($toremove{$idx} eq &LONCAPA::map::qtescape($src))) {
1.492 raeburn 2765: splice(@LONCAPA::map::order,$i,1);
1.529 raeburn 2766: if (ref($currparam{$idx}) eq 'ARRAY') {
2767: foreach my $name (@{$currparam{$idx}}) {
2768: &LONCAPA::map::delparameter($idx,'parameter_'.$name);
1.492 raeburn 2769: }
2770: }
2771: next;
2772: }
2773: my $origsrc = $src;
1.532 raeburn 2774: if ((exists($toretitle{$idx})) && ($toretitle{$idx} eq $src)) {
1.492 raeburn 2775: if ($title =~ m{^\d+\Q___&&&___\E$match_username\Q___&&&___\E$match_domain\Q___&&&___\E(.+)$}) {
2776: $changed = 1;
1.491 raeburn 2777: }
1.492 raeburn 2778: }
1.532 raeburn 2779: if ((exists($torewrite{$idx})) && ($torewrite{$idx} eq $src)) {
1.492 raeburn 2780: $src =~ s{^/(uploaded|adm|public)/$match_domain/$match_courseid/}{/$1/$cdom/$cnum/};
2781: if ($origsrc =~ m{^/uploaded/}) {
1.529 raeburn 2782: if ($prefixchg && $before{'map'} && $after{'map'}) {
1.492 raeburn 2783: if ($src =~ /\.(page|sequence)$/) {
1.529 raeburn 2784: $src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before{'map'}\E#$1$after{'map'}#;
1.492 raeburn 2785: } else {
1.529 raeburn 2786: $src =~ s#^(/uploaded/$match_domain/$match_courseid/)\Q$before{'doc'}\E#$1$after{'doc'}#;
1.488 raeburn 2787: }
1.491 raeburn 2788: }
1.532 raeburn 2789: if ($origsrc =~ /\.(page|sequence)$/) {
2790: if ($newsubdir{$origsrc}) {
1.529 raeburn 2791: $src =~ s#^(/uploaded/$match_domain/$match_courseid/(?:default|supplemental)_)(\d+)#$1$newsubdir{$origsrc}#;
1.491 raeburn 2792: }
1.532 raeburn 2793: } elsif ($newsubdir{$key}) {
2794: $src =~ s#^(/uploaded/$match_domain/$match_courseid/\w+/)(\d+)#$1$newsubdir{$key}#;
1.488 raeburn 2795: }
2796: }
1.492 raeburn 2797: $changed = 1;
1.533 raeburn 2798: } elsif ($newdb{$idx} ne '') {
2799: $src = $newdb{$idx};
1.492 raeburn 2800: $changed = 1;
2801: }
2802: if ($changed) {
1.538 raeburn 2803: $LONCAPA::map::resources[$idx] = join(':',($title,&LONCAPA::map::qtunescape($src),$ext,$type));
1.492 raeburn 2804: }
2805: }
2806: }
2807: foreach my $idx (keys(%remparam)) {
2808: if (ref($remparam{$idx}) eq 'ARRAY') {
2809: foreach my $name (@{$remparam{$idx}}) {
2810: &LONCAPA::map::delparameter($idx,'parameter_'.$name);
1.491 raeburn 2811: }
2812: }
2813: }
1.533 raeburn 2814: if (values(%lockerrors) > 0) {
2815: $lockmsg = join('<br />',values(%lockerrors));
2816: }
1.491 raeburn 2817: my $storefn;
2818: if ($key eq $oldurl) {
2819: $storefn = $url;
2820: $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
2821: } else {
2822: $storefn = $key;
2823: $storefn=~s{^/uploaded/$match_domain/$match_courseid/}{};
1.529 raeburn 2824: if ($prefixchg && $before{'map'} && $after{'map'}) {
2825: $storefn =~ s/^\Q$before{'map'}\E/$after{'map'}/;
1.491 raeburn 2826: }
1.529 raeburn 2827: if ($newsubdir{$key}) {
2828: $storefn =~ s/^((?:default|supplemental)_)(\d+)/$1$newsubdir{$key}/;
1.492 raeburn 2829: }
1.491 raeburn 2830: }
1.492 raeburn 2831: my $report;
2832: if ($folder !~ /^supplemental/) {
2833: $report = 1;
2834: }
1.527 raeburn 2835: (my $outtext,$errtext) =
1.492 raeburn 2836: &LONCAPA::map::storemap("/uploaded/$cdom/$cnum/$storefn",1,$report);
2837: if ($errtext) {
1.529 raeburn 2838: if ($caller eq 'paste') {
1.533 raeburn 2839: return (&mt('Paste failed: an error occurred saving the folder or page.'));
1.529 raeburn 2840: }
1.491 raeburn 2841: }
2842: }
2843: }
1.533 raeburn 2844: return ('ok',\@msgs,$lockmsg);
1.491 raeburn 2845: }
2846:
2847: sub copy_dependencies {
2848: my ($item,$storefn,$relpath,$errors,$contentref) = @_;
2849: my $content;
2850: if (ref($contentref)) {
2851: $content = $$contentref;
2852: } else {
2853: $content = &Apache::lonnet::getfile($item);
2854: }
2855: unless ($content eq '-1') {
2856: my $mm = new File::MMagic;
2857: my $mimetype = $mm->checktype_contents($content);
2858: if ($mimetype eq 'text/html') {
2859: my (%allfiles,%codebase,$state);
2860: my $res = &Apache::lonnet::extract_embedded_items(undef,\%allfiles,\%codebase,\$content);
2861: if ($res eq 'ok') {
2862: my ($numexisting,$numpathchanges,$existing);
2863: (undef,$numexisting,$numpathchanges,$existing) =
2864: &Apache::loncommon::ask_for_embedded_content(
2865: '/adm/coursedocs',$state,\%allfiles,\%codebase,
2866: {'error_on_invalid_names' => 1,
2867: 'ignore_remote_references' => 1,
2868: 'docs_url' => $item,
2869: 'context' => 'paste'});
2870: if ($numexisting > 0) {
2871: if (ref($existing) eq 'HASH') {
2872: foreach my $dep (keys(%{$existing})) {
2873: my $depfile = $dep;
2874: unless ($depfile =~ m{^\Q$relpath\E}) {
2875: $depfile = $relpath.$dep;
2876: }
2877: my $depcontent = &Apache::lonnet::getfile($depfile);
2878: unless ($depcontent eq '-1') {
2879: my $storedep = $dep;
2880: $storedep =~ s{^\Q$relpath\E}{};
2881: my $dep_url =
2882: &Apache::lonclonecourse::writefile(
2883: $env{'request.course.id'},
2884: $storefn.$storedep,$depcontent);
2885: if ($dep_url eq '/adm/notfound.html') {
2886: if (ref($errors) eq 'HASH') {
2887: $errors->{$depfile} = 1;
2888: }
2889: } else {
2890: ©_dependencies($depfile,$storefn,$relpath,$errors,\$depcontent);
2891: }
2892: }
2893: }
1.488 raeburn 2894: }
2895: }
2896: }
2897: }
2898: }
2899: return;
2900: }
2901:
1.329 droeschl 2902: my %parameter_type = ( 'randompick' => 'int_pos',
2903: 'hiddenresource' => 'string_yesno',
2904: 'encrypturl' => 'string_yesno',
2905: 'randomorder' => 'string_yesno',);
2906: my $valid_parameters_re = join('|',keys(%parameter_type));
2907: # set parameters
2908: sub update_parameter {
1.537 raeburn 2909: if ($env{'form.changeparms'} eq 'all') {
2910: my (@allidx,@allmapidx,%allchecked,%currchecked);
2911: %allchecked = (
2912: 'hiddenresource' => {},
2913: 'encrypturl' => {},
2914: 'randompick' => {},
2915: 'randomorder' => {},
2916: );
2917: foreach my $which (keys(%allchecked)) {
1.630 raeburn 2918: $env{'form.all'.$which} =~ s/,$//;
1.537 raeburn 2919: if ($which eq 'randompick') {
2920: foreach my $item (split(/,/,$env{'form.all'.$which})) {
2921: my ($res,$value) = split(/:/,$item);
2922: if ($value =~ /^\d+$/) {
2923: $allchecked{$which}{$res} = $value;
2924: }
2925: }
2926: } else {
1.539 raeburn 2927: if ($env{'form.all'.$which}) {
2928: map { $allchecked{$which}{$_} = 1; } split(/,/,$env{'form.all'.$which});
2929: }
1.537 raeburn 2930: }
2931: }
2932: my $haschanges = 0;
2933: foreach my $res (@LONCAPA::map::order) {
2934: my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
2935: $name=&LONCAPA::map::qtescape($name);
2936: $url=&LONCAPA::map::qtescape($url);
2937: next unless ($name && $url);
2938: my $is_map;
2939: if ($url =~ m{/uploaded/.+\.(page|sequence)$}) {
2940: $is_map = 1;
2941: }
2942: foreach my $which (keys(%allchecked)) {
2943: if (($which eq 'randompick' || $which eq 'randomorder')) {
2944: next if (!$is_map);
2945: }
2946: my $oldvalue = 0;
2947: my $newvalue = 0;
2948: if ($allchecked{$which}{$res}) {
2949: $newvalue = $allchecked{$which}{$res};
2950: }
2951: my $current = (&LONCAPA::map::getparameter($res,'parameter_'.$which))[0];
2952: if ($which eq 'randompick') {
2953: if ($current =~ /^(\d+)$/) {
2954: $oldvalue = $1;
2955: }
2956: } else {
2957: if ($current =~ /^yes$/i) {
2958: $oldvalue = 1;
2959: }
2960: }
2961: if ($oldvalue ne $newvalue) {
2962: $haschanges = 1;
2963: if ($newvalue) {
2964: my $storeval = 'yes';
2965: if ($which eq 'randompick') {
2966: $storeval = $newvalue;
2967: }
2968: &LONCAPA::map::storeparameter($res,'parameter_'.$which,
2969: $storeval,
2970: $parameter_type{$which});
2971: &remember_parms($res,$which,'set',$storeval);
2972: } elsif ($oldvalue) {
2973: &LONCAPA::map::delparameter($res,'parameter_'.$which);
2974: &remember_parms($res,$which,'del');
2975: }
2976: }
2977: }
2978: }
2979: return $haschanges;
2980: } else {
1.588 raeburn 2981: my $haschanges = 0;
2982: return $haschanges if ($env{'form.changeparms'} !~ /^($valid_parameters_re)$/);
1.329 droeschl 2983:
1.537 raeburn 2984: my $which = $env{'form.changeparms'};
2985: my $idx = $env{'form.setparms'};
1.588 raeburn 2986: my $oldvalue = 0;
2987: my $newvalue = 0;
2988: my $current = (&LONCAPA::map::getparameter($idx,'parameter_'.$which))[0];
2989: if ($which eq 'randompick') {
2990: if ($current =~ /^(\d+)$/) {
2991: $oldvalue = $1;
2992: }
2993: } elsif ($current =~ /^yes$/i) {
2994: $oldvalue = 1;
2995: }
1.537 raeburn 2996: if ($env{'form.'.$which.'_'.$idx}) {
1.588 raeburn 2997: $newvalue = ($which eq 'randompick') ? $env{'form.rpicknum_'.$idx}
2998: : 1;
2999: }
3000: if ($oldvalue ne $newvalue) {
3001: $haschanges = 1;
3002: if ($newvalue) {
3003: my $storeval = 'yes';
3004: if ($which eq 'randompick') {
3005: $storeval = $newvalue;
3006: }
3007: &LONCAPA::map::storeparameter($idx, 'parameter_'.$which, $storeval,
3008: $parameter_type{$which});
3009: &remember_parms($idx,$which,'set',$storeval);
3010: } else {
3011: &LONCAPA::map::delparameter($idx,'parameter_'.$which);
3012: &remember_parms($idx,$which,'del');
3013: }
1.537 raeburn 3014: }
1.588 raeburn 3015: return $haschanges;
1.329 droeschl 3016: }
3017: }
3018:
3019: sub handle_edit_cmd {
3020: my ($coursenum,$coursedom) =@_;
1.633 ! raeburn 3021: my $haschanges = 0;
1.543 raeburn 3022: if ($env{'form.cmd'} eq '') {
1.633 ! raeburn 3023: return $haschanges;
1.543 raeburn 3024: }
1.329 droeschl 3025: my ($cmd,$idx)=split('_',$env{'form.cmd'});
3026:
3027: my $ratstr = $LONCAPA::map::resources[$LONCAPA::map::order[$idx]];
3028: my ($title, $url, @rrest) = split(':', $ratstr);
3029:
1.538 raeburn 3030: if ($cmd eq 'remove') {
1.329 droeschl 3031: if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
1.463 www 3032: ($url!~/$LONCAPA::assess_page_seq_re/)) {
1.329 droeschl 3033: &Apache::lonnet::removeuploadedurl($url);
3034: } else {
3035: &LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
3036: }
3037: splice(@LONCAPA::map::order, $idx, 1);
1.633 ! raeburn 3038: $haschanges = 1;
1.329 droeschl 3039: } elsif ($cmd eq 'cut') {
3040: &LONCAPA::map::makezombie($LONCAPA::map::order[$idx]);
3041: splice(@LONCAPA::map::order, $idx, 1);
1.633 ! raeburn 3042: $haschanges = 1;
1.344 bisitz 3043: } elsif ($cmd eq 'up'
1.329 droeschl 3044: && ($idx) && (defined($LONCAPA::map::order[$idx-1]))) {
3045: @LONCAPA::map::order[$idx-1,$idx] = @LONCAPA::map::order[$idx,$idx-1];
1.633 ! raeburn 3046: $haschanges = 1;
1.329 droeschl 3047: } elsif ($cmd eq 'down'
3048: && defined($LONCAPA::map::order[$idx+1])) {
3049: @LONCAPA::map::order[$idx+1,$idx] = @LONCAPA::map::order[$idx,$idx+1];
1.633 ! raeburn 3050: $haschanges = 1;
1.329 droeschl 3051: } elsif ($cmd eq 'rename') {
3052: my $comment = &LONCAPA::map::qtunescape($env{'form.title'});
3053: if ($comment=~/\S/) {
3054: $LONCAPA::map::resources[$LONCAPA::map::order[$idx]]=
3055: $comment.':'.join(':', $url, @rrest);
3056: }
3057: # Devalidate title cache
3058: my $renamed_url=&LONCAPA::map::qtescape($url);
3059: &Apache::lonnet::devalidate_title_cache($renamed_url);
1.633 ! raeburn 3060: $haschanges = 1;
! 3061: } elsif ($cmd eq 'setalias') {
! 3062: my $newvalue = $env{'form.alias'};
! 3063: if ($newvalue ne '') {
! 3064: unless (Apache::lonnet::get_symb_from_alias($newvalue)) {
! 3065: &LONCAPA::map::storeparameter($idx,'parameter_0_mapalias',$newvalue,
! 3066: 'string');
! 3067: &remember_parms($idx,'mapalias','set',$newvalue);
! 3068: $haschanges = 1;
! 3069: }
! 3070: }
! 3071: } elsif ($cmd eq 'delalias') {
! 3072: my $current = (&LONCAPA::map::getparameter($idx,'parameter_0_mapalias'))[0];
! 3073: if ($current ne '') {
! 3074: &LONCAPA::map::delparameter($idx,'parameter_0_mapalias');
! 3075: &remember_parms($idx,'mapalias','del');
! 3076: $haschanges = 1;
! 3077: }
1.329 droeschl 3078: }
1.633 ! raeburn 3079: return $haschanges;
1.329 droeschl 3080: }
3081:
3082: sub editor {
1.458 raeburn 3083: my ($r,$coursenum,$coursedom,$folder,$allowed,$upload_output,$crstype,
1.615 raeburn 3084: $supplementalflag,$orderhash,$iconpath,$pathitem,$ltitoolsref,
1.622 raeburn 3085: $canedit,$hostname,$navmapref,$hiddentop)=@_;
1.519 raeburn 3086: my ($randompick,$ishidden,$isencrypted,$plain,$is_random_order,$container);
1.510 raeburn 3087: if ($allowed) {
1.519 raeburn 3088: (my $breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,
3089: $is_random_order,$container) =
1.510 raeburn 3090: &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
3091: $r->print($breadcrumbtrail);
1.519 raeburn 3092: } elsif ($env{'form.folderpath'} =~ /\:1$/) {
3093: $container = 'page';
3094: } else {
3095: $container = 'sequence';
1.510 raeburn 3096: }
1.484 raeburn 3097:
1.525 raeburn 3098: my $jumpto;
3099:
3100: unless ($supplementalflag) {
1.546 raeburn 3101: $jumpto = "uploaded/$coursedom/$coursenum/$folder.$container";
1.525 raeburn 3102: }
1.484 raeburn 3103:
3104: unless ($allowed) {
3105: $randompick = -1;
3106: }
3107:
1.615 raeburn 3108: my ($errtext,$fatal);
3109: if (($folder eq '') && (!$supplementalflag)) {
3110: if (@LONCAPA::map::order) {
3111: undef(@LONCAPA::map::order);
3112: undef(@LONCAPA::map::resources);
3113: undef(@LONCAPA::map::resparms);
3114: undef(@LONCAPA::map::zombies);
3115: }
3116: $folder = 'default';
3117: $container = 'sequence';
3118: } else {
3119: ($errtext,$fatal) = &mapread($coursenum,$coursedom,
3120: $folder.'.'.$container);
3121: return $errtext if ($fatal);
3122: }
1.329 droeschl 3123:
3124: if ($#LONCAPA::map::order<1) {
3125: my $idx=&LONCAPA::map::getresidx();
3126: if ($idx<=0) { $idx=1; }
3127: $LONCAPA::map::order[0]=$idx;
3128: $LONCAPA::map::resources[$idx]='';
3129: }
1.364 bisitz 3130:
1.329 droeschl 3131: # ------------------------------------------------------------ Process commands
3132:
3133: # ---------------- if they are for this folder and user allowed to make changes
1.611 raeburn 3134: if (($allowed && $canedit) && ($env{'form.folder'} eq $folder)) {
1.329 droeschl 3135: # set parameters and change order
3136: &snapshotbefore();
3137:
3138: if (&update_parameter()) {
1.588 raeburn 3139: ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container,1);
1.329 droeschl 3140: return $errtext if ($fatal);
3141: }
3142:
3143: if ($env{'form.newpos'} && $env{'form.currentpos'}) {
3144: # change order
3145: my $res = splice(@LONCAPA::map::order,$env{'form.currentpos'}-1,1);
3146: splice(@LONCAPA::map::order,$env{'form.newpos'}-1,0,$res);
3147:
3148: ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
3149: return $errtext if ($fatal);
3150: }
1.364 bisitz 3151:
1.329 droeschl 3152: if ($env{'form.pastemarked'}) {
1.491 raeburn 3153: my %paste_errors;
1.533 raeburn 3154: my ($paste_res,$save_error,$pastemsgarray,$lockerror) =
1.492 raeburn 3155: &do_paste_from_buffer($coursenum,$coursedom,$folder,$container,
3156: \%paste_errors);
1.541 raeburn 3157: if (ref($pastemsgarray) eq 'ARRAY') {
3158: if (@{$pastemsgarray} > 0) {
3159: $r->print('<p class="LC_info">'.
3160: join('<br />',@{$pastemsgarray}).
1.533 raeburn 3161: '</p>');
3162: }
1.541 raeburn 3163: }
3164: if ($lockerror) {
3165: $r->print('<p class="LC_error">'.
3166: $lockerror.
3167: '</p>');
3168: }
3169: if ($save_error ne '') {
3170: return $save_error;
3171: }
3172: if ($paste_res) {
3173: my %errortext = &Apache::lonlocal::texthash (
3174: fail => 'Storage of folder contents failed',
3175: failread => 'Reading folder contents failed',
3176: failstore => 'Storage of folder contents failed',
3177: );
3178: if ($errortext{$paste_res}) {
3179: $r->print('<p class="LC_error">'.$errortext{$paste_res}.'</p>');
1.492 raeburn 3180: }
1.329 droeschl 3181: }
1.491 raeburn 3182: if (keys(%paste_errors) > 0) {
1.538 raeburn 3183: $r->print('<p class="LC_warning">'."\n".
1.491 raeburn 3184: &mt('The following files are either dependencies of a web page or references within a folder and/or composite page which could not be copied during the paste operation:')."\n".
3185: '<ul>'."\n");
3186: foreach my $key (sort(keys(%paste_errors))) {
3187: $r->print('<li>'.$key.'</li>'."\n");
3188: }
3189: $r->print('</ul></p>'."\n");
3190: }
1.538 raeburn 3191: } elsif ($env{'form.clearmarked'}) {
3192: my $output = &do_buffer_empty();
3193: if ($output) {
3194: $r->print('<p class="LC_info">'.$output.'</p>');
3195: }
3196: }
1.329 droeschl 3197:
3198: $r->print($upload_output);
3199:
1.538 raeburn 3200: # Rename, cut, copy or remove a single resource
1.602 raeburn 3201: if (&handle_edit_cmd($coursenum,$coursedom)) {
1.492 raeburn 3202: my $contentchg;
1.633 ! raeburn 3203: if ($env{'form.cmd'} =~ m{^(remove|cut|setalias|delalias)_}) {
1.492 raeburn 3204: $contentchg = 1;
3205: }
3206: ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container,$contentchg);
1.329 droeschl 3207: return $errtext if ($fatal);
3208: }
1.538 raeburn 3209:
3210: # Cut, copy and/or remove multiple resources
3211: if ($env{'form.multichange'}) {
3212: my %allchecked = (
3213: cut => {},
3214: remove => {},
3215: );
3216: my $needsupdate;
3217: foreach my $which (keys(%allchecked)) {
3218: $env{'form.multi'.$which} =~ s/,$//;
3219: if ($env{'form.multi'.$which}) {
3220: map { $allchecked{$which}{$_} = 1; } split(/,/,$env{'form.multi'.$which});
3221: if (ref($allchecked{$which}) eq 'HASH') {
3222: $needsupdate += scalar(keys(%{$allchecked{$which}}));
3223: }
3224: }
3225: }
3226: if ($needsupdate) {
3227: my $haschanges = 0;
3228: my %curr_groups = &Apache::longroup::coursegroups();
3229: my $total = scalar(@LONCAPA::map::order) - 1;
3230: for (my $i=$total; $i>=0; $i--) {
3231: my $res = $LONCAPA::map::order[$i];
3232: my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
3233: $name=&LONCAPA::map::qtescape($name);
3234: $url=&LONCAPA::map::qtescape($url);
1.586 droeschl 3235: next unless $url;
1.538 raeburn 3236: my %denied =
3237: &action_restrictions($coursenum,$coursedom,$url,
3238: $env{'form.folderpath'},\%curr_groups);
3239: foreach my $which (keys(%allchecked)) {
3240: next if ($denied{$which});
3241: next unless ($allchecked{$which}{$res});
3242: if ($which eq 'remove') {
3243: if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
3244: ($url!~/$LONCAPA::assess_page_seq_re/)) {
3245: &Apache::lonnet::removeuploadedurl($url);
3246: } else {
3247: &LONCAPA::map::makezombie($res);
3248: }
3249: splice(@LONCAPA::map::order,$i,1);
3250: $haschanges ++;
3251: } elsif ($which eq 'cut') {
3252: &LONCAPA::map::makezombie($res);
3253: splice(@LONCAPA::map::order,$i,1);
3254: $haschanges ++;
3255: }
3256: }
3257: }
3258: if ($haschanges) {
3259: ($errtext,$fatal) =
3260: &storemap($coursenum,$coursedom,$folder.'.'.$container,1);
3261: return $errtext if ($fatal);
3262: }
3263: }
3264: }
3265:
1.329 droeschl 3266: # Group import/search
3267: if ($env{'form.importdetail'}) {
3268: my @imports;
3269: foreach my $item (split(/\&/,$env{'form.importdetail'})) {
3270: if (defined($item)) {
3271: my ($name,$url,$residx)=
1.533 raeburn 3272: map { &unescape($_); } split(/\=/,$item);
3273: if ($url =~ m{^\Q/uploaded/$coursedom/$coursenum/\E(default|supplemental)_new\.(sequence|page)$}) {
3274: my ($suffix,$errortxt,$locknotfreed) =
3275: &new_timebased_suffix($coursedom,$coursenum,'map',$1,$2);
1.504 raeburn 3276: if ($locknotfreed) {
3277: $r->print($locknotfreed);
3278: }
3279: if ($suffix) {
3280: $url =~ s/_new\./_$suffix./;
3281: } else {
3282: return $errortxt;
3283: }
1.533 raeburn 3284: } elsif ($url =~ m{^/adm/$match_domain/$match_username/new/(smppg|bulletinboard)$}) {
3285: my $type = $1;
3286: my ($suffix,$errortxt,$locknotfreed) =
3287: &new_timebased_suffix($coursedom,$coursenum,$type);
3288: if ($locknotfreed) {
3289: $r->print($locknotfreed);
3290: }
3291: if ($suffix) {
3292: $url =~ s{^(/adm/$match_domain/$match_username)/new}{$1/$suffix};
3293: } else {
3294: return $errortxt;
3295: }
1.626 raeburn 3296: } elsif ($url =~ m{^/adm/$coursedom/$coursenum/new/ext\.tool}) {
1.598 raeburn 3297: my ($suffix,$errortxt,$locknotfreed) =
3298: &new_timebased_suffix($coursedom,$coursenum,'exttool');
3299: if ($locknotfreed) {
3300: $r->print($locknotfreed);
3301: }
3302: if ($suffix) {
3303: $url =~ s{^(/adm/$coursedom/$coursenum)/new}{$1/$suffix};
3304: } else {
3305: return $errortxt;
3306: }
1.534 raeburn 3307: } elsif ($url =~ m{^/uploaded/$coursedom/$coursenum/(docs|supplemental)/(default|\d+)/new.html$}) {
3308: if ($supplementalflag) {
3309: next unless ($1 eq 'supplemental');
3310: if ($folder eq 'supplemental') {
3311: next unless ($2 eq 'default');
3312: } else {
3313: next unless ($folder eq 'supplemental_'.$2);
3314: }
3315: } else {
3316: next unless ($1 eq 'docs');
3317: if ($folder eq 'default') {
3318: next unless ($2 eq 'default');
3319: } else {
3320: next unless ($folder eq 'default_'.$2);
3321: }
3322: }
1.504 raeburn 3323: }
1.329 droeschl 3324: push(@imports, [$name, $url, $residx]);
3325: }
3326: }
1.530 raeburn 3327: ($errtext,$fatal,my $fixuperrors) =
1.529 raeburn 3328: &group_import($coursenum, $coursedom, $folder,$container,
1.598 raeburn 3329: 'londocs',$ltitoolsref,@imports);
1.329 droeschl 3330: return $errtext if ($fatal);
1.529 raeburn 3331: if ($fixuperrors) {
3332: $r->print($fixuperrors);
3333: }
1.329 droeschl 3334: }
3335: # Loading a complete map
3336: if ($env{'form.loadmap'}) {
3337: if ($env{'form.importmap'}=~/\w/) {
3338: foreach my $res (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$env{'form.importmap'}))) {
3339: my ($title,$url,$ext,$type)=split(/\:/,$res);
3340: my $idx=&LONCAPA::map::getresidx($url);
3341: $LONCAPA::map::resources[$idx]=$res;
3342: $LONCAPA::map::order[$#LONCAPA::map::order+1]=$idx;
3343: }
3344: ($errtext,$fatal)=&storemap($coursenum,$coursedom,
1.492 raeburn 3345: $folder.'.'.$container,1);
1.329 droeschl 3346: return $errtext if ($fatal);
3347: } else {
3348: $r->print('<p><span class="LC_error">'.&mt('No map selected.').'</span></p>');
1.364 bisitz 3349:
1.329 droeschl 3350: }
3351: }
3352: &log_differences($plain);
3353: }
3354: # ---------------------------------------------------------------- End commands
3355: # ---------------------------------------------------------------- Print screen
3356: my $idx=0;
3357: my $shown=0;
3358: if (($ishidden) || ($isencrypted) || ($randompick>=0) || ($is_random_order)) {
1.381 bisitz 3359: $r->print('<div class="LC_Box">'.
1.432 raeburn 3360: '<ol class="LC_docs_parameters"><li class="LC_docs_parameters_title">'.&mt('Parameters:').'</li>'.
3361: ($randompick>=0?'<li>'.&mt('randomly pick [quant,_1,resource]',$randompick).'</li>':'').
3362: ($ishidden?'<li>'.&mt('contents hidden').'</li>':'').
3363: ($isencrypted?'<li>'.&mt('URLs hidden').'</li>':'').
3364: ($is_random_order?'<li>'.&mt('random order').'</li>':'').
1.431 raeburn 3365: '</ol>');
1.381 bisitz 3366: if ($randompick>=0) {
3367: $r->print('<p class="LC_warning">'
3368: .&mt('Caution: this folder is set to randomly pick a subset'
3369: .' of resources. Adding or removing resources from this'
3370: .' folder will change the set of resources that the'
3371: .' students see, resulting in spurious or missing credit'
3372: .' for completed problems, not limited to ones you'
3373: .' modify. Do not modify the contents of this folder if'
3374: .' it is in active student use.')
3375: .'</p>'
3376: );
3377: }
3378: if ($is_random_order) {
3379: $r->print('<p class="LC_warning">'
3380: .&mt('Caution: this folder is set to randomly order its'
3381: .' contents. Adding or removing resources from this folder'
3382: .' will change the order of resources shown.')
3383: .'</p>'
3384: );
3385: }
3386: $r->print('</div>');
1.364 bisitz 3387: }
1.381 bisitz 3388:
1.538 raeburn 3389: my ($to_show,$output,@allidx,@allmapidx,%filters,%lists,%curr_groups);
3390: %filters = (
1.543 raeburn 3391: canremove => [],
3392: cancut => [],
3393: cancopy => [],
3394: hiddenresource => [],
3395: encrypturl => [],
3396: randomorder => [],
3397: randompick => [],
1.538 raeburn 3398: );
3399: %curr_groups = &Apache::longroup::coursegroups();
1.424 onken 3400: &Apache::loncommon::start_data_table_count(); #setup a row counter
1.381 bisitz 3401: foreach my $res (@LONCAPA::map::order) {
3402: my ($name,$url)=split(/\:/,$LONCAPA::map::resources[$res]);
3403: $name=&LONCAPA::map::qtescape($name);
3404: $url=&LONCAPA::map::qtescape($url);
3405: unless ($name) { $name=(split(/\//,$url))[-1]; }
3406: unless ($name) { $idx++; next; }
1.537 raeburn 3407: push(@allidx,$res);
3408: if ($url =~ m{/uploaded/.+\.(page|sequence)$}) {
3409: push(@allmapidx,$res);
3410: }
1.617 raeburn 3411:
1.381 bisitz 3412: $output .= &entryline($idx,$name,$url,$folder,$allowed,$res,
1.501 raeburn 3413: $coursenum,$coursedom,$crstype,
1.538 raeburn 3414: $pathitem,$supplementalflag,$container,
1.620 raeburn 3415: \%filters,\%curr_groups,$ltitoolsref,$canedit,
1.622 raeburn 3416: $isencrypted,$navmapref,$hostname);
1.381 bisitz 3417: $idx++;
3418: $shown++;
1.329 droeschl 3419: }
1.424 onken 3420: &Apache::loncommon::end_data_table_count();
1.510 raeburn 3421:
1.538 raeburn 3422: my $need_save;
1.611 raeburn 3423: if ($allowed || ($supplementalflag && $folder eq 'supplemental')) {
1.544 raeburn 3424: my $toolslink;
1.611 raeburn 3425: if ($allowed) {
1.544 raeburn 3426: $toolslink = '<table><tr><td>'
1.520 raeburn 3427: .&Apache::loncommon::help_open_menu('Navigation Screen',
3428: 'Navigation_Screen',undef,'RAT')
3429: .'</td><td class="LC_middle">'.&mt('Tools:').'</td>'
3430: .'<td align="left"><ul id="LC_toolbar">'
1.525 raeburn 3431: .'<li><a href="/adm/coursedocs?forcesupplement=1&command=editsupp" '
1.520 raeburn 3432: .'id="LC_content_toolbar_edittoplevel" '
3433: .'class="LC_toolbarItem" '
3434: .'title="'.&mt('Supplemental Content Editor').'">'
3435: .'</a></li></ul></td></tr></table><br />';
1.544 raeburn 3436: }
1.510 raeburn 3437: if ($shown) {
3438: if ($allowed) {
3439: $to_show = &Apache::loncommon::start_scrollbox('900px','880px','400px','contentscroll')
3440: .&Apache::loncommon::start_data_table(undef,'contentlist')
3441: .&Apache::loncommon::start_data_table_header_row()
3442: .'<th colspan="2">'.&mt('Move').'</th>'
1.633 ! raeburn 3443: .'<th colspan="3">'.&mt('Actions').'</th>'
1.538 raeburn 3444: .'<th>'.&mt('Document').'</th>';
1.510 raeburn 3445: if ($folder !~ /^supplemental/) {
1.633 ! raeburn 3446: $to_show .= '<th colspan="2">'.&mt('Settings').'</th>';
1.510 raeburn 3447: }
1.537 raeburn 3448: $to_show .= &Apache::loncommon::end_data_table_header_row();
3449: if ($folder !~ /^supplemental/) {
1.538 raeburn 3450: $lists{'canhide'} = join(',',@allidx);
3451: $lists{'canrandomlyorder'} = join(',',@allmapidx);
1.543 raeburn 3452: my @possfilters = ('canremove','cancut','cancopy','hiddenresource','encrypturl',
3453: 'randomorder','randompick');
3454: foreach my $item (@possfilters) {
1.538 raeburn 3455: if (ref($filters{$item}) eq 'ARRAY') {
1.543 raeburn 3456: if (@{$filters{$item}} > 0) {
3457: $lists{$item} = join(',',@{$filters{$item}});
3458: }
1.538 raeburn 3459: }
3460: }
1.537 raeburn 3461: if (@allidx > 0) {
3462: my $path;
3463: if ($env{'form.folderpath'}) {
1.630 raeburn 3464: $path =
1.537 raeburn 3465: &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
3466: }
1.538 raeburn 3467: if (@allidx > 1) {
1.630 raeburn 3468: $to_show .=
1.538 raeburn 3469: &Apache::loncommon::continue_data_table_row().
3470: '<td colspan="2"> </td>'.
3471: '<td>'.
1.611 raeburn 3472: &multiple_check_form('actions',\%lists,$canedit).
1.538 raeburn 3473: '</td>'.
1.633 ! raeburn 3474: '<td colspan="3"> </td>'.
! 3475: '<td colspan="2">'.
1.611 raeburn 3476: &multiple_check_form('settings',\%lists,$canedit).
1.538 raeburn 3477: '</td>'.
3478: &Apache::loncommon::end_data_table_row();
3479: $need_save = 1;
3480: }
1.537 raeburn 3481: }
3482: }
3483: $to_show .= $output.' '
1.510 raeburn 3484: .&Apache::loncommon::end_data_table()
3485: .'<br style="line-height:2px;" />'
3486: .&Apache::loncommon::end_scrollbox();
3487: } else {
1.520 raeburn 3488: $to_show .= $toolslink
1.510 raeburn 3489: .&Apache::loncommon::start_data_table('LC_tableOfContent')
3490: .$output.' '
3491: .&Apache::loncommon::end_data_table();
1.393 raeburn 3492: }
1.510 raeburn 3493: } else {
1.520 raeburn 3494: if (!$allowed) {
3495: $to_show .= $toolslink;
3496: }
1.615 raeburn 3497: my $noresmsg;
3498: if ($allowed && $hiddentop && !$supplementalflag) {
3499: $noresmsg = &mt('Main Content Hidden');
3500: } else {
3501: $noresmsg = &mt('Currently empty');
3502: }
1.510 raeburn 3503: $to_show .= &Apache::loncommon::start_scrollbox('400px','380px','200px','contentscroll')
3504: .'<div class="LC_info" id="contentlist">'
1.615 raeburn 3505: .$noresmsg
1.510 raeburn 3506: .'</div>'
3507: .&Apache::loncommon::end_scrollbox();
1.393 raeburn 3508: }
3509: } else {
1.510 raeburn 3510: if ($shown) {
3511: $to_show = '<div>'
3512: .&Apache::loncommon::start_data_table('LC_tableOfContent')
3513: .$output
3514: .&Apache::loncommon::end_data_table()
3515: .'</div>';
3516: } else {
3517: $to_show = '<div class="LC_info" id="contentlist">'
1.550 raeburn 3518: .&mt('Currently empty')
1.510 raeburn 3519: .'</div>'
3520: }
1.458 raeburn 3521: }
3522: my $tid = 1;
3523: if ($supplementalflag) {
3524: $tid = 2;
1.329 droeschl 3525: }
3526: if ($allowed) {
1.484 raeburn 3527: my $readfile="/uploaded/$coursedom/$coursenum/$folder.$container";
1.538 raeburn 3528: $r->print(&generate_edit_table($tid,$orderhash,$to_show,$iconpath,
1.611 raeburn 3529: $jumpto,$readfile,$need_save,"$folder.$container",$canedit));
3530: if ($canedit) {
3531: &print_paste_buffer($r,$container,$folder,$coursedom,$coursenum);
3532: }
1.460 raeburn 3533: } else {
3534: $r->print($to_show);
1.329 droeschl 3535: }
3536: return;
3537: }
3538:
1.538 raeburn 3539: sub multiple_check_form {
1.611 raeburn 3540: my ($caller,$listsref,$canedit) = @_;
1.538 raeburn 3541: return unless (ref($listsref) eq 'HASH');
1.611 raeburn 3542: my $disabled;
3543: unless ($canedit) {
3544: $disabled = 'disabled="disabled"';
3545: }
1.538 raeburn 3546: my $output =
3547: '<form action="/adm/coursedocs" method="post" name="togglemult'.$caller.'">'.
3548: '<span class="LC_nobreak" style="font-size:x-small;font-weight:bold;">'.
3549: '<label><input type="radio" name="showmultpick" value="0" onclick="javascript:togglePick('."'$caller','0'".');" checked="checked" />'.&mt('one').'</label>'.(' 'x2).'<label><input type="radio" name="showmultpick" value="1" onclick="javascript:togglePick('."'$caller','1'".');" />'.&mt('multiple').'</label></span><span id="more'.$caller.'" class="LC_nobreak LC_docs_ext_edit"></span></form>'.
3550: '<div id="multi'.$caller.'" style="display:none;margin:0;padding:0;border:0">'.
3551: '<form action="/adm/coursedocs" method="post" name="cumulative'.$caller.'">'."\n".
3552: '<fieldset id="allfields'.$caller.'" style="display:none"><legend style="font-size:x-small;">'.&mt('check/uncheck all').'</legend>'."\n";
3553: if ($caller eq 'settings') {
3554: $output .=
3555: '<table><tr>'.
3556: '<td class="LC_docs_entry_parameter">'.
3557: '<span class="LC_nobreak"><label>'.
1.611 raeburn 3558: '<input type="checkbox" name="hiddenresourceall" id="hiddenresourceall" onclick="propagateState(this.form,'."'hiddenresource'".')"'.$disabled.' />'.&mt('Hidden').
1.538 raeburn 3559: '</label></span></td>'.
3560: '<td class="LC_docs_entry_parameter">'.
1.611 raeburn 3561: '<span class="LC_nobreak"><label><input type="checkbox" name="randompickall" id="randompickall" onclick="updatePick(this.form,'."'all','check'".');propagateState(this.form,'."'randompick'".');propagateState(this.form,'."'rpicknum'".');"'.$disabled.' />'.&mt('Randomly Pick').'</label><span id="rpicktextall"></span><input type="hidden" name="rpicknumall" id="rpicknumall" value="" />'.
1.538 raeburn 3562: '</span></td>'.
3563: '</tr>'."\n".
3564: '<tr>'.
3565: '<td class="LC_docs_entry_parameter">'.
1.611 raeburn 3566: '<span class="LC_nobreak"><label><input type="checkbox" name="encrypturlall" id="encrypturlall" onclick="propagateState(this.form,'."'encrypturl'".')"'.$disabled.' />'.&mt('URL hidden').'</label></span></td><td class="LC_docs_entry_parameter"><span class="LC_nobreak"><label><input type="checkbox" name="randomorderall" id="randomorderall" onclick="propagateState(this.form,'."'randomorder'".')"'.$disabled.' />'.&mt('Random Order').
1.538 raeburn 3567: '</label></span>'.
3568: '</td></tr></table>'."\n";
3569: } else {
3570: $output .=
3571: '<table><tr>'.
3572: '<td class="LC_docs_entry_parameter">'.
3573: '<span class="LC_nobreak LC_docs_remove">'.
1.611 raeburn 3574: '<label><input type="checkbox" name="removeall" id="removeall" onclick="propagateState(this.form,'."'remove'".')"'.$disabled.' />'.&mt('Remove').
1.538 raeburn 3575: '</label></span></td>'.
3576: '<td class="LC_docs_entry_parameter">'.
3577: '<span class="LC_nobreak LC_docs_cut">'.
1.611 raeburn 3578: '<label><input type="checkbox" name="cut" id="cutall" onclick="propagateState(this.form,'."'cut'".');"'.$disabled.' />'.&mt('Cut').
1.538 raeburn 3579: '</label></span></td>'."\n".
3580: '<td class="LC_docs_entry_parameter">'.
3581: '<span class="LC_nobreak LC_docs_copy">'.
1.611 raeburn 3582: '<label><input type="checkbox" name="copyall" id="copyall" onclick="propagateState(this.form,'."'copy'".')"'. $disabled.' />'.&mt('Copy').
1.538 raeburn 3583: '</label></span></td>'.
3584: '</tr></table>'."\n";
3585: }
3586: $output .=
3587: '</fieldset>'.
3588: '<input type="hidden" name="allidx" value="'.$listsref->{'canhide'}.'" />';
3589: if ($caller eq 'settings') {
3590: $output .=
1.543 raeburn 3591: '<input type="hidden" name="allmapidx" value="'.$listsref->{'canrandomlyorder'}.'" />'."\n".
3592: '<input type="hidden" name="currhiddenresource" value="'.$listsref->{'hiddenresource'}.'" />'."\n".
3593: '<input type="hidden" name="currencrypturl" value="'.$listsref->{'encrypturl'}.'" />'."\n".
3594: '<input type="hidden" name="currrandomorder" value="'.$listsref->{'randomorder'}.'" />'."\n".
3595: '<input type="hidden" name="currrandompick" value="'.$listsref->{'randompick'}.'" />'."\n";
1.538 raeburn 3596: } elsif ($caller eq 'actions') {
3597: $output .=
3598: '<input type="hidden" name="allremoveidx" id="allremoveidx" value="'.$listsref->{'canremove'}.'" />'.
3599: '<input type="hidden" name="allcutidx" id="allcutidx" value="'.$listsref->{'cancut'}.'" />'.
3600: '<input type="hidden" name="allcopyidx" id="allcopyidx" value="'.$listsref->{'cancopy'}.'" />';
3601: }
3602: $output .=
3603: '</form>'.
3604: '</div>';
3605: return $output;
3606: }
3607:
1.329 droeschl 3608: sub process_file_upload {
1.552 raeburn 3609: my ($upload_output,$coursenum,$coursedom,$allfiles,$codebase,$uploadcmd,$crstype) = @_;
1.329 droeschl 3610: # upload a file, if present
1.552 raeburn 3611: my $filesize = length($env{'form.uploaddoc'});
3612: if (!$filesize) {
3613: $$upload_output = '<div class="LC_error">'.
3614: &mt('Unable to upload [_1]. (size = [_2] bytes)',
3615: '<span class="LC_filename">'.$env{'form.uploaddoc.filename'}.'</span>',
3616: $filesize).'<br />'.
3617: &mt('Either the file you attempted to upload was empty, or your web browser was unable to read its contents.').'<br />'.
3618: '</div>';
3619: return;
3620: }
3621: my $quotatype = 'unofficial';
3622: if ($crstype eq 'Community') {
1.601 raeburn 3623: $quotatype = 'community';
3624: } elsif ($crstype eq 'Placement') {
3625: $quotatype = 'placement';
1.580 raeburn 3626: } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.coursecode'}) {
1.552 raeburn 3627: $quotatype = 'official';
1.573 raeburn 3628: } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.textbook'}) {
3629: $quotatype = 'textbook';
1.552 raeburn 3630: }
3631: if (&Apache::loncommon::get_user_quota($coursenum,$coursedom,'course',$quotatype)) {
3632: $filesize = int($filesize/1000); #expressed in kb
3633: $$upload_output = &Apache::loncommon::excess_filesize_warning($coursenum,$coursedom,'course',
1.579 raeburn 3634: $env{'form.uploaddoc.filename'},$filesize,
3635: 'upload',$quotatype);
1.552 raeburn 3636: return if ($$upload_output);
3637: }
1.440 raeburn 3638: my ($parseaction,$showupload,$nextphase,$mimetype);
3639: if ($env{'form.parserflag'}) {
1.329 droeschl 3640: $parseaction = 'parse';
3641: }
3642: my $folder=$env{'form.folder'};
3643: if ($folder eq '') {
3644: $folder='default';
3645: }
3646: if ( ($folder=~/^$uploadcmd/) || ($uploadcmd eq 'default') ) {
3647: my $errtext='';
3648: my $fatal=0;
3649: my $container='sequence';
1.519 raeburn 3650: if ($env{'form.folderpath'} =~ /:1$/) {
1.329 droeschl 3651: $container='page';
3652: }
3653: ($errtext,$fatal)=
1.534 raeburn 3654: &mapread($coursenum,$coursedom,$folder.'.'.$container);
1.329 droeschl 3655: if ($#LONCAPA::map::order<1) {
3656: $LONCAPA::map::order[0]=1;
3657: $LONCAPA::map::resources[1]='';
3658: }
3659: my $destination = 'docs/';
3660: if ($folder =~ /^supplemental/) {
3661: $destination = 'supplemental/';
3662: }
3663: if (($folder eq 'default') || ($folder eq 'supplemental')) {
3664: $destination .= 'default/';
3665: } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
3666: $destination .= $2.'/';
3667: }
1.534 raeburn 3668: if ($fatal) {
3669: $$upload_output = '<div class="LC_error" id="uploadfileresult">'.&mt('The uploaded file has not been stored as an error occurred reading the contents of the current folder.').'</div>';
3670: return;
3671: }
1.440 raeburn 3672: # this is for a course, not a user, so set context to coursedoc.
1.329 droeschl 3673: my $newidx=&LONCAPA::map::getresidx();
3674: $destination .= $newidx;
1.439 raeburn 3675: my $url=&Apache::lonnet::userfileupload('uploaddoc','coursedoc',$destination,
1.329 droeschl 3676: $parseaction,$allfiles,
1.440 raeburn 3677: $codebase,undef,undef,undef,undef,
3678: undef,undef,\$mimetype);
3679: if ($url =~ m{^/uploaded/\Q$coursedom\E/\Q$coursenum\E.*/([^/]+)$}) {
3680: my $stored = $1;
3681: $showupload = '<p>'.&mt('Uploaded [_1]','<span class="LC_filename">'.
3682: $stored.'</span>').'</p>';
3683: } else {
3684: my ($filename) = ($env{'form.uploaddoc.filename'} =~ m{([^/]+)$});
3685:
1.457 raeburn 3686: $$upload_output = '<div class="LC_error" id="uploadfileresult">'.&mt('Unable to save file [_1].','<span class="LC_filename">'.$filename.'</span>').'</div>';
1.440 raeburn 3687: return;
3688: }
1.329 droeschl 3689: my $ext='false';
3690: if ($url=~m{^http://}) { $ext='true'; }
3691: $url = &LONCAPA::map::qtunescape($url);
3692: my $comment=$env{'form.comment'};
3693: $comment = &LONCAPA::map::qtunescape($comment);
3694: if ($folder=~/^supplemental/) {
3695: $comment=time.'___&&&___'.$env{'user.name'}.'___&&&___'.
3696: $env{'user.domain'}.'___&&&___'.$comment;
3697: }
3698:
3699: $LONCAPA::map::resources[$newidx]=
3700: $comment.':'.$url.':'.$ext.':normal:res';
3701: $LONCAPA::map::order[$#LONCAPA::map::order+1]= $newidx;
3702: ($errtext,$fatal)=&storemap($coursenum,$coursedom,
1.492 raeburn 3703: $folder.'.'.$container,1);
1.329 droeschl 3704: if ($fatal) {
1.457 raeburn 3705: $$upload_output = '<div class="LC_error" id="uploadfileresult">'.$errtext.'</div>';
1.440 raeburn 3706: return;
1.329 droeschl 3707: } else {
1.440 raeburn 3708: if ($parseaction eq 'parse' && $mimetype eq 'text/html') {
3709: $$upload_output = $showupload;
1.384 raeburn 3710: my $total_embedded = scalar(keys(%{$allfiles}));
1.329 droeschl 3711: if ($total_embedded > 0) {
1.440 raeburn 3712: my $uploadphase = 'upload_embedded';
3713: my $primaryurl = &HTML::Entities::encode($url,'<>&"');
3714: my $state = &embedded_form_elems($uploadphase,$primaryurl,$newidx);
1.630 raeburn 3715: my ($embedded,$num) =
1.440 raeburn 3716: &Apache::loncommon::ask_for_embedded_content(
3717: '/adm/coursedocs',$state,$allfiles,$codebase,{'docs_url' => $url});
3718: if ($embedded) {
3719: if ($num) {
3720: $$upload_output .=
3721: '<p>'.&mt('This file contains embedded multimedia objects, which need to be uploaded.').'</p>'.$embedded;
3722: $nextphase = $uploadphase;
3723: } else {
3724: $$upload_output .= $embedded;
3725: }
3726: } else {
3727: $$upload_output .= &mt('Embedded item(s) already present, so no additional upload(s) required').'<br />';
3728: }
1.329 droeschl 3729: } else {
1.440 raeburn 3730: $$upload_output .= &mt('No embedded items identified').'<br />';
1.329 droeschl 3731: }
1.457 raeburn 3732: $$upload_output = '<div id="uploadfileresult">'.$$upload_output.'</div>';
1.578 raeburn 3733: } elsif ((&Apache::loncommon::is_archive_file($mimetype)) &&
3734: ($env{'form.uploaddoc.filename'} =~ /\.(zip|tar|bz2|gz|tar.gz|tar.bz2|tgz)$/i)) {
1.476 raeburn 3735: $nextphase = 'decompress_uploaded';
3736: my $position = scalar(@LONCAPA::map::order)-1;
3737: my $noextract = &return_to_editor();
3738: my $archiveurl = &HTML::Entities::encode($url,'<>&"');
3739: my %archiveitems = (
3740: folderpath => $env{'form.folderpath'},
3741: cmd => $nextphase,
3742: newidx => $newidx,
3743: position => $position,
3744: phase => $nextphase,
1.477 raeburn 3745: comment => $comment,
1.480 raeburn 3746: );
3747: my ($destination,$dir_root) = &embedded_destination($coursenum,$coursedom);
3748: my @current = &get_dir_list($url,$coursenum,$coursedom,$newidx);
1.476 raeburn 3749: $$upload_output = $showupload.
3750: &Apache::loncommon::decompress_form($mimetype,
3751: $archiveurl,'/adm/coursedocs',$noextract,
1.480 raeburn 3752: \%archiveitems,\@current);
1.329 droeschl 3753: }
3754: }
3755: }
1.440 raeburn 3756: return $nextphase;
1.329 droeschl 3757: }
3758:
1.480 raeburn 3759: sub get_dir_list {
3760: my ($url,$coursenum,$coursedom,$newidx) = @_;
3761: my ($destination,$dir_root) = &embedded_destination();
3762: my ($dirlistref,$listerror) =
3763: &Apache::lonnet::dirlist("$dir_root/$destination/$newidx",$coursedom,$coursenum,1);
3764: my @dir_lines;
3765: my $dirptr=16384;
3766: if (ref($dirlistref) eq 'ARRAY') {
3767: foreach my $dir_line (sort
3768: {
3769: my ($afile)=split('&',$a,2);
3770: my ($bfile)=split('&',$b,2);
3771: return (lc($afile) cmp lc($bfile));
3772: } (@{$dirlistref})) {
3773: my ($filename,$dom,undef,$testdir,undef,undef,undef,undef,$size,undef,$mtime,undef,undef,undef,$obs,undef)=split(/\&/,$dir_line,16);
3774: $filename =~ s/\s+$//;
3775: next if ($filename =~ /^\.\.?$/);
3776: my $isdir = 0;
3777: if ($dirptr&$testdir) {
3778: $isdir = 1;
3779: }
3780: push(@dir_lines, [$filename,$dom,$isdir,$size,$mtime,$obs]);
3781: }
3782: }
3783: return @dir_lines;
3784: }
3785:
1.329 droeschl 3786: sub is_supplemental_title {
3787: my ($title) = @_;
3788: return scalar($title =~ m/^(\d+)___&&&___($match_username)___&&&___($match_domain)___&&&___(.*)$/);
3789: }
3790:
3791: # --------------------------------------------------------------- An entry line
3792:
3793: sub entryline {
1.501 raeburn 3794: my ($index,$title,$url,$folder,$allowed,$residx,$coursenum,$coursedom,
1.598 raeburn 3795: $crstype,$pathitem,$supplementalflag,$container,$filtersref,$currgroups,
1.622 raeburn 3796: $ltitoolsref,$canedit,$isencrypted,$navmapref,$hostname)=@_;
1.581 raeburn 3797: my ($foldertitle,$renametitle,$oldtitle);
1.329 droeschl 3798: if (&is_supplemental_title($title)) {
1.488 raeburn 3799: ($title,$foldertitle,$renametitle) = &Apache::loncommon::parse_supplemental_title($title);
1.329 droeschl 3800: } else {
3801: $title=&HTML::Entities::encode($title,'"<>&\'');
3802: $renametitle=$title;
3803: $foldertitle=$title;
3804: }
3805:
1.611 raeburn 3806: my ($disabled,$readonly,$js_lt);
3807: unless ($canedit) {
3808: $disabled = 'disabled="disabled"';
3809: $readonly = 1;
3810: }
3811:
1.329 droeschl 3812: my $orderidx=$LONCAPA::map::order[$index];
1.364 bisitz 3813:
1.329 droeschl 3814: $renametitle=~s/\\/\\\\/g;
3815: $renametitle=~s/\"\;/\\\"/g;
1.585 raeburn 3816: $renametitle=~s/"/%22/g;
1.581 raeburn 3817: $renametitle=~s/ /%20/g;
3818: $oldtitle = $renametitle;
1.576 raeburn 3819: $renametitle=~s/\'/\\\'/g;
1.379 bisitz 3820: my $line=&Apache::loncommon::start_data_table_row();
1.538 raeburn 3821: my ($form_start,$form_end,$form_common,$form_param);
1.329 droeschl 3822: # Edit commands
1.633 ! raeburn 3823: my ($esc_path, $path, $symb, $curralias);
1.329 droeschl 3824: if ($env{'form.folderpath'}) {
3825: $esc_path=&escape($env{'form.folderpath'});
3826: $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
3827: # $htmlfoldername=&HTML::Entities::encode($env{'form.foldername'},'<>&"');
3828: }
1.505 raeburn 3829: my $isexternal;
1.510 raeburn 3830: if ($residx) {
1.501 raeburn 3831: my $currurl = $url;
3832: $currurl =~ s{^http(|s)(:|:)//}{/adm/wrapper/ext/};
1.505 raeburn 3833: if ($currurl =~ m{^/adm/wrapper/ext/}) {
3834: $isexternal = 1;
3835: }
1.510 raeburn 3836: if (!$supplementalflag) {
3837: my $path = 'uploaded/'.
3838: $env{'course.'.$env{'request.course.id'}.'.domain'}.'/'.
3839: $env{'course.'.$env{'request.course.id'}.'.num'}.'/';
3840: $symb = &Apache::lonnet::encode_symb($path.$folder.".$container",
3841: $residx,
3842: &Apache::lonnet::declutter($currurl));
3843: }
1.501 raeburn 3844: }
1.538 raeburn 3845: my ($renamelink,%lt,$ishash);
3846: if (ref($filtersref) eq 'HASH') {
3847: $ishash = 1;
3848: }
3849:
1.329 droeschl 3850: if ($allowed) {
1.538 raeburn 3851: $form_start = '
3852: <form action="/adm/coursedocs" method="post">
3853: ';
3854: $form_common=(<<END);
3855: <input type="hidden" name="folderpath" value="$path" />
3856: <input type="hidden" name="symb" value="$symb" />
3857: END
3858: $form_param=(<<END);
3859: <input type="hidden" name="setparms" value="$orderidx" />
3860: <input type="hidden" name="changeparms" value="0" />
3861: END
3862: $form_end = '</form>';
3863:
1.329 droeschl 3864: my $incindex=$index+1;
3865: my $selectbox='';
1.471 raeburn 3866: if (($#LONCAPA::map::order>0) &&
1.329 droeschl 3867: ((split(/\:/,
1.344 bisitz 3868: $LONCAPA::map::resources[$LONCAPA::map::order[0]]))[1]
3869: ne '') &&
1.329 droeschl 3870: ((split(/\:/,
1.344 bisitz 3871: $LONCAPA::map::resources[$LONCAPA::map::order[1]]))[1]
1.329 droeschl 3872: ne '')) {
3873: $selectbox=
3874: '<input type="hidden" name="currentpos" value="'.$incindex.'" />'.
1.611 raeburn 3875: '<select name="newpos" onchange="this.form.submit()"'.$disabled.'>';
1.329 droeschl 3876: for (my $i=1;$i<=$#LONCAPA::map::order+1;$i++) {
3877: if ($i==$incindex) {
1.358 bisitz 3878: $selectbox.='<option value="" selected="selected">('.$i.')</option>';
1.329 droeschl 3879: } else {
3880: $selectbox.='<option value="'.$i.'">'.$i.'</option>';
3881: }
3882: }
3883: $selectbox.='</select>';
3884: }
1.501 raeburn 3885: %lt=&Apache::lonlocal::texthash(
1.329 droeschl 3886: 'up' => 'Move Up',
3887: 'dw' => 'Move Down',
3888: 'rm' => 'Remove',
3889: 'ct' => 'Cut',
3890: 'rn' => 'Rename',
1.501 raeburn 3891: 'cp' => 'Copy',
1.633 ! raeburn 3892: 'da' => 'Unset alias',
! 3893: 'sa' => 'Set alias',
1.501 raeburn 3894: 'ex' => 'External Resource',
1.598 raeburn 3895: 'et' => 'External Tool',
1.501 raeburn 3896: 'ed' => 'Edit',
3897: 'pr' => 'Preview',
3898: 'sv' => 'Save',
3899: 'ul' => 'URL',
1.611 raeburn 3900: 'ti' => 'Title',
1.618 raeburn 3901: 'er' => 'Editing rights unavailable for your current role.',
1.501 raeburn 3902: );
1.538 raeburn 3903: my %denied = &action_restrictions($coursenum,$coursedom,$url,
3904: $env{'form.folderpath'},
3905: $currgroups);
1.517 raeburn 3906: my ($copylink,$cutlink,$removelink);
1.329 droeschl 3907: my $skip_confirm = 0;
1.603 raeburn 3908: my $confirm_removal = 0;
1.329 droeschl 3909: if ( $folder =~ /^supplemental/
3910: || ($url =~ m{( /smppg$
3911: |/syllabus$
3912: |/aboutme$
3913: |/navmaps$
3914: |/bulletinboard$
1.626 raeburn 3915: |/ext\.tool$
1.505 raeburn 3916: |\.html$)}x)
3917: || $isexternal) {
1.329 droeschl 3918: $skip_confirm = 1;
3919: }
1.603 raeburn 3920: if (($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) &&
3921: ($url!~/$LONCAPA::assess_page_seq_re/)) {
3922: $confirm_removal = 1;
3923: }
1.633 ! raeburn 3924: if ($url =~ /$LONCAPA::assess_re/) {
! 3925: $curralias = (&LONCAPA::map::getparameter($orderidx,'parameter_0_mapalias'))[0];
! 3926: }
1.329 droeschl 3927:
1.538 raeburn 3928: if ($denied{'copy'}) {
1.543 raeburn 3929: $copylink=(<<ENDCOPY)
1.507 raeburn 3930: <span style="visibility: hidden;">$lt{'cp'}</span>
3931: ENDCOPY
3932: } else {
1.538 raeburn 3933: my $formname = 'edit_copy_'.$orderidx;
3934: my $js = "javascript:checkForSubmit(document.forms.renameform,'copy','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder');";
1.329 droeschl 3935: $copylink=(<<ENDCOPY);
1.538 raeburn 3936: <form name="$formname" method="post" action="/adm/coursedocs">
3937: $form_common
1.611 raeburn 3938: <input type="checkbox" name="copy" id="copy_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','copy');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_copy">$lt{'cp'}</a>
1.538 raeburn 3939: $form_end
1.329 droeschl 3940: ENDCOPY
1.538 raeburn 3941: if (($ishash) && (ref($filtersref->{'cancopy'}) eq 'ARRAY')) {
3942: push(@{$filtersref->{'cancopy'}},$orderidx);
3943: }
1.329 droeschl 3944: }
1.538 raeburn 3945: if ($denied{'cut'}) {
1.507 raeburn 3946: $cutlink=(<<ENDCUT);
3947: <span style="visibility: hidden;">$lt{'ct'}</span>
3948: ENDCUT
3949: } else {
1.538 raeburn 3950: my $formname = 'edit_cut_'.$orderidx;
3951: my $js = "javascript:checkForSubmit(document.forms.renameform,'cut','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder');";
1.329 droeschl 3952: $cutlink=(<<ENDCUT);
1.538 raeburn 3953: <form name="$formname" method="post" action="/adm/coursedocs">
3954: $form_common
1.542 raeburn 3955: <input type="hidden" name="skip_$orderidx" id="skip_cut_$orderidx" value="$skip_confirm" />
1.611 raeburn 3956: <input type="checkbox" name="cut" id="cut_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','cut');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_cut">$lt{'ct'}</a>
1.538 raeburn 3957: $form_end
1.329 droeschl 3958: ENDCUT
1.538 raeburn 3959: if (($ishash) && (ref($filtersref->{'cancut'}) eq 'ARRAY')) {
3960: push(@{$filtersref->{'cancut'}},$orderidx);
3961: }
1.329 droeschl 3962: }
1.538 raeburn 3963: if ($denied{'remove'}) {
1.507 raeburn 3964: $removelink=(<<ENDREM);
3965: <span style="visibility: hidden;">$lt{'rm'}</a>
3966: ENDREM
3967: } else {
1.538 raeburn 3968: my $formname = 'edit_remove_'.$orderidx;
1.603 raeburn 3969: my $js = "javascript:checkForSubmit(document.forms.renameform,'remove','actions','$orderidx','$esc_path','$index','$renametitle',$skip_confirm,'$container','$folder',$confirm_removal);";
1.497 raeburn 3970: $removelink=(<<ENDREM);
1.538 raeburn 3971: <form name="$formname" method="post" action="/adm/coursedocs">
3972: $form_common
1.542 raeburn 3973: <input type="hidden" name="skip_$orderidx" id="skip_remove_$orderidx" value="$skip_confirm" />
1.603 raeburn 3974: <input type="hidden" name="confirm_rem_$orderidx" id="confirm_removal_$orderidx" value="$confirm_removal" />
1.611 raeburn 3975: <input type="checkbox" name="remove" id="remove_$orderidx" value="$orderidx" onclick="javascript:singleCheck(this,'$orderidx','remove');" class="LC_hidden" $disabled /><a href="$js" class="LC_docs_remove">$lt{'rm'}</a>
1.538 raeburn 3976: $form_end
1.497 raeburn 3977: ENDREM
1.538 raeburn 3978: if (($ishash) && (ref($filtersref->{'canremove'}) eq 'ARRAY')) {
3979: push(@{$filtersref->{'canremove'}},$orderidx);
3980: }
1.497 raeburn 3981: }
1.551 raeburn 3982: $renamelink=(<<ENDREN);
1.581 raeburn 3983: <a href='javascript:changename("$esc_path","$index","$oldtitle");' class="LC_docs_rename">$lt{'rn'}</a>
1.507 raeburn 3984: ENDREN
1.611 raeburn 3985: my ($uplink,$downlink);
3986: if ($canedit) {
3987: $uplink = "/adm/coursedocs?cmd=up_$index&folderpath=$esc_path&symb=$symb";
3988: $downlink = "/adm/coursedocs?cmd=down_$index&folderpath=$esc_path&symb=$symb";
3989: } else {
3990: $uplink = "javascript:alert('".&js_escape($lt{'er'})."');";
3991: $downlink = $uplink;
3992: }
1.329 droeschl 3993: $line.=(<<END);
3994: <td>
1.379 bisitz 3995: <div class="LC_docs_entry_move">
1.611 raeburn 3996: <a href="$uplink">
1.501 raeburn 3997: <img src="${iconpath}move_up.gif" alt="$lt{'up'}" class="LC_icon" />
1.379 bisitz 3998: </a>
3999: </div>
4000: <div class="LC_docs_entry_move">
1.611 raeburn 4001: <a href="$downlink">
1.501 raeburn 4002: <img src="${iconpath}move_down.gif" alt="$lt{'dw'}" class="LC_icon" />
1.379 bisitz 4003: </a>
4004: </div>
1.329 droeschl 4005: </td>
4006: <td>
4007: $form_start
1.538 raeburn 4008: $form_param
1.478 raeburn 4009: $form_common
1.329 droeschl 4010: $selectbox
4011: $form_end
4012: </td>
1.540 raeburn 4013: <td class="LC_docs_entry_commands LC_nobreak">
1.497 raeburn 4014: $removelink
1.329 droeschl 4015: $cutlink
4016: $copylink
4017: </td>
4018: END
4019: }
4020: # Figure out what kind of a resource this is
4021: my ($extension)=($url=~/\.(\w+)$/);
4022: my $uploaded=($url=~/^\/*uploaded\//);
4023: my $icon=&Apache::loncommon::icon($url);
1.519 raeburn 4024: my $isfolder;
4025: my $ispage;
4026: my $containerarg;
1.615 raeburn 4027: my $folderurl;
1.329 droeschl 4028: if ($uploaded) {
1.472 raeburn 4029: if (($extension eq 'sequence') || ($extension eq 'page')) {
4030: $url=~/\Q$coursenum\E\/([\/\w]+)\.\Q$extension\E$/;
1.519 raeburn 4031: $containerarg = $1;
1.472 raeburn 4032: if ($extension eq 'sequence') {
4033: $icon=$iconpath.'navmap.folder.closed.gif';
4034: $isfolder=1;
4035: } else {
4036: $icon=$iconpath.'page.gif';
4037: $ispage=1;
4038: }
1.615 raeburn 4039: $folderurl = &Apache::lonnet::declutter($url);
1.472 raeburn 4040: if ($allowed) {
4041: $url='/adm/coursedocs?';
4042: } else {
4043: $url='/adm/supplemental?';
4044: }
1.329 droeschl 4045: } else {
4046: &Apache::lonnet::allowuploaded('/adm/coursedoc',$url);
4047: }
4048: }
1.364 bisitz 4049:
1.621 raeburn 4050: my ($editlink,$extresform,$anchor,$hiddenres,$nomodal);
1.329 droeschl 4051: my $orig_url = $url;
1.340 raeburn 4052: $orig_url=~s{http(:|:)//https(:|:)//}{https$2//};
1.510 raeburn 4053: $url=~s{^http(|s)(:|:)//}{/adm/wrapper/ext/};
1.501 raeburn 4054: if (!$supplementalflag && $residx && $symb) {
4055: if ((!$isfolder) && (!$ispage)) {
4056: (undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
4057: $url=&Apache::lonnet::clutter($url);
4058: if ($url=~/^\/*uploaded\//) {
4059: $url=~/\.(\w+)$/;
4060: my $embstyle=&Apache::loncommon::fileembstyle($1);
4061: if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
4062: $url='/adm/wrapper'.$url;
4063: } elsif ($embstyle eq 'ssi') {
4064: #do nothing with these
4065: } elsif ($url!~/\.(sequence|page)$/) {
4066: $url='/adm/coursedocs/showdoc'.$url;
4067: }
1.623 raeburn 4068: } elsif ($url=~m{^(|/adm/wrapper)/ext/([^#]+)}) {
4069: my $wrapped = $1;
4070: my $exturl = $2;
4071: if ($wrapped eq '') {
4072: $url='/adm/wrapper'.$url;
4073: }
4074: if (($ENV{'SERVER_PORT'} == 443) && ($exturl !~ /^https:/)) {
4075: $nomodal = 1;
4076: }
1.626 raeburn 4077: } elsif ($url=~m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
1.598 raeburn 4078: $url='/adm/wrapper'.$url;
1.621 raeburn 4079: } elsif ($url eq "/public/$coursedom/$coursenum/syllabus") {
4080: if (($ENV{'SERVER_PORT'} == 443) &&
4081: ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
4082: $url .= '?usehttp=1';
4083: $nomodal = 1;
4084: }
1.598 raeburn 4085: }
1.501 raeburn 4086: if (&Apache::lonnet::symbverify($symb,$url)) {
1.609 raeburn 4087: my $shownsymb = $symb;
4088: if ($isexternal) {
4089: if ($url =~ /^([^#]+)#([^#]+)$/) {
4090: $url = $1;
4091: $anchor = $2;
4092: if ($symb =~ m{^([^#]+)\Q#$anchor\E$}) {
4093: $shownsymb = $1.&escape('#').$anchor;
4094: }
4095: }
4096: }
1.617 raeburn 4097: unless ($env{'request.role.adv'}) {
4098: if ((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i) {
4099: $url = '';
4100: }
4101: if (&Apache::lonnet::EXT('resource.0.hiddenresource',$symb) =~ /^yes$/i) {
4102: $url = '';
4103: $hiddenres = 1;
4104: }
4105: }
4106: if ($url ne '') {
4107: $url.=(($url=~/\?/)?'&':'?').'symb='.&HTML::Entities::encode($shownsymb,'"<>&');
4108: }
1.615 raeburn 4109: } elsif (!$env{'request.role.adv'}) {
4110: my $checkencrypt;
4111: if (((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i) ||
4112: $isencrypted || (&Apache::lonnet::EXT('resource.0.encrypturl',$symb) =~ /^yes$/i)) {
4113: $checkencrypt = 1;
1.620 raeburn 4114: } elsif (ref($navmapref)) {
1.615 raeburn 4115: unless (ref($$navmapref)) {
4116: $$navmapref = Apache::lonnavmaps::navmap->new();
4117: }
4118: if (ref($$navmapref)) {
4119: if (lc($$navmapref->get_mapparam($symb,undef,"0.encrypturl")) eq 'yes') {
4120: $checkencrypt = 1;
4121: }
4122: }
4123: }
4124: if ($checkencrypt) {
4125: my $shownsymb = &Apache::lonenc::encrypted($symb);
4126: my $shownurl = &Apache::lonenc::encrypted($url);
4127: if (&Apache::lonnet::symbverify($shownsymb,$shownurl)) {
4128: $url = $shownurl.(($shownurl=~/\?/)?'&':'?').'symb='.&HTML::Entities::encode($shownsymb,'"<>&');
4129: if ($env{'request.enc'} ne '') {
4130: delete($env{'request.enc'});
4131: }
4132: } else {
4133: $url='';
1.613 raeburn 4134: }
1.612 raeburn 4135: } else {
4136: $url='';
4137: }
1.501 raeburn 4138: } else {
4139: $url='';
4140: }
1.329 droeschl 4141: }
1.621 raeburn 4142: } elsif ($supplementalflag) {
1.610 raeburn 4143: if ($isexternal) {
4144: if ($url =~ /^([^#]+)#([^#]+)$/) {
4145: $url = $1;
4146: $anchor = $2;
1.623 raeburn 4147: if (($url =~ m{^(|/adm/wrapper)/ext/(?!https:)}) && ($ENV{'SERVER_PORT'} == 443)) {
4148: if ($hostname ne '') {
4149: $url = 'http://'.$hostname.$url;
4150: }
4151: $nomodal = 1;
4152: }
1.610 raeburn 4153: }
1.621 raeburn 4154: } elsif ($url =~ m{^\Q/public/$coursedom/$coursenum/syllabus\E}) {
4155: if (($ENV{'SERVER_PORT'} == 443) &&
4156: ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
1.622 raeburn 4157: if ($hostname ne '') {
4158: $url = 'http://'.$hostname.$url;
4159: }
1.621 raeburn 4160: $url .= (($url =~ /\?/) ? '&':'?').'usehttp=1';
4161: $nomodal = 1;
4162: }
1.610 raeburn 4163: }
1.329 droeschl 4164: }
1.615 raeburn 4165: my ($rand_pick_text,$rand_order_text,$hiddenfolder);
1.617 raeburn 4166: my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
1.519 raeburn 4167: if ($isfolder || $ispage || $extension eq 'sequence' || $extension eq 'page') {
1.329 droeschl 4168: my $foldername=&escape($foldertitle);
4169: my $folderpath=$env{'form.folderpath'};
4170: if ($folderpath) { $folderpath.='&' };
1.510 raeburn 4171: if (!$allowed && $supplementalflag) {
1.519 raeburn 4172: $folderpath.=$containerarg.'&'.$foldername;
1.510 raeburn 4173: $url.='folderpath='.&escape($folderpath);
4174: } else {
1.617 raeburn 4175: my $rpicknum = (&LONCAPA::map::getparameter($orderidx,
4176: 'parameter_randompick'))[0];
4177: my $randorder = ((&LONCAPA::map::getparameter($orderidx,
4178: 'parameter_randomorder'))[0]=~/^yes$/i);
4179: my $hiddenmap = ((&LONCAPA::map::getparameter($orderidx,
4180: 'parameter_hiddenresource'))[0]=~/^yes$/i);
4181: my $encryptmap = ((&LONCAPA::map::getparameter($orderidx,
4182: 'parameter_encrypturl'))[0]=~/^yes$/i);
4183: unless ($hiddenmap) {
1.620 raeburn 4184: if (ref($navmapref)) {
4185: unless (ref($$navmapref)) {
4186: $$navmapref = Apache::lonnavmaps::navmap->new();
4187: }
4188: if (ref($$navmapref)) {
4189: if (lc($$navmapref->get_mapparam(undef,$folderurl,"0.hiddenresource")) eq 'yes') {
4190: my @resources = $$navmapref->retrieveResources($folderurl,$filterFunc,1,1);
4191: unless (@resources) {
4192: $hiddenmap = 1;
4193: unless ($env{'request.role.adv'}) {
4194: $url = '';
4195: $hiddenfolder = 1;
4196: }
1.617 raeburn 4197: }
1.615 raeburn 4198: }
4199: }
4200: }
4201: }
1.617 raeburn 4202: unless ($encryptmap) {
1.620 raeburn 4203: if ((ref($navmapref)) && (ref($$navmapref))) {
4204: if (lc($$navmapref->get_mapparam(undef,$folderurl,"0.encrypturl")) eq 'yes') {
4205: $encryptmap = 1;
4206: }
1.617 raeburn 4207: }
4208: }
1.630 raeburn 4209:
1.617 raeburn 4210: # Append randompick number, hidden, and encrypted with ":" to foldername,
4211: # so it gets transferred between levels
4212: $folderpath.=$containerarg.'&'.$foldername.
4213: ':'.$rpicknum.':'.$hiddenmap.':'.$encryptmap.':'.$randorder.':'.$ispage;
1.615 raeburn 4214: unless ($url eq '') {
1.612 raeburn 4215: $url.='folderpath='.&escape($folderpath);
4216: }
1.510 raeburn 4217: my $rpckchk;
4218: if ($rpicknum) {
4219: $rpckchk = ' checked="checked"';
1.543 raeburn 4220: if (($ishash) && (ref($filtersref->{'randompick'}) eq 'ARRAY')) {
4221: push(@{$filtersref->{'randompick'}},$orderidx.':'.$rpicknum);
4222: }
1.510 raeburn 4223: }
1.537 raeburn 4224: my $formname = 'edit_randompick_'.$orderidx;
1.510 raeburn 4225: $rand_pick_text =
1.478 raeburn 4226: '<form action="/adm/coursedocs" method="post" name="'.$formname.'">'."\n".
1.538 raeburn 4227: $form_param."\n".
1.478 raeburn 4228: $form_common."\n".
1.611 raeburn 4229: '<span class="LC_nobreak"><label><input type="checkbox" name="randompick_'.$orderidx.'" id="randompick_'.$orderidx.'" onclick="'."updatePick(this.form,'$orderidx','check');".'"'.$rpckchk.$disabled.' /> '.&mt('Randomly Pick').'</label><input type="hidden" name="rpicknum_'.$orderidx.'" id="rpicknum_'.$orderidx.'" value="'.$rpicknum.'" /><span id="randompicknum_'.$orderidx.'">';
1.510 raeburn 4230: if ($rpicknum ne '') {
4231: $rand_pick_text .= ': <a href="javascript:updatePick('."document.$formname,'$orderidx','link'".')">'.$rpicknum.'</a>';
4232: }
1.537 raeburn 4233: $rand_pick_text .= '</span></span>'.
4234: $form_end;
1.543 raeburn 4235: my $ro_set;
1.617 raeburn 4236: if ($randorder) {
1.543 raeburn 4237: $ro_set = 'checked="checked"';
4238: if (($ishash) && (ref($filtersref->{'randomorder'}) eq 'ARRAY')) {
4239: push(@{$filtersref->{'randomorder'}},$orderidx);
4240: }
4241: }
1.564 raeburn 4242: $formname = 'edit_rorder_'.$orderidx;
1.510 raeburn 4243: $rand_order_text =
1.537 raeburn 4244: '<form action="/adm/coursedocs" method="post" name="'.$formname.'">'."\n".
1.538 raeburn 4245: $form_param."\n".
1.537 raeburn 4246: $form_common."\n".
1.611 raeburn 4247: '<span class="LC_nobreak"><label><input type="checkbox" name="randomorder_'.$orderidx.'" id="randomorder_'.$orderidx.'" onclick="checkForSubmit(this.form,'."'randomorder','settings'".');" '.$ro_set.$disabled.' /> '.&mt('Random Order').' </label></span>'.
1.537 raeburn 4248: $form_end;
1.510 raeburn 4249: }
1.509 raeburn 4250: } elsif ($supplementalflag && !$allowed) {
1.598 raeburn 4251: my $isexttool;
1.626 raeburn 4252: if ($url=~m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
1.598 raeburn 4253: $url='/adm/wrapper'.$url;
4254: $isexttool = 1;
4255: }
1.510 raeburn 4256: $url .= ($url =~ /\?/) ? '&':'?';
1.509 raeburn 4257: $url .= 'folderpath='.&HTML::Entities::encode($esc_path,'<>&"');
1.510 raeburn 4258: if ($title) {
4259: $url .= '&title='.&HTML::Entities::encode($renametitle,'<>&"');
4260: }
1.598 raeburn 4261: if ((($isexternal) || ($isexttool)) && $orderidx) {
1.510 raeburn 4262: $url .= '&idx='.$orderidx;
4263: }
1.610 raeburn 4264: if ($anchor ne '') {
4265: $url .= '&anchor='.&HTML::Entities::encode($anchor,'"<>&');
4266: }
1.329 droeschl 4267: }
1.519 raeburn 4268: my ($tdalign,$tdwidth);
1.501 raeburn 4269: if ($allowed) {
1.630 raeburn 4270: my $fileloc =
1.501 raeburn 4271: &Apache::lonnet::declutter(&Apache::lonnet::filelocation('',$orig_url));
1.510 raeburn 4272: if ($isexternal) {
1.630 raeburn 4273: ($editlink,$extresform) =
1.611 raeburn 4274: &Apache::lonextresedit::extedit_form(0,$residx,$orig_url,$title,$pathitem,
4275: undef,undef,undef,undef,undef,undef,
4276: undef,$disabled);
1.626 raeburn 4277: } elsif ($orig_url =~ m{^/adm/$coursedom/$coursenum/\d+/ext\.tool$}) {
1.598 raeburn 4278: ($editlink,$extresform) =
4279: &Apache::lonextresedit::extedit_form(0,$residx,$orig_url,$title,$pathitem,
4280: undef,undef,undef,'tool',$coursedom,
1.611 raeburn 4281: $coursenum,$ltitoolsref,$disabled);
1.511 raeburn 4282: } elsif (!$isfolder && !$ispage) {
1.503 raeburn 4283: my ($cfile,$home,$switchserver,$forceedit,$forceview) =
4284: &Apache::lonnet::can_edit_resource($fileloc,$coursenum,$coursedom,$orig_url);
1.511 raeburn 4285: if (($cfile ne '') && ($symb ne '' || $supplementalflag)) {
1.610 raeburn 4286: my $suppanchor;
4287: if ($supplementalflag) {
4288: $suppanchor = $anchor;
4289: }
1.630 raeburn 4290: my $jscall =
1.501 raeburn 4291: &Apache::lonhtmlcommon::jump_to_editres($cfile,$home,
4292: $switchserver,
1.503 raeburn 4293: $forceedit,
1.511 raeburn 4294: undef,$symb,
4295: &escape($env{'form.folderpath'}),
1.622 raeburn 4296: $renametitle,$hostname,
4297: '','',1,$suppanchor);
1.501 raeburn 4298: if ($jscall) {
1.518 raeburn 4299: $editlink = '<a class="LC_docs_ext_edit" href="javascript:'.
4300: $jscall.'" >'.&mt('Edit').'</a> '."\n";
1.501 raeburn 4301: }
4302: }
4303: }
1.519 raeburn 4304: $tdalign = ' align="right" valign="top"';
4305: $tdwidth = ' width="80%"';
1.329 droeschl 4306: }
1.408 raeburn 4307: my $reinit;
4308: if ($crstype eq 'Community') {
4309: $reinit = &mt('(re-initialize community to access)');
4310: } else {
4311: $reinit = &mt('(re-initialize course to access)');
1.519 raeburn 4312: }
4313: $line.='<td class="LC_docs_entry_commands"'.$tdalign.'><span class="LC_nobreak">'.$editlink.$renamelink;
1.633 ! raeburn 4314: if ($url =~ /$LONCAPA::assess_re/) {
! 4315: $line.= '<br />';
! 4316: if ($curralias ne '') {
! 4317: $line.='<span class="LC_nobreak"><a href="javascript:delalias('."'$esc_path','$orderidx'".');" class="LC_docs_alias">'.
! 4318: $lt{'da'}.'</a></span>';
! 4319: } else {
! 4320: $line.='<span class="LC_nobreak"><a href="javascript:setalias('."'$esc_path','$orderidx'".');" class="LC_docs_alias">'.
! 4321: $lt{'sa'}.'</a></span>';
! 4322: }
! 4323: }
! 4324: $line.='</td><td>';
1.621 raeburn 4325: my $link;
1.472 raeburn 4326: if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) {
1.469 www 4327: $line.='<a href="'.$url.'"><img src="'.$icon.'" alt="" class="LC_icon" /></a>';
4328: } elsif ($url) {
1.610 raeburn 4329: if ($anchor ne '') {
4330: if ($supplementalflag) {
4331: $anchor = '&anchor='.&HTML::Entities::encode($anchor,'"<>&');
4332: } else {
4333: $anchor = '#'.&HTML::Entities::encode($anchor,'"<>&');
4334: }
4335: }
1.622 raeburn 4336: if ((!$supplementalflag) && ($nomodal) && ($hostname ne '')) {
4337: $link = 'http://'.$hostname.$url;
4338: } else {
4339: $link = $url;
4340: }
4341: $link = &js_escape($link.(($url=~/\?/)?'&':'?').'inhibitmenu=yes'.
1.621 raeburn 4342: (($anchor ne '')?$anchor:''));
4343: if ($nomodal) {
4344: $line.='<a href="#" onclick="javascript:window.open('."'$link','syllabuspreview','height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1')".'; return false;" />'.
4345: '<img src="'.$icon.'" alt="" class="LC_icon" border="0" /></a>';
4346: } else {
4347: $line.=&Apache::loncommon::modal_link($link,
4348: '<img src="'.$icon.'" alt="" class="LC_icon" />',600,500);
4349: }
1.469 www 4350: } else {
4351: $line.='<img src="'.$icon.'" alt="" class="LC_icon" />';
4352: }
1.519 raeburn 4353: $line.='</span></td><td'.$tdwidth.'>';
1.472 raeburn 4354: if (($url=~m{/adm/(coursedocs|supplemental)}) || (!$allowed && $url)) {
1.469 www 4355: $line.='<a href="'.$url.'">'.$title.'</a>';
4356: } elsif ($url) {
1.621 raeburn 4357: if ($nomodal) {
4358: $line.='<a href="#" onclick="javascript:window.open('."'$link','syllabuspreview','height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1')".'; return false;" />'.
4359: $title.'</a>';
4360: } else {
4361: $line.=&Apache::loncommon::modal_link($link,$title,600,500);
4362: }
1.617 raeburn 4363: } elsif (($hiddenfolder) || ($hiddenres)) {
1.632 raeburn 4364: $line.=$title.' <span class="LC_warning LC_docs_reinit_warn">('.&mt('Hidden').')</span>';
1.469 www 4365: } else {
4366: $line.=$title.' <span class="LC_docs_reinit_warn">'.$reinit.'</span>';
4367: }
1.633 ! raeburn 4368: if (($allowed) && ($curralias ne '')) {
! 4369: $line .= '<br /><span class="LC_docs_alias_name">('.$curralias.')</span>';
! 4370: } else {
! 4371: $line .= $extresform;
! 4372: }
! 4373: $line .= '</td>';
1.478 raeburn 4374: $rand_pick_text = ' ' if ($rand_pick_text eq '');
4375: $rand_order_text = ' ' if ($rand_order_text eq '');
1.329 droeschl 4376: if (($allowed) && ($folder!~/^supplemental/)) {
4377: my %lt=&Apache::lonlocal::texthash(
4378: 'hd' => 'Hidden',
4379: 'ec' => 'URL hidden');
1.543 raeburn 4380: my ($enctext,$hidtext);
4381: if ((&LONCAPA::map::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i) {
4382: $enctext = ' checked="checked"';
4383: if (($ishash) && (ref($filtersref->{'encrypturl'}) eq 'ARRAY')) {
4384: push(@{$filtersref->{'encrypturl'}},$orderidx);
4385: }
4386: }
4387: if ((&LONCAPA::map::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i) {
4388: $hidtext = ' checked="checked"';
4389: if (($ishash) && (ref($filtersref->{'randomorder'}) eq 'ARRAY')) {
4390: push(@{$filtersref->{'hiddenresource'}},$orderidx);
4391: }
4392: }
1.537 raeburn 4393: my $formhidden = 'edit_hiddenresource_'.$orderidx;
4394: my $formurlhidden = 'edit_encrypturl_'.$orderidx;
1.329 droeschl 4395: $line.=(<<ENDPARMS);
4396: <td class="LC_docs_entry_parameter">
1.537 raeburn 4397: <form action="/adm/coursedocs" method="post" name="$formhidden">
1.538 raeburn 4398: $form_param
1.478 raeburn 4399: $form_common
1.611 raeburn 4400: <label><input type="checkbox" name="hiddenresource_$orderidx" id="hiddenresource_$orderidx" onclick="checkForSubmit(this.form,'hiddenresource','settings');" $hidtext $disabled /> $lt{'hd'}</label>
1.329 droeschl 4401: $form_end
1.458 raeburn 4402: <br />
1.537 raeburn 4403: <form action="/adm/coursedocs" method="post" name="$formurlhidden">
1.538 raeburn 4404: $form_param
1.478 raeburn 4405: $form_common
1.611 raeburn 4406: <label><input type="checkbox" name="encrypturl_$orderidx" id="encrypturl_$orderidx" onclick="checkForSubmit(this.form,'encrypturl','settings');" $enctext $disabled /> $lt{'ec'}</label>
1.329 droeschl 4407: $form_end
4408: </td>
1.478 raeburn 4409: <td class="LC_docs_entry_parameter">$rand_pick_text<br />
4410: $rand_order_text</td>
1.329 droeschl 4411: ENDPARMS
4412: }
1.379 bisitz 4413: $line.=&Apache::loncommon::end_data_table_row();
1.329 droeschl 4414: return $line;
4415: }
4416:
1.538 raeburn 4417: sub action_restrictions {
4418: my ($cnum,$cdom,$url,$folderpath,$currgroups) = @_;
4419: my %denied = (
4420: cut => 0,
4421: copy => 0,
4422: remove => 0,
4423: );
4424: if ($url=~ m{^/res/.+\.(page|sequence)$}) {
4425: # no copy for published maps
4426: $denied{'copy'} = 1;
1.597 raeburn 4427: } elsif ($url=~m{^/res/lib/templates/([^/]+)\.problem$}) {
4428: unless ($1 eq 'simpleproblem') {
4429: $denied{'copy'} = 1;
4430: }
4431: $denied{'cut'} = 1;
1.538 raeburn 4432: } elsif ($url eq "/uploaded/$cdom/$cnum/group_allfolders.sequence") {
4433: if ($folderpath =~ /^default&[^\&]+$/) {
4434: if ((ref($currgroups) eq 'HASH') && (keys(%{$currgroups}) > 0)) {
4435: $denied{'remove'} = 1;
4436: }
4437: $denied{'cut'} = 1;
4438: $denied{'copy'} = 1;
4439: }
4440: } elsif ($url =~ m{^\Q/uploaded/$cdom/$cnum/group_folder_\E(\w+)\.sequence$}) {
4441: my $group = $1;
4442: if ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+$/) {
4443: if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
4444: $denied{'remove'} = 1;
4445: }
4446: }
4447: $denied{'cut'} = 1;
4448: $denied{'copy'} = 1;
4449: } elsif ($url =~ m{^\Q/adm/$cdom/$cnum/\E(\w+)/smppg$}) {
4450: my $group = $1;
4451: if ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+\&\Qgroup_folder_$group\E\&[^\&]+$/) {
4452: if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
4453: my %groupsettings = &Apache::longroup::get_group_settings($currgroups->{$group});
4454: if (keys(%groupsettings) > 0) {
4455: $denied{'remove'} = 1;
4456: }
4457: $denied{'cut'} = 1;
4458: $denied{'copy'} = 1;
4459: }
4460: }
4461: } elsif ($folderpath =~ /^default&[^\&]+\&group_allfolders\&[^\&]+\&group_folder_(\w+)\&/) {
4462: my $group = $1;
4463: if ($url =~ /group_boards_\Q$group\E/) {
4464: if ((ref($currgroups) eq 'HASH') && (exists($currgroups->{$group}))) {
4465: my %groupsettings = &Apache::longroup::get_group_settings($currgroups->{$group});
4466: if (keys(%groupsettings) > 0) {
4467: if (ref($groupsettings{'functions'}) eq 'HASH') {
4468: if ($groupsettings{'functions'}{'discussion'} eq 'on') {
4469: $denied{'remove'} = 1;
4470: }
4471: }
4472: }
4473: $denied{'cut'} = 1;
4474: $denied{'copy'} = 1;
4475: }
4476: }
4477: }
4478: return %denied;
4479: }
4480:
1.533 raeburn 4481: sub new_timebased_suffix {
1.538 raeburn 4482: my ($dom,$num,$type,$area,$container) = @_;
1.533 raeburn 4483: my ($prefix,$namespace,$idtype,$errtext,$locknotfreed);
1.538 raeburn 4484: if ($type eq 'paste') {
4485: $prefix = $type;
4486: $namespace = 'courseeditor';
1.587 raeburn 4487: $idtype = 'addcode';
1.538 raeburn 4488: } elsif ($type eq 'map') {
1.533 raeburn 4489: $prefix = 'docs';
4490: if ($area eq 'supplemental') {
4491: $prefix = 'supp';
4492: }
4493: $prefix .= $container;
4494: $namespace = 'uploadedmaps';
4495: } else {
4496: $prefix = $type;
4497: $namespace = 'templated';
1.504 raeburn 4498: }
4499: my ($suffix,$freedlock,$error) =
1.587 raeburn 4500: &Apache::lonnet::get_timebased_id($prefix,'num',$namespace,$dom,$num,$idtype);
1.504 raeburn 4501: if (!$suffix) {
1.538 raeburn 4502: if ($type eq 'paste') {
4503: $errtext = &mt('Failed to acquire a unique timestamp-based suffix when adding to the paste buffer.');
4504: } elsif ($type eq 'map') {
1.533 raeburn 4505: $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new folder/page.');
4506: } elsif ($type eq 'smppg') {
4507: $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new simple page.');
1.626 raeburn 4508: } elsif ($type eq 'exttool') {
4509: $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new external tool.');
1.533 raeburn 4510: } else {
1.565 bisitz 4511: $errtext = &mt('Failed to acquire a unique timestamp-based suffix for the new discussion board.');
1.533 raeburn 4512: }
1.504 raeburn 4513: if ($error) {
4514: $errtext .= '<br />'.$error;
4515: }
4516: }
4517: if ($freedlock ne 'ok') {
1.630 raeburn 4518: $locknotfreed =
1.533 raeburn 4519: '<div class="LC_error">'.
4520: &mt('There was a problem removing a lockfile.').' ';
1.538 raeburn 4521: if ($type eq 'paste') {
1.591 raeburn 4522: if ($freedlock eq 'nolock') {
4523: $locknotfreed =
4524: '<div class="LC_error">'.
4525: &mt('A lockfile was not released when you added content to the clipboard earlier in this session.').' '.
4526:
1.593 droeschl 4527: &mt('As a result addition of items to the clipboard will be unavailable until your next log-in.');
1.591 raeburn 4528: } else {
4529: $locknotfreed .=
4530: &mt('This will prevent addition of items to the clipboard until your next log-in.');
4531: }
1.538 raeburn 4532: } elsif ($type eq 'map') {
1.591 raeburn 4533: $locknotfreed .=
4534: &mt('This will prevent creation of additional folders or composite pages in this course.');
1.533 raeburn 4535: } elsif ($type eq 'smppg') {
4536: $locknotfreed .=
4537: &mt('This will prevent creation of additional simple pages in this course.');
1.626 raeburn 4538: } elsif ($type eq 'exttool') {
4539: $locknotfreed .=
4540: &mt('This will prevent creation of additional external tools in this course.');
1.533 raeburn 4541: } else {
4542: $locknotfreed .=
1.565 bisitz 4543: &mt('This will prevent creation of additional discussion boards in this course.');
1.533 raeburn 4544: }
1.538 raeburn 4545: unless ($type eq 'paste') {
4546: $locknotfreed .=
1.560 raeburn 4547: ' '.&mt('Please contact the [_1]helpdesk[_2] for assistance.',
4548: '<a href="/adm/helpdesk" target="_helpdesk">','</a>');
1.538 raeburn 4549: }
4550: $locknotfreed .= '</div>';
1.504 raeburn 4551: }
4552: return ($suffix,$errtext,$locknotfreed);
4553: }
4554:
1.329 droeschl 4555: =pod
4556:
4557: =item tiehash()
4558:
4559: tie the hash
4560:
4561: =cut
4562:
4563: sub tiehash {
4564: my ($mode)=@_;
4565: $hashtied=0;
4566: if ($env{'request.course.fn'}) {
4567: if ($mode eq 'write') {
4568: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db",
4569: &GDBM_WRCREAT(),0640)) {
4570: $hashtied=2;
4571: }
4572: } else {
4573: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.".db",
4574: &GDBM_READER(),0640)) {
4575: $hashtied=1;
4576: }
4577: }
1.364 bisitz 4578: }
1.329 droeschl 4579: }
4580:
4581: sub untiehash {
4582: if ($hashtied) { untie %hash; }
4583: $hashtied=0;
4584: return OK;
4585: }
4586:
4587:
4588:
4589:
4590: sub checkonthis {
4591: my ($r,$url,$level,$title)=@_;
4592: $url=&unescape($url);
4593: $alreadyseen{$url}=1;
4594: $r->rflush();
4595: if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {
4596: $r->print("\n<br />");
4597: if ($level==0) {
4598: $r->print("<br />");
4599: }
4600: for (my $i=0;$i<=$level*5;$i++) {
4601: $r->print(' ');
4602: }
4603: $r->print('<a href="'.$url.'" target="cat">'.
4604: ($title?$title:$url).'</a> ');
4605: if ($url=~/^\/res\//) {
4606: my $result=&Apache::lonnet::repcopy(
4607: &Apache::lonnet::filelocation('',$url));
4608: if ($result eq 'ok') {
4609: $r->print('<span class="LC_success">'.&mt('ok').'</span>');
4610: $r->rflush();
4611: &Apache::lonnet::countacc($url);
4612: $url=~/\.(\w+)$/;
4613: if (&Apache::loncommon::fileembstyle($1) eq 'ssi') {
4614: $r->print('<br />');
4615: $r->rflush();
4616: for (my $i=0;$i<=$level*5;$i++) {
4617: $r->print(' ');
4618: }
4619: $r->print('- '.&mt('Rendering:').' ');
4620: my ($errorcount,$warningcount)=split(/:/,
4621: &Apache::lonnet::ssi_body($url,
4622: ('grade_target'=>'web',
4623: 'return_only_error_and_warning_counts' => 1)));
4624: if (($errorcount) ||
4625: ($warningcount)) {
4626: if ($errorcount) {
1.369 bisitz 4627: $r->print('<img src="/adm/lonMisc/bomb.gif" alt="'.&mt('bomb').'" /><span class="LC_error">'.
1.329 droeschl 4628: &mt('[quant,_1,error]',$errorcount).'</span>');
4629: }
4630: if ($warningcount) {
4631: $r->print('<span class="LC_warning">'.
4632: &mt('[quant,_1,warning]',$warningcount).'</span>');
4633: }
4634: } else {
4635: $r->print('<span class="LC_success">'.&mt('ok').'</span>');
4636: }
4637: $r->rflush();
4638: }
4639: my $dependencies=
4640: &Apache::lonnet::metadata($url,'dependencies');
4641: foreach my $dep (split(/\,/,$dependencies)) {
4642: if (($dep=~/^\/res\//) && (!$alreadyseen{$dep})) {
4643: &checkonthis($r,$dep,$level+1);
4644: }
4645: }
4646: } elsif ($result eq 'unavailable') {
4647: $r->print('<span class="LC_error">'.&mt('connection down').'</span>');
4648: } elsif ($result eq 'not_found') {
4649: unless ($url=~/\$/) {
1.521 bisitz 4650: $r->print('<span class="LC_error">'.&mt('not found').'</span>');
1.329 droeschl 4651: } else {
1.366 bisitz 4652: $r->print('<span class="LC_error">'.&mt('unable to verify variable URL').'</span>');
1.329 droeschl 4653: }
4654: } else {
4655: $r->print('<span class="LC_error">'.&mt('access denied').'</span>');
4656: }
4657: }
4658: }
4659: }
4660:
4661:
4662:
4663: =pod
4664:
4665: =item list_symbs()
4666:
1.485 raeburn 4667: List Content Identifiers
1.329 droeschl 4668:
4669: =cut
4670:
4671: sub list_symbs {
4672: my ($r) = @_;
4673:
1.408 raeburn 4674: my $crstype = &Apache::loncommon::course_type();
1.484 raeburn 4675: $r->print(&Apache::loncommon::start_page('List of Content Identifiers'));
4676: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Content Identifiers'));
4677: $r->print(&startContentScreen('tools'));
1.329 droeschl 4678: my $navmap = Apache::lonnavmaps::navmap->new();
4679: if (!defined($navmap)) {
4680: $r->print('<h2>'.&mt('Retrieval of List Failed').'</h2>'.
4681: '<div class="LC_error">'.
4682: &mt('Unable to retrieve information about course contents').
4683: '</div>');
1.408 raeburn 4684: &Apache::lonnet::logthis('Symb list failed - could not create navmap object in '.lc($crstype).':'.$env{'request.course.id'});
1.329 droeschl 4685: } else {
1.484 raeburn 4686: $r->print('<h4 class="LC_info">'.&mt("$crstype Content Identifiers").'</h4>'.
4687: &Apache::loncommon::start_data_table().
4688: &Apache::loncommon::start_data_table_header_row().
4689: '<th>'.&mt('Title').'</th><th>'.&mt('Identifier').'</th>'.
4690: &Apache::loncommon::end_data_table_header_row()."\n");
4691: my $count;
1.329 droeschl 4692: foreach my $res ($navmap->retrieveResources()) {
1.484 raeburn 4693: $r->print(&Apache::loncommon::start_data_table_row().
4694: '<td>'.$res->compTitle().'</td>'.
4695: '<td>'.$res->symb().'</td>'.
1.521 bisitz 4696: &Apache::loncommon::end_data_table_row());
1.484 raeburn 4697: $count ++;
4698: }
4699: if (!$count) {
4700: $r->print(&Apache::loncommon::start_data_table_row().
4701: '<td colspan="2">'.&mt("$crstype is empty").'</td>'.
4702: &Apache::loncommon::end_data_table_row());
1.329 droeschl 4703: }
1.484 raeburn 4704: $r->print(&Apache::loncommon::end_data_table());
1.329 droeschl 4705: }
1.521 bisitz 4706: $r->print(&endContentScreen());
1.329 droeschl 4707: }
4708:
4709:
4710: sub verifycontent {
4711: my ($r) = @_;
1.408 raeburn 4712: my $crstype = &Apache::loncommon::course_type();
1.549 raeburn 4713: $r->print(&Apache::loncommon::start_page('Verify '.$crstype.' Content'));
4714: $r->print(&Apache::lonhtmlcommon::breadcrumbs('Verify '.$crstype.' Content'));
1.484 raeburn 4715: $r->print(&startContentScreen('tools'));
4716: $r->print('<h4 class="LC_info">'.&mt($crstype.' content verification').'</h4>');
1.329 droeschl 4717: $hashtied=0;
4718: undef %alreadyseen;
4719: %alreadyseen=();
4720: &tiehash();
1.484 raeburn 4721:
1.329 droeschl 4722: foreach my $key (keys(%hash)) {
4723: if ($hash{$key}=~/\.(page|sequence)$/) {
4724: if (($key=~/^src_/) && ($alreadyseen{&unescape($hash{$key})})) {
4725: $r->print('<hr /><span class="LC_error">'.
1.419 bisitz 4726: &mt('The following sequence or page is included more than once in your '.$crstype.':').' '.
1.329 droeschl 4727: &unescape($hash{$key}).'</span><br />'.
1.419 bisitz 4728: &mt('Note that grading records for problems included in this sequence or folder will overlap.').'<hr />');
1.329 droeschl 4729: }
4730: }
4731: if (($key=~/^src\_(.+)$/) && (!$alreadyseen{&unescape($hash{$key})})) {
4732: &checkonthis($r,$hash{$key},0,$hash{'title_'.$1});
4733: }
4734: }
4735: &untiehash();
1.442 www 4736: $r->print('<p class="LC_success">'.&mt('Done').'</p>');
1.521 bisitz 4737: $r->print(&endContentScreen());
1.329 droeschl 4738: }
4739:
4740:
4741: sub devalidateversioncache {
4742: my $src=shift;
4743: &Apache::lonnet::devalidate_cache_new('courseresversion',$env{'request.course.id'}.'_'.
4744: &Apache::lonnet::clutter($src));
4745: }
4746:
4747: sub checkversions {
1.611 raeburn 4748: my ($r,$canedit) = @_;
1.408 raeburn 4749: my $crstype = &Apache::loncommon::course_type();
1.571 raeburn 4750: $r->print(&Apache::loncommon::start_page("Check $crstype Resource Versions"));
4751: $r->print(&Apache::lonhtmlcommon::breadcrumbs("Check $crstype Resource Versions"));
1.484 raeburn 4752: $r->print(&startContentScreen('tools'));
1.442 www 4753:
1.329 droeschl 4754: my $header='';
4755: my $startsel='';
4756: my $monthsel='';
4757: my $weeksel='';
4758: my $daysel='';
4759: my $allsel='';
4760: my %changes=();
4761: my $starttime=0;
4762: my $haschanged=0;
4763: my %setversions=&Apache::lonnet::dump('resourceversions',
4764: $env{'course.'.$env{'request.course.id'}.'.domain'},
4765: $env{'course.'.$env{'request.course.id'}.'.num'});
4766:
4767: $hashtied=0;
4768: &tiehash();
1.611 raeburn 4769: if ($canedit) {
4770: my %newsetversions=();
4771: if ($env{'form.setmostrecent'}) {
4772: $haschanged=1;
4773: foreach my $key (keys(%hash)) {
4774: if ($key=~/^ids\_(\/res\/.+)$/) {
4775: $newsetversions{$1}='mostrecent';
4776: &devalidateversioncache($1);
4777: }
4778: }
4779: } elsif ($env{'form.setcurrent'}) {
4780: $haschanged=1;
4781: foreach my $key (keys(%hash)) {
4782: if ($key=~/^ids\_(\/res\/.+)$/) {
4783: my $getvers=&Apache::lonnet::getversion($1);
4784: if ($getvers>0) {
4785: $newsetversions{$1}=$getvers;
4786: &devalidateversioncache($1);
4787: }
4788: }
1.329 droeschl 4789: }
1.611 raeburn 4790: } elsif ($env{'form.setversions'}) {
4791: $haschanged=1;
4792: foreach my $key (keys(%env)) {
4793: if ($key=~/^form\.set_version_(.+)$/) {
4794: my $src=$1;
4795: if (($env{$key}) && ($env{$key} ne $setversions{$src})) {
4796: $newsetversions{$src}=$env{$key};
4797: &devalidateversioncache($src);
4798: }
4799: }
1.329 droeschl 4800: }
1.611 raeburn 4801: }
4802: if ($haschanged) {
4803: if (&Apache::lonnet::put('resourceversions',\%newsetversions,
4804: $env{'course.'.$env{'request.course.id'}.'.domain'},
4805: $env{'course.'.$env{'request.course.id'}.'.num'}) eq 'ok') {
4806: $r->print(&Apache::loncommon::confirmwrapper(
4807: &Apache::lonhtmlcommon::confirm_success(&mt('Your Version Settings have been Saved'))));
4808: } else {
4809: $r->print(&Apache::loncommon::confirmwrapper(
4810: &Apache::lonhtmlcommon::confirm_success(&mt('An Error Occured while Attempting to Save your Version Settings'),1)));
1.329 droeschl 4811: }
1.611 raeburn 4812: &mark_hash_old();
4813: }
4814: &changewarning($r,'');
1.329 droeschl 4815: }
4816: if ($env{'form.timerange'} eq 'all') {
4817: # show all documents
1.549 raeburn 4818: $header=&mt('All content in '.$crstype);
1.521 bisitz 4819: $allsel=' selected="selected"';
1.329 droeschl 4820: foreach my $key (keys(%hash)) {
4821: if ($key=~/^ids\_(\/res\/.+)$/) {
4822: my $src=$1;
4823: $changes{$src}=1;
4824: }
4825: }
4826: } else {
4827: # show documents which changed
4828: %changes=&Apache::lonnet::dump
4829: ('versionupdate',$env{'course.'.$env{'request.course.id'}.'.domain'},
4830: $env{'course.'.$env{'request.course.id'}.'.num'});
4831: my $firstkey=(keys(%changes))[0];
4832: unless ($firstkey=~/^error\:/) {
4833: unless ($env{'form.timerange'}) {
4834: $env{'form.timerange'}=604800;
4835: }
4836: my $seltext=&mt('during the last').' '.$env{'form.timerange'}.' '
4837: .&mt('seconds');
4838: if ($env{'form.timerange'}==-1) {
4839: $seltext='since start of course';
1.521 bisitz 4840: $startsel=' selected="selected"';
1.329 droeschl 4841: $env{'form.timerange'}=time;
4842: }
4843: $starttime=time-$env{'form.timerange'};
4844: if ($env{'form.timerange'}==2592000) {
4845: $seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
1.521 bisitz 4846: $monthsel=' selected="selected"';
1.329 droeschl 4847: } elsif ($env{'form.timerange'}==604800) {
4848: $seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
1.521 bisitz 4849: $weeksel=' selected="selected"';
1.329 droeschl 4850: } elsif ($env{'form.timerange'}==86400) {
4851: $seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
1.521 bisitz 4852: $daysel=' selected="selected"';
1.329 droeschl 4853: }
4854: $header=&mt('Content changed').' '.$seltext;
4855: } else {
4856: $header=&mt('No content modifications yet.');
4857: }
4858: }
4859: %setversions=&Apache::lonnet::dump('resourceversions',
4860: $env{'course.'.$env{'request.course.id'}.'.domain'},
4861: $env{'course.'.$env{'request.course.id'}.'.num'});
4862: my %lt=&Apache::lonlocal::texthash
1.408 raeburn 4863: ('st' => 'Version changes since start of '.$crstype,
1.329 droeschl 4864: 'lm' => 'Version changes since last Month',
4865: 'lw' => 'Version changes since last Week',
4866: 'sy' => 'Version changes since Yesterday',
4867: 'al' => 'All Resources (possibly large output)',
1.484 raeburn 4868: 'cd' => 'Change display',
1.329 droeschl 4869: 'sd' => 'Display',
4870: 'fi' => 'File',
4871: 'md' => 'Modification Date',
4872: 'mr' => 'Most recently published Version',
1.408 raeburn 4873: 've' => 'Version used in '.$crstype,
4874: 'vu' => 'Set Version to be used in '.$crstype,
4875: 'sv' => 'Set Versions to be used in '.$crstype.' according to Selections below',
1.329 droeschl 4876: 'sm' => 'Keep all Resources up-to-date with most recent Versions (default)',
4877: 'sc' => 'Set all Resource Versions to current Version (Fix Versions)',
1.479 golterma 4878: 'di' => 'Differences',
1.484 raeburn 4879: 'save' => 'Save changes',
4880: 'vers' => 'Version choice(s) for specific resources',
1.479 golterma 4881: 'act' => 'Actions');
1.611 raeburn 4882: my ($disabled,$readonly);
4883: unless ($canedit) {
4884: $disabled = 'disabled="disabled"';
4885: $readonly = 1;
4886: }
1.329 droeschl 4887: $r->print(<<ENDHEADERS);
1.484 raeburn 4888: <h4 class="LC_info">$header</h4>
1.329 droeschl 4889: <form action="/adm/coursedocs" method="post">
4890: <input type="hidden" name="versions" value="1" />
1.484 raeburn 4891: <div class="LC_left_float">
1.479 golterma 4892: <fieldset>
1.484 raeburn 4893: <legend>$lt{'cd'}</legend>
1.329 droeschl 4894: <select name="timerange">
1.521 bisitz 4895: <option value='all'$allsel>$lt{'al'}</option>
4896: <option value="-1"$startsel>$lt{'st'}</option>
4897: <option value="2592000"$monthsel>$lt{'lm'}</option>
4898: <option value="604800"$weeksel>$lt{'lw'}</option>
4899: <option value="86400"$daysel>$lt{'sy'}</option>
1.329 droeschl 4900: </select>
4901: <input type="submit" name="display" value="$lt{'sd'}" />
1.484 raeburn 4902: </fieldset>
4903: </div>
4904: <div class="LC_left_float">
4905: <fieldset>
4906: <legend>$lt{'act'}</legend>
1.611 raeburn 4907: $lt{'sm'}: <input type="submit" name="setmostrecent" value="Go" $disabled /><br />
4908: $lt{'sc'}: <input type="submit" name="setcurrent" value="Go" $disabled />
1.484 raeburn 4909: </fieldset>
4910: </div>
4911: <br clear="all" />
4912: <hr />
4913: <h4>$lt{'vers'}</h4>
1.329 droeschl 4914: ENDHEADERS
1.479 golterma 4915: #number of columns for version history
1.571 raeburn 4916: my %changedbytime;
4917: foreach my $key (keys(%changes)) {
4918: #excludes not versionable problems from resource version history:
4919: next if ($key =~ /^\/res\/lib\/templates/);
4920: my $chg;
4921: if ($env{'form.timerange'} eq 'all') {
4922: my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
4923: $chg = &Apache::lonnet::metadata($root.'.'.$extension,'lastrevisiondate');
4924: } else {
4925: $chg = $changes{$key};
4926: next if ($chg < $starttime);
4927: }
4928: push(@{$changedbytime{$chg}},$key);
4929: }
4930: if (keys(%changedbytime) == 0) {
4931: &untiehash();
4932: $r->print(&mt('No content changes in imported content in specified time frame').
4933: &endContentScreen());
4934: return;
4935: }
1.479 golterma 4936: $r->print(
1.611 raeburn 4937: '<input type="submit" name="setversions" value="'.$lt{'save'}.'"'.$disabled.' />'.
1.521 bisitz 4938: &Apache::loncommon::start_data_table().
4939: &Apache::loncommon::start_data_table_header_row().
4940: '<th>'.&mt('Resources').'</th>'.
4941: "<th>$lt{'mr'}</th>".
4942: "<th>$lt{'ve'}</th>".
4943: "<th>$lt{'vu'}</th>".
4944: '<th>'.&mt('History').'</th>'.
4945: &Apache::loncommon::end_data_table_header_row()
4946: );
1.571 raeburn 4947: foreach my $chg (sort {$b <=> $a } keys(%changedbytime)) {
4948: foreach my $key (sort(@{$changedbytime{$chg}})) {
4949: my ($root,$extension)=($key=~/^(.*)\.(\w+)$/);
4950: my $currentversion=&Apache::lonnet::getversion($key);
4951: if ($currentversion<0) {
4952: $currentversion='<span class="LC_error">'.&mt('Could not be determined.').'</span>';
4953: }
4954: my $linkurl=&Apache::lonnet::clutter($key);
4955: $r->print(
4956: &Apache::loncommon::start_data_table_row().
4957: '<td><b>'.&Apache::lonnet::gettitle($linkurl).'</b><br />'.
4958: '<a href="'.$linkurl.'" target="cat">'.$linkurl.'</a></td>'.
4959: '<td align="right">'.$currentversion.'<span class="LC_fontsize_medium"><br />('.
4960: &Apache::lonlocal::locallocaltime($chg).')</span></td>'.
4961: '<td align="right">'
4962: );
4963: # Used in course
4964: my $usedversion=$hash{'version_'.$linkurl};
4965: if (($usedversion) && ($usedversion ne 'mostrecent')) {
1.521 bisitz 4966: if ($usedversion != $currentversion) {
1.479 golterma 4967: $r->print('<span class="LC_warning">'.$usedversion.'</span>');
1.521 bisitz 4968: } else {
1.479 golterma 4969: $r->print($usedversion);
4970: }
1.329 droeschl 4971: } else {
1.521 bisitz 4972: $r->print($currentversion);
1.329 droeschl 4973: }
1.571 raeburn 4974: $r->print('</td><td title="'.$lt{'vu'}.'">');
4975: # Set version
4976: $r->print(&Apache::loncommon::select_form(
4977: $setversions{$linkurl},
4978: 'set_version_'.$linkurl,
4979: {'select_form_order' => ['',1..$currentversion,'mostrecent'],
4980: '' => '',
4981: 'mostrecent' => &mt('most recent'),
1.611 raeburn 4982: map {$_,$_} (1..$currentversion)},'',$readonly));
1.571 raeburn 4983: my $lastold=1;
4984: for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
4985: my $url=$root.'.'.$prevvers.'.'.$extension;
4986: if (&Apache::lonnet::metadata($url,'lastrevisiondate')<$starttime) {
4987: $lastold=$prevvers;
4988: }
4989: }
4990: $r->print('</td>');
4991: # List all available versions
4992: $r->print('<td valign="top"><span class="LC_fontsize_medium">');
4993: for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {
4994: my $url=$root.'.'.$prevvers.'.'.$extension;
4995: $r->print(
4996: '<span class="LC_nobreak">'
4997: .'<a href="'.&Apache::lonnet::clutter($url).'">'
4998: .&mt('Version [_1]',$prevvers).'</a>'
4999: .' ('.&Apache::lonlocal::locallocaltime(
1.521 bisitz 5000: &Apache::lonnet::metadata($url,'lastrevisiondate'))
1.571 raeburn 5001: .')');
5002: if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {
5003: $r->print(
5004: ' <a href="/adm/diff?filename='.
5005: &Apache::lonnet::clutter($root.'.'.$extension).
5006: &HTML::Entities::encode('&versionone='.$prevvers,'"<>&').
5007: '" target="diffs">'.&mt('Diffs').'</a>');
5008: }
5009: $r->print('</span><br />');
1.329 droeschl 5010: }
1.571 raeburn 5011: $r->print('</span></td>'.&Apache::loncommon::end_data_table_row());
1.521 bisitz 5012: }
1.329 droeschl 5013: }
1.521 bisitz 5014: $r->print(
5015: &Apache::loncommon::end_data_table().
1.611 raeburn 5016: '<input type="submit" name="setversions" value="'.$lt{'save'}.'"'.$disabled.' />'.
1.521 bisitz 5017: '</form>'
5018: );
1.329 droeschl 5019:
5020: &untiehash();
1.521 bisitz 5021: $r->print(&endContentScreen());
1.571 raeburn 5022: return;
1.329 droeschl 5023: }
5024:
5025: sub mark_hash_old {
5026: my $retie_hash=0;
5027: if ($hashtied) {
5028: $retie_hash=1;
5029: &untiehash();
5030: }
5031: &tiehash('write');
5032: $hash{'old'}=1;
5033: &untiehash();
5034: if ($retie_hash) { &tiehash(); }
5035: }
5036:
5037: sub is_hash_old {
5038: my $untie_hash=0;
5039: if (!$hashtied) {
5040: $untie_hash=1;
5041: &tiehash();
5042: }
5043: my $return=$hash{'old'};
5044: if ($untie_hash) { &untiehash(); }
5045: return $return;
5046: }
5047:
5048: sub changewarning {
5049: my ($r,$postexec,$message,$url)=@_;
5050: if (!&is_hash_old()) { return; }
5051: my $pathvar='folderpath';
5052: my $path=&escape($env{'form.folderpath'});
5053: if (!defined($url)) {
5054: $url='/adm/coursedocs?'.$pathvar.'='.$path;
5055: }
5056: my $course_type = &Apache::loncommon::course_type();
5057: if (!defined($message)) {
5058: $message='Changes will become active for your current session after [_1], or the next time you log in.';
5059: }
5060: $r->print("\n\n".
1.372 bisitz 5061: '<script type="text/javascript">'."\n".
5062: '// <![CDATA['."\n".
5063: 'function reinit(tf) { tf.submit();'.$postexec.' }'."\n".
5064: '// ]]>'."\n".
1.369 bisitz 5065: '</script>'."\n".
1.375 tempelho 5066: '<form name="reinitform" method="post" action="/adm/roles" target="loncapaclient">'.
1.329 droeschl 5067: '<input type="hidden" name="orgurl" value="'.$url.
1.372 bisitz 5068: '" /><input type="hidden" name="selectrole" value="1" /><p class="LC_warning">'.
1.329 droeschl 5069: &mt($message,' <input type="hidden" name="'.
5070: $env{'request.role'}.'" value="1" /><input type="button" value="'.
1.369 bisitz 5071: &mt('re-initializing '.$course_type).'" onclick="reinit(this.form)" />').
1.372 bisitz 5072: $help{'Caching'}.'</p></form>'."\n\n");
1.329 droeschl 5073: }
5074:
5075:
5076: sub init_breadcrumbs {
1.571 raeburn 5077: my ($form,$text,$help)=@_;
1.329 droeschl 5078: &Apache::lonhtmlcommon::clear_breadcrumbs();
1.484 raeburn 5079: &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?tools=1",
1.405 bisitz 5080: text=>&Apache::loncommon::course_type().' Editor',
1.329 droeschl 5081: faq=>273,
5082: bug=>'Instructor Interface',
1.571 raeburn 5083: help => $help});
1.329 droeschl 5084: &Apache::lonhtmlcommon::add_breadcrumb({href=>"/adm/coursedocs?".$form.'=1',
5085: text=>$text,
5086: faq=>273,
5087: bug=>'Instructor Interface'});
5088: }
5089:
1.441 www 5090: # subroutine to list form elements
5091: sub create_list_elements {
5092: my @formarr = @_;
5093: my $list = '';
1.501 raeburn 5094: foreach my $button (@formarr){
5095: foreach my $picture (keys(%{$button})) {
5096: $list .= &Apache::lonhtmlcommon::htmltag('li', $picture.' '.$button->{$picture}, {class => 'LC_menubuttons_inline_text', id => ''});
1.441 www 5097: }
5098: }
5099: return $list;
5100: }
1.329 droeschl 5101:
1.441 www 5102: # subroutine to create ul from list elements
5103: sub create_form_ul {
5104: my $list = shift;
5105: my $ul = &Apache::lonhtmlcommon::htmltag('ul',$list, {class => 'LC_ListStyleNormal'});
5106: return $ul;
5107: }
1.329 droeschl 5108:
1.442 www 5109: #
5110: # Start tabs
5111: #
5112:
5113: sub startContentScreen {
1.484 raeburn 5114: my ($mode) = @_;
5115: my $output = '<ul class="LC_TabContentBigger" id="mainnav">';
1.472 raeburn 5116: if (($mode eq 'navmaps') || ($mode eq 'supplemental')) {
1.484 raeburn 5117: $output .= '<li'.(($mode eq 'navmaps')?' class="active"':'').'><a href="/adm/navmaps"><b> '.&mt('Content Overview').' </b></a></li>'."\n";
5118: $output .= '<li'.(($mode eq 'coursesearch')?' class="active"':'').'><a href="/adm/searchcourse"><b> '.&mt('Content Search').' </b></a></li>'."\n";
5119: $output .= '<li'.(($mode eq 'courseindex')?' class="active"':'').'><a href="/adm/indexcourse"><b> '.&mt('Content Index').' </b></a></li>'."\n";
5120: $output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/supplemental"><b>'.&mt('Supplemental Content').'</b></a></li>';
5121: } else {
1.549 raeburn 5122: $output .= '<li '.(($mode eq 'docs')?' class="active"':'').' id="tabbededitor"><a href="/adm/coursedocs?forcestandard=1"><b> '.&mt('Main Content Editor').' </b></a></li>'."\n";
1.484 raeburn 5123: $output .= '<li '.(($mode eq 'suppdocs')?' class="active"':'').'><a href="/adm/coursedocs?forcesupplement=1"><b>'.&mt('Supplemental Content Editor').'</b></a></li>'."\n";
5124: $output .= '<li '.(($mode eq 'tools')?' class="active"':'').'><a href="/adm/coursedocs?tools=1"><b> '.&mt('Content Utilities').' </b></a></li>'."\n";
5125: '><a href="/adm/coursedocs?tools=1"><b> '.&mt('Content Utilities').' </b></a></li>';
5126: }
5127: $output .= "\n".'</ul>'."\n";
5128: $output .= '<div class="LC_DocsBox" style="clear:both;margin:0;" id="contenteditor">'.
5129: '<div id="maincoursedoc" style="margin:0 0;padding:0 0;">'.
5130: '<div class="LC_ContentBox" id="mainCourseDocuments" style="display: block;">';
5131: return $output;
1.442 www 5132: }
5133:
5134: #
5135: # End tabs
5136: #
5137:
5138: sub endContentScreen {
1.484 raeburn 5139: return '</div></div></div>';
1.442 www 5140: }
1.329 droeschl 5141:
1.446 www 5142: sub supplemental_base {
1.548 raeburn 5143: return 'supplemental&'.&escape(&mt('Supplemental Content'));
1.446 www 5144: }
5145:
1.329 droeschl 5146: sub handler {
5147: my $r = shift;
5148: &Apache::loncommon::content_type($r,'text/html');
5149: $r->send_http_header;
5150: return OK if $r->header_only;
1.484 raeburn 5151:
5152: # get course data
1.408 raeburn 5153: my $crstype = &Apache::loncommon::course_type();
1.484 raeburn 5154: my $coursenum=$env{'course.'.$env{'request.course.id'}.'.num'};
5155: my $coursedom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5156:
1.606 raeburn 5157: # get docroot
5158: my $londocroot = $r->dir_config('lonDocRoot');
5159:
1.484 raeburn 5160: # graphics settings
5161: $iconpath = &Apache::loncommon::lonhttpdurl($r->dir_config('lonIconsURL').'/');
1.329 droeschl 5162:
1.443 www 5163: #
1.329 droeschl 5164: # --------------------------------------------- Initialize help topics for this
5165: foreach my $topic ('Adding_Course_Doc','Main_Course_Documents',
1.627 raeburn 5166: 'Adding_External_Resource','Adding_External_Tool',
5167: 'Navigate_Content','Adding_Folders','Docs_Overview',
5168: 'Load_Map','Supplemental','Score_Upload_Form',
5169: 'Adding_Pages','Importing_LON-CAPA_Resource',
5170: 'Importing_IMS_Course','Uploading_From_Harddrive',
5171: 'Course_Roster','Web_Page','Dropbox','Simple_Problem') {
1.329 droeschl 5172: $help{$topic}=&Apache::loncommon::help_open_topic('Docs_'.$topic);
5173: }
5174: # Composite help files
5175: $help{'Syllabus'} = &Apache::loncommon::help_open_topic(
5176: 'Docs_About_Syllabus,Docs_Editing_Templated_Pages');
5177: $help{'Simple Page'} = &Apache::loncommon::help_open_topic(
5178: 'Docs_About_Simple_Page,Docs_Editing_Templated_Pages');
5179: $help{'Bulletin Board'} = &Apache::loncommon::help_open_topic(
5180: 'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages');
1.347 weissno 5181: $help{'My Personal Information Page'} = &Apache::loncommon::help_open_topic(
1.329 droeschl 5182: 'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages');
1.353 weissno 5183: $help{'Group Portfolio'} = &Apache::loncommon::help_open_topic('Docs_About_Group_Files');
1.329 droeschl 5184: $help{'Caching'} = &Apache::loncommon::help_open_topic('Caching');
1.534 raeburn 5185:
1.611 raeburn 5186: my ($allowed,$canedit,$canview,$noendpage,$disabled);
1.472 raeburn 5187: # URI is /adm/supplemental when viewing supplemental docs in non-edit mode.
5188: unless ($r->uri eq '/adm/supplemental') {
5189: # does this user have privileges to modify content.
1.611 raeburn 5190: if (&Apache::lonnet::allowed('mdc',$env{'request.course.id'})) {
5191: $allowed = 1;
5192: $canedit = 1;
5193: $canview = 1;
5194: } elsif (&Apache::lonnet::allowed('cev',$env{'request.course.id'})) {
5195: $allowed = 1;
5196: $canview = 1;
5197: }
5198: }
5199: unless ($canedit) {
5200: $disabled = ' disabled="disabled"';
1.472 raeburn 5201: }
1.582 raeburn 5202: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['inhibitmenu']);
5203: if ($allowed && $env{'form.verify'}) {
1.571 raeburn 5204: &init_breadcrumbs('verify','Verify Content','Docs_Verify_Content');
1.329 droeschl 5205: &verifycontent($r);
5206: } elsif ($allowed && $env{'form.listsymbs'}) {
1.484 raeburn 5207: &init_breadcrumbs('listsymbs','List Content IDs');
1.329 droeschl 5208: &list_symbs($r);
5209: } elsif ($allowed && $env{'form.docslog'}) {
5210: &init_breadcrumbs('docslog','Show Log');
1.484 raeburn 5211: my $folder = $env{'form.folder'};
5212: if ($folder eq '') {
5213: $folder='default';
5214: }
1.611 raeburn 5215: &docs_change_log($r,$coursenum,$coursedom,$folder,$allowed,$crstype,$iconpath,$canedit);
1.329 droeschl 5216: } elsif ($allowed && $env{'form.versions'}) {
1.571 raeburn 5217: &init_breadcrumbs('versions','Check/Set Resource Versions','Docs_Check_Resource_Versions');
1.611 raeburn 5218: &checkversions($r,$canedit);
5219: } elsif ($canedit && $env{'form.dumpcourse'}) {
1.568 raeburn 5220: &init_breadcrumbs('dumpcourse','Copy '.&Apache::loncommon::course_type().' Content to Authoring Space');
1.329 droeschl 5221: &dumpcourse($r);
1.611 raeburn 5222: } elsif ($canedit && $env{'form.exportcourse'}) {
1.377 bisitz 5223: &init_breadcrumbs('exportcourse','IMS Export');
1.475 raeburn 5224: &Apache::imsexport::exportcourse($r);
1.329 droeschl 5225: } else {
1.611 raeburn 5226: if ($canedit && $env{'form.authorrole'}) {
1.606 raeburn 5227: $noendpage = 1;
5228: my ($redirect,$error) = &makenewproblem($r,$coursedom,$coursenum);
5229: if ($redirect) {
5230: if (($env{'form.newresourceadd'}) && ($env{'form.folderpath'})) {
5231: my $container = 'sequence';
5232: my ($breadcrumbtrail,$randompick,$ishidden,$isencrypted,$plain,
5233: $is_random_order,$container) =
5234: &Apache::lonhtmlcommon::docs_breadcrumbs($allowed,$crstype,1);
5235: my (@folders)=split('&',$env{'form.folderpath'});
5236: $env{'form.foldername'}=&unescape(pop(@folders));
5237: my $folder=pop(@folders);
5238: my ($errtext,$fatal) = &mapread($coursenum,$coursedom,
5239: $folder.'.'.$container);
5240: my $warning;
5241: if ($fatal) {
5242: if ($container eq 'page') {
5243: $warning = &mt('An error occurred retrieving the contents of the current page.');
5244: } else {
5245: $warning = &mt('An error occurred retrieving the contents of the current folder.');
5246: }
5247: } else {
5248: my $url = $redirect;
5249: my $srcfile = $londocroot.$url;
5250: $url =~ s{^/priv/}{/res/};
5251: my $targetfile = $londocroot.$url;
5252: my $nokeyref = &Apache::lonpublisher::getnokey($r->dir_config('lonIncludes'));
5253: my $output = &Apache::lonpublisher::batchpublish($r,$srcfile,$targetfile,$nokeyref,1);
5254: $env{'form.folder'} = $folder;
5255: &snapshotbefore();
5256: my $title = &LONCAPA::map::qtunescape($env{'form.newresourcetitle'});
5257: my $ext = 'false';
5258: my $newidx = &LONCAPA::map::getresidx(&LONCAPA::map::qtunescape($url));
5259: $LONCAPA::map::resources[$newidx]=$title.':'.&LONCAPA::map::qtunescape($url).
5260: ':'.$ext.':normal:res';
5261: push(@LONCAPA::map::order,$newidx);
5262: &LONCAPA::map::storeparameter($newidx,'parameter_hiddenresource','yes',
5263: 'string_yesno');
5264: &remember_parms($newidx,'hiddenresource','set','yes');
5265: ($errtext,$fatal) =
5266: &storemap($coursenum, $coursedom, $folder.'.'.$container,1);
5267: &log_differences($plain);
5268: &mark_hash_old();
5269: $r->internal_redirect($redirect);
5270: return OK;
5271: }
5272: }
5273: }
5274: }
1.445 www 5275: #
5276: # Done catching special calls
1.484 raeburn 5277: # The whole rest is for course and supplemental documents and utilities menu
1.445 www 5278: # Get the parameters that may be needed
5279: #
5280: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.519 raeburn 5281: ['folderpath',
5282: 'forcesupplement','forcestandard',
1.510 raeburn 5283: 'tools','symb','command','supppath']);
1.445 www 5284:
5285: # standard=1: this is a "new-style" course with an uploaded map as top level
5286: # standard=2: this is a "old-style" course, and there is nothing we can do
1.329 droeschl 5287:
5288: my $standard=($env{'request.course.uri'}=~/^\/uploaded\//);
1.445 www 5289:
1.484 raeburn 5290: # Decide whether this should display supplemental or main content or utilities
1.445 www 5291: # supplementalflag=1: show supplemental documents
5292: # supplementalflag=0: show standard documents
1.484 raeburn 5293: # toolsflag=1: show utilities
1.445 www 5294:
1.561 raeburn 5295: my $unesc_folderpath = &unescape($env{'form.folderpath'});
5296: my $supplementalflag=($unesc_folderpath=~/^supplemental/);
5297: if (($unesc_folderpath=~/^default/) || ($unesc_folderpath eq "")) {
1.445 www 5298: $supplementalflag=0;
5299: }
5300: if ($env{'form.forcesupplement'}) { $supplementalflag=1; }
5301: if ($env{'form.forcestandard'}) { $supplementalflag=0; }
5302: unless ($allowed) { $supplementalflag=1; }
5303: unless ($standard) { $supplementalflag=1; }
1.484 raeburn 5304: my $toolsflag=0;
5305: if ($env{'form.tools'}) { $toolsflag=1; }
1.445 www 5306:
1.329 droeschl 5307: my $script='';
5308: my $showdoc=0;
1.457 raeburn 5309: my $addentries = {};
1.475 raeburn 5310: my $container;
1.329 droeschl 5311: my $containertag;
1.508 raeburn 5312: my $pathitem;
1.598 raeburn 5313: my %ltitools;
1.617 raeburn 5314: my $hiddentop;
1.615 raeburn 5315: my $navmap;
1.617 raeburn 5316: my $filterFunc = sub { my $res = shift; return (!$res->randomout() && !$res->is_map()) };
1.329 droeschl 5317:
1.464 www 5318: # Do we directly jump somewhere?
1.525 raeburn 5319: if (($env{'form.command'} eq 'direct') || ($env{'form.command'} eq 'directnav')) {
1.472 raeburn 5320: if ($env{'form.symb'} ne '') {
1.522 raeburn 5321: $env{'form.folderpath'}=
1.617 raeburn 5322: &Apache::loncommon::symb_to_docspath($env{'form.symb'},\$navmap);
1.530 raeburn 5323: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} =>
1.525 raeburn 5324: $env{'form.command'}.'_'.$env{'form.symb'}});
1.472 raeburn 5325: } elsif ($env{'form.supppath'} ne '') {
5326: $env{'form.folderpath'}=$env{'form.supppath'};
1.530 raeburn 5327: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} =>
1.525 raeburn 5328: $env{'form.command'}.'_'.$env{'form.supppath'}});
1.466 www 5329: }
1.472 raeburn 5330: } elsif ($env{'form.command'} eq 'editdocs') {
1.617 raeburn 5331: $env{'form.folderpath'} = &default_folderpath($coursenum,$coursedom,\$navmap);
1.525 raeburn 5332: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => $env{'form.command'}});
1.472 raeburn 5333: } elsif ($env{'form.command'} eq 'editsupp') {
1.617 raeburn 5334: $env{'form.folderpath'} = &supplemental_base();
1.525 raeburn 5335: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/supplemental'});
5336: } elsif ($env{'form.command'} eq 'contents') {
5337: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/navmaps'});
5338: } elsif ($env{'form.command'} eq 'home') {
5339: &Apache::lonnet::appenv({'docs.exit.'.$env{'request.course.id'} => '/adm/menu'});
1.464 www 5340: }
5341:
1.525 raeburn 5342:
1.445 www 5343: # Where do we store these for when we come back?
5344: my $stored_folderpath='docs_folderpath';
5345: if ($supplementalflag) {
5346: $stored_folderpath='docs_sup_folderpath';
5347: }
1.464 www 5348:
1.519 raeburn 5349: # No folderpath, and in edit mode, see if we have something stored
5350: if ((!$env{'form.folderpath'}) && $allowed) {
1.445 www 5351: &Apache::loncommon::restore_course_settings($stored_folderpath,
1.510 raeburn 5352: {'folderpath' => 'scalar'});
1.615 raeburn 5353:
5354: if (&unescape($env{'form.folderpath'}) =~ m{^(default|supplemental)&}) {
5355: if ($supplementalflag) {
5356: undef($env{'form.folderpath'}) if ($1 eq 'default');
5357: } else {
5358: undef($env{'form.folderpath'}) if ($1 eq 'supplemental');
5359: }
5360: } else {
1.523 raeburn 5361: undef($env{'form.folderpath'});
5362: }
1.329 droeschl 5363: }
1.446 www 5364:
5365: # If we are not allowed to make changes, all we can see are supplemental docs
1.409 raeburn 5366: if (!$allowed) {
1.446 www 5367: unless ($env{'form.folderpath'} =~ /^supplemental/) {
5368: $env{'form.folderpath'} = &supplemental_base();
1.409 raeburn 5369: }
5370: }
1.446 www 5371: # Make the zeroth entry in supplemental docs page paths, so we can get to top level
1.329 droeschl 5372: if ($env{'form.folderpath'} =~ /^supplemental_\d+/) {
1.446 www 5373: $env{'form.folderpath'} = &supplemental_base()
5374: .'&'.
1.329 droeschl 5375: $env{'form.folderpath'};
5376: }
1.615 raeburn 5377: # If allowed and user's role is not advanced check folderpath is not hidden
5378: if (($allowed) && (!$env{'request.role.adv'}) &&
5379: ($env{'form.folderpath'} ne '') && (!$supplementalflag)) {
5380: my $folderurl;
5381: my @pathitems = split(/\&/,$env{'form.folderpath'});
1.617 raeburn 5382: my $folder = $pathitems[-2];
5383: if ($folder eq '') {
5384: undef($env{'form.folderpath'});
5385: } else {
5386: $folderurl = "uploaded/$coursedom/$coursenum/$folder";
1.615 raeburn 5387: if ((split(/\:/,$pathitems[-1]))[4]) {
5388: $folderurl .= '.page';
5389: } else {
5390: $folderurl .= '.sequence';
5391: }
1.617 raeburn 5392: unless (ref($navmap)) {
5393: $navmap = Apache::lonnavmaps::navmap->new();
5394: }
1.615 raeburn 5395: if (ref($navmap)) {
5396: if (lc($navmap->get_mapparam(undef,$folderurl,"0.hiddenresource")) eq 'yes') {
1.617 raeburn 5397: my @resources = $navmap->retrieveResources($folderurl,$filterFunc,1,1);
5398: unless (@resources) {
5399: undef($env{'form.folderpath'});
5400: }
1.615 raeburn 5401: }
5402: }
5403: }
5404: }
5405:
5406:
1.446 www 5407: # If after all of this, we still don't have any paths, make them
1.519 raeburn 5408: unless ($env{'form.folderpath'}) {
1.446 www 5409: if ($supplementalflag) {
5410: $env{'form.folderpath'}=&supplemental_base();
1.617 raeburn 5411: } elsif ($allowed) {
5412: ($env{'form.folderpath'},$hiddentop) = &default_folderpath($coursenum,$coursedom,\$navmap);
1.446 www 5413: }
1.472 raeburn 5414: }
1.446 www 5415:
1.445 www 5416: # Store this
1.484 raeburn 5417: unless ($toolsflag) {
1.615 raeburn 5418: if (($allowed) && ($env{'form.folderpath'} ne '')) {
1.510 raeburn 5419: &Apache::loncommon::store_course_settings($stored_folderpath,
1.519 raeburn 5420: {'folderpath' => 'scalar'});
1.510 raeburn 5421: }
1.519 raeburn 5422: my $folderpath;
1.484 raeburn 5423: if ($env{'form.folderpath'}) {
1.519 raeburn 5424: $folderpath = $env{'form.folderpath'};
5425: my (@folders)=split('&',$env{'form.folderpath'});
5426: $env{'form.foldername'}=&unescape(pop(@folders));
5427: if ($env{'form.foldername'} =~ /\:1$/) {
5428: $container = 'page';
5429: } else {
5430: $container = 'sequence';
5431: }
5432: $env{'form.folder'}=pop(@folders);
1.484 raeburn 5433: } else {
1.519 raeburn 5434: if ($env{'form.folder'} eq '' ||
5435: $env{'form.folder'} eq 'supplemental') {
1.617 raeburn 5436: if ($env{'form.folder'} eq 'supplemental') {
5437: $folderpath=&supplemental_base();
5438: } elsif (!$hiddentop) {
5439: $folderpath='default&'.
5440: &escape(&mt('Main Content').':::::');
5441: }
1.484 raeburn 5442: }
5443: }
1.519 raeburn 5444: $containertag = '<input type="hidden" name="folderpath" value="" />';
5445: $pathitem = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($folderpath,'<>&"').'" />';
1.484 raeburn 5446: if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {
5447: $showdoc='/'.$1;
5448: }
5449: if ($showdoc) { # got called in sequence from course
5450: $allowed=0;
5451: } else {
1.611 raeburn 5452: if ($canedit) {
1.484 raeburn 5453: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);
5454: $script=&Apache::lonratedt::editscript('simple');
1.433 raeburn 5455: }
5456: }
1.329 droeschl 5457: }
5458:
1.344 bisitz 5459: # get personal data
1.329 droeschl 5460: my $uname=$env{'user.name'};
5461: my $udom=$env{'user.domain'};
5462: my $plainname=&escape(&Apache::loncommon::plainname($uname,$udom));
5463:
5464: if ($allowed) {
1.484 raeburn 5465: if ($toolsflag) {
5466: $script .= &inject_data_js();
5467: my ($home,$other,%outhash)=&authorhosts();
5468: if (!$home && $other) {
5469: my @hosts;
5470: foreach my $aurole (keys(%outhash)) {
5471: unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) {
5472: push(@hosts,$outhash{$aurole});
5473: }
5474: }
5475: $script .= &dump_switchserver_js(@hosts);
5476: }
1.458 raeburn 5477: } else {
1.570 raeburn 5478: my $tid = 1;
1.484 raeburn 5479: my @tabids;
5480: if ($supplementalflag) {
5481: @tabids = ('002','ee2','ff2');
1.570 raeburn 5482: $tid = 2;
1.484 raeburn 5483: } else {
5484: @tabids = ('aa1','bb1','cc1','ff1');
1.519 raeburn 5485: unless ($env{'form.folderpath'} =~ /\:1$/) {
1.484 raeburn 5486: unshift(@tabids,'001');
5487: push(@tabids,('dd1','ee1'));
5488: }
1.458 raeburn 5489: }
1.484 raeburn 5490: my $tabidstr = join("','",@tabids);
1.598 raeburn 5491: %ltitools = &Apache::lonnet::get_domain_ltitools($coursedom);
1.600 raeburn 5492: my $posslti = keys(%ltitools);
1.622 raeburn 5493: my $hostname = $r->hostname();
1.606 raeburn 5494: $script .= &editing_js($udom,$uname,$supplementalflag,$coursedom,$coursenum,$posslti,
1.622 raeburn 5495: $londocroot,$canedit,$hostname,\$navmap).
1.484 raeburn 5496: &history_tab_js().
5497: &inject_data_js().
1.570 raeburn 5498: &Apache::lonhtmlcommon::resize_scrollbox_js('docs',$tabidstr,$tid).
1.598 raeburn 5499: &Apache::lonextresedit::extedit_javascript(\%ltitools);
1.484 raeburn 5500: $addentries = {
1.485 raeburn 5501: onload => "javascript:resize_scrollbox('contentscroll','1','1');",
1.484 raeburn 5502: };
1.458 raeburn 5503: }
1.538 raeburn 5504: $script .= &paste_popup_js();
1.501 raeburn 5505: my $confirm_switch = &mt("Editing requires switching to the resource's home server.").'\n'.
5506: &mt('Switch server?');
5507:
5508:
1.329 droeschl 5509: }
5510: # -------------------------------------------------------------------- Body tag
1.369 bisitz 5511: $script = '<script type="text/javascript">'."\n"
1.372 bisitz 5512: .'// <![CDATA['."\n"
5513: .$script."\n"
5514: .'// ]]>'."\n"
1.595 musolffc 5515: .'</script>'."\n"
5516: .'<script type="text/javascript"
5517: src="/res/adm/includes/file_upload.js"></script>'."\n";
1.385 bisitz 5518:
5519: # Breadcrumbs
5520: &Apache::lonhtmlcommon::clear_breadcrumbs();
1.510 raeburn 5521:
5522: if ($showdoc) {
5523: $r->print(&Apache::loncommon::start_page("$crstype documents",undef,
5524: {'force_register' => $showdoc,}));
1.571 raeburn 5525: } elsif ($toolsflag) {
1.611 raeburn 5526: my ($breadtext,$breadtitle);
1.617 raeburn 5527: $breadtext = "$crstype Editor";
1.611 raeburn 5528: if ($canedit) {
5529: $breadtitle = 'Editing '.$crstype.' Contents';
5530: } else {
5531: $breadtext .= ' (View-only mode)';
5532: $breadtitle = 'Viewing '.$crstype.' Contents';
5533: }
1.571 raeburn 5534: &Apache::lonhtmlcommon::add_breadcrumb({
1.611 raeburn 5535: href=>"/adm/coursedocs",text=>$breadtext});
1.571 raeburn 5536: $r->print(&Apache::loncommon::start_page("$crstype Contents", $script)
5537: .&Apache::loncommon::help_open_menu('','',273,'RAT')
5538: .&Apache::lonhtmlcommon::breadcrumbs(
1.611 raeburn 5539: $breadtitle)
1.571 raeburn 5540: );
1.510 raeburn 5541: } elsif ($r->uri eq '/adm/supplemental') {
5542: my $brcrum = &Apache::lonhtmlcommon::docs_breadcrumbs(undef,$crstype);
5543: $r->print(&Apache::loncommon::start_page("Supplemental $crstype Content",undef,
5544: {'bread_crumbs' => $brcrum,}));
5545: } else {
1.611 raeburn 5546: my ($breadtext,$breadtitle,$helpitem);
1.617 raeburn 5547: $breadtext = "$crstype Editor";
1.611 raeburn 5548: if ($canedit) {
5549: $breadtitle = 'Editing '.$crstype.' Contents';
5550: $helpitem = 'Docs_Adding_Course_Doc';
5551: } else {
5552: $breadtext .= ' (View-only mode)';
5553: $breadtitle = 'Viewing '.$crstype.' Contents';
5554: $helpitem = 'Docs_Viewing_Course_Doc';
5555: }
1.392 raeburn 5556: &Apache::lonhtmlcommon::add_breadcrumb({
1.611 raeburn 5557: href=>"/adm/coursedocs",text=>$breadtext});
1.446 www 5558: $r->print(&Apache::loncommon::start_page("$crstype Contents", $script,
1.510 raeburn 5559: {'add_entries' => $addentries}
5560: )
1.392 raeburn 5561: .&Apache::loncommon::help_open_menu('','',273,'RAT')
5562: .&Apache::lonhtmlcommon::breadcrumbs(
1.611 raeburn 5563: $breadtitle,
5564: $helpitem)
1.392 raeburn 5565: );
5566: }
1.364 bisitz 5567:
1.329 droeschl 5568: my %allfiles = ();
5569: my %codebase = ();
1.440 raeburn 5570: my ($upload_result,$upload_output,$uploadphase);
1.611 raeburn 5571: if ($canedit) {
1.329 droeschl 5572: if (($env{'form.uploaddoc.filename'}) &&
5573: ($env{'form.cmd'}=~/^upload_(\w+)/)) {
1.440 raeburn 5574: my $context = $1;
5575: # Process file upload - phase one - upload and parse primary file.
1.329 droeschl 5576: undef($hadchanges);
1.440 raeburn 5577: $uploadphase = &process_file_upload(\$upload_output,$coursenum,$coursedom,
1.552 raeburn 5578: \%allfiles,\%codebase,$context,$crstype);
1.329 droeschl 5579: if ($hadchanges) {
5580: &mark_hash_old();
5581: }
1.440 raeburn 5582: $r->print($upload_output);
5583: } elsif ($env{'form.phase'} eq 'upload_embedded') {
5584: # Process file upload - phase two - upload embedded objects
5585: $uploadphase = 'check_embedded';
5586: my $primaryurl = &HTML::Entities::encode($env{'form.primaryurl'},'<>&"');
5587: my $state = &embedded_form_elems($uploadphase,$primaryurl,
5588: $env{'form.newidx'});
5589: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
5590: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5591: my ($destination,$dir_root) = &embedded_destination();
5592: my $url_root = '/uploaded/'.$docudom.'/'.$docuname;
5593: my $actionurl = '/adm/coursedocs';
1.630 raeburn 5594: my ($result,$flag) =
1.440 raeburn 5595: &Apache::loncommon::upload_embedded('coursedoc',$destination,
5596: $docuname,$docudom,$dir_root,$url_root,undef,undef,undef,$state,
5597: $actionurl);
5598: $r->print($result.&return_to_editor());
5599: } elsif ($env{'form.phase'} eq 'check_embedded') {
5600: # Process file upload - phase three - modify references in HTML file
5601: $uploadphase = 'modified_orightml';
5602: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
5603: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
5604: my ($destination,$dir_root) = &embedded_destination();
1.630 raeburn 5605: my $result =
1.482 raeburn 5606: &Apache::loncommon::modify_html_refs('coursedoc',$destination,
5607: $docuname,$docudom,undef,
5608: $dir_root);
1.630 raeburn 5609: $r->print($result.&return_to_editor());
1.476 raeburn 5610: } elsif ($env{'form.phase'} eq 'decompress_uploaded') {
5611: $uploadphase = 'decompress_phase_one';
5612: $r->print(&decompression_phase_one().
5613: &return_to_editor());
5614: } elsif ($env{'form.phase'} eq 'decompress_cleanup') {
5615: $uploadphase = 'decompress_phase_two';
5616: $r->print(&decompression_phase_two().
5617: &return_to_editor());
1.329 droeschl 5618: }
5619: }
5620:
1.484 raeburn 5621: if ($allowed && $toolsflag) {
5622: $r->print(&startContentScreen('tools'));
1.611 raeburn 5623: $r->print(&generate_admin_menu($crstype,$canedit));
1.484 raeburn 5624: $r->print(&endContentScreen());
5625: } elsif ((!$showdoc) && (!$uploadphase)) {
1.329 droeschl 5626: # -----------------------------------------------------------------------------
5627: my %lt=&Apache::lonlocal::texthash(
5628: 'copm' => 'All documents out of a published map into this folder',
1.501 raeburn 5629: 'upfi' => 'Upload File',
1.553 raeburn 5630: 'upld' => 'Upload Content',
1.329 droeschl 5631: 'srch' => 'Search',
5632: 'impo' => 'Import',
1.487 raeburn 5633: 'lnks' => 'Import from Stored Links',
1.502 raeburn 5634: 'impm' => 'Import from Assembled Map',
1.630 raeburn 5635: 'imcr' => 'Import from Course Resources',
1.598 raeburn 5636: 'extr' => 'External Resource',
5637: 'extt' => 'External Tool',
1.329 droeschl 5638: 'selm' => 'Select Map',
5639: 'load' => 'Load Map',
5640: 'newf' => 'New Folder',
5641: 'newp' => 'New Composite Page',
5642: 'syll' => 'Syllabus',
1.425 raeburn 5643: 'navc' => 'Table of Contents',
1.343 biermanm 5644: 'sipa' => 'Simple Course Page',
1.329 droeschl 5645: 'sipr' => 'Simple Problem',
1.630 raeburn 5646: 'webp' => 'Blank Web Page (editable)',
1.606 raeburn 5647: 'stpr' => 'Standard Problem',
5648: 'news' => 'New sub-directory',
5649: 'crpr' => 'Create Problem',
1.329 droeschl 5650: 'drbx' => 'Drop Box',
1.451 www 5651: 'scuf' => 'External Scores (handgrade, upload, clicker)',
1.336 schafran 5652: 'bull' => 'Discussion Board',
1.347 weissno 5653: 'mypi' => 'My Personal Information Page',
1.353 weissno 5654: 'grpo' => 'Group Portfolio',
1.329 droeschl 5655: 'rost' => 'Course Roster',
1.528 raeburn 5656: 'abou' => 'Personal Information Page for a User',
1.553 raeburn 5657: 'imsf' => 'IMS Upload',
5658: 'imsl' => 'Upload IMS package',
1.501 raeburn 5659: 'cms' => 'Origin of IMS package',
5660: 'se' => 'Select',
1.329 droeschl 5661: 'file' => 'File',
5662: 'title' => 'Title',
1.606 raeburn 5663: 'addp' => 'Add Placeholder to course?',
5664: 'uste' => 'Use Template?',
5665: 'fnam' => 'File Name:',
5666: 'loca' => 'Location:',
5667: 'dire' => 'Directory:',
5668: 'cate' => 'Category:',
5669: 'tmpl' => 'Template:',
1.329 droeschl 5670: 'comment' => 'Comment',
1.403 raeburn 5671: 'parse' => 'Upload embedded images/multimedia files if HTML file',
1.577 bisitz 5672: 'bb5' => 'Blackboard 5',
5673: 'bb6' => 'Blackboard 6',
5674: 'angel5' => 'ANGEL 5.5',
5675: 'webctce4' => 'WebCT 4 Campus Edition',
1.606 raeburn 5676: 'yes' => 'Yes',
5677: 'no' => 'No',
1.618 raeburn 5678: 'er' => 'Editing rights unavailable for your current role.',
1.577 bisitz 5679: );
1.329 droeschl 5680: # -----------------------------------------------------------------------------
1.595 musolffc 5681:
5682: # Calculate free quota space for a user or course. A javascript function checks
5683: # file size to determine if upload should be allowed.
5684: my $quotatype = 'unofficial';
5685: if ($crstype eq 'Community') {
1.601 raeburn 5686: $quotatype = 'community';
5687: } elsif ($crstype eq 'Placement') {
5688: $quotatype = 'placement';
1.595 musolffc 5689: } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.coursecode'}) {
5690: $quotatype = 'official';
5691: } elsif ($env{'course.'.$coursedom.'_'.$coursenum.'.internal.textbook'}) {
5692: $quotatype = 'textbook';
5693: }
5694: my $disk_quota = &Apache::loncommon::get_user_quota($coursenum,$coursedom,
5695: 'course',$quotatype); # expressed in MB
5696: my $current_disk_usage = 0;
5697: foreach my $subdir ('docs','supplemental') {
5698: $current_disk_usage += &Apache::lonnet::diskusage($coursedom,$coursenum,
5699: "userfiles/$subdir",1); # expressed in kB
5700: }
5701: my $free_space = 1024 * ((1024 * $disk_quota) - $current_disk_usage);
1.605 raeburn 5702: my $usage = $current_disk_usage/1024; # in MB
5703: my $quota = $disk_quota;
5704: my $percent;
5705: if ($disk_quota == 0) {
5706: $percent = 100.0;
5707: } else {
1.619 raeburn 5708: $percent = 100*($usage/$disk_quota);
1.605 raeburn 5709: }
5710: $usage = sprintf("%.2f",$usage);
5711: $quota = sprintf("%.2f",$quota);
5712: $percent = sprintf("%.0f",$percent);
5713: my $quotainfo = '<p>'.&mt('Currently using [_1] of the [_2] available.',
5714: $percent.'%',$quota.' MB').'</p>';
1.595 musolffc 5715:
1.329 droeschl 5716: my $fileupload=(<<FIUP);
1.605 raeburn 5717: $quotainfo
1.329 droeschl 5718: $lt{'file'}:<br />
1.611 raeburn 5719: <input type="file" name="uploaddoc" class="flUpload" size="40" $disabled />
1.606 raeburn 5720: <input type="hidden" id="free_space" value="$free_space" />
1.329 droeschl 5721: FIUP
5722:
5723: my $checkbox=(<<CHBO);
5724: <!-- <label>$lt{'parse'}?
5725: <input type="checkbox" name="parserflag" />
5726: </label> -->
5727: <label>
1.611 raeburn 5728: <input type="checkbox" name="parserflag" checked="checked" $disabled /> $lt{'parse'}
1.329 droeschl 5729: </label>
5730: CHBO
1.501 raeburn 5731: my $imsfolder = $env{'form.folder'};
5732: if ($imsfolder eq '') {
5733: $imsfolder = 'default';
5734: }
5735: my $imspform=(<<IMSFORM);
5736: <a class="LC_menubuttons_link" href="javascript:toggleUpload('ims');">
5737: $lt{'imsf'}</a> $help{'Importing_IMS_Course'}
5738: <form name="uploadims" action="/adm/imsimportdocs" method="post" enctype="multipart/form-data" target="IMSimport">
1.516 raeburn 5739: <fieldset id="uploadimsform" style="display: none;">
1.501 raeburn 5740: <legend>$lt{'imsf'}</legend>
5741: $fileupload
5742: <br />
5743: <p>
5744: $lt{'cms'}:
1.611 raeburn 5745: <select name="source" $disabled>
1.501 raeburn 5746: <option value="-1" selected="selected">$lt{'se'}</option>
1.577 bisitz 5747: <option value="bb5">$lt{'bb5'}</option>
5748: <option value="bb6">$lt{'bb6'}</option>
5749: <option value="angel5">$lt{'angel5'}</option>
5750: <option value="webctce4">$lt{'webctce4'}</option>
1.501 raeburn 5751: </select>
5752: <input type="hidden" name="folder" value="$imsfolder" />
5753: </p>
5754: <input type="hidden" name="phase" value="one" />
1.611 raeburn 5755: <input type="button" value="$lt{'imsl'}" onclick="makeims(this.form);" $disabled />
1.501 raeburn 5756: </fieldset>
5757: </form>
5758: IMSFORM
1.329 droeschl 5759:
5760: my $fileuploadform=(<<FUFORM);
1.501 raeburn 5761: <a class="LC_menubuttons_link" href="javascript:toggleUpload('doc');">
5762: $lt{'upfi'}</a> $help{'Uploading_From_Harddrive'}
5763: <form name="uploaddocument" action="/adm/coursedocs" method="post" enctype="multipart/form-data">
1.516 raeburn 5764: <fieldset id="uploaddocform" style="display: none;">
1.501 raeburn 5765: <legend>$lt{'upfi'}</legend>
1.371 tempelho 5766: <input type="hidden" name="active" value="aa" />
1.595 musolffc 5767: $fileupload
1.329 droeschl 5768: <br />
5769: $lt{'title'}:<br />
1.611 raeburn 5770: <input type="text" size="60" name="comment" $disabled />
1.508 raeburn 5771: $pathitem
1.329 droeschl 5772: <input type="hidden" name="cmd" value="upload_default" />
5773: <br />
1.458 raeburn 5774: <span class="LC_nobreak" style="float:left">
1.329 droeschl 5775: $checkbox
5776: </span>
1.501 raeburn 5777: <br clear="all" />
1.611 raeburn 5778: <input type="submit" value="$lt{'upld'}" $disabled />
1.501 raeburn 5779: </fieldset>
5780: </form>
1.383 tempelho 5781: FUFORM
1.329 droeschl 5782:
1.611 raeburn 5783: my $mapimportjs;
5784: if ($canedit) {
5785: $mapimportjs = "javascript:openbrowser('mapimportform','importmap','sequence,page','');";
5786: } else {
5787: $mapimportjs = "javascript:alert('".&js_escape($lt{'er'})."');";
5788: }
1.502 raeburn 5789: my $importpubform=(<<SEDFFORM);
1.514 raeburn 5790: <a class="LC_menubuttons_link" href="javascript:toggleMap('map');">
1.502 raeburn 5791: $lt{'impm'}</a>$help{'Load_Map'}
5792: <form action="/adm/coursedocs" method="post" name="mapimportform">
1.516 raeburn 5793: <fieldset id="importmapform" style="display: none;">
1.502 raeburn 5794: <legend>$lt{'impm'}</legend>
1.371 tempelho 5795: <input type="hidden" name="active" value="bb" />
1.502 raeburn 5796: $lt{'copm'}<br />
5797: <span class="LC_nobreak">
5798: <input type="text" name="importmap" size="40" value=""
1.611 raeburn 5799: onfocus="this.blur();$mapimportjs" $disabled />
5800: <a href="$mapimportjs">$lt{'selm'}</a></span><br />
5801: <input type="submit" name="loadmap" value="$lt{'load'}" $disabled />
1.502 raeburn 5802: </fieldset>
5803: </form>
5804:
1.383 tempelho 5805: SEDFFORM
1.606 raeburn 5806: my $importcrsresform;
1.608 raeburn 5807: my ($numdirs,$pickfile) =
5808: &Apache::loncommon::import_crsauthor_form('crsresimportform','coursepath','coursefile',
5809: "resize_scrollbox('contentscroll','1','0');",
5810: undef,'res');
1.606 raeburn 5811: if ($pickfile) {
5812: $importcrsresform=(<<CRSFORM);
5813: <a class="LC_menubuttons_link" href="javascript:toggleImportCrsres('res','$numdirs');">
5814: $lt{'imcr'}</a>$help{'Course_Resources'}
5815: <form action="/adm/coursedocs" method="post" name="crsresimportform" onsubmit="return validImportCrsRes();">
5816: <fieldset id="importcrsresform" style="display: none;">
5817: <legend>$lt{'imcr'}</legend>
5818: <input type="hidden" name="active" value="bb" />
5819: $pickfile
5820: <p>
1.611 raeburn 5821: $lt{'title'}: <input type="textbox" name="crsrestitle" value="" $disabled />
1.606 raeburn 5822: </p>
5823: <input type="hidden" name="importdetail" value="" />
1.611 raeburn 5824: <input type="submit" name="crsres" value="$lt{'impo'}" $disabled />
1.606 raeburn 5825: </fieldset>
5826: </form>
5827: CRSFORM
5828: }
5829:
1.611 raeburn 5830: my $fromstoredjs;
5831: if ($canedit) {
5832: $fromstoredjs = 'open_StoredLinks_Import()';
5833: } else {
5834: $fromstoredjs = "alert('".&js_escape($lt{'er'})."')";
5835: }
5836:
1.502 raeburn 5837: my @importpubforma = (
1.508 raeburn 5838: { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/src.png" alt="'.$lt{srch}.'" onclick="javascript:groupsearch()" />' => $pathitem."<a class='LC_menubuttons_link' href='javascript:groupsearch()'>$lt{'srch'}</a>" },
1.423 onken 5839: { '<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'}" },
1.611 raeburn 5840: { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/wishlist.png" alt="'.$lt{lnks}.'" onclick="javascript:'.$fromstoredjs.';" />' => '<a class="LC_menubuttons_link" href="javascript:'.$fromstoredjs.';">'.$lt{'lnks'}.'</a>' },
1.606 raeburn 5841: { '<img class="LC_noBorder LC_middle" src="/res/adm/pages/sequence.png" alt="'.$lt{impm}.'" onclick="javascript:toggleMap(\'map\');" />' => $importpubform },
5842: );
5843: if ($pickfile) {
5844: push(@importpubforma,{ '<img class="LC_noBorder LC_middle" src="/res/adm/pages/res.png" alt="'.$lt{imcr}.'" onclick="javascript:toggleImportCrsres(\'res\','."'$numdirs'".');"/>' => $importcrsresform});
5845: }
1.502 raeburn 5846: $importpubform = &create_form_ul(&create_list_elements(@importpubforma));
1.510 raeburn 5847: my $extresourcesform =
5848: &Apache::lonextresedit::extedit_form(0,0,undef,undef,$pathitem,
1.611 raeburn 5849: $help{'Adding_External_Resource'},
5850: undef,undef,undef,undef,undef,undef,$disabled);
1.598 raeburn 5851: my $exttoolform =
5852: &Apache::lonextresedit::extedit_form(0,0,undef,undef,$pathitem,
5853: $help{'Adding_External_Tool'},undef,
5854: undef,'tool',$coursedom,$coursenum,
1.611 raeburn 5855: \%ltitools,$disabled);
1.329 droeschl 5856: if ($allowed) {
1.492 raeburn 5857: my $folder = $env{'form.folder'};
5858: if ($folder eq '') {
5859: $folder='default';
5860: }
1.615 raeburn 5861: if ($canedit) {
5862: my $output = &update_paste_buffer($coursenum,$coursedom,$folder);
5863: if ($output) {
5864: $r->print($output);
5865: }
1.538 raeburn 5866: }
1.337 ehlerst 5867: $r->print(<<HIDDENFORM);
5868: <form name="renameform" method="post" action="/adm/coursedocs">
5869: <input type="hidden" name="title" />
5870: <input type="hidden" name="cmd" />
5871: <input type="hidden" name="markcopy" />
5872: <input type="hidden" name="copyfolder" />
5873: $containertag
5874: </form>
1.633 ! raeburn 5875: <form name="aliasform" method="post" action="/adm/coursedocs">
! 5876: <input type="hidden" name="alias" />
! 5877: <input type="hidden" name="cmd" />
! 5878: $containertag
! 5879: </form>
1.484 raeburn 5880:
1.337 ehlerst 5881: HIDDENFORM
1.508 raeburn 5882: $r->print(&makesimpleeditform($pathitem)."\n".
5883: &makedocslogform($pathitem."\n".
1.484 raeburn 5884: '<input type="hidden" name="folder" value="'.
5885: $env{'form.folder'}.'" />'."\n"));
1.329 droeschl 5886: }
1.442 www 5887:
5888: # Generate the tabs
1.510 raeburn 5889: my ($mode,$needs_end);
1.472 raeburn 5890: if (($supplementalflag) && (!$allowed)) {
1.510 raeburn 5891: my @folders = split('&',$env{'form.folderpath'});
5892: unless (@folders > 2) {
5893: &Apache::lonnavdisplay::startContentScreen($r,'supplemental');
5894: $needs_end = 1;
5895: }
1.472 raeburn 5896: } else {
1.484 raeburn 5897: $r->print(&startContentScreen(($supplementalflag?'suppdocs':'docs')));
1.510 raeburn 5898: $needs_end = 1;
1.472 raeburn 5899: }
1.443 www 5900:
1.442 www 5901: #
1.622 raeburn 5902: my $hostname = $r->hostname();
1.442 www 5903: my $savefolderpath;
5904:
1.395 raeburn 5905: if ($allowed) {
1.329 droeschl 5906: my $folder=$env{'form.folder'};
1.615 raeburn 5907: if ((($folder eq '') && (!$hiddentop)) || ($supplementalflag)) {
1.329 droeschl 5908: $folder='default';
1.356 tempelho 5909: $savefolderpath = $env{'form.folderpath'};
1.548 raeburn 5910: $env{'form.folderpath'}='default&'.&escape(&mt('Main Content'));
1.508 raeburn 5911: $pathitem = '<input type="hidden" name="folderpath" value="'.
1.329 droeschl 5912: &HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />';
5913: }
5914: my $postexec='';
5915: if ($folder eq 'default') {
1.372 bisitz 5916: $r->print('<script type="text/javascript">'."\n"
5917: .'// <![CDATA['."\n"
5918: .'this.window.name="loncapaclient";'."\n"
5919: .'// ]]>'."\n"
5920: .'</script>'."\n"
1.369 bisitz 5921: );
1.329 droeschl 5922: } else {
5923: #$postexec='self.close();';
5924: }
1.504 raeburn 5925: my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_new.sequence';
5926: my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_new.page';
1.329 droeschl 5927: my $readfile='/uploaded/'.$coursedom.'/'.$coursenum.'/'.$folder.'.'.$container;
5928:
5929: my $newnavform=(<<NNFORM);
5930: <form action="/adm/coursedocs" method="post" name="newnav">
1.570 raeburn 5931: <input type="hidden" name="active" value="ee" />
1.508 raeburn 5932: $pathitem
1.329 droeschl 5933: <input type="hidden" name="importdetail"
5934: value="$lt{'navc'}=/adm/navmaps" />
1.611 raeburn 5935: <a class="LC_menubuttons_link" href="javascript:makenew(document.newnav);">$lt{'navc'}</a>
1.329 droeschl 5936: $help{'Navigate_Content'}
5937: </form>
5938: NNFORM
5939: my $newsmppageform=(<<NSPFORM);
5940: <form action="/adm/coursedocs" method="post" name="newsmppg">
1.570 raeburn 5941: <input type="hidden" name="active" value="ee" />
1.508 raeburn 5942: $pathitem
1.329 droeschl 5943: <input type="hidden" name="importdetail" value="" />
1.423 onken 5944: <a class="LC_menubuttons_link" href="javascript:makesmppage();"> $lt{'sipa'}</a>
1.383 tempelho 5945: $help{'Simple Page'}
1.329 droeschl 5946: </form>
5947: NSPFORM
5948:
5949: my $newsmpproblemform=(<<NSPROBFORM);
5950: <form action="/adm/coursedocs" method="post" name="newsmpproblem">
1.371 tempelho 5951: <input type="hidden" name="active" value="cc" />
1.508 raeburn 5952: $pathitem
1.329 droeschl 5953: <input type="hidden" name="importdetail" value="" />
1.423 onken 5954: <a class="LC_menubuttons_link" href="javascript:makesmpproblem();">$lt{'sipr'}</a>
1.572 raeburn 5955: $help{'Simple_Problem'}
1.329 droeschl 5956: </form>
5957:
5958: NSPROBFORM
5959:
5960: my $newdropboxform=(<<NDBFORM);
5961: <form action="/adm/coursedocs" method="post" name="newdropbox">
1.371 tempelho 5962: <input type="hidden" name="active" value="cc" />
1.508 raeburn 5963: $pathitem
1.329 droeschl 5964: <input type="hidden" name="importdetail" value="" />
1.423 onken 5965: <a class="LC_menubuttons_link" href="javascript:makedropbox();">$lt{'drbx'}</a>
1.554 raeburn 5966: $help{'Dropbox'}
1.344 bisitz 5967: </form>
1.329 droeschl 5968: NDBFORM
5969:
5970: my $newexuploadform=(<<NEXUFORM);
5971: <form action="/adm/coursedocs" method="post" name="newexamupload">
1.371 tempelho 5972: <input type="hidden" name="active" value="cc" />
1.508 raeburn 5973: $pathitem
1.329 droeschl 5974: <input type="hidden" name="importdetail" value="" />
1.423 onken 5975: <a class="LC_menubuttons_link" href="javascript:makeexamupload();">$lt{'scuf'}</a>
1.329 droeschl 5976: $help{'Score_Upload_Form'}
5977: </form>
5978: NEXUFORM
5979:
5980: my $newbulform=(<<NBFORM);
5981: <form action="/adm/coursedocs" method="post" name="newbul">
1.570 raeburn 5982: <input type="hidden" name="active" value="dd" />
1.508 raeburn 5983: $pathitem
1.329 droeschl 5984: <input type="hidden" name="importdetail" value="" />
1.423 onken 5985: <a class="LC_menubuttons_link" href="javascript:makebulboard();" >$lt{'bull'}</a>
1.329 droeschl 5986: $help{'Bulletin Board'}
5987: </form>
5988: NBFORM
5989:
5990: my $newaboutmeform=(<<NAMFORM);
5991: <form action="/adm/coursedocs" method="post" name="newaboutme">
1.570 raeburn 5992: <input type="hidden" name="active" value="dd" />
1.508 raeburn 5993: $pathitem
1.329 droeschl 5994: <input type="hidden" name="importdetail"
5995: value="$plainname=/adm/$udom/$uname/aboutme" />
1.611 raeburn 5996: <a class="LC_menubuttons_link" href="javascript:makenew(document.newaboutme);">$lt{'mypi'}</a>
1.347 weissno 5997: $help{'My Personal Information Page'}
1.329 droeschl 5998: </form>
5999: NAMFORM
6000:
6001: my $newaboutsomeoneform=(<<NASOFORM);
6002: <form action="/adm/coursedocs" method="post" name="newaboutsomeone">
1.570 raeburn 6003: <input type="hidden" name="active" value="dd" />
1.508 raeburn 6004: $pathitem
1.329 droeschl 6005: <input type="hidden" name="importdetail" value="" />
1.423 onken 6006: <a class="LC_menubuttons_link" href="javascript:makeabout();">$lt{'abou'}</a>
1.329 droeschl 6007: </form>
6008: NASOFORM
6009:
6010: my $newrosterform=(<<NROSTFORM);
6011: <form action="/adm/coursedocs" method="post" name="newroster">
1.570 raeburn 6012: <input type="hidden" name="active" value="dd" />
1.508 raeburn 6013: $pathitem
1.329 droeschl 6014: <input type="hidden" name="importdetail"
6015: value="$lt{'rost'}=/adm/viewclasslist" />
1.611 raeburn 6016: <a class="LC_menubuttons_link" href="javascript:makenew(document.newroster);">$lt{'rost'}</a>
1.556 raeburn 6017: $help{'Course_Roster'}
1.329 droeschl 6018: </form>
6019: NROSTFORM
6020:
1.534 raeburn 6021: my $newwebpage;
6022: if ($folder =~ /^default_?(\d*)$/) {
6023: $newwebpage = "/uploaded/$coursedom/$coursenum/docs/";
6024: if ($1) {
6025: $newwebpage .= $1;
6026: } else {
6027: $newwebpage .= 'default';
6028: }
6029: $newwebpage .= '/new.html';
6030: }
6031: my $newwebpageform =(<<NWEBFORM);
6032: <form action="/adm/coursedocs" method="post" name="newwebpage">
1.570 raeburn 6033: <input type="hidden" name="active" value="ee" />
1.534 raeburn 6034: $pathitem
6035: <input type="hidden" name="importdetail" value="$newwebpage" />
6036: <a class="LC_menubuttons_link" href="javascript:makewebpage();">$lt{'webp'}</a>
1.556 raeburn 6037: $help{'Web_Page'}
1.534 raeburn 6038: </form>
6039: NWEBFORM
1.604 raeburn 6040:
1.606 raeburn 6041: my @ids=&Apache::lonnet::current_machine_ids();
6042: my %select_menus;
6043: my $numauthor = 0;
6044: my $numcrsdirs = 0;
6045: my $toppath = "/priv/$env{'user.domain'}/$env{'user.name'}";
6046: if ($env{'user.author'}) {
6047: $numauthor ++;
6048: $select_menus{'author'}->{'text'} = &Apache::lonnet::plaintext('au');
6049: if (grep(/^\Q$env{'user.home'}\E$/,@ids)) {
6050: my $is_home = 1;
6051: my %subdirs;
1.608 raeburn 6052: &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
1.606 raeburn 6053: $select_menus{'author'}->{'default'} = '/';
6054: $select_menus{'author'}->{'select2'}->{'/'} = '/';
6055: my @ordered = ('/');
6056: foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
6057: $select_menus{'author'}->{'select2'}->{$relpath} = $relpath;
6058: push(@ordered,$relpath);
6059: }
6060: $select_menus{'author'}->{'order'} = \@ordered;
6061: } else {
6062: $select_menus{'author'}->{'select2'}->{'switch'} = &mt('Switch server required');
6063: $select_menus{'author'}->{'default'} = 'switch';
6064: $select_menus{'author'}->{'order'} = ['switch'];
6065: }
6066: }
6067: my %roleshash = &Apache::lonnet::get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',
6068: ['active'],['ca','aa']);
6069: my $crshome = $env{'course.'.$env{'request.course.id'}.'.home'};
6070: my %by_roletype;
6071: if (keys(%roleshash)) {
6072: foreach my $entry (keys(%roleshash)) {
6073: my ($auname,$audom,$roletype) = split(/:/,$entry);
6074: my $key = $entry;
6075: $key =~ s/:/___/g;
6076: $by_roletype{$roletype}{$auname.'___'.$audom} = 1;
6077: $select_menus{$key}->{'text'} = &Apache::lonnet::plaintext($roletype)." ($audom/$auname)";
6078: my $rolehome = &Apache::lonnet::homeserver($auname,$audom);
6079: if (grep(/^\Q$rolehome\E$/,@ids)) {
6080: my $is_home = 1;
6081: my (%subdirs,@ordered);
6082: my $toppath="/priv/$audom/$auname";
1.608 raeburn 6083: &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
1.606 raeburn 6084: $select_menus{$key}->{'default'} = '/';
6085: $select_menus{$key}->{'select2'}->{'/'} = '/';
6086: my @ordered = ('/');
6087: foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
6088: $select_menus{$key}->{'select2'}->{$relpath} = $relpath;
6089: push(@ordered,$relpath);
6090: }
6091: $select_menus{$key}->{'order'} = \@ordered;
6092: } else {
6093: $select_menus{$key}->{'select2'}->{'switch'} = &mt('Switch server required');
6094: $select_menus{$key}->{'default'} = 'switch';
6095: $select_menus{$key}->{'order'} = ['switch'];
6096: }
6097: $numauthor ++;
6098: }
6099: }
1.631 raeburn 6100: my ($pickdir,$showtitle);
1.606 raeburn 6101: if ($numauthor) {
6102: my @order;
6103: my $defrole;
6104: if ($env{'user.author'}) {
6105: push(@order,'author');
6106: $defrole = 'author';
6107: }
6108: if (keys(%by_roletype)) {
6109: foreach my $possrole ('ca','aa') {
6110: if (ref($by_roletype{$possrole}) eq 'HASH') {
6111: foreach my $author (sort { lc($a) cmp lc($b) } (keys(%{$by_roletype{$possrole}}))) {
6112: unless ($defrole) {
6113: $defrole = $author;
6114: }
6115: push(@order,$author.'___'.$possrole);
6116: }
6117: }
6118: }
6119: }
6120: $select_menus{'course'}->{'text'} = &mt('Course Resource');
6121: if (grep(/^\Q$crshome\E$/,@ids)) {
6122: my $is_home = 1;
6123: my %subdirs;
6124: my $toppath="/priv/$coursedom/$coursenum";
1.608 raeburn 6125: &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
1.606 raeburn 6126: $numcrsdirs = keys(%subdirs);
6127: $select_menus{'course'}->{'default'} = '/';
6128: $select_menus{'course'}->{'select2'}->{'/'} = '/';
6129: my @ordered = ('/');
6130: foreach my $relpath (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
6131: $select_menus{'course'}->{'select2'}->{$relpath} = $relpath;
6132: push(@ordered,$relpath);
6133: }
6134: $select_menus{'course'}->{'order'} = \@ordered;
6135: } else {
6136: $select_menus{'course'}->{'select2'}->{'switch'} = &mt('Switch server required');
6137: $select_menus{'course'}->{'default'} = 'switch';
6138: $select_menus{'course'}->{'order'} = ['switch'];
6139: }
6140: push(@order,'course');
6141: $pickdir = $lt{'loca'}.
6142: &Apache::loncommon::linked_select_forms('courseresform','<br />'.$lt{'dire'},
6143: $defrole,'authorrole','authorpath',
6144: \%select_menus,\@order,'toggleCrsResTitle();',
6145: '','priv').'<br />';
6146: $showtitle = 'none';
6147: } else {
6148: my $is_home;
6149: $showtitle = 'inline';
6150: if (grep(/^\Q$crshome\E$/,@ids)) {
6151: $is_home = 1;
6152: $pickdir .= '<input type="hidden" name="authorrole" value="course" />';
6153: my $toppath="/priv/$coursedom/$coursenum'}";
6154: my %subdirs;
1.608 raeburn 6155: &Apache::lonnet::recursedirs($is_home,'priv',$londocroot,$toppath,'',\%subdirs);
1.606 raeburn 6156: $numcrsdirs = keys(%subdirs);
6157: if ($numcrsdirs) {
6158: $pickdir .= &mt('Directory: ').'<select name="authorpath">'."\n".
6159: '<option value="/">/</option>'."\n";
6160: foreach my $key (sort { lc($a) cmp lc($b) } (keys(%subdirs))) {
1.608 raeburn 6161: $pickdir .= '<option value="'.$key.'">'.$key.'</option>'."\n";
1.606 raeburn 6162: }
6163: $pickdir .= '</select>';
6164: } else {
6165: $pickdir .= '<input type="hidden" name="authorpath" value="/" />'."\n";
6166: }
6167: }
6168: }
6169:
6170: my %seltemplate_menus;
6171: my @files = &Apache::lonhomework::get_template_list('problem');
6172: my @noexamplelink = ('blank.problem','blank.library','script.library');
6173: my $currentcategory = '';
6174: my @ordered = ('');
6175: my %templatehelp;
6176: my $defcategory = '';
6177: my @catorder = ($defcategory);
6178: $seltemplate_menus{$defcategory}->{'order'} = [''];
6179: $seltemplate_menus{$defcategory}->{'text'} = '';
6180: foreach my $file (@files) {
6181: if (ref($file) eq 'ARRAY') {
6182: my ($path,$title,$category,$help) = @{$file};
6183: next if ($title !~ /\S/);
6184: if (&js_escape($category) ne $currentcategory) {
6185: $currentcategory = &js_escape($category);
6186: push(@catorder,&js_escape($currentcategory));
6187: $seltemplate_menus{$currentcategory}->{'text'} = $category;
6188: $seltemplate_menus{$currentcategory}->{'default'} = '';
6189: $seltemplate_menus{$currentcategory}->{'select2'}->{''} = '';
6190: push(@{$seltemplate_menus{$currentcategory}->{'order'}},'');
6191: }
6192: if ($path) {
6193: $seltemplate_menus{$currentcategory}->{'select2'}->{&js_escape($path)} = $title;
6194: push(@{$seltemplate_menus{$currentcategory}->{'order'}},&js_escape($path));
6195: if ($help) {
6196: $templatehelp{$path} = $help;
6197: }
6198: }
6199: }
6200: }
6201:
6202: my $templates = $lt{'cate'}.' '.
6203: &Apache::loncommon::linked_select_forms('courseresform','<br />'.$lt{'tmpl'}.' ',
6204: $defcategory,'tempcategory','template',
6205: \%seltemplate_menus,\@catorder,
6206: "resize_scrollbox('contentscroll','1','0');",
6207: "toggleExampleText();",'template').'<br />';
6208: my $templatepreview = '<a href="#" target="sample" onclick="javascript:getExample(600,420,\'yes\',true); return false;">'.
6209: '<span id="newresexample">'.&mt('Example').'<span></a>';
6210: my $crsresform=(<<RESFORM);
6211: <a class="LC_menubuttons_link" href="javascript:toggleCrsRes('res','$numauthor','$numcrsdirs');">
6212: $lt{'stpr'}</a>$help{'Course_Resource'}
6213: <form action="/adm/coursedocs" method="post" name="courseresform">
6214: <fieldset id="crsresform" style="display:none;">
6215: <legend>$lt{'stpr'}</legend>
6216: <input type="hidden" name="active" value="ee" />
6217: <p>
6218: $pickdir
6219: <span class="LC_nobreak">$lt{'news'}?
1.611 raeburn 6220: <label><input type="radio" name="newsubdir" value="0" onclick="toggleNewsubdir(this.form);" checked="checked" $disabled />No</label>
1.606 raeburn 6221:
1.611 raeburn 6222: <label><input type="radio" name="newsubdir" value="1" onclick="toggleNewsubdir(this.form);" $disabled />Yes</label>
1.606 raeburn 6223: </span><span id="newsubdir"></span>
6224: <input type="hidden" name="newsubdirname" id="newsubdirname" value="" autocomplete="off" />
6225: </p>
6226: $lt{'fnam'}
1.611 raeburn 6227: <input type="text" size="20" name="newresourcename" autocomplete="off" $disabled />
1.606 raeburn 6228: <p>
6229: <div id="newresource" style="display:$showtitle">
6230: $lt{'addp'}
1.611 raeburn 6231: <label><input type="radio" name="newresourceadd" value="0" checked="checked" onclick="toggleNewInCourse(this.form);" $disabled />
1.606 raeburn 6232: $lt{'no'}</label>
1.611 raeburn 6233: <label><input type="radio" name="newresourceadd" value="1" onclick="toggleNewInCourse(this.form);" $disabled />
1.606 raeburn 6234: $lt{'yes'}</label>
6235: <span id="newrestitle"></span>
1.611 raeburn 6236: <input type="hidden" size="20" name="newresourcetitle" id="newresourcetitle" autocomplete="off" $disabled />
1.606 raeburn 6237: </div>
6238: </p>
6239: <p>
6240: $lt{'uste'}
1.611 raeburn 6241: <label><input type="radio" name="newresusetemp" value="0" checked="checked" onclick="toggleWithTemplate(this.form);" $disabled />
1.606 raeburn 6242: $lt{'no'}</label>
1.611 raeburn 6243: <label><input type="radio" name="newresusetemp" value="1" onclick="toggleWithTemplate(this.form);" $disabled />
1.606 raeburn 6244: $lt{'yes'}</label>
6245: <div id="newrestemplate" style="display:none">
6246: $templates
6247: $templatepreview
6248: </div>
6249: </p>
6250: <span class="LC_nobreak">
6251: <input type="hidden" name="folderpath" value="$env{'form.folderpath'}" />
1.611 raeburn 6252: <input type="submit" name="newcrs" value="$lt{'crpr'}" $disabled />
1.606 raeburn 6253: </span>
6254: </fieldset>
6255: </form>
6256:
6257: RESFORM
1.534 raeburn 6258:
1.342 ehlerst 6259: my $specialdocumentsform;
1.383 tempelho 6260: my @specialdocumentsforma;
1.451 www 6261: my $gradingform;
6262: my @gradingforma;
6263: my $communityform;
6264: my @communityforma;
1.351 ehlerst 6265: my $newfolderform;
1.390 tempelho 6266: my $newfolderb;
1.342 ehlerst 6267:
1.451 www 6268: my $path = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
1.383 tempelho 6269:
1.329 droeschl 6270: my $newpageform=(<<NPFORM);
6271: <form action="/adm/coursedocs" method="post" name="newpage">
6272: <input type="hidden" name="folderpath" value="$path" />
6273: <input type="hidden" name="importdetail" value="" />
1.570 raeburn 6274: <input type="hidden" name="active" value="ee" />
1.423 onken 6275: <a class="LC_menubuttons_link" href="javascript:makenewpage(document.newpage,'$pageseq');">$lt{'newp'}</a>
1.383 tempelho 6276: $help{'Adding_Pages'}
1.329 droeschl 6277: </form>
6278: NPFORM
1.390 tempelho 6279:
6280:
1.351 ehlerst 6281: $newfolderform=(<<NFFORM);
1.329 droeschl 6282: <form action="/adm/coursedocs" method="post" name="newfolder">
1.508 raeburn 6283: $pathitem
1.329 droeschl 6284: <input type="hidden" name="importdetail" value="" />
1.570 raeburn 6285: <input type="hidden" name="active" value="" />
1.422 onken 6286: <a href="javascript:makenewfolder(document.newfolder,'$folderseq');">$lt{'newf'}</a>$help{'Adding_Folders'}
1.329 droeschl 6287: </form>
6288: NFFORM
6289:
6290: my $newsylform=(<<NSYLFORM);
6291: <form action="/adm/coursedocs" method="post" name="newsyl">
1.570 raeburn 6292: <input type="hidden" name="active" value="ee" />
1.508 raeburn 6293: $pathitem
1.329 droeschl 6294: <input type="hidden" name="importdetail"
6295: value="$lt{'syll'}=/public/$coursedom/$coursenum/syllabus" />
1.611 raeburn 6296: <a class="LC_menubuttons_link" href="javascript:makenew(document.newsyl);">$lt{'syll'}</a>
1.329 droeschl 6297: $help{'Syllabus'}
1.383 tempelho 6298:
1.329 droeschl 6299: </form>
6300: NSYLFORM
1.364 bisitz 6301:
1.329 droeschl 6302: my $newgroupfileform=(<<NGFFORM);
6303: <form action="/adm/coursedocs" method="post" name="newgroupfiles">
1.570 raeburn 6304: <input type="hidden" name="active" value="dd" />
1.508 raeburn 6305: $pathitem
1.329 droeschl 6306: <input type="hidden" name="importdetail"
6307: value="$lt{'grpo'}=/adm/$coursedom/$coursenum/aboutme" />
1.611 raeburn 6308: <a class="LC_menubuttons_link" href="javascript:makenew(document.newgroupfiles);">$lt{'grpo'}</a>
1.353 weissno 6309: $help{'Group Portfolio'}
1.329 droeschl 6310: </form>
6311: NGFFORM
1.383 tempelho 6312: @specialdocumentsforma=(
1.421 onken 6313: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/page.png" alt="'.$lt{newp}.'" onclick="javascript:makenewpage(document.newpage,\''.$pageseq.'\');" />'=>$newpageform},
1.618 raeburn 6314: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="javascript:makenew(document.newsyl);" />'=>$newsylform},
1.611 raeburn 6315: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/navigation.png" alt="'.$lt{navc}.'" onclick="javascript:makenew(document.newnav);" />'=>$newnavform},
1.451 www 6316: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simple.png" alt="'.$lt{sipa}.'" onclick="javascript:makesmppage();" />'=>$newsmppageform},
1.534 raeburn 6317: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/webpage.png" alt="'.$lt{webp}.'" onclick="javascript:makewebpage();" />'=>$newwebpageform},
1.451 www 6318: );
6319: $specialdocumentsform = &create_form_ul(&create_list_elements(@specialdocumentsforma));
6320:
1.434 raeburn 6321:
6322: my @importdoc = (
1.519 raeburn 6323: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="toggleUpload(\'ext\');" />'=>$extresourcesform}
6324: );
1.598 raeburn 6325: if (keys(%ltitools)) {
6326: push(@importdoc,
1.627 raeburn 6327: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/exttool.png" alt="'.$lt{extt}.'" onclick="toggleUpload(\'tool\');" />'=>$exttoolform},
1.598 raeburn 6328: );
6329: }
1.519 raeburn 6330: unless ($container eq 'page') {
6331: push(@importdoc,
6332: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/ims.png" alt="'.$lt{imsf}.'" onclick="javascript:toggleUpload(\'ims\');" />'=>$imspform}
6333: );
6334: }
6335: push(@importdoc,
1.558 raeburn 6336: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/pdfupload.png" alt="'.$lt{upl}.'" onclick="javascript:toggleUpload(\'doc\');" />'=>$fileuploadform}
1.519 raeburn 6337: );
1.501 raeburn 6338: $fileuploadform = &create_form_ul(&create_list_elements(@importdoc));
1.434 raeburn 6339:
1.451 www 6340: @gradingforma=(
6341: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.$lt{sipr}.'" onclick="javascript:makesmpproblem();" />'=>$newsmpproblemform},
6342: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/dropbox.png" alt="'.$lt{drbx}.'" onclick="javascript:makedropbox();" />'=>$newdropboxform},
6343: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/scoreupfrm.png" alt="'.$lt{scuf}.'" onclick="javascript:makeexamupload();" />'=>$newexuploadform},
1.606 raeburn 6344: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/simpprob.png" alt="'.$lt{stpr}.'" onclick="javascript:toggleCrsRes(\'res\','."'$numauthor','$numcrsdirs'".');" />'=>$crsresform},
1.451 www 6345: );
6346: $gradingform = &create_form_ul(&create_list_elements(@gradingforma));
6347:
6348: @communityforma=(
6349: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/bchat.png" alt="'.$lt{bull}.'" onclick="javascript:makebulboard();" />'=>$newbulform},
6350: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="javascript:makebulboard();" />'=>$newaboutmeform},
6351: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/aboutme.png" alt="'.$lt{abou}.'" onclick="javascript:makeabout();" />'=>$newaboutsomeoneform},
1.611 raeburn 6352: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/clst.png" alt="'.$lt{rost}.'" onclick="javascript:makenew(document.newroster);" />'=>$newrosterform},
6353: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/groupportfolio.png" alt="'.$lt{grpo}.'" onclick="javascript:makenew(document.newgroupfiles);" />'=>$newgroupfileform},
1.451 www 6354: );
6355: $communityform = &create_form_ul(&create_list_elements(@communityforma));
1.383 tempelho 6356:
1.330 tempelho 6357: my %orderhash = (
1.553 raeburn 6358: 'aa' => ['Upload',$fileuploadform],
6359: 'bb' => ['Import',$importpubform],
6360: 'cc' => ['Grading',$gradingform],
1.330 tempelho 6361: );
1.519 raeburn 6362: unless ($container eq 'page') {
1.434 raeburn 6363: $orderhash{'00'} = ['Newfolder',$newfolderform];
1.484 raeburn 6364: $orderhash{'dd'} = ['Collaboration',$communityform];
1.553 raeburn 6365: $orderhash{'ee'} = ['Other',$specialdocumentsform];
1.434 raeburn 6366: }
6367:
1.341 ehlerst 6368: $hadchanges=0;
1.484 raeburn 6369: unless (($supplementalflag || $toolsflag)) {
1.458 raeburn 6370: my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
1.615 raeburn 6371: $supplementalflag,\%orderhash,$iconpath,$pathitem,
1.622 raeburn 6372: \%ltitools,$canedit,$hostname,\$navmap,$hiddentop);
1.617 raeburn 6373: undef($navmap);
1.443 www 6374: if ($error) {
6375: $r->print('<p><span class="LC_error">'.$error.'</span></p>');
6376: }
6377: if ($hadchanges) {
6378: &mark_hash_old();
6379: }
1.341 ehlerst 6380:
1.443 www 6381: &changewarning($r,'');
6382: }
1.458 raeburn 6383: }
1.442 www 6384:
1.443 www 6385: # Supplemental documents start here
6386:
1.329 droeschl 6387: my $folder=$env{'form.folder'};
1.443 www 6388: unless ($supplementalflag) {
1.329 droeschl 6389: $folder='supplemental';
6390: }
6391: if ($folder =~ /^supplemental$/ &&
6392: (($env{'form.folderpath'} =~ /^default\&/) || ($env{'form.folderpath'} eq ''))) {
1.446 www 6393: $env{'form.folderpath'} = &supplemental_base();
1.393 raeburn 6394: } elsif ($allowed) {
1.356 tempelho 6395: $env{'form.folderpath'} = $savefolderpath;
1.329 droeschl 6396: }
1.508 raeburn 6397: $pathitem = '<input type="hidden" name="folderpath" value="'.
6398: &HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" />';
1.329 droeschl 6399: if ($allowed) {
6400: my $folderseq=
1.504 raeburn 6401: '/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_new.sequence';
1.329 droeschl 6402:
6403: my $supupdocform=(<<SUPDOCFORM);
1.501 raeburn 6404: <a class="LC_menubuttons_link" href="javascript:toggleUpload('suppdoc');">
6405: $lt{'upfi'}</a> $help{'Uploading_From_Harddrive'}
1.383 tempelho 6406: <form action="/adm/coursedocs" method="post" name="supuploaddocument" enctype="multipart/form-data">
1.516 raeburn 6407: <fieldset id="uploadsuppdocform" style="display: none;">
1.501 raeburn 6408: <legend>$lt{'upfi'}</legend>
1.630 raeburn 6409: <input type="hidden" name="active" value="ee" />
1.329 droeschl 6410: $fileupload
6411: <br />
6412: <br />
6413: <span class="LC_nobreak">
6414: $checkbox
6415: </span>
6416: <br /><br />
6417: $lt{'comment'}:<br />
1.383 tempelho 6418: <textarea cols="50" rows="4" name="comment"></textarea>
1.329 droeschl 6419: <br />
1.508 raeburn 6420: $pathitem
1.329 droeschl 6421: <input type="hidden" name="cmd" value="upload_supplemental" />
1.501 raeburn 6422: <input type='submit' value="$lt{'upld'}" />
6423: </form>
1.329 droeschl 6424: SUPDOCFORM
6425:
6426: my $supnewfolderform=(<<SNFFORM);
6427: <form action="/adm/coursedocs" method="post" name="supnewfolder">
1.570 raeburn 6428: <input type="hidden" name="active" value="" />
1.508 raeburn 6429: $pathitem
1.329 droeschl 6430: <input type="hidden" name="importdetail" value="" />
1.423 onken 6431: <a class="LC_menubuttons_link" href="javascript:makenewfolder(document.supnewfolder,'$folderseq');">$lt{'newf'}</a>
1.383 tempelho 6432: $help{'Adding_Folders'}
1.329 droeschl 6433: </form>
6434: SNFFORM
1.383 tempelho 6435:
1.510 raeburn 6436: my $supextform =
6437: &Apache::lonextresedit::extedit_form(1,0,undef,undef,$pathitem,
1.611 raeburn 6438: $help{'Adding_External_Resource'},
6439: undef,undef,undef,undef,undef,undef,
6440: $disabled);
1.329 droeschl 6441:
1.598 raeburn 6442: my $supexttoolform =
6443: &Apache::lonextresedit::extedit_form(1,0,undef,undef,$pathitem,
6444: $help{'Adding_External_Tool'},
6445: undef,undef,'tool',$coursedom,
1.611 raeburn 6446: $coursenum,\%ltitools,$disabled);
1.598 raeburn 6447:
1.329 droeschl 6448: my $supnewsylform=(<<SNSFORM);
6449: <form action="/adm/coursedocs" method="post" name="supnewsyl">
1.371 tempelho 6450: <input type="hidden" name="active" value="ff" />
1.508 raeburn 6451: $pathitem
1.329 droeschl 6452: <input type="hidden" name="importdetail"
6453: value="Syllabus=/public/$coursedom/$coursenum/syllabus" />
1.611 raeburn 6454: <a class="LC_menubuttons_link" href="javascript:makenew(document.supnewsyl);">$lt{'syll'}</a>
1.329 droeschl 6455: $help{'Syllabus'}
6456: </form>
6457: SNSFORM
6458:
6459: my $supnewaboutmeform=(<<SNAMFORM);
1.383 tempelho 6460: <form action="/adm/coursedocs" method="post" name="supnewaboutme">
1.371 tempelho 6461: <input type="hidden" name="active" value="ff" />
1.508 raeburn 6462: $pathitem
1.329 droeschl 6463: <input type="hidden" name="importdetail"
6464: value="$plainname=/adm/$udom/$uname/aboutme" />
1.611 raeburn 6465: <a class="LC_menubuttons_link" href="javascript:makenew(document.supnewaboutme);">$lt{'mypi'}</a>
1.347 weissno 6466: $help{'My Personal Information Page'}
1.329 droeschl 6467: </form>
6468: SNAMFORM
6469:
1.534 raeburn 6470: my $supwebpage;
6471: if ($folder =~ /^supplemental_?(\d*)$/) {
6472: $supwebpage = "/uploaded/$coursedom/$coursenum/supplemental/";
6473: if ($1) {
6474: $supwebpage .= $1;
6475: } else {
6476: $supwebpage .= 'default';
6477: }
6478: $supwebpage .= '/new.html';
6479: }
6480: my $supwebpageform =(<<SWEBFORM);
6481: <form action="/adm/coursedocs" method="post" name="supwebpage">
6482: <input type="hidden" name="active" value="cc" />
6483: $pathitem
6484: <input type="hidden" name="importdetail" value="$supwebpage" />
6485: <a class="LC_menubuttons_link" href="javascript:makewebpage('supp');">$lt{'webp'}</a>
1.556 raeburn 6486: $help{'Web_Page'}
1.534 raeburn 6487: </form>
6488: SWEBFORM
6489:
1.333 muellerd 6490:
1.383 tempelho 6491: my @specialdocs = (
1.618 raeburn 6492: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/syllabus.png" alt="'.$lt{syll}.'" onclick="javascript:makenew(document.supnewsyl);" />'
1.417 droeschl 6493: =>$supnewsylform},
1.611 raeburn 6494: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/myaboutme.png" alt="'.$lt{mypi}.'" onclick="javascript:makenew(document.supnewaboutme);" />'
1.417 droeschl 6495: =>$supnewaboutmeform},
1.534 raeburn 6496: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/webpage.png" alt="'.$lt{webp}.'" onclick="javascript:makewebpage('."'supp'".');" />'=>$supwebpageform},
6497:
1.383 tempelho 6498: );
1.417 droeschl 6499: my @supimportdoc = (
1.515 raeburn 6500: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/extres.png" alt="'.$lt{extr}.'" onclick="javascript:toggleUpload(\'suppext\')" />'
1.598 raeburn 6501: =>$supextform});
6502: if (keys(%ltitools)) {
6503: push(@supimportdoc,
1.627 raeburn 6504: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/exttool.png" alt="'.$lt{extt}.'" onclick="javascript:toggleUpload(\'supptool\')" />'
1.598 raeburn 6505: =>$supexttoolform});
6506: }
6507: push(@supimportdoc,
6508: {'<img class="LC_noBorder LC_middle" src="/res/adm/pages/pdfupload.png" alt="'.$lt{upl}.'" onclick="javascript:toggleUpload(\'suppdoc\');" />'
1.501 raeburn 6509: =>$supupdocform},
1.598 raeburn 6510: );
1.501 raeburn 6511:
6512: $supupdocform = &create_form_ul(&create_list_elements(@supimportdoc));
1.333 muellerd 6513: my %suporderhash = (
1.390 tempelho 6514: '00' => ['Supnewfolder', $supnewfolderform],
1.553 raeburn 6515: 'ee' => ['Upload',$supupdocform],
6516: 'ff' => ['Other',&create_form_ul(&create_list_elements(@specialdocs))]
1.333 muellerd 6517: );
1.443 www 6518: if ($supplementalflag) {
1.458 raeburn 6519: my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
1.615 raeburn 6520: $supplementalflag,\%suporderhash,$iconpath,$pathitem,
1.622 raeburn 6521: \%ltitools,$canedit,$hostname);
1.443 www 6522: if ($error) {
6523: $r->print('<p><span class="LC_error">'.$error.'</span></p>');
1.557 raeburn 6524: } else {
6525: if ($suppchanges) {
6526: my %servers = &Apache::lonnet::internet_dom_servers($coursedom);
6527: my @ids=&Apache::lonnet::current_machine_ids();
6528: foreach my $server (keys(%servers)) {
6529: next if (grep(/^\Q$server\E$/,@ids));
6530: my $hashid=$coursenum.':'.$coursedom;
1.566 raeburn 6531: my $cachekey = &escape('suppcount').':'.&escape($hashid);
6532: &Apache::lonnet::remote_devalidate_cache($server,[$cachekey]);
1.557 raeburn 6533: }
6534: &Apache::lonnet::get_numsuppfiles($coursenum,$coursedom,1);
6535: undef($suppchanges);
1.630 raeburn 6536: }
6537: }
1.393 raeburn 6538: }
1.443 www 6539: } elsif ($supplementalflag) {
1.458 raeburn 6540: my $error = &editor($r,$coursenum,$coursedom,$folder,$allowed,'',$crstype,
1.622 raeburn 6541: $supplementalflag,'',$iconpath,$pathitem,'','',$hostname);
1.393 raeburn 6542: if ($error) {
6543: $r->print('<p><span class="LC_error">'.$error.'</span></p>');
1.383 tempelho 6544: }
1.393 raeburn 6545: }
1.389 tempelho 6546:
1.510 raeburn 6547: if ($needs_end) {
6548: $r->print(&endContentScreen());
6549: }
1.383 tempelho 6550:
1.329 droeschl 6551: if ($allowed) {
6552: $r->print('
6553: <form method="post" name="extimport" action="/adm/coursedocs">
6554: <input type="hidden" name="title" />
6555: <input type="hidden" name="url" />
6556: <input type="hidden" name="useform" />
6557: <input type="hidden" name="residx" />
6558: </form>');
6559: }
1.484 raeburn 6560: } elsif ($showdoc) {
1.329 droeschl 6561: # -------------------------------------------------------- This is showdoc mode
1.484 raeburn 6562: $r->print("<h1>".&mt('Uploaded Document').' - '.
1.498 bisitz 6563: &Apache::lonnet::gettitle($r->uri).'</h1><p class="LC_warning">'.
1.329 droeschl 6564: &mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><table>".
1.484 raeburn 6565: &entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table>');
1.329 droeschl 6566: }
6567: }
1.630 raeburn 6568: unless ($noendpage) {
1.606 raeburn 6569: $r->print(&Apache::loncommon::end_page());
6570: }
1.329 droeschl 6571: return OK;
1.364 bisitz 6572: }
1.329 droeschl 6573:
1.440 raeburn 6574: sub embedded_form_elems {
6575: my ($phase,$primaryurl,$newidx) = @_;
6576: my $folderpath = &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
6577: return <<STATE;
6578: <input type="hidden" name="folderpath" value="$folderpath" />
6579: <input type="hidden" name="cmd" value="upload_embedded" />
6580: <input type="hidden" name="newidx" value="$newidx" />
6581: <input type="hidden" name="phase" value="$phase" />
6582: <input type="hidden" name="primaryurl" value="$primaryurl" />
6583: STATE
6584: }
6585:
6586: sub embedded_destination {
6587: my $folder=$env{'form.folder'};
6588: my $destination = 'docs/';
6589: if ($folder =~ /^supplemental/) {
6590: $destination = 'supplemental/';
6591: }
6592: if (($folder eq 'default') || ($folder eq 'supplemental')) {
6593: $destination .= 'default/';
6594: } elsif ($folder =~ /^(default|supplemental)_(\d+)$/) {
6595: $destination .= $2.'/';
6596: }
6597: $destination .= $env{'form.newidx'};
6598: my $dir_root = '/userfiles';
6599: return ($destination,$dir_root);
6600: }
6601:
6602: sub return_to_editor {
6603: my $actionurl = '/adm/coursedocs';
6604: return '<p><form name="backtoeditor" method="post" action="'.$actionurl.'" />'."\n".
6605: '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($env{'form.folderpath'},'<>&"').'" /></form>'."\n".
6606: '<a href="javascript:document.backtoeditor.submit();">'.&mt('Return to Editor').
6607: '</a></p>';
6608: }
6609:
1.476 raeburn 6610: sub decompression_info {
6611: my ($destination,$dir_root) = &embedded_destination();
6612: my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
6613: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
6614: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
6615: my $container='sequence';
1.480 raeburn 6616: my ($pathitem,$hiddenelem);
1.583 raeburn 6617: my @hiddens = ('newidx','comment','position','folderpath','archiveurl');
1.519 raeburn 6618: if ($env{'form.folderpath'} =~ /\:1$/) {
1.476 raeburn 6619: $container='page';
6620: }
1.480 raeburn 6621: unshift(@hiddens,$pathitem);
6622: foreach my $item (@hiddens) {
6623: if ($env{'form.'.$item}) {
6624: $hiddenelem .= '<input type="hidden" name="'.$item.'" value="'.
1.583 raeburn 6625: &HTML::Entities::encode($env{'form.'.$item},'<>&"').'" />'."\n";
1.480 raeburn 6626: }
1.477 raeburn 6627: }
1.476 raeburn 6628: return ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,
6629: $hiddenelem);
6630: }
6631:
6632: sub decompression_phase_one {
6633: my ($dir,$file,$warning,$error,$output);
6634: my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)=
6635: &decompression_info();
1.490 raeburn 6636: if ($env{'form.archiveurl'} !~ m{^/uploaded/\Q$docudom/$docuname/\E(?:docs|supplemental)/(?:default|\d+).*/([^/]+)$}) {
1.476 raeburn 6637: $error = &mt('Archive file "[_1]" not in the expected location.',$env{'form.archiveurl'});
6638: } else {
6639: my $file = $1;
1.630 raeburn 6640: $output =
1.481 raeburn 6641: &Apache::loncommon::process_decompression($docudom,$docuname,$file,
6642: $destination,$dir_root,
6643: $hiddenelem);
6644: if ($env{'form.autoextract_camtasia'}) {
6645: $output .= &remove_archive($docudom,$docuname,$container);
6646: }
1.476 raeburn 6647: }
6648: if ($error) {
6649: $output .= '<p class="LC_error">'.&mt('Not extracted.').'<br />'.
6650: $error.'</p>'."\n";
6651: }
6652: if ($warning) {
6653: $output .= '<p class="LC_warning">'.$warning.'</p>'."\n";
6654: }
6655: return $output;
6656: }
6657:
6658: sub decompression_phase_two {
6659: my ($destination,$dir_root,$londocroot,$docudom,$docuname,$container,$hiddenelem)=
6660: &decompression_info();
1.481 raeburn 6661: my $output;
1.480 raeburn 6662: if ($env{'form.archivedelete'}) {
1.481 raeburn 6663: $output = &remove_archive($docudom,$docuname,$container);
1.480 raeburn 6664: }
6665: $output .=
1.481 raeburn 6666: &Apache::loncommon::process_extracted_files('coursedocs',$docudom,$docuname,
1.476 raeburn 6667: $destination,$dir_root,$hiddenelem);
6668: return $output;
6669: }
6670:
1.480 raeburn 6671: sub remove_archive {
6672: my ($docudom,$docuname,$container) = @_;
6673: my $map = $env{'form.folder'}.'.'.$container;
1.481 raeburn 6674: my ($output,$delwarning,$delresult,$url);
1.480 raeburn 6675: my ($errtext,$fatal) = &mapread($docuname,$docudom,$map);
6676: if ($fatal) {
6677: if ($container eq 'page') {
6678: $delwarning = &mt('An error occurred retrieving the contents of the current page.');
6679: } else {
6680: $delwarning = &mt('An error occurred retrieving the contents of the current folder.');
6681: }
1.583 raeburn 6682: $delwarning .= ' '.&mt('As a result the archive file has not been removed.');
1.480 raeburn 6683: } else {
6684: my $currcmd = $env{'form.cmd'};
6685: my $position = $env{'form.position'};
1.583 raeburn 6686: my $archiveidx = $position;
1.563 raeburn 6687: if ($position > 0) {
1.583 raeburn 6688: if (($env{'form.autoextract_camtasia'}) && (scalar(@LONCAPA::map::order) == 2)) {
6689: $archiveidx = $position-1;
6690: }
6691: $env{'form.cmd'} = 'remove_'.$archiveidx;
1.584 raeburn 6692: my ($title,$url,@rrest) =
1.583 raeburn 6693: split(/:/,$LONCAPA::map::resources[$LONCAPA::map::order[$archiveidx]]);
6694: if ($url eq $env{'form.archiveurl'}) {
6695: if (&handle_edit_cmd($docuname,$docudom)) {
6696: ($errtext,$fatal) = &storemap($docuname,$docudom,$map,1);
6697: if ($fatal) {
6698: if ($container eq 'page') {
6699: $delwarning = &mt('An error occurred updating the contents of the current page.');
6700: } else {
6701: $delwarning = &mt('An error occurred updating the contents of the current folder.');
6702: }
1.480 raeburn 6703: } else {
1.583 raeburn 6704: $delresult = &mt('Archive file removed.');
1.480 raeburn 6705: }
6706: }
1.583 raeburn 6707: } else {
6708: $delwarning .= &mt('Archive file had unexpected item number in folder.').
6709: ' '.&mt('As a result the archive file has not been removed.');
1.480 raeburn 6710: }
6711: }
6712: $env{'form.cmd'} = $currcmd;
6713: }
6714: if ($delwarning) {
6715: $output = '<p class="LC_warning">'.
6716: $delwarning.
6717: '</p>';
6718: }
6719: if ($delresult) {
6720: $output .= '<p class="LC_info">'.
6721: $delresult.
6722: '</p>';
6723: }
1.481 raeburn 6724: return $output;
1.480 raeburn 6725: }
6726:
1.484 raeburn 6727: sub generate_admin_menu {
1.611 raeburn 6728: my ($crstype,$canedit) = @_;
1.484 raeburn 6729: my $lc_crstype = lc($crstype);
6730: my ($home,$other,%outhash)=&authorhosts();
1.562 bisitz 6731: my %lt= ( # do not translate here
1.484 raeburn 6732: 'vc' => 'Verify Content',
6733: 'cv' => 'Check/Set Resource Versions',
6734: 'ls' => 'List Resource Identifiers',
6735: 'imse' => 'Export contents to IMS Archive',
1.568 raeburn 6736: 'dcd' => "Copy $crstype Content to Authoring Space",
1.562 bisitz 6737: );
1.484 raeburn 6738: my ($candump,$dumpurl);
6739: if ($home + $other > 0) {
6740: $candump = 'F';
6741: if ($home) {
6742: $dumpurl = "javascript:injectData(document.courseverify,'dummy','dumpcourse','$lt{'dcd'}')";
6743: } else {
6744: my @hosts;
6745: foreach my $aurole (keys(%outhash)) {
6746: unless(grep(/^\Q$outhash{$aurole}\E/,@hosts)) {
6747: push(@hosts,$outhash{$aurole});
1.538 raeburn 6748: }
1.484 raeburn 6749: }
6750: if (@hosts == 1) {
6751: my $switchto = '/adm/switchserver?otherserver='.$hosts[0].
6752: '&role='.
6753: &HTML::Entities::encode($env{'request.role'},'"<>&').'&origurl='.
6754: &HTML::Entities::encode('/adm/coursedocs?dumpcourse=1','"<>&');
6755: $dumpurl = "javascript:dump_needs_switchserver('$switchto')";
6756: } else {
6757: $dumpurl = "javascript:choose_switchserver_window()";
6758: }
6759: }
6760: }
6761: my @menu=
6762: ({ categorytitle=>'Administration',
6763: items =>[
6764: { linktext => $lt{'vc'},
6765: url => "javascript:injectData(document.courseverify,'dummy','verify','$lt{'vc'}')",
6766: permission => 'F',
1.571 raeburn 6767: help => 'Docs_Verify_Content',
1.484 raeburn 6768: icon => 'verify.png',
6769: linktitle => 'Verify contents can be retrieved/rendered',
6770: },
6771: { linktext => $lt{'cv'},
6772: url => "javascript:injectData(document.courseverify,'dummy','versions','$lt{'cv'}')",
6773: permission => 'F',
1.571 raeburn 6774: help => 'Docs_Check_Resource_Versions',
1.484 raeburn 6775: icon => 'resversion.png',
6776: linktitle => "View version information for resources in your $lc_crstype, and fix/unfix use of specific versions",
6777: },
6778: { linktext => $lt{'ls'},
6779: url => "javascript:injectData(document.courseverify,'dummy','listsymbs','$lt{'ls'}')",
6780: permission => 'F',
6781: #help => '',
6782: icon => 'symbs.png',
6783: linktitle => "List the unique identifier used for each resource instance in your $lc_crstype"
6784: },
6785: ]
1.611 raeburn 6786: });
6787: if ($canedit) {
6788: push(@menu,
1.484 raeburn 6789: { categorytitle=>'Export',
6790: items =>[
6791: { linktext => $lt{'imse'},
6792: url => "javascript:injectData(document.courseverify,'dummy','exportcourse','$lt{'imse'}')",
6793: permission => 'F',
6794: help => 'Docs_Export_Course_Docs',
6795: icon => 'imsexport.png',
6796: linktitle => $lt{'imse'},
6797: },
6798: { linktext => $lt{'dcd'},
6799: url => $dumpurl,
6800: permission => $candump,
1.571 raeburn 6801: help => 'Docs_Dump_Course_Docs',
1.484 raeburn 6802: icon => 'dump.png',
6803: linktitle => $lt{'dcd'},
6804: },
6805: ]
6806: });
1.611 raeburn 6807: }
1.484 raeburn 6808: return '<form action="/adm/coursedocs" method="post" name="courseverify">'."\n".
6809: '<input type="hidden" id="dummy" />'."\n".
6810: &Apache::lonhtmlcommon::generate_menu(@menu)."\n".
6811: '</form>';
1.329 droeschl 6812: }
6813:
6814: sub generate_edit_table {
1.538 raeburn 6815: my ($tid,$orderhash_ref,$to_show,$iconpath,$jumpto,$readfile,
1.611 raeburn 6816: $need_save,$copyfolder,$canedit) = @_;
1.406 raeburn 6817: return unless(ref($orderhash_ref) eq 'HASH');
1.342 ehlerst 6818: my %orderhash = %{$orderhash_ref};
1.611 raeburn 6819: my ($form, $activetab, $active, $disabled);
1.570 raeburn 6820: if (($env{'form.active'} ne '') && ($env{'form.active'} ne '00')) {
1.371 tempelho 6821: $activetab = $env{'form.active'};
6822: }
1.611 raeburn 6823: unless ($canedit) {
6824: $disabled = ' disabled="disabled"';
6825: }
1.472 raeburn 6826: my $backicon = $iconpath.'clickhere.gif';
1.525 raeburn 6827: my $backtext = &mt('Exit Editor');
1.458 raeburn 6828: $form = '<div class="LC_Box" style="margin:0;">'.
1.488 raeburn 6829: '<ul id="navigation'.$tid.'" class="LC_TabContent">'."\n".
6830: '<li class="goback">'.
1.546 raeburn 6831: '<a href="javascript:toContents('."'$jumpto'".');">'.
1.488 raeburn 6832: '<img src="'.$backicon.'" class="LC_icon" style="border: none; vertical-align: top;"'.
6833: ' alt="'.$backtext.'" />'.$backtext.'</a></li>'."\n".
6834: '<li>'.
6835: '<a href="javascript:groupopen('."'$readfile'".',1);">'.
6836: &mt('Undo Delete').'</a></li>'."\n";
6837: if ($env{'form.docslog'}) {
6838: $form .= '<li class="active">';
6839: } else {
6840: $form .= '<li>';
6841: }
6842: $form .= '<a href="javascript:toggleHistoryDisp(1);">'.
6843: &mt('History').'</a></li>'."\n";
6844: if ($env{'form.docslog'}) {
6845: $form .= '<li><a href="javascript:toggleHistoryDisp(0);">'.
6846: &mt('Edit').'</a></li>'."\n";
1.484 raeburn 6847: }
1.458 raeburn 6848: foreach my $name (reverse(sort(keys(%orderhash)))) {
1.390 tempelho 6849: if($name ne '00'){
1.371 tempelho 6850: if($activetab eq '' || $activetab ne $name){
6851: $active = '';
6852: }elsif($activetab eq $name){
6853: $active = 'class="active"';
6854: }
1.458 raeburn 6855: $form .= '<li style="float:right" '.$active
1.484 raeburn 6856: .' onclick="javascript:showPage(this, \''.$name.$tid.'\', \'navigation'.$tid.'\',\'content'.$tid.'\');"><a href="javascript:;"><b>'.&mt(${$orderhash{$name}}[0]).'</b></a></li>'."\n";
1.390 tempelho 6857: } else {
1.570 raeburn 6858: $form .= '<li style="float:right">'.${$orderhash{$name}}[1].'</li>'."\n";
1.390 tempelho 6859:
6860: }
1.329 droeschl 6861: }
1.484 raeburn 6862: $form .= '</ul>'."\n";
6863: $form .= '<div id="content'.$tid.'" style="padding: 0 0; margin: 0 0; overflow: hidden; clear:right">'."\n";
1.458 raeburn 6864:
6865: if ($to_show ne '') {
1.538 raeburn 6866: my $saveform;
6867: if ($need_save) {
6868: my $button = &mt('Make changes');
6869: my $path;
6870: if ($env{'form.folderpath'}) {
6871: $path =
6872: &HTML::Entities::encode($env{'form.folderpath'},'<>&"');
6873: }
6874: $saveform = <<"END";
6875: <div id="multisave" style="display:none; clear:both;" >
6876: <form name="saveactions" method="post" action="/adm/coursedocs" onsubmit="return checkSubmits();">
6877: <input type="hidden" name="folderpath" value="$path" />
6878: <input type="hidden" name="symb" value="$env{'form.symb'}" />
6879: <input type="hidden" name="allhiddenresource" value="" />
6880: <input type="hidden" name="allencrypturl" value="" />
6881: <input type="hidden" name="allrandompick" value="" />
6882: <input type="hidden" name="allrandomorder" value="" />
6883: <input type="hidden" name="changeparms" value="" />
6884: <input type="hidden" name="multiremove" value="" />
6885: <input type="hidden" name="multicut" value="" />
6886: <input type="hidden" name="multicopy" value="" />
6887: <input type="hidden" name="multichange" value="" />
6888: <input type="hidden" name="copyfolder" value="$copyfolder" />
1.611 raeburn 6889: <input type="submit" name="savemultiples" value="$button" $disabled />
1.538 raeburn 6890: </form>
6891: </div>
6892: END
6893: }
6894: $form .= '<div style="padding:0;margin:0;float:left">'.$to_show.'</div>'.$saveform."\n";
1.458 raeburn 6895: }
1.363 ehlerst 6896: foreach my $field (keys(%orderhash)){
1.390 tempelho 6897: if($field ne '00'){
1.422 onken 6898: if($activetab eq '' || $activetab ne $field){
1.458 raeburn 6899: $active = 'style="display: none;float:left"';
1.422 onken 6900: }elsif($activetab eq $field){
1.458 raeburn 6901: $active = 'style="display:block;float:left"';
1.422 onken 6902: }
6903: $form .= '<div id="'.$field.$tid.'"'
6904: .' class="LC_ContentBox" '.$active.'>'.${$orderhash{$field}}[1]
1.484 raeburn 6905: .'</div>'."\n";
1.363 ehlerst 6906: }
6907: }
1.484 raeburn 6908: unless ($env{'form.docslog'}) {
6909: $form .= '</div></div>'."\n";
6910: }
1.329 droeschl 6911: return $form;
6912: }
6913:
6914: sub editing_js {
1.622 raeburn 6915: my ($udom,$uname,$supplementalflag,$coursedom,$coursenum,$posslti,
6916: $londocroot,$canedit,$hostname,$navmapref) = @_;
1.594 damieng 6917: my %js_lt = &Apache::lonlocal::texthash(
1.329 droeschl 6918: p_mnf => 'Name of New Folder',
6919: t_mnf => 'New Folder',
6920: p_mnp => 'Name of New Page',
6921: t_mnp => 'New Page',
1.451 www 6922: p_mxu => 'Title for the External Score',
1.349 biermanm 6923: p_msp => 'Name of Simple Course Page',
1.329 droeschl 6924: p_msb => 'Title for the Problem',
6925: p_mdb => 'Title for the Drop Box',
1.336 schafran 6926: p_mbb => 'Title for the Discussion Board',
1.604 raeburn 6927: p_mwp => 'Title for Web Page',
1.606 raeburn 6928: p_mnr => 'Title for the Resource',
1.348 weissno 6929: p_mab => "Enter user:domain for User's Personal Information Page",
1.352 bisitz 6930: p_mab2 => 'Personal Information Page of ',
1.329 droeschl 6931: p_mab_alrt1 => 'Not a valid user:domain',
6932: p_mab_alrt2 => 'Please enter both user and domain in the format user:domain',
6933: p_chn => 'New Title',
6934: p_rmr1 => 'WARNING: Removing a resource makes associated grades and scores inaccessible!',
1.603 raeburn 6935: p_rmr2a => 'Remove',
6936: p_rmr2b => '?',
6937: p_rmr3a => 'Remove those',
6938: p_rmr3b => 'items?',
6939: p_rmr4 => 'WARNING: Removing a resource uploaded to a course cannot be undone via "Undo Delete".',
6940: p_rmr5 => 'Push "Cancel" and then use "Cut" instead if you might need to undo this change.',
1.329 droeschl 6941: p_ctr1a => 'WARNING: Cutting a resource makes associated grades and scores inaccessible!',
6942: p_ctr1b => 'Grades remain inaccessible if resource is pasted into another folder.',
1.603 raeburn 6943: p_ctr2a => 'Cut',
6944: p_ctr2b => '?',
6945: p_ctr3a => 'Cut those',
6946: p_ctr3b => 'items?',
1.633 ! raeburn 6947: setal => 'Enter a (unique) alias',
! 6948: delal => 'Are you sure you want to eliminate the alias?',
1.478 raeburn 6949: rpck => 'Enter number to pick (e.g., 3)',
1.501 raeburn 6950: imsfile => 'You must choose an IMS package for import',
6951: imscms => 'You must select which Course Management System was the source of the IMS package',
6952: invurl => 'Invalid URL',
6953: titbl => 'Title is blank',
1.538 raeburn 6954: more => '(More ...)',
6955: less => '(Less ...)',
1.543 raeburn 6956: noor => 'No actions selected or changes to settings specified.',
6957: noch => 'No changes to settings specified.',
6958: noac => 'No actions selected.',
1.606 raeburn 6959: nofi => 'No file selected',
6960: tinc => 'Title in course',
6961: sunm => 'Sub-directory name',
1.618 raeburn 6962: edri => 'Editing rights unavailable for your current role.',
1.329 droeschl 6963: );
1.594 damieng 6964: &js_escape(\%js_lt);
1.433 raeburn 6965: my $crstype = &Apache::loncommon::course_type();
1.434 raeburn 6966: my $docs_folderpath = &HTML::Entities::encode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.folderpath'},'<>&"');
6967: my $main_container_page;
1.519 raeburn 6968: if (&HTML::Entities::decode($env{'environment.internal.'.$env{'request.course.id'}.'.docs_folderpath.folderpath'}) =~ /\:1$/) {
6969: $main_container_page = 1;
1.434 raeburn 6970: }
1.617 raeburn 6971: my $backtourl;
6972: my $toplevelmain = &escape(&default_folderpath($coursenum,$coursedom,$navmapref));
1.446 www 6973: my $toplevelsupp = &supplemental_base();
1.433 raeburn 6974:
1.530 raeburn 6975: if ($env{'docs.exit.'.$env{'request.course.id'}} =~ /^direct_(.+)$/) {
6976: my $caller = $1;
1.525 raeburn 6977: if ($caller =~ /^supplemental/) {
6978: $backtourl = '/adm/supplemental?folderpath='.&escape($caller);
6979: } else {
6980: my ($map,$id,$res)=&Apache::lonnet::decode_symb($caller);
6981: $res = &Apache::lonnet::clutter($res);
6982: if (&Apache::lonnet::is_on_map($res)) {
1.609 raeburn 6983: my ($url,$anchor);
6984: if ($res =~ /^([^#]+)#([^#]+)$/) {
6985: $url = $1;
6986: $anchor = $2;
6987: if (($caller =~ m{^([^#]+)\Q#$anchor\E$})) {
6988: $caller = $1.&escape('#').$anchor;
6989: }
1.614 raeburn 6990: } else {
6991: $url = $res;
1.609 raeburn 6992: }
6993: $backtourl = &HTML::Entities::encode(&Apache::lonnet::clutter($url),'<>&"').'?symb='.
1.525 raeburn 6994: &HTML::Entities::encode($caller,'<>&"');
1.622 raeburn 6995: if ($backtourl =~ m{^\Q/public/$coursedom/$coursenum/syllabus\E}) {
6996: if (($ENV{'SERVER_PORT'} == 443) &&
6997: ($env{'course.'.$env{'request.course.id'}.'.externalsyllabus'} =~ m{^http://})) {
6998: if ($hostname ne '') {
6999: $backtourl = 'http://'.$hostname.$backtourl;
7000: }
1.627 raeburn 7001: $backtourl .= (($backtourl =~ /\?/) ? '&':'?').'usehttp=1';
1.622 raeburn 7002: }
1.623 raeburn 7003: } elsif ($backtourl =~ m{^/adm/wrapper/ext/(?!https:)}) {
7004: if (($ENV{'SERVER_PORT'} == 443) && ($hostname ne '')) {
7005: $backtourl = 'http://'.$hostname.$backtourl;
7006: }
1.622 raeburn 7007: }
1.609 raeburn 7008: if ($anchor ne '') {
7009: $backtourl .= '#'.&HTML::Entities::encode($anchor,'<>&"');
7010: }
1.590 raeburn 7011: $backtourl = &Apache::loncommon::escape_single($backtourl);
1.544 raeburn 7012: } else {
7013: $backtourl = '/adm/navmaps';
1.525 raeburn 7014: }
7015: }
7016: } elsif ($env{'docs.exit.'.$env{'request.course.id'}} eq '/adm/menu') {
7017: $backtourl = '/adm/menu';
7018: } elsif ($supplementalflag) {
1.472 raeburn 7019: $backtourl = '/adm/supplemental';
1.525 raeburn 7020: } else {
7021: $backtourl = '/adm/navmaps';
1.472 raeburn 7022: }
7023:
1.600 raeburn 7024: my $fieldsets = "'ext','doc'";
7025: if ($posslti) {
7026: $fieldsets .= ",'tool'";
7027: }
1.519 raeburn 7028: unless ($main_container_page) {
7029: $fieldsets .=",'ims'";
7030: }
1.501 raeburn 7031: if ($supplementalflag) {
1.600 raeburn 7032: $fieldsets = "'suppext','suppdoc'";
7033: if ($posslti) {
7034: $fieldsets .= ",'supptool'";
7035: }
1.501 raeburn 7036: }
1.611 raeburn 7037:
7038: my $jsmakefunctions;
7039: if ($canedit) {
7040: $jsmakefunctions = <<ENDNEWSCRIPT;
1.329 droeschl 7041: function makenewfolder(targetform,folderseq) {
1.594 damieng 7042: var foldername=prompt('$js_lt{"p_mnf"}','$js_lt{"t_mnf"}');
1.329 droeschl 7043: if (foldername) {
7044: targetform.importdetail.value=escape(foldername)+"="+folderseq;
7045: targetform.submit();
7046: }
7047: }
7048:
7049: function makenewpage(targetform,folderseq) {
1.594 damieng 7050: var pagename=prompt('$js_lt{"p_mnp"}','$js_lt{"t_mnp"}');
1.329 droeschl 7051: if (pagename) {
7052: targetform.importdetail.value=escape(pagename)+"="+folderseq;
7053: targetform.submit();
7054: }
7055: }
7056:
7057: function makeexamupload() {
1.594 damieng 7058: var title=prompt('$js_lt{"p_mxu"}');
1.344 bisitz 7059: if (title) {
1.329 droeschl 7060: this.document.forms.newexamupload.importdetail.value=
7061: escape(title)+'=/res/lib/templates/examupload.problem';
7062: this.document.forms.newexamupload.submit();
7063: }
7064: }
7065:
7066: function makesmppage() {
1.594 damieng 7067: var title=prompt('$js_lt{"p_msp"}');
1.344 bisitz 7068: if (title) {
1.329 droeschl 7069: this.document.forms.newsmppg.importdetail.value=
1.533 raeburn 7070: escape(title)+'=/adm/$udom/$uname/new/smppg';
1.329 droeschl 7071: this.document.forms.newsmppg.submit();
7072: }
7073: }
7074:
1.534 raeburn 7075: function makewebpage(type) {
1.594 damieng 7076: var title=prompt('$js_lt{"p_mwp"}');
1.534 raeburn 7077: var formname;
7078: if (type == 'supp') {
7079: formname = this.document.forms.supwebpage;
7080: } else {
7081: formname = this.document.forms.newwebpage;
7082: }
7083: if (title) {
7084: var webpage = formname.importdetail.value;
7085: formname.importdetail.value = escape(title)+'='+webpage;
7086: formname.submit();
7087: }
7088: }
7089:
1.329 droeschl 7090: function makesmpproblem() {
1.594 damieng 7091: var title=prompt('$js_lt{"p_msb"}');
1.344 bisitz 7092: if (title) {
1.329 droeschl 7093: this.document.forms.newsmpproblem.importdetail.value=
7094: escape(title)+'=/res/lib/templates/simpleproblem.problem';
7095: this.document.forms.newsmpproblem.submit();
7096: }
7097: }
7098:
7099: function makedropbox() {
1.594 damieng 7100: var title=prompt('$js_lt{"p_mdb"}');
1.344 bisitz 7101: if (title) {
1.329 droeschl 7102: this.document.forms.newdropbox.importdetail.value=
7103: escape(title)+'=/res/lib/templates/DropBox.problem';
7104: this.document.forms.newdropbox.submit();
7105: }
7106: }
7107:
7108: function makebulboard() {
1.594 damieng 7109: var title=prompt('$js_lt{"p_mbb"}');
1.329 droeschl 7110: if (title) {
7111: this.document.forms.newbul.importdetail.value=
1.533 raeburn 7112: escape(title)+'=/adm/$udom/$uname/new/bulletinboard';
1.329 droeschl 7113: this.document.forms.newbul.submit();
7114: }
7115: }
7116:
7117: function makeabout() {
1.594 damieng 7118: var user=prompt("$js_lt{'p_mab'}");
1.329 droeschl 7119: if (user) {
7120: var comp=new Array();
7121: comp=user.split(':');
7122: if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) {
7123: if ((comp[0]) && (comp[1])) {
7124: this.document.forms.newaboutsomeone.importdetail.value=
1.594 damieng 7125: '$js_lt{"p_mab2"}'+escape(user)+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme';
1.611 raeburn 7126: this.document.forms.newaboutsomeone.submit();
7127: } else {
7128: alert("$js_lt{'p_mab_alrt1'}");
7129: }
7130: } else {
7131: alert("$js_lt{'p_mab_alrt2'}");
7132: }
7133: }
7134: }
7135:
7136: function makenew(targetform) {
7137: targetform.submit();
7138: }
7139:
7140: function changename(folderpath,index,oldtitle) {
7141: var title=prompt('$js_lt{"p_chn"}',oldtitle);
7142: if (title) {
7143: this.document.forms.renameform.markcopy.value='';
7144: this.document.forms.renameform.title.value=title;
7145: this.document.forms.renameform.cmd.value='rename_'+index;
7146: this.document.forms.renameform.folderpath.value=folderpath;
7147: this.document.forms.renameform.submit();
7148: }
7149: }
7150:
1.633 ! raeburn 7151: function setalias(folderpath,index) {
! 7152: var alias = prompt('$js_lt{"setal"}');
! 7153: if ((alias != null) && (alias != '')) {
! 7154: this.document.forms.aliasform.alias.value=alias;
! 7155: this.document.forms.aliasform.cmd.value='setalias_'+index;
! 7156: this.document.forms.aliasform.folderpath.value=folderpath;
! 7157: this.document.forms.aliasform.submit();
! 7158: }
! 7159: }
! 7160:
! 7161: function delalias(folderpath,index) {
! 7162: if (confirm('$js_lt{"delal"}')) {
! 7163: this.document.forms.aliasform.cmd.value='delalias_'+index;
! 7164: this.document.forms.aliasform.folderpath.value=folderpath;
! 7165: this.document.forms.aliasform.submit();
! 7166: }
! 7167: }
! 7168:
1.611 raeburn 7169: ENDNEWSCRIPT
7170: } else {
7171: $jsmakefunctions = <<ENDNEWSCRIPT;
7172:
7173: function makenewfolder() {
7174: alert("$js_lt{'edri'}");
7175: }
7176:
7177: function makenewpage() {
7178: alert("$js_lt{'edri'}");
7179: }
7180:
7181: function makeexamupload() {
7182: alert("$js_lt{'edri'}");
7183: }
7184:
7185: function makesmppage() {
7186: alert("$js_lt{'edri'}");
7187: }
7188:
7189: function makewebpage(type) {
7190: alert("$js_lt{'edri'}");
7191: }
7192:
7193: function makesmpproblem() {
7194: alert("$js_lt{'edri'}");
7195: }
7196:
7197: function makedropbox() {
7198: alert("$js_lt{'edri'}");
7199: }
7200:
7201: function makebulboard() {
7202: alert("$js_lt{'edri'}");
7203: }
7204:
7205: function makeabout() {
7206: alert("$js_lt{'edri'}");
7207: }
7208:
7209: function changename() {
7210: alert("$js_lt{'edri'}");
7211: }
7212:
1.633 ! raeburn 7213: function setalias() {
! 7214: alert("$js_lt{'edri'}");
! 7215: }
! 7216:
! 7217: function delalias() {
! 7218: alert("$js_lt{'edri'}");
! 7219: }
! 7220:
1.611 raeburn 7221: function makenew() {
7222: alert("$js_lt{'edri'}");
7223: }
7224:
7225: function groupimport() {
7226: alert("$js_lt{'edri'}");
1.335 ehlerst 7227: }
1.611 raeburn 7228:
7229: function groupsearch() {
7230: alert("$js_lt{'edri'}");
1.335 ehlerst 7231: }
1.611 raeburn 7232:
7233: function groupopen(url,recover) {
7234: var options="scrollbars=1,resizable=1,menubar=0";
7235: idxflag=1;
7236: idx=open("/adm/groupsort?inhibitmenu=yes&mode=simple&recover="+recover+"&readfile="+url,"idxout",options);
7237: idx.focus();
1.329 droeschl 7238: }
7239:
1.611 raeburn 7240: ENDNEWSCRIPT
7241:
7242: }
7243: return <<ENDSCRIPT;
7244:
7245: $jsmakefunctions
7246:
1.501 raeburn 7247: function toggleUpload(caller) {
7248: var blocks = Array($fieldsets);
7249: for (var i=0; i<blocks.length; i++) {
7250: var disp = 'none';
7251: if (caller == blocks[i]) {
7252: var curr = document.getElementById('upload'+caller+'form').style.display;
7253: if (curr == 'none') {
7254: disp='block';
7255: }
7256: }
7257: document.getElementById('upload'+blocks[i]+'form').style.display=disp;
1.598 raeburn 7258: if ((caller == 'tool') || (caller == 'supptool')) {
7259: if (disp == 'block') {
7260: if (document.getElementById('LC_exttoolid')) {
7261: var toolselector = document.getElementById('LC_exttoolid');
7262: var suppflag = 0;
7263: if (caller == 'supptool') {
7264: suppflag = 1;
7265: }
7266: currForm = document.getElementById('new'+caller);
7267: updateExttool(toolselector,currForm,suppflag);
7268: }
7269: }
7270: }
1.501 raeburn 7271: }
1.502 raeburn 7272: resize_scrollbox('contentscroll','1','1');
7273: return;
7274: }
7275:
1.514 raeburn 7276: function toggleMap(caller) {
1.502 raeburn 7277: var disp = 'none';
1.510 raeburn 7278: if (document.getElementById('importmapform')) {
1.514 raeburn 7279: if (caller == 'map') {
7280: var curr = document.getElementById('importmapform').style.display;
7281: if (curr == 'none') {
7282: disp='block';
7283: }
1.510 raeburn 7284: }
7285: document.getElementById('importmapform').style.display=disp;
7286: resize_scrollbox('contentscroll','1','1');
1.502 raeburn 7287: }
1.501 raeburn 7288: return;
1.329 droeschl 7289: }
7290:
1.606 raeburn 7291: function toggleCrsRes(caller,numauthorrole,numcrsdirs) {
7292: var disp = 'none';
7293: if (document.getElementById('crsresform')) {
7294: if (caller == 'res') {
7295: var curr = document.getElementById('crsresform').style.display;
7296: if (curr == 'none') {
7297: disp='block';
7298: numauthor = parseInt(numauthorrole);
7299: if (numauthor > 0) {
7300: document.courseresform.authorrole.selectedIndex = 0;
7301: select1priv_changed();
7302: document.courseresform.authorpath.selectedIndex = 0;
7303: document.courseresform.newresourceadd.selectedIndex = 0;
7304: toggleNewInCourse(document.courseresform);
7305: if (document.getElementById('newresource')) {
7306: document.getElementById('newresource').style.display = 'none';
7307: }
7308: } else {
7309: if (numcrsdirs) {
7310: document.courseresform.authorpath.selectedIndex = 0;
7311: }
7312: }
7313: if (document.courseresform.newresusetemp.length) {
7314: document.courseresform.newresusetemp[0].checked = true;
7315: toggleWithTemplate(document.courseresform);
7316: }
7317: document.courseresform.newresourcename.value = '';
7318: }
7319: }
7320: if (document.courseresform.newsubdir.length) {
7321: for (var j=0; j<document.courseresform.newsubdir.length; j++) {
7322: if (document.courseresform.newsubdir[j].value == 0) {
7323: document.courseresform.newsubdir[j].checked = true;
7324: }
7325: break;
7326: }
7327: if (document.getElementById('newsubdirname')) {
7328: document.getElementById('newsubdirname').type = "hidden";
7329: document.getElementById('newsubdirname').value = "";
7330: }
7331: if (document.getElementById('newsubdir')) {
7332: document.getElementById('newsubdir').innerHTML = "";
7333: }
7334: }
7335: document.getElementById('crsresform').style.display=disp;
7336: resize_scrollbox('contentscroll','1','0');
7337: }
7338: return;
7339: }
7340:
7341: function toggleNewsubdir(form) {
7342: if (form.newsubdir.length) {
7343: for (var j=0; j<form.newsubdir.length; j++) {
7344: if (form.newsubdir[j].checked) {
7345: if (document.getElementById('newsubdirname')) {
7346: if (form.newsubdir[j].value == '1') {
7347: document.getElementById('newsubdirname').type = "text";
7348: if (document.getElementById('newsubdir')) {
7349: document.getElementById('newsubdir').innerHTML = '<br />$js_lt{'sunm'}';
7350: }
7351: } else {
7352: document.getElementById('newsubdirname').type = "hidden";
7353: document.getElementById('newsubdirname').value = "";
7354: document.getElementById('newsubdir').innerHTML = "";
7355: }
7356: }
7357: break;
7358: }
7359: }
7360: }
7361: }
7362:
7363: function toggleCrsResTitle() {
7364: if (document.getElementById('newresource')) {
7365: if (document.courseresform.authorrole.options[document.courseresform.authorrole.selectedIndex].value == 'course') {
7366: document.getElementById('newresource').style.display = 'inline';
7367: document.courseresform.newresourceadd[0].checked = true;
7368: toggleNewInCourse(document.courseresform);
7369: } else {
7370: document.getElementById('newresource').style.display = 'none';
7371: }
7372: }
7373: }
7374:
7375: function toggleNewInCourse(form) {
7376: if (form.newresourceadd.length) {
7377: for (var i=0; i<form.newresourceadd.length; i++) {
7378: if (form.newresourceadd[i].checked) {
7379: if (document.getElementById('newresourcetitle')) {
7380: if (form.newresourceadd[i].value == '1') {
7381: document.getElementById('newresourcetitle').type = 'text';
7382: if (document.getElementById('newrestitle')) {
7383: document.getElementById('newrestitle').innerHTML = "<br />$js_lt{'tinc'}";
7384: }
7385: } else {
7386: document.getElementById('newresourcetitle').type = 'hidden';
7387: document.getElementById('newresourcetitle').value = '';
7388: if (document.getElementById('newrestitle')) {
7389: document.getElementById('newrestitle').innerHTML = '';
7390: }
7391: }
7392: }
7393: break;
7394: }
7395: }
7396: }
7397: }
7398:
7399: function toggleWithTemplate(form) {
7400: if (form.newresusetemp.length) {
7401: for (var i=0; i<form.newresusetemp.length; i++) {
7402: if (form.newresusetemp[i].checked) {
7403: if (document.getElementById('newrestemplate')) {
7404: if (form.newresusetemp[i].value == '1') {
7405: document.getElementById('newrestemplate').style.display = 'inline';
7406: toggleExampleText();
7407: } else {
7408: form.tempcategory.selectedIndex = 0;
7409: select1template_changed();
7410: document.getElementById('newrestemplate').style.display = 'none';
7411: }
7412: }
7413: }
7414: }
7415: }
7416: }
7417:
7418: function toggleExampleText() {
7419: if (document.getElementById('newresexample')) {
7420: var url = document.courseresform.template.options[document.courseresform.template.selectedIndex].value;
7421: if (url == '') {
7422: document.getElementById('newresexample').style.fontWeight = 'normal';
7423: } else {
7424: document.getElementById('newresexample').style.fontWeight = 'bold';
7425: }
7426: }
7427: }
7428:
7429: function getExample(width,height,scrolling,transparency) {
7430: var url;
7431: if (document.courseresform.newresusetemp.length) {
7432: for (var i=0; i<document.courseresform.newresusetemp.length; i++) {
7433: if (document.courseresform.newresusetemp[i].checked) {
7434: if (document.courseresform.newresusetemp[i].value == '1') {
7435: var url = document.courseresform.template.options[document.courseresform.template.selectedIndex].value;
7436: if (url == '') {
7437: alert('Pick a category and template');
7438: } else {
7439: url = url.replace("$londocroot","");
7440: url += '?inhibitmenu=yes';
7441: }
7442: }
7443: break;
7444: }
7445: }
7446: }
7447: if (url != '') {
7448: openMyModal(url,width,height,scrolling,transparency,'');
7449: }
7450: }
7451:
7452: function toggleImportCrsres(caller,dircount) {
7453: var disp = 'none';
7454: if (document.getElementById('importcrsresform')) {
7455: if (caller == 'res') {
7456: var numdirs = parseInt(dircount);
7457: var curr = document.getElementById('importcrsresform').style.display;
7458: if (curr == 'none') {
7459: disp='block';
7460: if (numdirs > 1) {
7461: select1res_changed();
7462: }
7463: }
7464: }
7465: document.getElementById('importcrsresform').style.display=disp;
7466: resize_scrollbox('contentscroll','1','0');
7467: }
7468: return;
7469: }
7470:
1.501 raeburn 7471: function makeims(imsform) {
7472: if ((imsform.uploaddoc.value == '') || (!imsform.uploaddoc.value)) {
1.594 damieng 7473: alert("$js_lt{'imsfile'}");
1.501 raeburn 7474: return;
7475: }
7476: if (imsform.source.selectedIndex == 0) {
1.594 damieng 7477: alert("$js_lt{'imscms'}");
1.501 raeburn 7478: return;
7479: }
7480: newWindow = window.open('', 'IMSimport',"HEIGHT=700,WIDTH=750,scrollbars=yes");
7481: imsform.submit();
7482: }
7483:
1.478 raeburn 7484: function updatePick(targetform,index,caller) {
1.537 raeburn 7485: var pickitem;
7486: var picknumitem;
7487: var picknumtext;
7488: if (index == 'all') {
7489: pickitem = document.getElementById('randompickall');
7490: picknumitem = document.getElementById('rpicknumall');
7491: picknumtext = document.getElementById('rpicktextall');
7492: } else {
7493: pickitem = document.getElementById('randompick_'+index);
7494: picknumitem = document.getElementById('rpicknum_'+index);
7495: picknumtext = document.getElementById('randompicknum_'+index);
7496: }
1.478 raeburn 7497: if (pickitem.checked) {
1.594 damieng 7498: var picknum=prompt('$js_lt{"rpck"}',picknumitem.value);
1.478 raeburn 7499: if (picknum == '' || picknum == null) {
7500: if (caller == 'check') {
7501: pickitem.checked=false;
1.537 raeburn 7502: if (index == 'all') {
7503: picknumtext.innerHTML = '';
7504: if (caller == 'link') {
7505: propagateState(targetform,'rpicknum');
7506: }
7507: } else {
1.538 raeburn 7508: checkForSubmit(targetform,'randompick','settings');
1.537 raeburn 7509: }
1.478 raeburn 7510: }
7511: } else {
7512: picknum.toString();
7513: var regexdigit=/^\\d+\$/;
7514: if (regexdigit.test(picknum)) {
7515: picknumitem.value = picknum;
1.537 raeburn 7516: if (index == 'all') {
1.538 raeburn 7517: picknumtext.innerHTML = ' <a href="javascript:updatePick(document.cumulativesettings,\\'all\\',\\'link\\');">'+picknum+'</a>';
1.537 raeburn 7518: if (caller == 'link') {
7519: propagateState(targetform,'rpicknum');
7520: }
7521: } else {
7522: picknumtext.innerHTML = ' <a href="javascript:updatePick(document.edit_randompick_'+index+',\\''+index+'\\',\\'link\\');">'+picknum+'</a>';
1.538 raeburn 7523: checkForSubmit(targetform,'randompick','settings');
1.537 raeburn 7524: }
1.478 raeburn 7525: } else {
7526: if (caller == 'check') {
1.537 raeburn 7527: if (index == 'all') {
7528: picknumtext.innerHTML = '';
7529: if (caller == 'link') {
7530: propagateState(targetform,'rpicknum');
7531: }
7532: } else {
7533: pickitem.checked=false;
1.538 raeburn 7534: checkForSubmit(targetform,'randompick','settings');
1.537 raeburn 7535: }
1.478 raeburn 7536: }
7537: return;
7538: }
7539: }
7540: } else {
1.537 raeburn 7541: picknumitem.value = '';
7542: picknumtext.innerHTML = '';
7543: if (index == 'all') {
7544: if (caller == 'link') {
7545: propagateState(targetform,'rpicknum');
7546: }
7547: } else {
1.538 raeburn 7548: checkForSubmit(targetform,'randompick','settings');
1.537 raeburn 7549: }
7550: }
7551: }
7552:
7553: function propagateState(form,param) {
7554: if (document.getElementById(param+'all')) {
7555: var setcheck = 0;
7556: var rpick = 0;
7557: if (param == 'rpicknum') {
7558: if (document.getElementById('randompickall')) {
7559: if (document.getElementById('randompickall').checked) {
7560: if (document.getElementById('rpicknumall')) {
7561: rpick = document.getElementById('rpicknumall').value;
7562: }
7563: }
7564: }
7565: } else {
7566: if (document.getElementById(param+'all').checked) {
7567: setcheck = 1;
7568: }
7569: }
1.538 raeburn 7570: var allidxlist;
7571: if ((param == 'remove') || (param == 'cut') || (param == 'copy')) {
7572: if (document.getElementById('all'+param+'idx')) {
7573: allidxlist = document.getElementById('all'+param+'idx').value;
7574: }
7575: var actions = new Array ('remove','cut','copy');
7576: for (var i=0; i<actions.length; i++) {
7577: if (actions[i] != param) {
7578: if (document.getElementById(actions[i]+'all')) {
7579: document.getElementById(actions[i]+'all').checked = false;
7580: }
7581: }
7582: }
7583: }
1.537 raeburn 7584: if ((param == 'encrypturl') || (param == 'hiddenresource')) {
1.538 raeburn 7585: allidxlist = form.allidx.value;
7586: }
7587: if ((param == 'randompick') || (param == 'rpicknum') || (param == 'randomorder')) {
7588: allidxlist = form.allmapidx.value;
7589: }
7590: if ((allidxlist != '') && (allidxlist != null)) {
7591: var allidxs = allidxlist.split(',');
7592: if (allidxs.length > 1) {
7593: for (var i=0; i<allidxs.length; i++) {
7594: if (document.getElementById(param+'_'+allidxs[i])) {
7595: if (param == 'rpicknum') {
7596: if (document.getElementById('randompick_'+allidxs[i])) {
7597: if (document.getElementById('randompick_'+allidxs[i]).checked) {
7598: document.getElementById(param+'_'+allidxs[i]).value = rpick;
7599: if (rpick > 0) {
7600: document.getElementById('randompicknum_'+allidxs[i]).innerHTML = ': <a href="javascript:updatePick(document.edit_randompick_'+allidxs[i]+',\\''+allidxs[i]+'\\',\\'link\\')">'+rpick+'</a>';
7601: } else {
7602: document.getElementById('randompicknum_'+allidxs[i]).innerHTML = '';
7603: }
7604: }
7605: }
7606: } else {
1.537 raeburn 7607: if (setcheck == 1) {
7608: document.getElementById(param+'_'+allidxs[i]).checked = true;
7609: } else {
7610: document.getElementById(param+'_'+allidxs[i]).checked = false;
1.538 raeburn 7611: if (param == 'randompick') {
7612: document.getElementById('randompicknum_'+allidxs[i]).innerHTML = '';
7613: }
1.537 raeburn 7614: }
7615: }
7616: }
7617: }
1.538 raeburn 7618: if (setcheck == 1) {
7619: if ((param == 'remove') || (param == 'cut') || (param == 'copy')) {
7620: var actions = new Array('copy','cut','remove');
7621: for (var i=0; i<actions.length; i++) {
7622: var otheractions;
7623: var otheridxs;
7624: if (actions[i] === param) {
7625: continue;
7626: } else {
7627: if (document.getElementById('all'+actions[i]+'idx')) {
7628: otheractions = document.getElementById('all'+actions[i]+'idx').value;
7629: otheridxs = otheractions.split(',');
7630: if (otheridxs.length > 1) {
7631: for (var j=0; j<otheridxs.length; j++) {
7632: if (document.getElementById(actions[i]+'_'+otheridxs[j])) {
7633: document.getElementById(actions[i]+'_'+otheridxs[j]).checked = false;
7634: }
1.537 raeburn 7635: }
7636: }
7637: }
1.538 raeburn 7638: }
7639: }
7640: }
7641: }
7642: }
7643: }
7644: }
7645: return;
7646: }
7647:
1.603 raeburn 7648: function checkForSubmit(targetform,param,context,idx,folderpath,index,oldtitle,skip_confirm,container,folder,confirm_removal) {
1.611 raeburn 7649: var canedit = '$canedit';
7650: if (canedit == '') {
7651: alert("$js_lt{'edri'}");
7652: return;
7653: }
1.539 raeburn 7654: var dosettings;
7655: var doaction;
1.538 raeburn 7656: var control = document.togglemultsettings;
7657: if (context == 'actions') {
7658: control = document.togglemultactions;
1.539 raeburn 7659: doaction = 1;
7660: } else {
7661: dosettings = 1;
1.538 raeburn 7662: }
1.539 raeburn 7663: if (control) {
7664: if (control.showmultpick.length) {
7665: for (var i=0; i<control.showmultpick.length; i++) {
7666: if (control.showmultpick[i].checked) {
7667: if (control.showmultpick[i].value == 1) {
7668: if (context == 'settings') {
7669: dosettings = 0;
7670: } else {
7671: doaction = 0;
1.538 raeburn 7672: }
7673: }
7674: }
1.537 raeburn 7675: }
7676: }
1.539 raeburn 7677: }
7678: if (context == 'settings') {
7679: if (dosettings == 1) {
1.538 raeburn 7680: targetform.changeparms.value=param;
7681: targetform.submit();
7682: }
1.537 raeburn 7683: }
1.539 raeburn 7684: if (context == 'actions') {
7685: if (doaction == 1) {
7686: targetform.cmd.value=param+'_'+index;
7687: targetform.folderpath.value=folderpath;
7688: targetform.markcopy.value=idx+':'+param;
7689: targetform.copyfolder.value=folder+'.'+container;
7690: if (param == 'remove') {
1.603 raeburn 7691: var doremove = 0;
7692: if (skip_confirm) {
7693: if (confirm_removal) {
7694: if (confirm('$js_lt{"p_rmr4"}\\n$js_lt{"p_rmr5"}\\n\\n$js_lt{"p_rmr2a"} "'+oldtitle+'"$js_lt{"p_rmr2b"}')) {
7695: doremove = 1;
7696: }
7697: } else {
7698: doremove = 1;
7699: }
7700: } else {
7701: if (confirm('$js_lt{"p_rmr1"}\\n\\n$js_lt{"p_rmr2a"} "'+oldtitle+'" $js_lt{"p_rmr2b"}')) {
7702: doremove = 1;
7703: }
7704: }
7705: if (doremove) {
1.539 raeburn 7706: targetform.markcopy.value='';
7707: targetform.copyfolder.value='';
7708: targetform.submit();
7709: }
7710: }
7711: if (param == 'cut') {
1.594 damieng 7712: if (skip_confirm || confirm('$js_lt{"p_ctr1a"}\\n$js_lt{"p_ctr1b"}\\n\\n$js_lt{"p_ctr2a"} "'+oldtitle+'" $js_lt{"p_ctr2b"}')) {
1.539 raeburn 7713: targetform.submit();
7714: return;
7715: }
7716: }
7717: if (param == 'copy') {
7718: targetform.submit();
7719: return;
7720: }
7721: targetform.markcopy.value='';
7722: targetform.copyfolder.value='';
7723: targetform.cmd.value='';
7724: targetform.folderpath.value='';
7725: return;
7726: } else {
7727: if (document.getElementById(param+'_'+idx)) {
7728: item = document.getElementById(param+'_'+idx);
7729: if (item.type == 'checkbox') {
7730: if (item.checked) {
7731: item.checked = false;
7732: } else {
7733: item.checked = true;
7734: singleCheck(item,idx,param);
7735: }
7736: }
7737: }
7738: }
7739: }
1.537 raeburn 7740: return;
7741: }
7742:
1.538 raeburn 7743: function singleCheck(caller,idx,action) {
7744: actions = new Array('cut','copy','remove');
7745: if (caller.checked) {
7746: for (var i=0; i<actions.length; i++) {
7747: if (actions[i] != action) {
7748: if (document.getElementById(actions[i]+'_'+idx)) {
7749: if (document.getElementById(actions[i]+'_'+idx).checked) {
7750: document.getElementById(actions[i]+'_'+idx).checked = false;
7751: }
1.537 raeburn 7752: }
7753: }
7754: }
1.478 raeburn 7755: }
1.537 raeburn 7756: return;
1.478 raeburn 7757: }
7758:
1.334 muellerd 7759: function unselectInactive(nav) {
1.335 ehlerst 7760: currentNav = document.getElementById(nav);
7761: currentLis = currentNav.getElementsByTagName('LI');
7762: for (i = 0; i < currentLis.length; i++) {
1.472 raeburn 7763: if (currentLis[i].className == 'goback') {
7764: currentLis[i].className = 'goback';
7765: } else {
7766: if (currentLis[i].className == 'right active' || currentLis[i].className == 'right') {
1.374 tempelho 7767: currentLis[i].className = 'right';
1.472 raeburn 7768: } else {
1.374 tempelho 7769: currentLis[i].className = 'i';
1.472 raeburn 7770: }
7771: }
1.335 ehlerst 7772: }
1.332 tempelho 7773: }
7774:
1.334 muellerd 7775: function hideAll(current, nav, data) {
1.335 ehlerst 7776: unselectInactive(nav);
1.570 raeburn 7777: if (current) {
7778: if (current.className == 'right'){
7779: current.className = 'right active'
7780: } else {
7781: current.className = 'active';
7782: }
1.374 tempelho 7783: }
1.335 ehlerst 7784: currentData = document.getElementById(data);
7785: currentDivs = currentData.getElementsByTagName('DIV');
7786: for (i = 0; i < currentDivs.length; i++) {
7787: if(currentDivs[i].className == 'LC_ContentBox'){
1.333 muellerd 7788: currentDivs[i].style.display = 'none';
1.330 tempelho 7789: }
7790: }
1.335 ehlerst 7791: }
1.330 tempelho 7792:
1.374 tempelho 7793: function openTabs(pageId) {
7794: tabnav = document.getElementById(pageId).getElementsByTagName('UL');
1.383 tempelho 7795: if(tabnav.length > 2 ){
1.389 tempelho 7796: currentNav = document.getElementById(tabnav[1].id);
1.374 tempelho 7797: currentLis = currentNav.getElementsByTagName('LI');
7798: for(i = 0; i< currentLis.length; i++){
7799: if(currentLis[i].className == 'active') {
1.375 tempelho 7800: funcString = currentLis[i].onclick.toString();
7801: tab = funcString.split('"');
1.420 onken 7802: if(tab.length < 2) {
7803: tab = funcString.split("'");
7804: }
1.375 tempelho 7805: currentData = document.getElementById(tab[1]);
7806: currentData.style.display = 'block';
1.374 tempelho 7807: }
7808: }
7809: }
7810: }
7811:
1.334 muellerd 7812: function showPage(current, pageId, nav, data) {
1.570 raeburn 7813: currstate = current.className;
1.334 muellerd 7814: hideAll(current, nav, data);
1.375 tempelho 7815: openTabs(pageId);
1.334 muellerd 7816: unselectInactive(nav);
1.570 raeburn 7817: if ((currstate == 'active') || (currstate == 'right active')) {
7818: if (currstate == 'active') {
7819: current.className = '';
7820: } else {
7821: current.className = 'right';
7822: }
7823: activeTab = '';
7824: toggleUpload();
7825: toggleMap();
1.606 raeburn 7826: toggleCrsRes();
7827: toggleImportCrsres();
1.570 raeburn 7828: resize_scrollbox('contentscroll','1','0');
7829: return;
7830: } else {
7831: current.className = 'active';
7832: }
1.330 tempelho 7833: currentData = document.getElementById(pageId);
7834: currentData.style.display = 'block';
1.458 raeburn 7835: activeTab = pageId;
1.501 raeburn 7836: toggleUpload();
1.503 raeburn 7837: toggleMap();
1.606 raeburn 7838: toggleCrsRes();
7839: toggleImportCrsres();
1.433 raeburn 7840: if (nav == 'mainnav') {
7841: var storedpath = "$docs_folderpath";
1.434 raeburn 7842: var storedpage = "$main_container_page";
1.433 raeburn 7843: var reg = new RegExp("^supplemental");
7844: if (pageId == 'mainCourseDocuments') {
1.434 raeburn 7845: if (storedpage == 1) {
7846: document.simpleedit.folderpath.value = '';
7847: document.uploaddocument.folderpath.value = '';
7848: } else {
7849: if (reg.test(storedpath)) {
7850: document.simpleedit.folderpath.value = '$toplevelmain';
7851: document.uploaddocument.folderpath.value = '$toplevelmain';
7852: document.newext.folderpath.value = '$toplevelmain';
7853: } else {
7854: document.simpleedit.folderpath.value = storedpath;
7855: document.uploaddocument.folderpath.value = storedpath;
7856: document.newext.folderpath.value = storedpath;
7857: }
1.433 raeburn 7858: }
7859: } else {
1.434 raeburn 7860: if (reg.test(storedpath)) {
7861: document.simpleedit.folderpath.value = storedpath;
7862: document.supuploaddocument.folderpath.value = storedpath;
7863: document.supnewext.folderpath.value = storedpath;
7864: } else {
1.433 raeburn 7865: document.simpleedit.folderpath.value = '$toplevelsupp';
7866: document.supuploaddocument.folderpath.value = '$toplevelsupp';
7867: document.supnewext.folderpath.value = '$toplevelsupp';
7868: }
7869: }
7870: }
1.485 raeburn 7871: resize_scrollbox('contentscroll','1','0');
1.330 tempelho 7872: return false;
7873: }
1.329 droeschl 7874:
1.472 raeburn 7875: function toContents(jumpto) {
7876: var newurl = '$backtourl';
1.525 raeburn 7877: if ((newurl == '/adm/navmaps') && (jumpto != '')) {
1.472 raeburn 7878: newurl = newurl+'?postdata='+jumpto;
7879: }
7880: location.href=newurl;
7881: }
7882:
1.538 raeburn 7883: function togglePick(caller,value) {
7884: var disp = 'none';
7885: if (document.getElementById('multi'+caller)) {
7886: var curr = document.getElementById('multi'+caller).style.display;
7887: if (value == 1) {
7888: disp='block';
7889: }
7890: if (curr == disp) {
7891: return;
7892: }
7893: document.getElementById('multi'+caller).style.display=disp;
7894: if (value == 1) {
1.594 damieng 7895: document.getElementById('more'+caller).innerHTML = ' <a href="javascript:toggleCheckUncheck(\\''+caller+'\\',1);" style="text-decoration:none;">$js_lt{'more'}</a>';
1.538 raeburn 7896: } else {
7897: document.getElementById('more'+caller).innerHTML = '';
7898: }
7899: if (caller == 'actions') {
7900: setClass(value);
7901: setBoxes(value);
7902: }
7903: }
7904: var showButton = multiSettings();
7905: if (showButton != 1) {
7906: showButton = multiActions();
7907: }
7908: if (document.getElementById('multisave')) {
7909: if (showButton == 1) {
7910: document.getElementById('multisave').style.display='block';
7911: } else {
7912: document.getElementById('multisave').style.display='none';
7913: }
7914: }
7915: resize_scrollbox('contentscroll','1','1');
7916: return;
7917: }
7918:
7919: function toggleCheckUncheck(caller,more) {
7920: if (more == 1) {
1.594 damieng 7921: document.getElementById('more'+caller).innerHTML = ' <a href="javascript:toggleCheckUncheck(\\''+caller+'\\',0);" style="text-decoration:none;">$js_lt{'less'}</a>';
1.538 raeburn 7922: document.getElementById('allfields'+caller).style.display='block';
7923: } else {
1.594 damieng 7924: document.getElementById('more'+caller).innerHTML = ' <a href="javascript:toggleCheckUncheck(\\''+caller+'\\',1);" style="text-decoration:none;">$js_lt{'more'}</a>';
1.538 raeburn 7925: document.getElementById('allfields'+caller).style.display='none';
7926: }
7927: resize_scrollbox('contentscroll','1','1');
7928: }
7929:
7930: function multiSettings() {
7931: var inuse = 0;
7932: var settingsform = document.togglemultsettings;
7933: if (settingsform.showmultpick.length > 1) {
7934: for (var i=0; i<settingsform.showmultpick.length; i++) {
7935: if (settingsform.showmultpick[i].checked) {
7936: if (settingsform.showmultpick[i].value == 1) {
7937: inuse = 1;
7938: }
7939: }
7940: }
7941: }
7942: return inuse;
7943: }
7944:
7945: function multiActions() {
7946: var inuse = 0;
7947: var actionsform = document.togglemultactions;
7948: if (actionsform.showmultpick.length > 1) {
7949: for (var i=0; i<actionsform.showmultpick.length; i++) {
7950: if (actionsform.showmultpick[i].checked) {
7951: if (actionsform.showmultpick[i].value == 1) {
7952: inuse = 1;
7953: }
7954: }
7955: }
7956: }
7957: return inuse;
7958: }
7959:
7960: function checkSubmits() {
7961: var numchanges = 0;
7962: var form = document.saveactions;
7963: var doactions = multiActions();
1.542 raeburn 7964: var cutwarnings = 0;
7965: var remwarnings = 0;
1.603 raeburn 7966: var removalinfo = 0;
1.538 raeburn 7967: if (doactions == 1) {
7968: var remidxlist = document.cumulativeactions.allremoveidx.value;
7969: if ((remidxlist != '') && (remidxlist != null)) {
7970: var remidxs = remidxlist.split(',');
7971: for (var i=0; i<remidxs.length; i++) {
7972: if (document.getElementById('remove_'+remidxs[i])) {
7973: if (document.getElementById('remove_'+remidxs[i]).checked) {
7974: form.multiremove.value += remidxs[i]+',';
7975: numchanges ++;
1.542 raeburn 7976: if (document.getElementById('skip_remove_'+remidxs[i])) {
7977: if (document.getElementById('skip_remove_'+remidxs[i]).value == 0) {
7978: remwarnings ++;
7979: }
7980: }
1.603 raeburn 7981: if (document.getElementById('confirm_removal_'+remidxs[i])) {
7982: if (document.getElementById('confirm_removal_'+remidxs[i]).value == 1) {
7983: removalinfo ++;
7984: }
7985: }
1.537 raeburn 7986: }
7987: }
1.538 raeburn 7988: }
7989: }
7990: var cutidxlist = document.cumulativeactions.allcutidx.value;
7991: if ((cutidxlist != '') && (cutidxlist != null)) {
7992: var cutidxs = cutidxlist.split(',');
7993: for (var i=0; i<cutidxs.length; i++) {
7994: if (document.getElementById('cut_'+cutidxs[i])) {
7995: if (document.getElementById('cut_'+cutidxs[i]).checked == true) {
7996: form.multicut.value += cutidxs[i]+',';
7997: numchanges ++;
1.542 raeburn 7998: if (document.getElementById('skip_cut_'+cutidxs[i])) {
7999: if (document.getElementById('skip_cut_'+cutidxs[i]).value == 0) {
8000: cutwarnings ++;
8001: }
8002: }
1.537 raeburn 8003: }
8004: }
8005: }
8006: }
1.538 raeburn 8007: var copyidxlist = document.cumulativeactions.allcopyidx.value;
8008: if ((copyidxlist != '') && (copyidxlist != null)) {
8009: var copyidxs = copyidxlist.split(',');
8010: for (var i=0; i<copyidxs.length; i++) {
8011: if (document.getElementById('copy_'+copyidxs[i])) {
8012: if (document.getElementById('copy_'+copyidxs[i]).checked) {
8013: form.multicopy.value += copyidxs[i]+',';
8014: numchanges ++;
8015: }
8016: }
8017: }
8018: }
8019: if (numchanges > 0) {
8020: form.multichange.value = numchanges;
8021: }
1.537 raeburn 8022: }
1.538 raeburn 8023: var dosettings = multiSettings();
1.543 raeburn 8024: var haschanges = 0;
1.538 raeburn 8025: if (dosettings == 1) {
8026: form.allencrypturl.value = '';
8027: form.allhiddenresource.value = '';
1.543 raeburn 8028: form.changeparms.value = 'all';
8029: var patt=new RegExp(",\$");
1.538 raeburn 8030: var allidxlist = document.cumulativesettings.allidx.value;
8031: if ((allidxlist != '') && (allidxlist != null)) {
8032: var allidxs = allidxlist.split(',');
8033: if (allidxs.length > 1) {
8034: for (var i=0; i<allidxs.length; i++) {
8035: if (document.getElementById('hiddenresource_'+allidxs[i])) {
8036: if (document.getElementById('hiddenresource_'+allidxs[i]).checked) {
8037: form.allhiddenresource.value += allidxs[i]+',';
8038: }
8039: }
8040: if (document.getElementById('encrypturl_'+allidxs[i])) {
8041: if (document.getElementById('encrypturl_'+allidxs[i]).checked) {
8042: form.allencrypturl.value += allidxs[i]+',';
8043: }
8044: }
8045: }
1.543 raeburn 8046: form.allhiddenresource.value = form.allhiddenresource.value.replace(patt,"");
8047: form.allencrypturl.value = form.allencrypturl.value.replace(patt,"");
1.537 raeburn 8048: }
1.538 raeburn 8049: }
8050: form.allrandompick.value = '';
8051: form.allrandomorder.value = '';
8052: var allmapidxlist = document.cumulativesettings.allmapidx.value;
8053: if ((allmapidxlist != '') && (allmapidxlist != null)) {
8054: var allmapidxs = allmapidxlist.split(',');
8055: for (var i=0; i<allmapidxs.length; i++) {
8056: var randompick = document.getElementById('randompick_'+allmapidxs[i]);
8057: var rpicknum = document.getElementById('rpicknum_'+allmapidxs[i]);
8058: var randorder = document.getElementById('randomorder_'+allmapidxs[i]);
8059: if ((randompick.checked) && (rpicknum.value != '')) {
8060: form.allrandompick.value += allmapidxs[i]+':'+rpicknum.value+',';
8061: }
8062: if (randorder.checked) {
8063: form.allrandomorder.value += allmapidxs[i]+',';
8064: }
1.537 raeburn 8065: }
1.543 raeburn 8066: form.allrandompick.value = form.allrandompick.value.replace(patt,"");
8067: form.allrandomorder.value = form.allrandomorder.value.replace(patt,"");
8068: }
8069: if (document.cumulativesettings.currhiddenresource.value != form.allhiddenresource.value) {
8070: haschanges = 1;
8071: }
8072: if (document.cumulativesettings.currencrypturl.value != form.allencrypturl.value) {
8073: haschanges = 1;
8074: }
8075: if (document.cumulativesettings.currrandomorder.value != form.allrandomorder.value) {
8076: haschanges = 1;
8077: }
8078: if (document.cumulativesettings.currrandompick.value != form.allrandompick.value) {
8079: haschanges = 1;
1.537 raeburn 8080: }
8081: }
1.543 raeburn 8082: if (doactions == 1) {
1.542 raeburn 8083: if (numchanges > 0) {
1.603 raeburn 8084: if ((cutwarnings > 0) || (remwarnings > 0) || (removalinfo > 0)) {
1.542 raeburn 8085: if (remwarnings > 0) {
1.594 damieng 8086: if (!confirm('$js_lt{"p_rmr1"}\\n\\n$js_lt{"p_rmr3a"} '+remwarnings+' $js_lt{"p_rmr3b"}')) {
1.542 raeburn 8087: return false;
8088: }
8089: }
1.603 raeburn 8090: if (removalinfo > 0) {
8091: if (!confirm('$js_lt{"p_rmr4"}\\n$js_lt{"p_rmr5"}\\n\\n$js_lt{"p_rmr3a"} '+removalinfo+' $js_lt{"p_rmr3b"}')) {
8092: return false;
8093: }
8094: }
1.542 raeburn 8095: if (cutwarnings > 0) {
1.594 damieng 8096: if (!confirm('$js_lt{"p_ctr1a"}\\n$js_lt{"p_ctr1b"}\\n\\n$js_lt{"p_ctr3a"} '+cutwarnings+' $js_lt{"p_ctr3b"}')) {
1.542 raeburn 8097: return false;
8098: }
8099: }
8100: }
8101: form.submit();
8102: return true;
1.543 raeburn 8103: }
8104: }
8105: if (dosettings == 1) {
8106: if (haschanges == 1) {
1.542 raeburn 8107: form.submit();
8108: return true;
8109: }
1.543 raeburn 8110: }
8111: if ((dosettings == 1) && (doactions == 1)) {
1.594 damieng 8112: alert("$js_lt{'noor'}");
1.543 raeburn 8113: } else {
8114: if (dosettings == 1) {
1.594 damieng 8115: alert("$js_lt{'noch'}");
1.543 raeburn 8116: } else {
1.594 damieng 8117: alert("$js_lt{'noac'}");
1.543 raeburn 8118: }
8119: }
1.538 raeburn 8120: return false;
8121: }
8122:
8123: function setClass(value) {
8124: var cutclass = 'LC_docs_cut';
8125: var copyclass = 'LC_docs_copy';
8126: var removeclass = 'LC_docs_remove';
8127: var cutreg = new RegExp("\\\\b"+cutclass+"\\\\b");
8128: var copyreg = new RegExp("\\\\b"+copyclass+"\\\\b");
8129: var removereg = new RegExp("\\\\"+removeclass+"\\\\b");
8130: var links = document.getElementsByTagName('a');
8131: for (var i=0; i<links.length; i++) {
8132: var classes = links[i].className;
8133: if (cutreg.test(classes)) {
8134: links[i].className = cutclass;
8135: if (value == 1) {
8136: links[i].className += " LC_menubuttons_link";
8137: }
8138: } else {
8139: if (copyreg.test(classes)) {
8140: links[i].className = copyclass;
8141: if (value == 1) {
8142: links[i].className += " LC_menubuttons_link";
8143: }
8144: } else {
8145: if (removereg.test(classes)) {
8146: links[i].className = removeclass;
8147: if (value == 1) {
8148: links[i].className += " LC_menubuttons_link";
8149: }
8150: }
8151: }
8152: }
8153: }
8154: return;
1.537 raeburn 8155: }
8156:
1.538 raeburn 8157: function setBoxes(value) {
8158: var remidxlist = document.cumulativeactions.allremoveidx.value;
8159: if ((remidxlist != '') && (remidxlist != null)) {
8160: var remidxs = remidxlist.split(',');
8161: for (var i=0; i<remidxs.length; i++) {
8162: if (document.getElementById('remove_'+remidxs[i])) {
8163: var item = document.getElementById('remove_'+remidxs[i]);
8164: if (value == 1) {
8165: item.className = 'LC_docs_remove';
8166: } else {
8167: item.className = 'LC_hidden';
8168: }
8169: }
8170: }
8171: }
8172: var cutidxlist = document.cumulativeactions.allcutidx.value;
8173: if ((cutidxlist != '') && (cutidxlist != null)) {
8174: var cutidxs = cutidxlist.split(',');
8175: for (var i=0; i<cutidxs.length; i++) {
8176: if (document.getElementById('cut_'+cutidxs[i])) {
8177: var item = document.getElementById('cut_'+cutidxs[i]);
8178: if (value == 1) {
8179: item.className = 'LC_docs_cut';
8180: } else {
8181: item.className = 'LC_hidden';
8182: }
8183: }
1.537 raeburn 8184: }
8185: }
1.538 raeburn 8186: var copyidxlist = document.cumulativeactions.allcopyidx.value;
8187: if ((copyidxlist != '') && (copyidxlist != null)) {
8188: var copyidxs = copyidxlist.split(',');
8189: for (var i=0; i<copyidxs.length; i++) {
8190: if (document.getElementById('copy_'+copyidxs[i])) {
8191: var item = document.getElementById('copy_'+copyidxs[i]);
8192: if (value == 1) {
8193: item.className = 'LC_docs_copy';
8194: } else {
8195: item.className = 'LC_hidden';
8196: }
8197: }
1.537 raeburn 8198: }
8199: }
8200: return;
8201: }
8202:
1.606 raeburn 8203: function validImportCrsRes() {
8204: var path = document.crsresimportform.coursepath.options[document.crsresimportform.coursepath.selectedIndex].value;
8205: var fname = document.crsresimportform.coursefile.options[document.crsresimportform.coursefile.selectedIndex].value;
8206: if ((fname == '') || (fname == null)) {
8207: alert("$js_lt{'nofi'}");
8208: return false;
8209: }
8210: var url = '/res/$coursedom/$coursenum/';
8211: if (path && path != '/') {
8212: url += path+'/';
8213: }
8214: if (fname != '') {
8215: url += fname;
8216: }
8217: var title = document.crsresimportform.crsrestitle.value;
8218: document.crsresimportform.importdetail.value=escape(title)+'='+escape(url);
8219: return true;
8220: }
8221:
8222: function validateNewRes(caller) {
8223: if (caller == 'single') {
8224: var role = document.courseresform.authorrole.options[document.courseresform.authorrole.selectedIndex].value;
8225: var authorpath = document.courseresform.authorpath.options[document.courseresform.authorpath.selectedIndex].value;
8226: var resname = document.courseresform.newresourcename.value;
8227: }
8228: }
8229:
1.611 raeburn 8230: ENDSCRIPT
1.329 droeschl 8231: }
1.457 raeburn 8232:
1.483 raeburn 8233: sub history_tab_js {
8234: return <<"ENDHIST";
8235: function toggleHistoryDisp(choice) {
8236: document.docslogform.docslog.value = choice;
8237: document.docslogform.submit();
8238: return;
8239: }
8240:
8241: ENDHIST
8242: }
8243:
1.484 raeburn 8244: sub inject_data_js {
8245: return <<ENDINJECT;
8246:
8247: function injectData(current, hiddenField, name, value) {
8248: currentElement = document.getElementById(hiddenField);
8249: currentElement.name = name;
8250: currentElement.value = value;
8251: current.submit();
8252: }
8253:
8254: ENDINJECT
8255: }
8256:
8257: sub dump_switchserver_js {
8258: my @hosts = @_;
1.594 damieng 8259: my %js_lt = &Apache::lonlocal::texthash(
1.574 raeburn 8260: dump => 'Copying content to Authoring Space requires switching server.',
1.484 raeburn 8261: swit => 'Switch server?',
1.594 damieng 8262: );
8263: my %html_js_lt = &Apache::lonlocal::texthash(
8264: swit => 'Switch server?',
1.568 raeburn 8265: duco => 'Copying Content to Authoring Space',
1.484 raeburn 8266: yone => 'You need to switch to a server housing an Authoring Space for which you are author or co-author.',
8267: chos => 'Choose server',
8268: );
1.594 damieng 8269: &js_escape(\%js_lt);
8270: &html_escape(\%html_js_lt);
8271: &js_escape(\%html_js_lt);
1.484 raeburn 8272: my $role = $env{'request.role'};
8273: my $js = <<"ENDSWJS";
8274: <script type="text/javascript">
8275: function write_switchserver() {
8276: var server;
8277: if (document.setserver.posshosts.length > 0) {
8278: for (var i=0; i<document.setserver.posshosts.length; i++) {
8279: if (document.setserver.posshosts[i].checked) {
8280: server = document.setserver.posshosts[i].value;
8281: }
8282: }
8283: opener.document.location.href="/adm/switchserver?otherserver="+server+"&role=$role&origurl=/adm/coursedocs";
8284: }
8285: window.close();
8286: }
8287: </script>
8288:
8289: ENDSWJS
8290:
8291: my $startpage = &Apache::loncommon::start_page('Choose server',$js,
8292: {'only_body' => 1,
8293: 'js_ready' => 1,});
8294: my $endpage = &Apache::loncommon::end_page({'js_ready' => 1});
8295:
8296: my $hostpicker;
8297: my $count = 0;
8298: foreach my $host (sort(@hosts)) {
8299: my $checked;
8300: if ($count == 0) {
8301: $checked = ' checked="checked"';
8302: }
8303: $hostpicker .= '<label><input type="radio" name="posshosts" value="'.
8304: $host.'"'.$checked.' />'.$host.'</label> ';
8305: $count++;
8306: }
8307:
8308: return <<"ENDSWITCHJS";
8309:
8310: function dump_needs_switchserver(url) {
8311: if (url!='' && url!= null) {
1.594 damieng 8312: if (confirm("$js_lt{'dump'}\\n$js_lt{'swit'}")) {
1.484 raeburn 8313: go(url);
8314: }
8315: }
8316: return;
8317: }
8318:
8319: function choose_switchserver_window() {
8320: newWindow = window.open('','ChooseServer','height=400,width=500,scrollbars=yes')
8321: newWindow.document.open();
8322: newWindow.document.writeln('$startpage');
1.594 damieng 8323: newWindow.document.write('<h3>$html_js_lt{'duco'}<\\/h3>\\n'+
8324: '<p>$html_js_lt{'yone'}<\\/p>\\n'+
8325: '<div class="LC_left_float"><fieldset><legend>$html_js_lt{'chos'}<\\/legend>\\n'+
1.484 raeburn 8326: '<form name="setserver" method="post" action="" \\/>\\n'+
8327: '$hostpicker\\n'+
8328: '<br \\/><br \\/>\\n'+
1.594 damieng 8329: '<input type="button" name="makeswitch" value="$html_js_lt{'swit'}" '+
1.484 raeburn 8330: 'onclick="write_switchserver();" \\/>\\n'+
8331: '<\\/form><\\/fieldset><\\/div><br clear="all" \\/>\\n');
8332: newWindow.document.writeln('$endpage');
8333: newWindow.document.close();
8334: newWindow.focus();
8335: }
8336:
8337: ENDSWITCHJS
8338: }
8339:
8340: sub makedocslogform {
8341: my ($formelems,$docslog) = @_;
8342: return <<"LOGSFORM";
8343: <form action="/adm/coursedocs" method="post" name="docslogform">
8344: <input type="hidden" name="docslog" value="$docslog" />
8345: $formelems
8346: </form>
8347: LOGSFORM
8348: }
8349:
8350: sub makesimpleeditform {
8351: my ($formelems) = @_;
8352: return <<"SIMPFORM";
8353: <form name="simpleedit" method="post" action="/adm/coursedocs">
8354: <input type="hidden" name="importdetail" value="" />
8355: $formelems
8356: </form>
8357: SIMPFORM
8358: }
8359:
1.606 raeburn 8360: sub makenewproblem {
8361: my ($r,$coursedom,$coursenum) = @_;
8362: # Creating a new problem
8363: my ($redirect,$error);
8364: if ($env{'form.authorrole'}) {
8365: my ($newsubdir,$filename);
8366: if ($env{'form.newsubdir'}) {
8367: if ($env{'form.newsubdirname'} ne '') {
8368: $newsubdir = $env{'form.newsubdirname'};
8369: }
8370: }
8371: if ($env{'form.newresourcename'}) {
8372: $filename = $env{'form.newresourcename'};
8373: $filename =~ s/\.(\d+)(\.\w+)$/$2/;
8374: $filename =~ s/`//g;
8375: $filename =~ s{/\.\./}{_}g;
8376: $filename =~ s/\.+/./g;
8377: $filename =~ s{/+}{_}g;
8378: if ($filename ne '') {
8379: my ($name,$ext) = ($filename =~ /(.+)\.([^.]+)$/);
8380: if (($ext) && ($ext ne '.problem')) {
8381: $filename = $name.'.problem';
8382: } elsif ($ext eq '') {
8383: $filename .= '.problem';
8384: }
8385: my $docroot = $r->dir_config('lonDocRoot');
8386: my @ids=&Apache::lonnet::current_machine_ids();
8387: if ($env{'form.authorrole'} eq 'author') {
8388: if ($env{'user.author'}) {
8389: if ($env{'user.home'} && grep(/^\Q$env{'user.home'}\E$/,@ids)) {
8390: my $url = "/priv/$env{'user.domain'}/$env{'user.name'}";
8391: my $path = $docroot.$url;
8392: my $subdir = $env{'form.authorpath'};
8393: $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
8394: }
8395: }
8396: } elsif ($env{'form.authorrole'} eq 'course') {
8397: my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
8398: if ($chome && grep(/^\Q$chome\E$/,@ids)) {
8399: my $url = "/priv/$coursedom/$coursenum";
8400: my $path=$docroot.$url;
8401: my $subdir = $env{'form.authorpath'};
8402: $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
8403: if ($redirect) {
8404: my $rightsfile = 'default.rights';
8405: my $sourcerights = "$path/$rightsfile";
8406: my $targetrights = $docroot."/res/$coursedom/$coursenum/$rightsfile";
8407: my $now = time;
8408: if (!-e $sourcerights) {
8409: my $cid = $coursedom.'_'.$coursenum;
8410: if (open(my $fh,">$sourcerights")) {
8411: print $fh <<END;
8412: <accessrule effect="deny" realm="" type="course" role="" />
8413: <accessrule effect="allow" realm="$cid" type="course" role="" />
8414: END
8415: close($fh);
8416: }
8417: }
8418: if (!-e "$sourcerights.meta") {
8419: if (open(my $fh,">$sourcerights.meta")) {
8420: my $author=$env{'environment.firstname'}.' '.
8421: $env{'environment.middlename'}.' '.
8422: $env{'environment.lastname'}.' '.
8423: $env{'environment.generation'};
8424: $author =~ s/\s+$//;
8425: print $fh <<"END";
8426:
8427: <abstract></abstract>
8428: <author>$author</author>
8429: <authorspace>$coursenum:$coursedom</authorspace>
8430: <copyright>private</copyright>
8431: <creationdate>$now</creationdate>
8432: <customdistributionfile></customdistributionfile>
8433: <dependencies></dependencies>
8434: <domain>$coursedom</domain>
8435: <highestgradelevel>0</highestgradelevel>
8436: <keywords></keywords>
8437: <language>notset </language>
8438: <lastrevisiondate>$now</lastrevisiondate>
8439: <lowestgradelevel>0</lowestgradelevel>
8440: <mime>rights</mime>
8441: <modifyinguser>$env{'user.name'}:$env{'user.domain'}</modifyinguser>
8442: <notes></notes>
8443: <obsolete></obsolete>
8444: <obsoletereplacement></obsoletereplacement>
8445: <owner>$coursenum:$coursedom</owner>
8446: <rule>deny:::course,allow:$cid::course</rule>
8447: <sourceavail></sourceavail>
8448: <standards></standards>
8449: <subject></subject>
8450: <title></title>
8451: END
8452: close($fh);
8453: }
8454: if ((-e $sourcerights) && (-e "$sourcerights.meta")) {
8455: if (!-e "$docroot/res/$coursedom") {
8456: mkdir("$docroot/res/$coursedom",0755);
8457: }
8458: if (!-e "$docroot/res/$coursedom/$coursenum") {
8459: mkdir("$docroot/res/$coursedom/$coursenum",0755);
8460: }
8461: if ((-e "$docroot/res/$coursedom/$coursenum") && (!-e $targetrights)) {
8462: my $nokeyref = &Apache::lonpublisher::getnokey($r->dir_config('lonIncludes'));
8463: my $output = &Apache::lonpublisher::batchpublish($r,$sourcerights,$targetrights,$nokeyref,1);
8464: }
8465: }
8466: }
8467: if ($env{'form.newresourceadd'}) {
8468: my $template = $env{'form.template'};
8469: my $source = $docroot.$redirect;
8470: my $target = $redirect;
8471: $target =~ s{^/priv/}{/res/};
8472: $target = $docroot.$target;
8473: if (!-e $source) {
8474: my $copyfrom;
8475: if ($template) {
8476: my %templates;
8477: my @files = &Apache::lonhomework::get_template_list('problem');
8478: foreach my $poss (@files) {
8479: if (ref($poss) eq 'ARRAY') {
8480: if ($template eq $poss->[0]) {
8481: $templates{$template} = 1;
8482: last;
8483: }
8484: }
8485: }
8486: if ($templates{$template}) {
8487: $copyfrom = $template;
8488: }
8489: }
8490: unless ($copyfrom) {
8491: $copyfrom = $r->dir_config('lonIncludes').'/templates/blank.problem';
8492: }
8493: &File::Copy::copy($copyfrom,$source);
8494: }
8495: if (!-e "$source.meta") {
8496: my $cid = $coursedom.'_'.$coursenum;
8497: my $now = time;
8498: if (open(my $fh,">$source.meta")) {
8499: my $author=$env{'environment.firstname'}.' '.
8500: $env{'environment.middlename'}.' '.
8501: $env{'environment.lastname'}.' '.
8502: $env{'environment.generation'};
8503: $author =~ s/\s+$//;
8504: my $title = $env{'form.newresourcetitle'};
8505: $title =~ s/^\s+|\s+$//g;
8506: print $fh <<END;
8507:
8508: <abstract></abstract>
8509: <author>$author</author>
8510: <authorspace>$coursenum:$coursedom</authorspace>
8511: <copyright>custom</copyright>
8512: <creationdate>$now</creationdate>
8513: <customdistributionfile>/res/$coursedom/$coursenum/default.rights</customdistributionfile>
8514: <dependencies></dependencies>
8515: <domain>$coursedom</domain>
8516: <highestgradelevel>0</highestgradelevel>
8517: <keywords></keywords>
8518: <language>notset </language>
8519: <lastrevisiondate>$now</lastrevisiondate>
8520: <lowestgradelevel>0</lowestgradelevel>
8521: <mime>problem</mime>
8522: <modifyinguser>$coursenum:$coursedom</modifyinguser>
8523: <notes></notes>
8524: <obsolete></obsolete>
8525: <obsoletereplacement></obsoletereplacement>
8526: <owner>$coursenum:$coursedom</owner>
8527: <sourceavail></sourceavail>
8528: <standards></standards>
8529: <subject></subject>
8530: <title>$title</title>
8531: END
8532: close($fh);
8533: }
8534: }
8535: }
8536: }
8537: }
8538: } else {
8539: my ($auname,$audom,$role) = split('___',$env{'form.authorrole'});
8540: my $rolehome = &Apache::lonnet::homeserver($auname,$audom);
8541: if (grep(/^\Q$rolehome\E$/,@ids)) {
8542: my $now = time;
8543: if (exists($env{'user.role.'.$role.'./'.$audom.'/'.$auname})) {
8544: my ($start,$end) = split(/\./,$env{'user.role.'.$role.'./'.$audom.'/'.$auname});
8545: if (($start <= $now) && (($end == 0) || ($end >= $now))) {
8546: my $url = "/priv/$audom/$auname";
8547: my $path = $r->dir_config('lonDocRoot').$url;
8548: my $subdir = $env{'form.authorpath'};
8549: $redirect = &finishnewprob($url,$path,$subdir,$newsubdir,$filename);
8550: }
8551: }
8552: }
8553: }
8554: }
8555: }
8556: }
8557: return ($redirect,$error);
8558: }
8559:
8560: sub finishnewprob {
8561: my ($url,$path,$subdir,$newsubdir,$filename) = @_;
1.607 raeburn 8562: unless (-d $path) {
8563: unless (mkdir($path,02770)) {
8564: return;
8565: }
8566: }
1.606 raeburn 8567: my $redirect;
8568: if ($subdir ne '/') {
8569: $subdir = &cleandir($subdir);
8570: if (($subdir ne '') && (-d "$path/$subdir")) {
8571: $path .= "/$subdir";
8572: $url .= "/$subdir";
8573: }
8574: }
8575: my $dest;
8576: if ($newsubdir ne '') {
8577: $newsubdir = &cleandir($newsubdir);
8578: }
8579: if ($newsubdir ne '') {
8580: if (-d "$path/$newsubdir") {
8581: $dest = "$path/$newsubdir/$filename";
8582: } else {
8583: my $dirok;
8584: unless (-e "$path/$newsubdir") {
8585: if (mkdir("$path/$newsubdir",02770)) {
8586: if (chmod(02770,"$path/$newsubdir")) {
8587: $dirok = 1;
8588: }
8589: }
8590: }
8591: if ($dirok) {
8592: $dest = "$path/$newsubdir/$filename";
8593: }
8594: }
8595: if (($dest ne '') && (!-e $dest)) {
8596: $redirect = "$url/$newsubdir/$filename";
8597: }
8598: } else {
8599: $dest = "$path/$filename";
8600: if (($dest ne '') && (!-e $dest)) {
8601: $redirect = "$url/$filename";
8602: }
8603: }
8604: return $redirect;
8605: }
8606:
8607: sub cleandir {
8608: my ($dir) = @_;
8609: $dir =~ s/^\s+//;
8610: $dir =~ s/\s+$//;
8611: $dir =~ s/\.+//g;
8612: $dir =~ s/[\#\?&%\":]//g;
8613: return $dir;
8614: }
8615:
1.329 droeschl 8616: 1;
8617: __END__
8618:
8619:
8620: =head1 NAME
8621:
8622: Apache::londocs.pm
8623:
8624: =head1 SYNOPSIS
8625:
8626: This is part of the LearningOnline Network with CAPA project
8627: described at http://www.lon-capa.org.
8628:
8629: =head1 SUBROUTINES
8630:
8631: =over
8632:
8633: =item %help=()
8634:
8635: Available help topics
8636:
8637: =item mapread()
8638:
1.344 bisitz 8639: Mapread read maps into LONCAPA::map:: global arrays
1.329 droeschl 8640: @order and @resources, determines status
8641: sets @order - pointer to resources in right order
8642: sets @resources - array with the resources with correct idx
8643:
8644: =item authorhosts()
8645:
8646: Return hash with valid author names
8647:
8648: =item clean()
8649:
8650: =item dumpcourse()
8651:
8652: Actually dump course
8653:
8654: =item group_import()
8655:
8656: Imports the given (name, url) resources into the course
8657: coursenum, coursedom, and folder must precede the list
8658:
8659: =item breadcrumbs()
8660:
8661: =item log_docs()
8662:
8663: =item docs_change_log()
8664:
8665: =item update_paste_buffer()
8666:
8667: =item print_paste_buffer()
8668:
8669: =item do_paste_from_buffer()
8670:
1.538 raeburn 8671: =item do_buffer_empty()
8672:
8673: =item clear_from_buffer()
8674:
1.492 raeburn 8675: =item get_newmap_url()
8676:
8677: =item dbcopy()
8678:
8679: =item uniqueness_check()
8680:
8681: =item contained_map_check()
8682:
8683: =item url_paste_fixups()
8684:
8685: =item apply_fixups()
8686:
8687: =item copy_dependencies()
8688:
1.329 droeschl 8689: =item update_parameter()
8690:
8691: =item handle_edit_cmd()
8692:
8693: =item editor()
8694:
8695: =item process_file_upload()
8696:
8697: =item process_secondary_uploads()
8698:
8699: =item is_supplemental_title()
8700:
8701: =item entryline()
8702:
8703: =item tiehash()
8704:
8705: =item untiehash()
8706:
8707: =item checkonthis()
8708:
8709: check on this
8710:
8711: =item verifycontent()
8712:
8713: Verify Content
8714:
8715: =item devalidateversioncache() & checkversions()
8716:
8717: Check Versions
8718:
8719: =item mark_hash_old()
8720:
8721: =item is_hash_old()
8722:
8723: =item changewarning()
8724:
8725: =item init_breadcrumbs()
8726:
8727: Breadcrumbs for special functions
8728:
1.484 raeburn 8729: =item create_list_elements()
8730:
8731: =item create_form_ul()
8732:
8733: =item startContentScreen()
8734:
8735: =item endContentScreen()
8736:
8737: =item supplemental_base()
8738:
8739: =item embedded_form_elems()
8740:
8741: =item embedded_destination()
8742:
8743: =item return_to_editor()
8744:
8745: =item decompression_info()
8746:
8747: =item decompression_phase_one()
8748:
8749: =item decompression_phase_two()
8750:
8751: =item remove_archive()
8752:
8753: =item generate_admin_menu()
8754:
8755: =item generate_edit_table()
8756:
8757: =item editing_js()
8758:
8759: =item history_tab_js()
8760:
8761: =item inject_data_js()
8762:
8763: =item dump_switchserver_js()
8764:
1.485 raeburn 8765: =item resize_scrollbox_js()
1.484 raeburn 8766:
8767: =item makedocslogform()
8768:
1.485 raeburn 8769: =item makesimpleeditform()
8770:
1.329 droeschl 8771: =back
8772:
8773: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>