File:  [LON-CAPA] / loncom / interface / londocs.pm
Revision 1.164: download - view: text, annotated - select for diffs
Sat Jan 8 06:42:15 2005 UTC (19 years, 4 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- was more robust than I orginally noticed, BUG#3807

    1: # The LearningOnline Network
    2: # Documents
    3: #
    4: # $Id: londocs.pm,v 1.164 2005/01/08 06:42:15 albertel Exp $
    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;
   36: use Apache::lonratedt;
   37: use Apache::lonratsrv;
   38: use Apache::lonxml;
   39: use Apache::loncreatecourse;
   40: use Apache::lonnavmaps;
   41: use HTML::Entities;
   42: use GDBM_File;
   43: use Apache::lonlocal;
   44: use Cwd;
   45: 
   46: my $iconpath;
   47: 
   48: my %hash;
   49: 
   50: my $hashtied;
   51: my %alreadyseen=();
   52: 
   53: my $hadchanges;
   54: 
   55: # Available help topics
   56: 
   57: my %help=();
   58: 
   59: # Mapread read maps into lonratedt::global arrays 
   60: # @order and @resources, determines status
   61: # sets @order - pointer to resources in right order
   62: # sets @resources - array with the resources with correct idx
   63: #
   64: 
   65: sub mapread {
   66:     my ($coursenum,$coursedom,$map)=@_;
   67:     return
   68:       &Apache::lonratedt::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
   69:                                 $map);
   70: }
   71: 
   72: sub storemap {
   73:     my ($coursenum,$coursedom,$map)=@_;
   74:     my ($outtext,$errtext)=
   75:       &Apache::lonratedt::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
   76:                                 $map,1);
   77:     if ($errtext) { return ($errtext,2); }
   78:     
   79:     $hadchanges=1;
   80:     return ($errtext,0);
   81: }
   82: 
   83: # ----------------------------------------- Return hash with valid author names
   84: 
   85: sub authorhosts {
   86:     my %outhash=();
   87:     my $home=0;
   88:     my $other=0;
   89:     foreach (keys %ENV) {
   90: 	if ($_=~/^user\.role\.(au|ca)\.(.+)$/) {
   91: 	    my $role=$1;
   92: 	    my $realm=$2;
   93: 	    my ($start,$end)=split(/\./,$ENV{$_});
   94: 	    if (($start) && ($start>time)) { next; }
   95: 	    if (($end) && (time>$end)) { next; }
   96: 	    my $ca; my $cd;
   97: 	    if ($1 eq 'au') {
   98: 		$ca=$ENV{'user.name'};
   99: 		$cd=$ENV{'user.domain'};
  100: 	    } else {
  101: 		($cd,$ca)=($realm=~/^\/(\w+)\/(\w+)$/);
  102: 	    }
  103: 	    my $allowed=0;
  104: 	    my $myhome=&Apache::lonnet::homeserver($ca,$cd);
  105: 	    my @ids=&Apache::lonnet::current_machine_ids();
  106: 	    foreach my $id (@ids) { if ($id eq $myhome) { $allowed=1; } }
  107: 	    if ($allowed) {
  108: 		$home++;
  109: 		$outhash{'home_'.$ca.'@'.$cd}=1;
  110: 	    } else {
  111: 		$outhash{'otherhome_'.$ca.'@'.$cd}=$myhome;
  112: 		$other++;
  113: 	    }
  114: 	}
  115:     }
  116:     return ($home,$other,%outhash);
  117: }
  118: # ------------------------------------------------------ Generate "dump" button
  119: 
  120: sub dumpbutton {
  121:     my ($home,$other,%outhash)=&authorhosts();
  122:     if ($home+$other==0) { return ''; }
  123:     my $output='</td><td bgcolor="#DDDDCC">';
  124:     if ($home) {
  125: 	return '</td><td bgcolor="#DDDDCC">'.
  126: 	    '<input type="submit" name="dumpcourse" value="'.
  127: 	    &mt('Dump Course DOCS to Construction Space').'" />'.
  128: 	    &Apache::loncommon::help_open_topic('Docs_Dump_Course_Docs');
  129:     } else {
  130: 	return'</td><td bgcolor="#DDDDCC">'.
  131:      &mt('Dump Course DOCS to Construction Space: available on other servers');
  132:     }
  133: }
  134: 
  135: sub clean {
  136:     my ($title)=@_;
  137:     $title=~s/[^\w\/\!\$\%\^\*\-\_\=\+\;\:\,\\\|\`\~]+/\_/gs;
  138:     return $title;	
  139: }
  140: # -------------------------------------------------------- Actually dump course
  141: 
  142: sub dumpcourse {
  143:     my $r=shift;
  144:     $r->print('<html><head><title>Dump DOCS</title></head>'.
  145:         &Apache::loncommon::bodytag('Dump Course DOCS to Construction Space').
  146: 	      '<form name="dumpdoc" method="post">');
  147:     my ($home,$other,%outhash)=&authorhosts();
  148:     unless ($home) { return ''; }
  149:     my $origcrsid=$ENV{'request.course.id'};
  150:     my %origcrsdata=&Apache::lonnet::coursedescription($origcrsid);
  151:     if (($ENV{'form.authorspace'}) && ($ENV{'form.authorfolder'}=~/\w/)) {
  152: # Do the dumping
  153: 	unless ($outhash{'home_'.$ENV{'form.authorspace'}}) { return ''; }
  154: 	my ($ca,$cd)=split(/\@/,$ENV{'form.authorspace'});
  155: 	$r->print('<h3>'.&mt('Copying Files').'</h3>');
  156: 	my $title=$ENV{'form.authorfolder'};
  157: 	$title=&clean($title);
  158: 	my %replacehash=();
  159: 	foreach (keys %ENV) {
  160: 	    if ($_=~/^form\.namefor\_(.+)/) {
  161: 		$replacehash{$1}=$ENV{$_};
  162: 	    }
  163: 	}
  164: 	my $crs='/uploaded/'.$ENV{'request.course.id'}.'/';
  165: 	$crs=~s/\_/\//g;
  166: 	foreach (keys %replacehash) {
  167: 	    my $newfilename=$title.'/'.$replacehash{$_};
  168: 	    $newfilename=&clean($newfilename);
  169: 	    my @dirs=split(/\//,$newfilename);
  170: 	    my $path='/home/'.$ca.'/public_html';
  171: 	    my $makepath=$path;
  172: 	    my $fail=0;
  173: 	    for (my $i=0;$i<$#dirs;$i++) {
  174: 		$makepath.='/'.$dirs[$i];
  175: 		unless (-e $makepath) { 
  176: 		    unless(mkdir($makepath,0777)) { $fail=1; } 
  177: 		}
  178: 	    }
  179: 	    $r->print('<br /><tt>'.$_.'</tt> => <tt>'.$newfilename.'</tt>: ');
  180: 	    if (my $fh=Apache::File->new('>'.$path.'/'.$newfilename)) {
  181: 		if ($_=~/\.(sequence|page|html|htm|xml|xhtml)$/) {
  182: 		    print $fh &Apache::loncreatecourse::rewritefile(
  183:          &Apache::loncreatecourse::readfile($ENV{'request.course.id'},$_),
  184: 				     (%replacehash,$crs => '')
  185: 								    );
  186: 		} else {
  187: 		    print $fh
  188:          &Apache::loncreatecourse::readfile($ENV{'request.course.id'},$_);
  189: 		       }
  190: 		$fh->close();
  191: 	    } else {
  192: 		$fail=1;
  193: 	    }
  194: 	    if ($fail) {
  195: 		$r->print('<font color="red">fail</font>');
  196: 	    } else {
  197: 		$r->print('<font color="green">ok</font>');
  198: 	    }
  199: 	}
  200:     } else {
  201: # Input form
  202: 	unless ($home==1) {
  203: 	    $r->print(
  204: 		      '<h3>'.&mt('Select the Construction Space').'</h3><select name="authorspace">');
  205: 	}
  206: 	foreach (sort keys %outhash) {
  207: 	    if ($_=~/^home_(.+)$/) {
  208: 		if ($home==1) {
  209: 		    $r->print(
  210: 		  '<input type="hidden" name="authorspace" value="'.$1.'" />');
  211: 		} else {
  212: 		    $r->print('<option value="'.$1.'">'.$1.' - '.
  213: 			      &Apache::loncommon::plainname(split(/\@/,$1)).'</option>');
  214: 		}
  215: 	    }
  216: 	}
  217: 	unless ($home==1) {
  218: 	    $r->print('</select>');
  219: 	}
  220: 	my $title=$origcrsdata{'description'};
  221: 	$title=~s/\s+/\_/gs;
  222: 	$title=&clean($title);
  223: 	$r->print('<h3>'.&mt('Folder in Construction Space').'</h3><input type="text" size="50" name="authorfolder" value="'.$title.'" /><br />');
  224: 	&tiehash();
  225: 	$r->print('<h3>'.&mt('Filenames in Construction Space').'</h3><table border="2"><tr><th>'.&mt('Internal Filename').'</th><th>'.&mt('Title').'</th><th>'.&mt('Save as ...').'</th></tr>');
  226: 	foreach (&Apache::loncreatecourse::crsdirlist($origcrsid,'userfiles')) {
  227: 	    $r->print('<tr><td>'.$_.'</td>');
  228: 	    my ($ext)=($_=~/\.(\w+)$/);
  229: 	    my $title=$hash{'title_'.$hash{
  230: 		'ids_/uploaded/'.$origcrsdata{'domain'}.'/'.$origcrsdata{'num'}.'/'.$_}};
  231: 	    $title=~s/&colon;/:/g;
  232: 	    $r->print('<td>'.($title?$title:'&nbsp;').'</td>');
  233: 	    unless ($title) {
  234: 		$title=$_;
  235: 	    }
  236: 	    $title=~s/\.(\w+)$//;
  237: 	    $title=&clean($title);
  238: 	    $title.='.'.$ext;
  239: 	    $r->print("\n<td><input type='text' size='60' name='namefor_".$_."' value='".$title."' /></td></tr>\n");
  240: 	}
  241: 	$r->print("</table>\n");
  242: 	&untiehash();
  243: 	$r->print(
  244:   '<p><input type="submit" name="dumpcourse" value="'.&mt('Dump Course DOCS').'" /></p></form>');
  245:     }
  246: }
  247: 
  248: # ------------------------------------------------------ Generate "export" button
  249: 
  250: sub exportbutton {
  251:     return '';
  252:     return '</td><td bgcolor="#DDDDCC">'.
  253:             '<input type="submit" name="exportcourse" value="'.
  254:             &mt('Export Course to IMS').'" />'.
  255:             &Apache::loncommon::help_open_topic('Docs_Export_Course_Docs');
  256: }
  257: 
  258: sub exportcourse {
  259:     my $r=shift;
  260:     my %discussiontime = &Apache::lonnet::dump('discussiontimes',
  261:                                                $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
  262:     my $numdisc = keys %discussiontime;
  263:     my $navmap = Apache::lonnavmaps::navmap->new();
  264:     my $it=$navmap->getIterator(undef,undef,undef,1,undef,undef);
  265:     my $curRes;
  266:     my $outcome;
  267: 
  268:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  269:                                             ['finishexport']);
  270:     if ($ENV{'form.finishexport'}) {
  271:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  272:                                             ['archive','discussion']);
  273: 
  274:         my @exportitems = ();
  275:         if (defined($ENV{'form.archive'})) {
  276:             if (ref($ENV{'form.archive'}) eq 'ARRAY') {
  277:                 @exportitems = @{$ENV{'form.archive'}};
  278:             } else {
  279:                 $exportitems[0] = $ENV{'form.archive'};
  280:             }
  281:         }
  282:         my @discussions = ();
  283:         if (defined($ENV{'form.discussion'})) {
  284:             if (ref($ENV{'form.discussion'}) eq 'ARRAY') {
  285:                 @discussions = $ENV{'form.discussion'};
  286:             } else {
  287:                 $discussions[0] = $ENV{'form.discussion'};
  288:             }
  289:         }
  290:         if (@exportitems == 0 && @discussions == 0) {
  291:             $outcome = '<br />As you did not select any content items or discussions for export, an IMS package has not been created.  Please <a href="javascript:history.go(-1)">go back</a> to select either content items or discussions for export';
  292:         } else {
  293:             my $now = time;
  294:             my %symbs;
  295:             my $manifestok = 0;
  296:             my $imsresources;
  297:             my $tempexport;
  298:             my $copyresult;
  299:             my $ims_manifest = &create_ims_store($now,\$manifestok,\$outcome,\$tempexport);
  300:             if ($manifestok) {
  301:                 &build_package($now,$navmap,\@exportitems,\@discussions,\$outcome,$tempexport,\$copyresult,$ims_manifest);
  302:                 close($ims_manifest);
  303: 
  304: #Create zip file in prtspool
  305:                 my $imszipfile = '/prtspool/'.
  306:                 $ENV{'user.name'}.'_'.$ENV{'user.domain'}.'_'.
  307:                    time.'_'.rand(1000000000).'.zip';
  308: # zip can cause an sh launch which can pass along all of %ENV
  309: # which can be too large for /bin/sh to handle
  310:                 my %oldENV=%ENV;
  311:                 undef(%ENV);
  312:                 my $cwd = &Cwd::getcwd();
  313:                 my $imszip = '/home/httpd/'.$imszipfile;
  314:                 chdir $tempexport;
  315:                 open(OUTPUT, "zip -r $imszip *  2> /dev/null |");
  316:                 close(OUTPUT);
  317:                 chdir $cwd;
  318:                 %ENV=%oldENV;
  319:                 undef(%oldENV);
  320:                 $outcome .= 'Download the zip file from <a href="'.$imszipfile.'">IMS course archive</a><br />';
  321:                 if ($copyresult) {
  322:                     $outcome .= 'The following errors occurred during export - '.$copyresult;
  323:                 }
  324:             } else {
  325:                 $outcome = '<br />Unfortunately you will not be able to retrieve an IMS archive of this posts at this time, because there was a problem creating a manifest file.<br />';
  326:             }
  327:         }
  328: 
  329:         $r->print('<html><head><title>Export Course</title></head>'.
  330:             &Apache::loncommon::bodytag('Export course to IMS content package'));
  331:         $r->print($outcome);
  332:         $r->print('</body></html>');
  333:     } else {
  334:         my $display;
  335:         $display = '<form name="exportdoc" method="post">'."\n";
  336:         $display .= 'Choose which items you wish to export from your course.<br /><br />';
  337:         $display .= '<table border="0" cellspacing="0" cellpadding="3">'.
  338:                     '<tr><td><fieldset><legend>&nbsp;<b>Content items</b></legend>'.
  339:                     '<input type="button" value="check all" '.
  340:                     'onclick="javascript:checkAll(document.exportdoc.archive)" />'.
  341:                     '&nbsp;&nbsp;<input type="button" value="uncheck all"'.
  342:                     ' onclick="javascript:uncheckAll(document.exportdoc.archive)" /></fieldset></td>'.
  343:                     '<td>&nbsp;</td><td>&nbsp;</td>'.
  344:                     '<td align="right"><fieldset><legend>&nbsp;<b>Discussion posts'.
  345:                     '</b></legend><input type="button" value="check all"'.
  346:                     ' onclick="javascript:checkAll(document.exportdoc.discussion)" />'.
  347:                     '&nbsp;&nbsp;<input type="button" value="uncheck all"'.
  348:                     ' onclick="javascript:uncheckAll(document.exportdoc.discussion)" /></fieldset></td>'.
  349:                     '</tr></table>';
  350:         my $curRes;
  351:         my $depth = 0;
  352:         my $count = 0;
  353:         my $boards = 0;
  354:         my $startcount = 5;
  355:         my %parent = ();
  356:         my %children = ();
  357:         my $lastcontainer = $startcount;
  358:         my @bgcolors = ('#F6F6F6','#FFFFFF');
  359:         $display .= '<table cellspacing="0"><tr>'.
  360:             '<td><b>Export content item?<br /></b></td><td>&nbsp;</td><td align="right">'."\n";
  361:         if ($numdisc > 0) {
  362:             $display.='<b>Export&nbsp;discussion posts?</b>'."\n";
  363:         }
  364:         $display.='&nbsp;</td></tr>';
  365:         while ($curRes = $it->next()) {
  366:             if (ref($curRes)) {
  367:                 $count ++;
  368:             }
  369:             if ($curRes == $it->BEGIN_MAP()) {
  370:                 $depth++;
  371:                 $parent{$depth} = $lastcontainer;
  372:             }
  373:             if ($curRes == $it->END_MAP()) {
  374:                 $depth--;
  375:                 $lastcontainer = $parent{$depth};
  376:             }
  377:             if (ref($curRes)) {
  378:                 my $symb = $curRes->symb();
  379:                 my $ressymb = $symb;
  380:                 if ($ressymb =~ m|adm/(\w+)/(\w+)/(\d+)/bulletinboard$|) {
  381:                     unless ($ressymb =~ m|adm/wrapper/adm|) {
  382:                         $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';
  383:                     }
  384:                 }
  385:                 my $color = $count%2;
  386:                 $display .='<tr bgcolor='.$bgcolors[$color].'><td>'."\n".
  387:                     '<input type="checkbox" name="archive" value="'.$count.'" ';
  388:                 if (($curRes->is_sequence()) || ($curRes->is_page())) {
  389:                     my $checkitem = $count + $boards + $startcount;
  390:                     $display .= 'onClick="javascript:propagateCheck('."'$checkitem'".')"';
  391:                 }
  392:                 $display .= ' />'."\n";
  393:                 for (my $i=0; $i<$depth; $i++) {
  394:                     $display .= '<img src="/adm/lonIcons/whitespace1.gif" width="25" height="1" alt="" border="0" /><img src="/adm/lonIcons/whitespace1.gif" width="25" height="1" alt="" border="0" />'."\n";
  395:                 }
  396:                 if ($curRes->is_sequence()) {
  397:                     $display .= '<img src="/adm/lonIcons/navmap.folder.open.gif">&nbsp;'."\n";
  398:                     $lastcontainer = $count + $startcount + $boards;
  399:                 } elsif ($curRes->is_page()) {
  400:                     $display .= '<img src="/adm/lonIcons/navmap.page.open.gif">&nbsp;'."\n";
  401:                     $lastcontainer = $count + $startcount + $boards;
  402:                 }
  403:                 my $currelem = $count+$boards+$startcount;
  404:                 $children{$parent{$depth}} .= $currelem.':';
  405:                 $display .= '&nbsp;'.$curRes->title().'</td>';
  406:                 if ($discussiontime{$ressymb} > 0) {
  407:                     $boards ++;
  408:                     $currelem = $count+$boards+$startcount;
  409:                     $display .= '<td>&nbsp;</td><td align="right"><input type="checkbox" name="discussion" value="'.$count.'" />&nbsp;</td>'."\n";
  410:                 } else {
  411:                     $display .= '<td colspan="2">&nbsp;</td>'."\n";
  412:                 }
  413:             }
  414:         }
  415:         my $scripttag = qq|
  416: <script>
  417: 
  418: function checkAll(field) {
  419:     if (field.length > 0) {
  420:         for (i = 0; i < field.length; i++) {
  421:             field[i].checked = true ;
  422:         }
  423:     } else {
  424:         field.checked = true
  425:     }
  426: }
  427:                                                                                 
  428: function uncheckAll(field) {
  429:     if (field.length > 0) {
  430:         for (i = 0; i < field.length; i++) {
  431:             field[i].checked = false ;
  432:         }
  433:     } else {
  434:         field.checked = false ;
  435:     }
  436: }
  437: 
  438: function propagateCheck(item) {
  439:     if (document.exportdoc.elements[item].checked == true) {
  440:         containerCheck(item)
  441:     }
  442: } 
  443: 
  444: function containerCheck(item) {
  445:     document.exportdoc.elements[item].checked = true
  446:     var numitems = $count + $boards + $startcount
  447:     var parents = new Array(numitems)
  448:     for (var i=$startcount; i<numitems; i++) {
  449:         parents[i] = new Array
  450:     }
  451:         |;
  452: 
  453:         foreach my $container (sort { $a <=> $b } keys %children) {
  454:             my @contents = split/:/,$children{$container};
  455:             for (my $i=0; $i<@contents; $i ++) {
  456:                 $scripttag .= '    parents['.$container.']['.$i.'] = '.$contents[$i]."\n";
  457:             }
  458:         }
  459: 
  460:         $scripttag .= qq|
  461:     if (parents[item].length > 0) {
  462:         for (var j=0; j<parents[item].length; j++) {
  463:             containerCheck(parents[item][j])
  464:         }
  465:      }   
  466: }
  467: 
  468: </script>
  469:         |;
  470:         $r->print('<html><head><title>Export Course</title>'.$scripttag.'</head>'.
  471:             &Apache::loncommon::bodytag('Export course to IMS content package'
  472: ));
  473: 
  474:         $r->print($display.'</table>'.
  475:                   '<p><input type="hidden" name="finishexport" value="1">'.
  476:                   '<input type="submit" name="exportcourse" value="'.
  477:                   &mt('Export Course DOCS').'" /></p></form></body></html>');
  478:     }
  479: }
  480: 
  481: sub create_ims_store {
  482:     my ($now,$manifestok,$outcome,$tempexport) = @_;
  483:     $$tempexport = $Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/ims_exports';
  484:     my $ims_manifest;
  485:     if (!-e $$tempexport) {
  486:         mkdir($$tempexport,0700);
  487:     }
  488:     $$tempexport .= '/'.$now;
  489:     if (!-e $$tempexport) {
  490:         mkdir($$tempexport,0700);
  491:     }
  492:     $$tempexport .= '/'.$ENV{'user.domain'}.'_'.$ENV{'user.name'};
  493:     if (!-e $$tempexport) {
  494:         mkdir($$tempexport,0700);
  495:     }
  496:     if (!-e "$$tempexport/resources") {
  497:         mkdir("$$tempexport/resources",0700);
  498:     }
  499: # open manifest file
  500:     my $manifest = '/imsmanifest.xml';
  501:     my $manifestfilename = $$tempexport.$manifest;
  502:     if ($ims_manifest = Apache::File->new('>'.$manifestfilename)) {
  503:         $$manifestok=1;
  504:         print $ims_manifest
  505: '<?xml version="1.0" encoding="UTF-8"?>'."\n".
  506: '<manifest xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"'.
  507: ' xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"'.
  508: ' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'.
  509: ' identifier="MANIFEST-'.$ENV{'request.course.id'}.'-'.$now.'"'.
  510: '  xsi:schemaLocation="http://www.imsglobal.org/xsd/imscp_v1p1imscp_v1p1.xsd'.
  511: '  http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">'."\n".
  512: '  <organizations default="ORG-'.$ENV{'request.course.id'}.'-'.$now.'">'."\n".
  513: '    <organization identifier="ORG-'.$ENV{'request.course.id'}.'-'.$now.'"'.
  514: ' structure="hierarchical">'."\n".
  515: '      <title>'.$ENV{'request.'.$ENV{'request.course.id'}.'.description'}.'</title>'
  516:     } else {
  517:         $$outcome .= 'An error occurred opening the IMS manifest file.<br />'
  518: ;
  519:     }
  520:     return $ims_manifest;
  521: }
  522: 
  523: sub build_package {
  524:     my ($now,$navmap,$exportitems,$discussions,$outcome,$tempexport,$copyresult,$ims_manifest) = @_;
  525: # first iterator to look for dependencies
  526:     my $it = $navmap->getIterator(undef,undef,undef,1,undef,undef);
  527:     my $curRes;
  528:     my $count = 0;
  529:     my $depth = 0;
  530:     my $lastcontainer = 0;
  531:     my %parent = ();
  532:     my @dependencies = ();
  533:     my $cnum = $ENV{'course.'.$ENV{'request.course.id'}.'.num'};
  534:     my $cdom = $ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
  535:     while ($curRes = $it->next()) {
  536:         if (ref($curRes)) {
  537:             $count ++;
  538:         }
  539:         if ($curRes == $it->BEGIN_MAP()) {
  540:             $depth++;
  541:             $parent{$depth} = $lastcontainer;
  542:         }
  543:         if ($curRes == $it->END_MAP()) {
  544:             $depth--;
  545:             $lastcontainer = $parent{$depth};
  546:         }
  547:         if (ref($curRes)) {
  548:             if ($curRes->is_sequence() || $curRes->is_page()) {
  549:                 $lastcontainer = $count;
  550:             }
  551:             if (grep/^$count$/,@$exportitems) {
  552:                 &get_dependencies($exportitems,\%parent,$depth,\@dependencies);
  553:             }
  554:         }
  555:     }
  556: # second iterator to build manifest and store resources
  557:     $it = $navmap->getIterator(undef,undef,undef,1,undef,undef);
  558:     $depth = 0;
  559:     my $prevdepth;
  560:     $count = 0;
  561:     my $imsresources;
  562:     my $pkgdepth;
  563:     my $included = 0;
  564:     while ($curRes = $it->next()) {
  565:         if ($curRes == $it->BEGIN_MAP()) {
  566:             $prevdepth = $depth;
  567:             $depth++;
  568:         }
  569:         if ($curRes == $it->END_MAP()) {
  570:             $prevdepth = $depth;
  571:             $depth--;
  572:         }
  573: 
  574:         if (ref($curRes)) {
  575:             $count ++;
  576:             if ((grep/^$count$/,@$exportitems) || (grep/^$count$/,@dependencies)) {
  577:                 my $symb = $curRes->symb();
  578:                 my $isvisible = 'true';
  579:                 my $resourceref;
  580:                 if ($curRes->randomout()) {
  581:                     $isvisible = 'false';
  582:                 }
  583:                 unless ($curRes->is_sequence()) {
  584:                     $resourceref = 'identifierref="RES-'.$ENV{'request.course.id'}.'-'.$count.'"';
  585:                 }
  586:                 if (($depth <= $prevdepth) && ($count > 1) && ($included)) {
  587:                     print $ims_manifest "\n".'  </item>'."\n";
  588:                 }
  589:                 $included = 1;
  590:                 $prevdepth = $depth;
  591: 
  592:                 my $itementry =
  593:               '<item identifier="ITEM-'.$ENV{'request.course.id'}.'-'.$count.
  594:               '" isvisible="'.$isvisible.'" '.$resourceref.'>'.
  595:               '<title>'.$curRes->title().'</title>';
  596:                 print $ims_manifest "\n".$itementry;
  597: 
  598:                 unless ($curRes->is_sequence()) {
  599:                     my $content_file;
  600:                     my @hrefs = ();
  601:                     &process_content($count,$curRes,$cdom,$cnum,$symb,\$content_file,\@hrefs,$copyresult,$tempexport);
  602:                     if ($content_file) {
  603:                         $imsresources .= "\n".
  604:                      '   <resource identifier="RES-'.$ENV{'request.course.id'}.'-'.$count.
  605:                      '" type="webcontent" href="'.$content_file.'">'."\n".
  606:                      '       <file href="'.$content_file.'" />'."\n";
  607:                         foreach (@hrefs) {
  608:                             $imsresources .=
  609:                      '        <file href="'.$_.'" />'."\n";
  610:                         }
  611:                         if (grep/^$count$/,@$discussions) {
  612:                             my $ressymb = $symb;
  613:                             my $mode;
  614:                             if ($ressymb =~ m|adm/(\w+)/(\w+)/(\d+)/bulletinboard$|) {
  615:                                 unless ($ressymb =~ m|adm/wrapper/adm|) {
  616:                                     $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';
  617:                                 }
  618:                                 $mode = 'board';
  619:                             }
  620:                             my %extras = (
  621:                                           caller => 'imsexport',
  622:                                           tempexport => $tempexport.'/resources',
  623:                                           count => $count
  624:                                          );
  625:                             my $discresult = &Apache::lonfeedback::list_discussion($mode,undef,$ressymb,\%extras);
  626:                         }
  627:                         $imsresources .= '    </resource>'."\n";
  628:                     }
  629:                 }
  630:                 $pkgdepth = $depth;
  631:             } else {
  632:                 $included = 0;
  633:             }
  634:         }
  635:     }
  636:     while ($pkgdepth > 0) {
  637:         print $ims_manifest "    </item>\n";
  638:         $pkgdepth --;
  639:     }
  640:     my $resource_text = qq|
  641:     </organization>
  642:   </organizations>
  643:   <resources>
  644:     $imsresources
  645:   </resources>
  646: </manifest>
  647:     |;
  648:     print $ims_manifest $resource_text;
  649: }
  650: 
  651: sub get_dependencies {
  652:     my ($exportitems,$parent,$depth,$dependencies) = @_;
  653:     if ($depth > 1) {
  654:         if ((!grep/^$$parent{$depth}$/,@$exportitems) && (!grep/^$$parent{$depth}$/,@$dependencies)) {
  655:             push @$dependencies, $$parent{$depth};
  656:             if ($depth > 2) {
  657:                 &get_dependencies($exportitems,$parent,$depth-1,$dependencies);
  658:             }
  659:         }
  660:     }
  661: }
  662: 
  663: sub process_content {
  664:     my ($count,$curRes,$cdom,$cnum,$symb,$content_file,$href,$copyresult,$tempexport) = @_;
  665:     my $content_type;
  666:     my $message;
  667: # find where user is author or co-author
  668:     my @uploads = ();
  669:     if ($curRes->is_sequence()) {
  670:         $content_type = 'sequence';
  671:     } elsif ($curRes->is_page()) {
  672:         $content_type = 'page'; # need to handle individual items in pages.
  673:     } elsif ($symb =~ m-public/$cdom/$cnum/syllabus$-) {
  674:         $content_type = 'syllabus';
  675:         my $contents = &Apache::imsexport::templatedpage($content_type);
  676:         if ($contents) {
  677:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  678:         }
  679:     } elsif ($symb =~ m-\.sequence___\d+___ext-) {
  680:         $content_type = 'external';
  681:         my $title = $curRes->title;
  682:         my $contents =  &Apache::imsexport::external($symb,$title);
  683:         if ($contents) {
  684:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  685:         }
  686:     } elsif ($symb =~ m-adm/navmaps$-) {
  687:         $content_type =  'navmap';
  688:     } elsif ($symb =~ m-adm/[^/]+/[^/]+/(\d+)/smppg$-) {
  689:         $content_type = 'simplepage';
  690:         my $contents = &Apache::imsexport::templatedpage($content_type,$1,$count,\@uploads);
  691:         if ($contents) {
  692:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  693:         }
  694:     } elsif ($symb =~ m-lib/templates/simpleproblem\.problem$-) {
  695:         $content_type = 'simpleproblem';
  696:         my $contents =  &Apache::imsexport::simpleproblem($symb);
  697:         if ($contents) {
  698:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  699:         }
  700:     } elsif ($symb =~ m-lib/templates/examupload\.problem-m) {
  701:         $content_type = 'examupload';
  702:     } elsif ($symb =~ m-adm/(\w+)/(\w+)/(\d+)/bulletinboard$-) {
  703:         $content_type = 'bulletinboard';
  704:         my $contents =  &Apache::imsexport::templatedpage($content_type,$3,$count,\@uploads,$1,$2);
  705:         if ($contents) {
  706:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  707:         }
  708:     } elsif ($symb =~ m-adm/([^/]+)/([^/]+)/aboutme$-) {
  709:         $content_type = 'aboutme';
  710:         my $contents =  &Apache::imsexport::templatedpage($content_type,undef,$count,\@uploads,$1,$2);
  711:         if ($contents) {
  712:             $$content_file = &store_template($contents,$tempexport,$count,$content_type);
  713:         }
  714:     } elsif ($symb =~ m-\.(sequence|page)___\d+___uploaded/$cdom/$cnum/-) {
  715:         $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');
  716:     } elsif ($symb =~ m-\.(sequence|page)___\d+___([^/]+)/([^/]+)-) {
  717:         my $canedit = 0;
  718:         if ($2 eq $ENV{'user.domain'} && $3 eq $ENV{'user.name'})  {
  719:             $canedit= 1;
  720:         }
  721:         if ($canedit) {
  722:             $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'resource');
  723:         } else {
  724:             $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'noedit');
  725:         }
  726:     } elsif ($symb =~ m-uploaded/$cdom/$cnum-) {
  727:         $$content_file = &replicate_content($cdom,$cnum,$tempexport,$symb,$count,\$message,$href,'uploaded');
  728:     }
  729:     if (@uploads > 0) {
  730:         foreach my $item (@uploads) {
  731:             my $uploadmsg = '';
  732:             &replicate_content($cdom,$cnum,$tempexport,$item,$count,\$uploadmsg,$href,'templateupload');
  733:             if ($uploadmsg) {
  734:                 $$copyresult .= $uploadmsg."\n";
  735:             }
  736:         }
  737:     }
  738:     if ($message) {
  739:         $$copyresult .= $message."\n";
  740:     }
  741: }
  742: 
  743: sub replicate_content {
  744:     my ($cdom,$cnum,$tempexport,$symb,$count,$message,$href,$caller) = @_;
  745:     my ($map,$ind,$url);
  746:     if ($caller eq 'templateupload') {
  747:         $url = $symb;
  748:         $url =~ s#//#/#g;
  749:     } else { 
  750:         ($map,$ind,$url)=&Apache::lonnet::decode_symb($symb);
  751:     }
  752:     my $content;
  753:     my $filename;
  754:     my $repstatus;
  755:     my $content_name;
  756:     if ($url =~ m-/([^/]+)$-) {
  757:         $filename = $1;
  758:         if (!-e $tempexport.'/resources') {
  759:             mkdir($tempexport.'/resources',0700);
  760:         }
  761:         if (!-e $tempexport.'/resources/'.$count) {
  762:             mkdir($tempexport.'/resources/'.$count,0700);
  763:         }
  764:         my $destination = $tempexport.'/resources/'.$count.'/'.$filename;
  765:         my $copiedfile;
  766:         if ($copiedfile = Apache::File->new('>'.$destination)) {
  767:             my $content;
  768:             if ($caller eq 'resource') {
  769:                 $content = &Apache::lonnet::getfile('/home/httpd/html/res/'.$url);
  770:                 if ($content eq -1) {
  771:                     $$message = 'Could not copy file '.$filename;
  772:                 } else {
  773:                     &extract_media($content,$count,$tempexport,$href,'resource');
  774:                     $repstatus = 'ok';
  775:                 }
  776:             } elsif ($caller eq 'uploaded' || $caller eq 'templateupload') {
  777:                 my $rtncode;
  778:                 $repstatus = &Apache::lonnet::getuploaded('GET',$url,$cdom,$cnum,\$content,$rtncode);
  779:                 if ($repstatus eq 'ok') {
  780:                     if ($url =~ /\.html?$/i) {
  781:                         &extract_media(\$content,$count,$tempexport,$href,'uploaded');
  782:                     }
  783:                 } else {
  784:                     $$message = 'Could not render '.$url.' server message - '.$rtncode;
  785:                 }
  786:             } elsif ($caller eq 'noedit') {
  787: # Need to render the resource without the LON-CAPA Internal header and the Post discussion footer, and then set $content equal to this. 
  788:                 $repstatus = 'ok';
  789:                 $content = 'Not the owner of this resource'; 
  790:             }
  791:             if ($repstatus eq 'ok') {
  792:                 print $copiedfile $content;
  793:             }
  794:             close($copiedfile);
  795:         } else {
  796:             $$message = 'Could not open destination file for '.$filename."\n";
  797:         }
  798:     } else {
  799:         $$message = 'Could not determine name of file for '.$symb."\n";
  800:     }
  801:     if ($repstatus eq 'ok') {
  802:         $content_name = $count.'/'.$filename;
  803:     }
  804:     return $content_name;
  805: }
  806: 
  807: sub extract_media {
  808:     my ($content,$count,$tempexport,$href,$caller) = @_;
  809: # @$href will contain path to any embedded resources in the content.
  810: # For LON-CAPA problems this would be images. applets etc. 
  811: # For uploaded HTML files this would be images etc.
  812: # paths will be in the form $count/res/$file, and urls in the $content will be rewritten with the new paths. 
  813:     return;
  814: }
  815: 
  816: sub store_template {
  817:     my ($contents,$tempexport,$count,$content_type) = @_;
  818:     if ($contents) {
  819:         if ($tempexport) {
  820:             if (!-e $tempexport.'/resources') {
  821:                 mkdir($tempexport.'/resources',0700);
  822:             }
  823:             if (!-e $tempexport.'/resources/'.$count) {
  824:                 mkdir($tempexport.'/resources/'.$count,0700);
  825:             }
  826:             my $destination = $tempexport.'/resources/'.$count.'/'.$content_type.'.xml';
  827:             my $storetemplate;
  828:             if ($storetemplate = Apache::File->new('>'.$destination)) {
  829:                 print $storetemplate $contents;
  830:                 close($storetemplate);
  831:             }
  832:             if ($content_type eq 'external') {
  833:                 return $count.'/'.$content_type.'.html';
  834:             } else {
  835:                 return $count.'/'.$content_type.'.xml';
  836:             }
  837:         }
  838:     }
  839: }
  840: 
  841: # Imports the given (name, url) resources into the course
  842: # coursenum, coursedom, and folder must precede the list
  843: sub group_import {
  844:     my $coursenum = shift;
  845:     my $coursedom = shift;
  846:     my $folder = shift;
  847:     my $container = shift;
  848:     my $caller = shift;
  849:     while (@_) {
  850: 	my $name = shift;
  851: 	my $url = shift;
  852:         if (($url =~ m#^/uploaded/$coursedom/$coursenum/(default_\d+\.)(page|sequence)$#) && ($caller eq 'londocs')) {
  853:             my $errtext = '';
  854:             my $fatal = 0;
  855:             my $newmapstr = '<map>'."\n".
  856:                             '<resource id="1" src="" type="start"></resource>'."\n".
  857:                             '<link from="1" to="2" index="1"></link>'."\n".
  858:                             '<resource id="2" src="" type="finish"></resource>'."\n".
  859:                             '</map>';
  860:             $ENV{'form.output'}=$newmapstr;
  861:             my $home=&Apache::lonnet::homeserver($coursenum,$coursedom);
  862:             my $result=&Apache::lonnet::finishuserfileupload($coursenum,$coursedom,$home,
  863:                                                 'output',$1.$2);
  864:             if ($result != m|^/uploaded/|) {
  865:                 $errtext.='Map not saved: A network error occured when trying to save the new map. ';
  866:                 $fatal = 2;
  867:             }
  868:             if ($fatal) {
  869:                 return ($errtext,$fatal);
  870:             }
  871:         }
  872: 	if ($url) {
  873: 	    my $idx = $#Apache::lonratedt::resources + 1;
  874: 	    $Apache::lonratedt::order[$#Apache::lonratedt::order+1]=$idx;
  875: 	    my $ext = 'false';
  876: 	    if ($url=~/^http:\/\//) { $ext = 'true'; }
  877: 	    $url =~ s/:/\&colon;/g;
  878: 	    $name =~ s/:/\&colon;/g;
  879: 	    $Apache::lonratedt::resources[$idx] = 
  880: 		join ':', ($name, $url, $ext, 'normal', 'res');
  881: 	}
  882:     }
  883:     return &storemap($coursenum, $coursedom, $folder.'.'.$container);
  884: }
  885: 
  886: sub breadcrumbs {
  887:     my ($where)=@_;
  888:     &Apache::lonhtmlcommon::clear_breadcrumbs();
  889:     my (@folders);
  890:     if ($ENV{'form.pagepath'}) {
  891:         @folders = split('&',$ENV{'form.pagepath'});
  892:     } else {
  893:         @folders=split('&',$ENV{'form.folderpath'});
  894:     }
  895:     my $folderpath;
  896:     while (@folders) {
  897: 	my $folder=shift(@folders);
  898: 	my $foldername=shift(@folders);
  899: 	if ($folderpath) {$folderpath.='&';}
  900: 	$folderpath.=$folder.'&'.$foldername;
  901: 	my $url='/adm/coursedocs?folderpath='.
  902: 	    &Apache::lonnet::escape($folderpath);
  903: 	    &Apache::lonhtmlcommon::add_breadcrumb(
  904: 		      {'href'=>$url,
  905: 		       'title'=>&Apache::lonnet::unescape($foldername),
  906: 		       'text'=>'<font size="+1">'.
  907: 			   &Apache::lonnet::unescape($foldername).'</font>'
  908: 		       });
  909: 		       
  910: 						 
  911:     }
  912:     return &Apache::lonhtmlcommon::breadcrumbs(undef,undef,undef,undef,undef,
  913: 					       0,'nohelp');
  914: }
  915: 
  916: sub editor {
  917:     my ($r,$coursenum,$coursedom,$folder,$allowed)=@_;
  918: 
  919:     $r->print(&breadcrumbs($folder));
  920:     my $errtext='';
  921:     my $fatal=0;
  922:     my $container='sequence';
  923:     if ($ENV{'form.pagepath'}) {
  924:         $container='page';
  925:     }
  926:     ($errtext,$fatal)=
  927:               &mapread($coursenum,$coursedom,$folder.'.'.$container);
  928:     if ($#Apache::lonratedt::order<1) {
  929:        	$Apache::lonratedt::order[0]=1;
  930:         $Apache::lonratedt::resources[1]='';
  931:     }
  932:     if ($fatal) {
  933: 	   $r->print('<p><font color="red">'.$errtext.'</font></p>');
  934:     } else {
  935: # ------------------------------------------------------------ Process commands
  936: 
  937: # ---------------- if they are for this folder and user allowed to make changes
  938: 	if (($allowed) && ($ENV{'form.folder'} eq $folder)) {
  939: # set parameters and change order
  940: 	    if (defined($ENV{'form.setparms'})) {
  941: 		my $idx=$ENV{'form.setparms'};
  942: # set parameters
  943: 		if ($ENV{'form.randpick_'.$idx}) {
  944: 		    &Apache::lonratedt::storeparameter($idx,'parameter_randompick',$ENV{'form.randpick_'.$idx},'int_pos');
  945: 		} else {
  946: 		    &Apache::lonratedt::delparameter($idx,'parameter_randompick');
  947: 		}
  948: 		if ($ENV{'form.hidprs_'.$idx}) {
  949: 		    &Apache::lonratedt::storeparameter($idx,'parameter_hiddenresource','yes','string_yesno');
  950: 		} else {
  951: 		    &Apache::lonratedt::delparameter($idx,'parameter_hiddenresource');
  952: 		}
  953: 		if ($ENV{'form.encprs_'.$idx}) {
  954: 		    &Apache::lonratedt::storeparameter($idx,'parameter_encrypturl','yes','string_yesno');
  955: 		} else {
  956: 		    &Apache::lonratedt::delparameter($idx,'parameter_encrypturl');
  957: 		}
  958: 
  959: 		if ($ENV{'form.newpos'}) {
  960: # change order
  961: 
  962: 		    my $newpos=$ENV{'form.newpos'}-1;
  963: 		    my $currentpos=$ENV{'form.currentpos'}-1;
  964: 		    my $i;
  965: 		    my @neworder=();
  966: 		    if ($newpos>$currentpos) {
  967: # moving stuff up
  968: 			for ($i=0;$i<$currentpos;$i++) {
  969: 			    $neworder[$i]=$Apache::lonratedt::order[$i];
  970: 			}
  971: 			for ($i=$currentpos;$i<$newpos;$i++) {
  972: 			    $neworder[$i]=$Apache::lonratedt::order[$i+1];
  973: 			}
  974:                         $neworder[$newpos]=$Apache::lonratedt::order[$currentpos];
  975: 			for ($i=$newpos+1;$i<=$#Apache::lonratedt::order;$i++) {
  976: 			    $neworder[$i]=$Apache::lonratedt::order[$i];
  977: 			}
  978: 		    } else {
  979: # moving stuff down
  980: 			for ($i=0;$i<$newpos;$i++) {
  981: 			    $neworder[$i]=$Apache::lonratedt::order[$i];
  982: 			}
  983: 			$neworder[$newpos]=$Apache::lonratedt::order[$currentpos];
  984: 			for ($i=$newpos+1;$i<$currentpos+1;$i++) {
  985: 			    $neworder[$i]=$Apache::lonratedt::order[$i-1];
  986: 			}
  987: 			for ($i=$currentpos+1;$i<=$#Apache::lonratedt::order;$i++) {
  988: 			    $neworder[$i]=$Apache::lonratedt::order[$i];
  989: 			}
  990: 		    }
  991: 		    @Apache::lonratedt::order=@neworder;
  992: 		}
  993: # store the changed version
  994: 
  995: 		($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
  996: 		if ($fatal) {
  997: 		    $r->print('<p><font color="red">'.$errtext.'</font></p>');
  998: 		    return;
  999: 		}
 1000: 		
 1001: 	    }
 1002: 
 1003: # upload a file, if present
 1004:            if (($ENV{'form.uploaddoc.filename'}) &&
 1005:                ($ENV{'form.cmd'}=~/^upload_(\w+)/)) {
 1006: 	    if ( ($folder=~/^$1/) || ($1 eq 'default') ) {
 1007: # this is for a course, not a user, so set coursedoc flag
 1008: # probably the only place in the system where this should be "1"
 1009: 	      my $url=&Apache::lonnet::userfileupload('uploaddoc',1,'docs');
 1010:               my $ext='false';
 1011:               if ($url=~/^http\:\/\//) { $ext='true'; }
 1012:               $url=~s/\:/\&colon;/g;
 1013: 	      my $comment=$ENV{'form.comment'};
 1014:               $comment=~s/\</\&lt\;/g;
 1015:               $comment=~s/\>/\&gt\;/g;
 1016:               $comment=~s/\:/\&colon;/g;
 1017:               if ($folder=~/^supplemental/) {
 1018: 		  $comment=time.'___&&&___'.$ENV{'user.name'}.'___&&&___'.
 1019: 		      $ENV{'user.domain'}.'___&&&___'.$comment;
 1020:               }
 1021:               my $newidx=$#Apache::lonratedt::resources+1;
 1022:               $Apache::lonratedt::resources[$newidx]=
 1023:                   $comment.':'.$url.':'.$ext.':normal:res';
 1024:               $Apache::lonratedt::order[$#Apache::lonratedt::order+1]=
 1025:                                                               $newidx;       
 1026: 
 1027: 	      ($errtext,$fatal)=&storemap($coursenum,$coursedom,$folder.'.'.$container);
 1028: 	      if ($fatal) {
 1029: 		  $r->print('<p><font color="red">'.$errtext.'</font></p>');
 1030: 		  return;
 1031: 	      }
 1032: 	     }
 1033:             }
 1034: 	    if ($ENV{'form.cmd'}) {
 1035:                 my ($cmd,$idx)=split(/\_/,$ENV{'form.cmd'});
 1036:                 if ($cmd eq 'del') {
 1037: 		    my (undef,$url)=split(':',$Apache::lonratedt::resources[$Apache::lonratedt::order[$idx]]);
 1038: 		    if ($url=~m|/+uploaded/\Q$coursedom\E/\Q$coursenum\E/|) {
 1039: 			&Apache::lonnet::removeuploadedurl($url);
 1040: 		    }
 1041: 		    for (my $i=$idx;$i<$#Apache::lonratedt::order;$i++) {
 1042:                         $Apache::lonratedt::order[$i]=
 1043:                           $Apache::lonratedt::order[$i+1];
 1044:                     }
 1045:                     $#Apache::lonratedt::order--;
 1046:                 } elsif ($cmd eq 'up') {
 1047: 		  if (($idx) && (defined($Apache::lonratedt::order[$idx-1]))) {
 1048:                     my $i=$Apache::lonratedt::order[$idx-1];
 1049:                     $Apache::lonratedt::order[$idx-1]=
 1050: 			$Apache::lonratedt::order[$idx];
 1051:                     $Apache::lonratedt::order[$idx]=$i;
 1052: 		   }
 1053:                 } elsif ($cmd eq 'down') {
 1054: 		   if (defined($Apache::lonratedt::order[$idx+1])) {
 1055:                     my $i=$Apache::lonratedt::order[$idx+1];
 1056:                     $Apache::lonratedt::order[$idx+1]=
 1057: 			$Apache::lonratedt::order[$idx];
 1058:                     $Apache::lonratedt::order[$idx]=$i;
 1059: 		   }
 1060:                 } elsif ($cmd eq 'rename') {
 1061:                     my $ratstr = $Apache::lonratedt::resources[$Apache::lonratedt::order[$idx]];
 1062:                     my ($rtitle,@rrest)=split(/\:/,
 1063:                        $Apache::lonratedt::resources[
 1064: 				       $Apache::lonratedt::order[$idx]]);
 1065:                     my $comment=
 1066:                      &HTML::Entities::decode($ENV{'form.title'});
 1067:                     $comment=~s/\</\&lt\;/g;
 1068:                     $comment=~s/\>/\&gt\;/g;
 1069:                     $comment=~s/\:/\&colon;/g;
 1070: 		    if ($comment=~/\S/) {
 1071: 			$Apache::lonratedt::resources[
 1072: 				       $Apache::lonratedt::order[$idx]]=
 1073: 				            $comment.':'.join(':',@rrest);
 1074: 		    }
 1075:                 }
 1076: # Store the changed version
 1077: 		($errtext,$fatal)=&storemap($coursenum,$coursedom,
 1078: 					    $folder.'.'.$container);
 1079: 		if ($fatal) {
 1080: 		    $r->print('<p><font color="red">'.$errtext.'</font></p>');
 1081: 		    return;
 1082: 		}
 1083:             }
 1084: # Group import/search
 1085: 	    if ($ENV{'form.importdetail'}) {
 1086: 		my @imports;
 1087: 		foreach (split(/\&/,$ENV{'form.importdetail'})) {
 1088: 		    if (defined($_)) {
 1089: 			my ($name,$url)=split(/\=/,$_);
 1090: 			$name=&Apache::lonnet::unescape($name);
 1091: 			$url=&Apache::lonnet::unescape($url);
 1092: 			push @imports, $name, $url;
 1093: 		    }
 1094: 		}
 1095: # Store the changed version
 1096: 		($errtext,$fatal)=group_import($coursenum, $coursedom, $folder,
 1097: 					       $container,'londocs',@imports);
 1098: 		if ($fatal) {
 1099: 		    $r->print('<p><font color="red">'.$errtext.'</font></p>');
 1100: 		    return;
 1101: 		}
 1102:             }
 1103: # Loading a complete map
 1104: 	   if (($ENV{'form.importmap'}) && ($ENV{'form.loadmap'})) {
 1105: 	       foreach (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$ENV{'form.importmap'}))) {
 1106:                    my $idx=$#Apache::lonratedt::resources;
 1107:                    $idx++;
 1108:                    $Apache::lonratedt::resources[$idx]=$_;
 1109:                    $Apache::lonratedt::order
 1110: 		       [$#Apache::lonratedt::order+1]=$idx;
 1111: 	       }
 1112: 
 1113: # Store the changed version
 1114: 	       ($errtext,$fatal)=&storemap($coursenum,$coursedom,
 1115: 					   $folder.'.'.$container);
 1116: 	       if ($fatal) {
 1117: 		   $r->print('<p><font color="red">'.$errtext.'</font></p>');
 1118: 		   return;
 1119: 	       }
 1120:            }
 1121:        }
 1122: # ---------------------------------------------------------------- End commands
 1123: # ---------------------------------------------------------------- Print screen
 1124:         my $idx=0;
 1125: 	my $shown=0;
 1126:         $r->print('<table>');
 1127:         foreach (@Apache::lonratedt::order) {
 1128:            my ($name,$url)=split(/\:/,$Apache::lonratedt::resources[$_]);
 1129:            unless ($name) {  $name=(split(/\//,$url))[-1]; }
 1130:            unless ($name) { $idx++; next; }
 1131:            $r->print(&entryline($idx,$name,$url,$folder,$allowed,$_,$coursenum));
 1132:            $idx++;
 1133: 	   $shown++;
 1134:         }
 1135: 	unless ($shown) {
 1136: 	    $r->print('<tr><td>'.&mt('Currently no documents.').'</td></tr>');
 1137: 	}
 1138:         $r->print('</table>');
 1139:     }
 1140: }
 1141: 
 1142: # --------------------------------------------------------------- An entry line
 1143: 
 1144: sub entryline {
 1145:     my ($index,$title,$url,$folder,$allowed,$residx,$coursenum)=@_;
 1146:     $title=~s/\&colon\;/\:/g;
 1147:     $title=&HTML::Entities::encode(&HTML::Entities::decode(
 1148:      &Apache::lonnet::unescape($title)),'"<>&\'');
 1149:     my $renametitle=$title;
 1150:     my $foldertitle=$title;
 1151:     my $pagetitle=$title;
 1152:     my $orderidx=$Apache::lonratedt::order[$index];
 1153:     if ($title=~ /^(\d+)___&amp;&amp;&amp;___(\w+)___&amp;&amp;&amp;___(\w+)___&amp;&amp;&amp;___(.*)$/	) { 
 1154: 	$foldertitle=&Apache::lontexconvert::msgtexconverted($4);
 1155: 	$renametitle=$4;
 1156: 	$title='<i>'.&Apache::lonlocal::locallocaltime($1).'</i> '.
 1157: 	    &Apache::loncommon::plainname($2,$3).': <br />'.
 1158: 	    $foldertitle;
 1159:     }
 1160:     $renametitle=~s/\&quot\;/\\\"/g;
 1161:     my $line='<tr>';
 1162: # Edit commands
 1163:     my $container;
 1164:     my $folderpath;
 1165:     if ($ENV{'form.folderpath'}) {
 1166:         $container = 'sequence';
 1167: 	$folderpath=&Apache::lonnet::escape($ENV{'form.folderpath'});
 1168: 	# $htmlfoldername=&HTML::Entities::encode($ENV{'form.foldername'},'<>&"');
 1169:     }
 1170:     my ($pagepath,$pagesymb);
 1171:     if ($ENV{'form.pagepath'}) {
 1172:         $container = 'page';
 1173:         $pagepath=&Apache::lonnet::escape($ENV{'form.pagepath'});
 1174:         $pagesymb=&Apache::lonnet::escape($ENV{'form.pagesymb'});
 1175:     }
 1176:     if ($allowed) {
 1177: 	my $incindex=$index+1;
 1178: 	my $selectbox='';
 1179: 	if ($folder!~/^supplemental/) {
 1180: 	    $selectbox=
 1181: 		'<input type="hidden" name="currentpos" value="'.$incindex.'" />'.
 1182: 		'<select name="newpos" onChange="this.form.submit()">';
 1183: 	    for (my $i=1;$i<=$#Apache::lonratedt::order+1;$i++) {
 1184: 		if ($i==$incindex) {
 1185: 		    $selectbox.='<option value="" selected="1">('.$i.')</option>';
 1186: 		} else {
 1187: 		    $selectbox.='<option value="'.$i.'">'.$i.'</option>';
 1188: 		}
 1189: 	    }
 1190: 	    $selectbox.='</select>';
 1191: 	}
 1192: 	my %lt=&Apache::lonlocal::texthash(
 1193:                 'up' => 'Move Up',
 1194: 		'dw' => 'Move Down',
 1195: 		'rm' => 'Remove',
 1196: 		'rn' => 'Rename');
 1197:         if ($ENV{'form.pagepath'}) {
 1198:             $line.=(<<END);
 1199: <form name="entry_$index" action="/adm/coursedocs" method="post">
 1200: <input type="hidden" name="pagepath" value="$ENV{'form.pagepath'}" />
 1201: <input type="hidden" name="pagesymb" value="$ENV{'form.pagesymb'}" />
 1202: <input type="hidden" name="setparms" value="$orderidx" />
 1203: <td><table border='0' cellspacing='2' cellpadding='0'>
 1204: <tr><td bgcolor="#DDDDDD">
 1205: <a href='/adm/coursedocs?cmd=up_$index&pagepath=$pagepath&pagesymb=$pagesymb'>
 1206: <img src="${iconpath}move_up.gif" alt='$lt{'up'}' border='0' /></a></td></tr>
 1207: <tr><td bgcolor="#DDDDDD">
 1208: <a href='/adm/coursedocs?cmd=down_$index&pagepath=$pagepath&pagesymb=$pagesymb'>
 1209: <img src="${iconpath}move_down.gif" alt='$lt{'dw'}' border='0' /></a></td></tr>
 1210: </table></td>
 1211: <td>$selectbox
 1212: </td><td bgcolor="#DDDDDD">
 1213: <a href='javascript:removeres("$pagepath","$index","$renametitle","page","$pagesymb");'>
 1214: <font size="-2" color="#990000">$lt{'rm'}</font></a>
 1215: <a href='javascript:changename("$pagepath","$index","$renametitle","page","$pagesymb");'>
 1216: <font size="-2" color="#009900">$lt{'rn'}</font></a></td>
 1217: END
 1218:         } else {
 1219:             $line.=(<<END); 
 1220: <form name="entry_$index" action="/adm/coursedocs" method="post">
 1221: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 1222: <input type="hidden" name="setparms" value="$orderidx" />
 1223: <td><table border='0' cellspacing='2' cellpadding='0'>
 1224: <tr><td bgcolor="#DDDDDD">
 1225: <a href='/adm/coursedocs?cmd=up_$index&folderpath=$folderpath'>
 1226: <img src="${iconpath}move_up.gif" alt='$lt{'up'}' border='0' /></a></td></tr>
 1227: <tr><td bgcolor="#DDDDDD">
 1228: <a href='/adm/coursedocs?cmd=down_$index&folderpath=$folderpath'>
 1229: <img src="${iconpath}move_down.gif" alt='$lt{'dw'}' border='0' /></a></td></tr>
 1230: </table></td>
 1231: <td>$selectbox
 1232: </td><td bgcolor="#DDDDDD">
 1233: <a href='javascript:removeres("$folderpath","$index","$renametitle","sequence");'>
 1234: <font size="-2" color="#990000">$lt{'rm'}</font></a>
 1235: <a href='javascript:changename("$folderpath","$index","$renametitle","sequence");'>
 1236: <font size="-2" color="#009900">$lt{'rn'}</font></a></td>
 1237: END
 1238:         }
 1239:     }
 1240: # Figure out what kind of a resource this is
 1241:     my ($extension)=($url=~/\.(\w+)$/);
 1242:     my $uploaded=($url=~/^\/*uploaded\//);
 1243:     my $icon=&Apache::loncommon::icon($url);
 1244:     my $isfolder=0;
 1245:     my $ispage=0;
 1246:     my $folderarg;
 1247:     my $pagearg;
 1248:     my $pagefile;
 1249:     if ($uploaded) {
 1250: 	if ($extension eq 'sequence') {
 1251: 	    $icon=$iconpath.'/folder_closed.gif';
 1252: 	    $url=~/$coursenum\/([\/\w]+)\.sequence$/;
 1253: 	    $url='/adm/coursedocs?';
 1254: 	    $folderarg=$1;
 1255: 	    $isfolder=1;
 1256:         } elsif ($extension eq 'page') {
 1257:             $icon=$iconpath.'/page.gif';
 1258:             $url=~/$coursenum\/([\/\w]+)\.page$/;
 1259:             $pagearg=$1;
 1260:             $url='/adm/coursedocs?';
 1261:             $ispage=1;
 1262: 	} else {
 1263: 	    &Apache::lonnet::allowuploaded('/adm/coursedoc',$url);
 1264: 	}
 1265:     }
 1266:     $url=~s/^http\&colon\;\/\//\/adm\/wrapper\/ext\//;
 1267:     if ((!$isfolder) && ($residx) && ($folder!~/supplemental/) && (!$ispage)) {
 1268: 	my $symb=&Apache::lonnet::symbclean(
 1269:           &Apache::lonnet::declutter('uploaded/'.
 1270:            $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.'/'.
 1271:            $ENV{'course.'.$ENV{'request.course.id'}.'.num'}.'/'.$folder.
 1272:            '.sequence').
 1273:            '___'.$residx.'___'.
 1274: 	   &Apache::lonnet::declutter($url));
 1275: 	(undef,undef,$url)=&Apache::lonnet::decode_symb($symb);
 1276: 	$url=&Apache::lonnet::clutter($url);
 1277: 	if ($url=~/^\/*uploaded\//) {
 1278: 	    $url=~/\.(\w+)$/;
 1279: 	    my $embstyle=&Apache::loncommon::fileembstyle($1);
 1280: 	    if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
 1281: 		$url='/adm/wrapper'.$url;
 1282: 	    } elsif ($embstyle eq 'ssi') {
 1283: 		#do nothing with these
 1284: 	    } elsif ($url!~/\.(sequence|page)$/) {
 1285: 		$url='/adm/coursedocs/showdoc'.$url;
 1286: 	    }
 1287: 	} elsif ($url=~m|^/ext/|) { 
 1288: 	    $url='/adm/wrapper'.$url;
 1289: 	}
 1290: 	$url.=(($url=~/\?/)?'&':'?').'symb='.&Apache::lonnet::escape($symb);
 1291: 	if ($container eq 'page') {
 1292: 	    my $symb=$ENV{'form.pagesymb'};
 1293: 	    	    
 1294: 	    $url=&Apache::lonnet::clutter((&Apache::lonnet::decode_symb($symb))[2]);
 1295: 	    $url.=(($url=~/\?/)?'&':'?').'symb='.&Apache::lonnet::escape($symb);
 1296: 	}
 1297:     }
 1298:     my $parameterset='&nbsp;';
 1299:     if ($isfolder) {
 1300: 	my $foldername=&Apache::lonnet::escape($foldertitle);
 1301: 	my $folderpath=$ENV{'form.folderpath'};
 1302: 	if ($folderpath) { $folderpath.='&' };
 1303: 	$folderpath.=$folderarg.'&'.$foldername;
 1304: 	$url.='folderpath='.&Apache::lonnet::escape($folderpath);
 1305: 	$parameterset='<label>'.&mt('Randomly Pick: ').
 1306: 	    '<input type="text" size="4" name="randpick_'.$orderidx.'" value="'.
 1307: 	    (&Apache::lonratedt::getparameter($orderidx,
 1308:                                               'parameter_randompick'))[0].
 1309:                                               '" />'.'</label>';
 1310:        
 1311:     }
 1312:     if ($ispage) {
 1313:         my $pagename=&Apache::lonnet::escape($pagetitle);
 1314:         my $pagepath;
 1315:         my $folderpath=$ENV{'form.folderpath'};
 1316:         if ($folderpath) { $pagepath = $folderpath.'&' };
 1317:         $pagepath.=$pagearg.'&'.$pagename;
 1318: 	my $symb=$ENV{'form.pagesymb'};
 1319: 	if (!$symb) {
 1320: 	    my $path='uploaded/'.
 1321: 		$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.'/'.
 1322: 		$ENV{'course.'.$ENV{'request.course.id'}.'.num'}.'/';
 1323: 	    $symb=&Apache::lonnet::encode_symb($path.$folder.'.sequence',
 1324: 					       $residx,
 1325: 					       $path.$pagearg.'.page');
 1326: 	}
 1327: 	$url.='pagepath='.&Apache::lonnet::escape($pagepath).
 1328: 	    '&pagesymb='.&Apache::lonnet::escape($symb);
 1329:     }
 1330:     $line.='<td bgcolor="#FFFFBB"><a href="'.$url.'"><img src="'.$icon.
 1331: 	'" border="0"></a></td>'.
 1332:         "<td bgcolor='#FFFFBB'><a href='$url'>$title</a></td>";
 1333:     if (($allowed) && ($folder!~/^supplemental/)) {
 1334:  	my %lt=&Apache::lonlocal::texthash(
 1335:  			      'hd' => 'Hidden',
 1336:  			      'ec' => 'URL hidden',
 1337:  			      'sp' => 'Store Parameters');
 1338: 	my $enctext=
 1339: 	    ((&Apache::lonratedt::getparameter($orderidx,'parameter_encrypturl'))[0]=~/^yes$/i?' checked="1"':'');
 1340: 	my $hidtext=
 1341: 	    ((&Apache::lonratedt::getparameter($orderidx,'parameter_hiddenresource'))[0]=~/^yes$/i?' checked="1"':'');
 1342: 	$line.=(<<ENDPARMS);
 1343: <td bgcolor="#BBBBFF"><font size='-2'>
 1344: <nobr><label><input type="checkbox" name="hidprs_$orderidx" $hidtext/> $lt{'hd'}</label></nobr></td>
 1345: <td bgcolor="#BBBBFF"><font size='-2'>
 1346: <nobr><label><input type="checkbox" name="encprs_$orderidx" $enctext/> $lt{'ec'}</label></nobr></td>
 1347: <td bgcolor="#BBBBFF"><font size="-2">$parameterset</font></td>
 1348: <td bgcolor="#BBBBFF"><font size='-2'>
 1349: <input type="submit" value="$lt{'sp'}" />
 1350: </font></td>
 1351: ENDPARMS
 1352:     }
 1353:     $line.="</form></tr>";
 1354:     return $line;
 1355: }
 1356: 
 1357: # ---------------------------------------------------------------- tie the hash
 1358: 
 1359: sub tiehash {
 1360:     my ($mode)=@_;
 1361:     $hashtied=0;
 1362:     if ($ENV{'request.course.fn'}) {
 1363: 	if ($mode eq 'write') {
 1364: 	    if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db",
 1365: 		    &GDBM_WRCREAT(),0640)) {
 1366:                 $hashtied=2;
 1367: 	    }
 1368: 	} else {
 1369: 	    if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db",
 1370: 		    &GDBM_READER(),0640)) {
 1371:                 $hashtied=1;
 1372: 	    }
 1373: 	}
 1374:     }    
 1375: }
 1376: 
 1377: sub untiehash {
 1378:     if ($hashtied) { untie %hash; }
 1379:     $hashtied=0;
 1380: }
 1381: 
 1382: # --------------------------------------------------------------- check on this
 1383: 
 1384: sub checkonthis {
 1385:     my ($r,$url,$level,$title)=@_;
 1386:     $url=&Apache::lonnet::unescape($url);
 1387:     $alreadyseen{$url}=1;
 1388:     $r->rflush();
 1389:     if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {
 1390:        $r->print("\n<br />");
 1391:        for (my $i=0;$i<=$level*5;$i++) {
 1392:            $r->print('&nbsp;');
 1393:        }
 1394:        $r->print('<a href="'.$url.'" target="cat">'.
 1395: 		 ($title?$title:$url).'</a> ');
 1396:        if ($url=~/^\/res\//) {
 1397: 	  my $result=&Apache::lonnet::repcopy(
 1398:                               &Apache::lonnet::filelocation('',$url));
 1399:           if ($result==OK) {
 1400:              $r->print('<font color="green">'.&mt('ok').'</font>');
 1401:              $r->rflush();
 1402:              &Apache::lonnet::countacc($url);
 1403:              $url=~/\.(\w+)$/;
 1404:              if (&Apache::loncommon::fileembstyle($1) eq 'ssi') {
 1405: 		 $r->print('<br />');
 1406:                  $r->rflush();
 1407:                  for (my $i=0;$i<=$level*5;$i++) {
 1408:                      $r->print('&nbsp;');
 1409:                  }
 1410:                  $r->print('- '.&mt('Rendering').': ');
 1411:                  my $oldpath=$ENV{'request.filename'};
 1412:                  $ENV{'request.filename'}=&Apache::lonnet::filelocation('',$url);
 1413:                  &Apache::lonxml::xmlparse($r,'web',
 1414:                    &Apache::lonnet::getfile(
 1415:                     &Apache::lonnet::filelocation('',$url)));
 1416: 		 undef($Apache::lonhomework::parsing_a_problem);
 1417: 		 $ENV{'request.filename'}=$oldpath;
 1418:                  if (($Apache::lonxml::errorcount) ||
 1419:                      ($Apache::lonxml::warningcount)) {
 1420: 		     if ($Apache::lonxml::errorcount) {
 1421:                         $r->print('<img src="/adm/lonMisc/bomb.gif" /><font color="red"><b>'.
 1422: 			  $Apache::lonxml::errorcount.' '.
 1423: 				  &mt('error(s)').'</b></font> ');
 1424:                      }
 1425: 		     if ($Apache::lonxml::warningcount) {
 1426:                         $r->print('<font color="blue">'.
 1427: 			  $Apache::lonxml::warningcount.' '.
 1428: 				  &mt('warning(s)').'</font>');
 1429:                      }
 1430:                  } else {
 1431:                      $r->print('<font color="green">'.&mt('ok').'</font>');
 1432:                  }
 1433:                  $r->rflush();
 1434:              }
 1435: 	     my $dependencies=
 1436:                 &Apache::lonnet::metadata($url,'dependencies');
 1437:              foreach (split(/\,/,$dependencies)) {
 1438: 		 if (($_=~/^\/res\//) && (!$alreadyseen{$_})) {
 1439:                     &checkonthis($r,$_,$level+1);
 1440:                  }
 1441:              }
 1442:           } elsif ($result==HTTP_SERVICE_UNAVAILABLE) {
 1443:              $r->print('<font color="red"><b>'.&mt('connection down').'</b></font>');
 1444:           } elsif ($result==HTTP_NOT_FOUND) {
 1445: 	      unless ($url=~/\$/) {
 1446: 		  $r->print('<font color="red"><b>'.&mt('not found').'</b></font>');
 1447: 	      } else {
 1448: 		  $r->print('<font color="yellow"><b>'.&mt('unable to verify variable URL').'</b></font>');
 1449: 	      }
 1450:           } else {
 1451:              $r->print('<font color="red"><b>'.&mt('access denied').'</b></font>');
 1452:           }
 1453:       }
 1454:    }
 1455: }
 1456: 
 1457: 
 1458: #
 1459: # -------------------------------------------------------------- Verify Content
 1460: # 
 1461: sub verifycontent {
 1462:    my $r=shift; 
 1463:    my $loaderror=&Apache::lonnet::overloaderror($r);
 1464:    if ($loaderror) { return $loaderror; }
 1465: 
 1466:    $r->print('<html><head><title>Verify Content</title></head>'.
 1467:               &Apache::loncommon::bodytag('Verify Course Documents'));
 1468:    $hashtied=0;
 1469:    undef %alreadyseen;
 1470:    %alreadyseen=();
 1471:    &tiehash();
 1472:    foreach (keys %hash) {
 1473:        if ($hash{$_}=~/\.(page|sequence)$/) {
 1474: 	   if (($_=~/^src_/) && ($alreadyseen{&Apache::lonnet::unescape($hash{$_})})) {
 1475: 	       $r->print('<hr /><font color="red">'.
 1476: 			 &mt('The following sequence or page is included more than once in your course: ').
 1477: 			 &Apache::lonnet::unescape($hash{$_}).'</font><br />'.
 1478: 			 &mt('Note that grading records for problems included in this sequence or folder will overlap.<hr />'));
 1479: 	   }
 1480:        }
 1481:        if (($_=~/^src\_(.+)$/) && (!$alreadyseen{&Apache::lonnet::unescape($hash{$_})})) {
 1482:            &checkonthis($r,$hash{$_},0,$hash{'title_'.$1});
 1483:        }
 1484:    }
 1485:    &untiehash();
 1486:    $r->print('<h1>'.&mt('Done').'.</h1>'.'<a href="/adm/coursedocs">'.
 1487: 	     &mt('Return to DOCS').'</a>');
 1488: }
 1489: 
 1490: # -------------------------------------------------------------- Check Versions
 1491: 
 1492: sub checkversions {
 1493:     my $r=shift;
 1494:     $r->print('<html><head><title>Check Versions</title></head>'.
 1495:               &Apache::loncommon::bodytag('Check Course Document Versions'));
 1496:     my $header='';
 1497:     my $startsel='';
 1498:     my $monthsel='';
 1499:     my $weeksel='';
 1500:     my $daysel='';
 1501:     my $allsel='';
 1502:     my %changes=();
 1503:     my $starttime=0;
 1504:     my $haschanged=0;
 1505:     my %setversions=&Apache::lonnet::dump('resourceversions',
 1506: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1507: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
 1508: 
 1509:     $hashtied=0;
 1510:     &tiehash();
 1511:     my %newsetversions=();
 1512:     if ($ENV{'form.setmostrecent'}) {
 1513: 	$haschanged=1;
 1514: 	foreach (keys %hash) {
 1515: 	    if ($_=~/^ids\_(\/res\/.+)$/) {
 1516: 		$newsetversions{$1}='mostrecent';
 1517: 	    }
 1518: 	}
 1519:     } elsif ($ENV{'form.setcurrent'}) {
 1520: 	$haschanged=1;
 1521: 	foreach (keys %hash) {
 1522: 	    if ($_=~/^ids\_(\/res\/.+)$/) {
 1523: 		my $getvers=&Apache::lonnet::getversion($1);
 1524: 		if ($getvers>0) {
 1525: 		    $newsetversions{$1}=$getvers;
 1526: 		}
 1527: 	    }
 1528: 	}
 1529:     } elsif ($ENV{'form.setversions'}) {
 1530: 	$haschanged=1;
 1531: 	foreach (keys %ENV) {
 1532: 	    if ($_=~/^form\.set_version_(.+)$/) {
 1533: 		my $src=$1;
 1534: 		if (($ENV{$_}) && ($ENV{$_} ne $setversions{$src})) {
 1535: 		    $newsetversions{$src}=$ENV{$_};
 1536: 		}
 1537: 	    }
 1538: 	}
 1539:     }
 1540:     if ($haschanged) {
 1541:         if (&Apache::lonnet::put('resourceversions',\%newsetversions,
 1542: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1543: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.num'}) eq 'ok') {		
 1544: 	    $r->print('<h1>'.&mt('Your Version Settings have been Stored').'</h1>');
 1545: 	} else {
 1546: 	    $r->print('<h1><font color="red">'.&mt('An Error Occured while Attempting to Store your Version Settings').'</font></h1>');
 1547: 	}
 1548: 	&mark_hash_old();
 1549:     }
 1550:     &changewarning($r,'');
 1551:     if ($ENV{'form.timerange'} eq 'all') {
 1552: # show all documents
 1553: 	$header=&mt('All Documents in Course');
 1554: 	$allsel=1;
 1555: 	foreach (keys %hash) {
 1556: 	    if ($_=~/^ids\_(\/res\/.+)$/) {
 1557: 		my $src=$1;
 1558: 		$changes{$src}=1;
 1559: 	    }
 1560: 	}
 1561:     } else {
 1562: # show documents which changed
 1563: 	%changes=&Apache::lonnet::dump
 1564: 	 ('versionupdate',$ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1565:                      $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
 1566: 	my $firstkey=(keys %changes)[0];
 1567: 	unless ($firstkey=~/^error\:/) {
 1568: 	    unless ($ENV{'form.timerange'}) {
 1569: 		$ENV{'form.timerange'}=604800;
 1570: 	    }
 1571: 	    my $seltext=&mt('during the last').' '.$ENV{'form.timerange'}.' '
 1572: 		.&mt('seconds');
 1573: 	    if ($ENV{'form.timerange'}==-1) {
 1574: 		$seltext='since start of course';
 1575: 		$startsel='selected';
 1576: 		$ENV{'form.timerange'}=time;
 1577: 	    }
 1578: 	    $starttime=time-$ENV{'form.timerange'};
 1579: 	    if ($ENV{'form.timerange'}==2592000) {
 1580: 		$seltext=&mt('during the last month').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
 1581: 		$monthsel='selected';
 1582: 	    } elsif ($ENV{'form.timerange'}==604800) {
 1583: 		$seltext=&mt('during the last week').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
 1584: 		$weeksel='selected';
 1585: 	    } elsif ($ENV{'form.timerange'}==86400) {
 1586: 		$seltext=&mt('since yesterday').' ('.&Apache::lonlocal::locallocaltime($starttime).')';
 1587: 		$daysel='selected';
 1588: 	    }
 1589: 	    $header=&mt('Content changed').' '.$seltext;
 1590: 	} else {
 1591: 	    $header=&mt('No content modifications yet.');
 1592: 	}
 1593:     }
 1594:     %setversions=&Apache::lonnet::dump('resourceversions',
 1595: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
 1596: 			  $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
 1597:     my %lt=&Apache::lonlocal::texthash
 1598: 	      ('st' => 'Version changes since start of Course',
 1599: 	       'lm' => 'Version changes since last Month',
 1600: 	       'lw' => 'Version changes since last Week',
 1601: 	       'sy' => 'Version changes since Yesterday',
 1602:                'al' => 'All Resources (possibly large output)',
 1603: 	       'sd' => 'Display',
 1604: 	       'fi' => 'File',
 1605: 	       'md' => 'Modification Date',
 1606:                'mr' => 'Most recently published Version',
 1607: 	       've' => 'Version used in Course',
 1608:                'vu' => 'Set Version to be used in Course',
 1609: 'sv' => 'Set Versions to be used in Course according to Selections below',
 1610: 'sm' => 'Keep all Resources up-to-date with most recent Versions (default)',
 1611: 'sc' => 'Set all Resource Versions to current Version (Fix Versions)',
 1612: 	       'di' => 'Differences');
 1613:     $r->print(<<ENDHEADERS);
 1614: <form action="/adm/coursedocs" method="post">
 1615: <input type="hidden" name="versions" value="1" />
 1616: <input type="submit" name="setmostrecent" value="$lt{'sm'}" />
 1617: <input type="submit" name="setcurrent" value="$lt{'sc'}" /><hr />
 1618: <select name="timerange">
 1619: <option value='all' $allsel>$lt{'al'}</option>
 1620: <option value="-1" $startsel>$lt{'st'}</option>
 1621: <option value="2592000" $monthsel>$lt{'lm'}</option>
 1622: <option value="604800" $weeksel>$lt{'lw'}</option>
 1623: <option value="86400" $daysel>$lt{'sy'}</option>
 1624: </select>
 1625: <input type="submit" name="display" value="$lt{'sd'}" />
 1626: <h3>$header</h3>
 1627: <input type="submit" name="setversions" value="$lt{'sv'}" />
 1628: <table border="0">
 1629: ENDHEADERS
 1630:     foreach (sort keys %changes) {
 1631: 	if ($changes{$_}>$starttime) {
 1632: 	    my ($root,$extension)=($_=~/^(.*)\.(\w+)$/);
 1633: 	    my $currentversion=&Apache::lonnet::getversion($_);
 1634: 	    if ($currentversion<0) {
 1635: 		$currentversion=&mt('Could not be determined.');
 1636: 	    }
 1637: 	    my $linkurl=&Apache::lonnet::clutter($_);
 1638: 	    $r->print(
 1639: 		      '<tr><td colspan="5"><br /><br /><font size="+1"><b>'.
 1640: 		      &Apache::lonnet::gettitle($linkurl).
 1641:                       '</b></font></td></tr>'.
 1642:                       '<tr><td>&nbsp;&nbsp;&nbsp;</td>'.
 1643:                       '<td colspan="4">'.
 1644:                       '<a href="'.$linkurl.'" target="cat">'.$linkurl.
 1645: 		      '</a></td></tr>'.
 1646:                       '<tr><td></td>'.
 1647:                       '<td title="'.$lt{'md'}.'">'.
 1648: 		      &Apache::lonlocal::locallocaltime(
 1649:                            &Apache::lonnet::metadata($root.'.'.$extension,
 1650:                                                      'lastrevisiondate')
 1651:                                                         ).
 1652:                       '</td>'.
 1653:                       '<td title="'.$lt{'mr'}.'"><nobr>Most Recent: '.
 1654:                       '<font size="+1">'.$currentversion.'</font>'.
 1655:                       '</nobr></td>'.
 1656:                       '<td title="'.$lt{'ve'}.'"><nobr>In Course: '.
 1657:                       '<font size="+1">');
 1658: # Used in course
 1659: 	    my $usedversion=$hash{'version_'.$linkurl};
 1660: 	    if (($usedversion) && ($usedversion ne 'mostrecent')) {
 1661: 		$r->print($usedversion);
 1662: 	    } else {
 1663: 		$r->print($currentversion);
 1664: 	    }
 1665: 	    $r->print('</font></nobr></td><td title="'.$lt{'vu'}.'">'.
 1666:                       '<nobr>Use: ');
 1667: # Set version
 1668: 	    $r->print(&Apache::loncommon::select_form($setversions{$linkurl},
 1669: 						      'set_version_'.$linkurl,
 1670: 						      ('select_form_order' =>
 1671: 						       ['',1..$currentversion,'mostrecent'],
 1672: 						       '' => '',
 1673: 						       'mostrecent' => 'most recent',
 1674: 						       map {$_,$_} (1..$currentversion))));
 1675: 	    $r->print('</nobr></td></tr><tr><td></td>');
 1676: 	    my $lastold=1;
 1677: 	    for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
 1678: 		my $url=$root.'.'.$prevvers.'.'.$extension;
 1679: 		if (&Apache::lonnet::metadata($url,'lastrevisiondate')<
 1680: 		    $starttime) {
 1681: 		    $lastold=$prevvers;
 1682: 		}
 1683: 	    }
 1684:             # 
 1685:             # Code to figure out how many version entries should go in
 1686:             # each of the four columns
 1687:             my $entries_per_col = 0;
 1688:             my $num_entries = ($currentversion-$lastold);
 1689:             if ($num_entries % 4 == 0) {
 1690:                 $entries_per_col = $num_entries/4;
 1691:             } else {
 1692:                 $entries_per_col = $num_entries/4 + 1;
 1693:             }
 1694:             my $entries_count = 0;
 1695:             $r->print('<td valign="top"><font size="-2">'); 
 1696:             my $cols_output = 1;
 1697:             for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {
 1698: 		my $url=$root.'.'.$prevvers.'.'.$extension;
 1699: 		$r->print('<nobr><a href="'.&Apache::lonnet::clutter($url).
 1700: 			  '">'.&mt('Version').' '.$prevvers.'</a> ('.
 1701: 			  &Apache::lonlocal::locallocaltime(
 1702:                                 &Apache::lonnet::metadata($url,
 1703:                                                           'lastrevisiondate')
 1704:                                                             ).
 1705: 			  ')');
 1706: 		if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {
 1707:                     $r->print(' <a href="/adm/diff?filename='.
 1708: 			      &Apache::lonnet::clutter($root.'.'.$extension).
 1709: 			      '&versionone='.$prevvers.
 1710: 			      '">'.&mt('Diffs').'</a>');
 1711: 		}
 1712: 		$r->print('</nobr><br />');
 1713:                 if (++$entries_count % $entries_per_col == 0) {
 1714:                     $r->print('</font></td>');
 1715:                     if ($cols_output != 4) {
 1716:                         $r->print('<td valign="top"><font size="-2">');
 1717:                         $cols_output++;
 1718:                     }
 1719:                 }
 1720: 	    }
 1721:             while($cols_output++ < 4) {
 1722:                 $r->print('</font></td><td><font>')
 1723:             }
 1724: 	    $r->print('</font></td></tr>'."\n");
 1725: 	}
 1726:     }
 1727:     $r->print('</table></form>');
 1728:     $r->print('<h1>'.&mt('Done').'.</h1>');
 1729: 
 1730:     &untiehash();
 1731: }
 1732: 
 1733: sub mark_hash_old {
 1734:     my $retie_hash=0;
 1735:     if ($hashtied) {
 1736: 	$retie_hash=1;
 1737: 	&untiehash();
 1738:     }
 1739:     &tiehash('write');
 1740:     $hash{'old'}=1;
 1741:     &untiehash();
 1742:     if ($retie_hash) { &tiehash(); }
 1743: }
 1744: 
 1745: sub is_hash_old {
 1746:     my $untie_hash=0;
 1747:     if (!$hashtied) {
 1748: 	$untie_hash=1;
 1749: 	&tiehash();
 1750:     }
 1751:     my $return=$hash{'old'};
 1752:     if ($untie_hash) { &untiehash(); }
 1753:     return $return;
 1754: }
 1755: 
 1756: sub changewarning {
 1757:     my ($r,$postexec)=@_;
 1758:     if (!&is_hash_old()) { return; }
 1759:     my $pathvar='folderpath';
 1760:     my $path=&Apache::lonnet::escape($ENV{'form.folderpath'});
 1761:     if (defined($ENV{'form.pagepath'})) {
 1762: 	$pathvar='pagepath';
 1763: 	$path=&Apache::lonnet::escape($ENV{'form.pagepath'});
 1764: 	$path.='&amp;symb='.&Apache::lonnet::escape($ENV{'form.pagesymb'});
 1765:     }
 1766:     $r->print(
 1767: '<script>function reinit(tf) { tf.submit();'.$postexec.' }</script>'. 
 1768: '<form method="post" action="/adm/roles" target="loncapaclient">'.
 1769: '<input type="hidden" name="orgurl" value="/adm/coursedocs?'.
 1770: $pathvar.'='.$path.
 1771: '" /><input type="hidden" name="selectrole" value="1" /><h3><font color="red">'.
 1772: &mt('Changes will become active for your current session after').
 1773: ' <input type="hidden" name="'.
 1774: $ENV{'request.role'}.'" value="1" /><input type="button" value="'.
 1775: &mt('re-initializing course').'" onClick="reinit(this.form)"/>'.&mt(', or the next time you log in.').
 1776: $help{'Caching'}.'</font></h3></form>');
 1777: }
 1778: 
 1779: # ================================================================ Main Handler
 1780: sub handler {
 1781:     my $r = shift;
 1782:     &Apache::loncommon::content_type($r,'text/html');
 1783:     $r->send_http_header;
 1784:     return OK if $r->header_only;
 1785: 
 1786: # --------------------------------------------- Initialize help topics for this
 1787:   foreach ('Adding_Course_Doc','Main_Course_Documents',
 1788:            'Adding_External_Resource','Navigate_Content',
 1789:            'Adding_Folders','Docs_Overview', 'Load_Map',
 1790:            'Supplemental','Score_Upload_Form','Adding_Pages',
 1791:            'Importing_LON-CAPA_Resource','Uploading_From_Harddrive',
 1792: 	   'Check_Resource_Versions','Verify_Content') {
 1793:       $help{$_}=&Apache::loncommon::help_open_topic('Docs_'.$_);
 1794:   }
 1795:     # Composite help files
 1796:     $help{'Syllabus'} = &Apache::loncommon::help_open_topic(
 1797: 		    'Docs_About_Syllabus,Docs_Editing_Templated_Pages');
 1798:     $help{'Simple Page'} = &Apache::loncommon::help_open_topic(
 1799: 		    'Docs_About_Simple_Page,Docs_Editing_Templated_Pages');
 1800:     $help{'Simple Problem'} = &Apache::loncommon::help_open_topic(
 1801: 		    'Option_Response_Simple');
 1802:     $help{'Bulletin Board'} = &Apache::loncommon::help_open_topic(
 1803: 		    'Docs_About_Bulletin_Board,Docs_Editing_Templated_Pages');
 1804:     $help{'My Personal Info'} = &Apache::loncommon::help_open_topic(
 1805: 		  'Docs_About_My_Personal_Info,Docs_Editing_Templated_Pages');
 1806:     $help{'Caching'} = &Apache::loncommon::help_open_topic('Caching');
 1807: 
 1808:   if ($ENV{'form.verify'}) {
 1809:       &verifycontent($r);
 1810:   } elsif ($ENV{'form.versions'}) {
 1811:       &checkversions($r);
 1812:   } elsif ($ENV{'form.dumpcourse'}) {
 1813:       &dumpcourse($r);
 1814:   } elsif ($ENV{'form.exportcourse'}) {
 1815:       &exportcourse($r);
 1816:   } else {
 1817: # is this a standard course?
 1818: 
 1819:     my $standard=($ENV{'request.course.uri'}=~/^\/uploaded\//);
 1820:     my $forcestandard = 0;
 1821:     my $forcesupplement;
 1822:     my $script='';
 1823:     my $allowed;
 1824:     my $events='';
 1825:     my $showdoc=0;
 1826:     my $containertag;
 1827:     my $uploadtag;
 1828:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
 1829: 					    ['folderpath','pagepath','pagesymb']);
 1830:     if ($ENV{'form.folderpath'}) {
 1831: 	my (@folderpath)=split('&',$ENV{'form.folderpath'});
 1832: 	$ENV{'form.foldername'}=&Apache::lonnet::unescape(pop(@folderpath));
 1833: 	$ENV{'form.folder'}=pop(@folderpath);
 1834:     }
 1835:     if ($ENV{'form.pagepath'}) {
 1836:         my (@pagepath)=split('&',$ENV{'form.pagepath'});
 1837:         $ENV{'form.pagename'}=&Apache::lonnet::unescape(pop(@pagepath));
 1838:         $ENV{'form.folder'}=pop(@pagepath);
 1839:         $containertag = '<input type="hidden" name="pagepath" value="" />'.
 1840: 	    '<input type="hidden" name="pagesymb" value="" />';
 1841:         $uploadtag = '<input type="hidden" name="pagepath" value="'.$ENV{'form.pagepath'}.'" />'.
 1842: 	    '<input type="hidden" name="pagesymb" value="'.$ENV{'form.pagesymb'}.'" />';
 1843:     }
 1844:     if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {
 1845:        $showdoc='/'.$1;
 1846:     }
 1847:     unless ($showdoc) { # got called from remote
 1848:        if (($ENV{'form.folder'}=~/^default_/) || 
 1849:           ($ENV{'form.folder'} =~ m#^\d+/(pages|sequences)/#)) {
 1850:            $forcestandard = 1;
 1851:        } 
 1852:        $forcesupplement=($ENV{'form.folder'}=~/^supplemental_/);
 1853: 
 1854: # does this user have privileges to post, etc?
 1855:        $allowed=&Apache::lonnet::allowed('mdc',$ENV{'request.course.id'});
 1856:        if ($allowed) { 
 1857:          &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);
 1858:          $script=&Apache::lonratedt::editscript('simple'); 
 1859:        }
 1860:     } else { # got called in sequence from course
 1861:        $allowed=0;
 1862:        $script='</script>'.&Apache::lonmenu::registerurl(1,undef).'<script>';
 1863:        $events='onLoad="'.&Apache::lonmenu::loadevents.
 1864:            '" onUnload="'.&Apache::lonmenu::unloadevents.'"';
 1865:     }
 1866: 
 1867: # get course data
 1868:     my $coursenum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
 1869:     my $coursedom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
 1870: 
 1871: # get personal data
 1872:  
 1873:     my $uname=$ENV{'user.name'};
 1874:     my $udom=$ENV{'user.domain'};
 1875:     my $plainname=&Apache::lonnet::escape(
 1876:                      &Apache::loncommon::plainname($uname,$udom));
 1877: 
 1878: # graphics settings
 1879: 
 1880:     $iconpath = $r->dir_config('lonIconsURL') . "/";
 1881: 
 1882:     my $now=time;
 1883: 
 1884: # print screen
 1885:     $r->print(<<ENDDOCUMENT);
 1886: <html>
 1887: <head>
 1888: <title>The LearningOnline Network with CAPA</title>
 1889: <script>
 1890: $script
 1891: </script>
 1892: ENDDOCUMENT
 1893:    if ($allowed) {
 1894:     $r->print(<<ENDNEWSCRIPT);
 1895: <script>
 1896: function makenewfolder(targetform,folderseq) {
 1897:     var foldername=prompt('Name of New Folder','New Folder');
 1898:     if (foldername) {
 1899: 	targetform.importdetail.value=foldername+"="+folderseq;
 1900:         targetform.submit();
 1901:     }
 1902: }
 1903: 
 1904: function makenewpage(targetform,folderseq) {
 1905:     var pagename=prompt('Name of New Page','New Page');
 1906:     if (pagename) {
 1907:         targetform.importdetail.value=pagename+"="+folderseq;
 1908:         targetform.submit();
 1909:     }
 1910: }
 1911: 
 1912: function makenewext(targetname) {
 1913:     this.document.forms.extimport.useform.value=targetname;
 1914:     window.open('/adm/rat/extpickframe.html');
 1915: }
 1916: 
 1917: function makeexamupload() {
 1918:    var title=prompt('Listed Title for the Uploaded Score');
 1919:    if (title) { 
 1920:     this.document.forms.newexamupload.importdetail.value=
 1921: 	title+'=/res/lib/templates/examupload.problem';
 1922:     this.document.forms.newexamupload.submit();
 1923:    }
 1924: }
 1925: 
 1926: function makesmppage() {
 1927:    var title=prompt('Listed Title for the Page');
 1928:    if (title) { 
 1929:     this.document.forms.newsmppg.importdetail.value=
 1930: 	title+'=/adm/$udom/$uname/$now/smppg';
 1931:     this.document.forms.newsmppg.submit();
 1932:    }
 1933: }
 1934: 
 1935: function makesmpproblem() {
 1936:    var title=prompt('Listed Title for the Problem');
 1937:    if (title) { 
 1938:     this.document.forms.newsmpproblem.importdetail.value=
 1939: 	title+'=/res/lib/templates/simpleproblem.problem';
 1940:     this.document.forms.newsmpproblem.submit();
 1941:    }
 1942: }
 1943: 
 1944: function makebulboard() {
 1945:    var title=prompt('Listed Title for the Bulletin Board');
 1946:    if (title) {
 1947:     this.document.forms.newbul.importdetail.value=
 1948: 	title+'=/adm/$udom/$uname/$now/bulletinboard';
 1949:     this.document.forms.newbul.submit();
 1950:    }
 1951: }
 1952: 
 1953: function makeabout() {
 1954:    var user=prompt("Enter user\@domain for User's 'About Me' Page");
 1955:    if (user) {
 1956:        var comp=new Array();
 1957:        comp=user.split('\@');
 1958:        if ((typeof(comp[0])!=undefined) && (typeof(comp[1])!=undefined)) {
 1959: 	   if ((comp[0]) && (comp[1])) {
 1960: 	       this.document.forms.newaboutsomeone.importdetail.value=
 1961: 		   'About '+user+'=/adm/'+comp[1]+'/'+comp[0]+'/aboutme';
 1962: 	       this.document.forms.newaboutsomeone.submit();
 1963: 	   }
 1964:        }
 1965:    }
 1966: }
 1967: 
 1968: function makeims() {
 1969:     var caller = document.forms.ims.folder.value
 1970:     var newlocation = "/adm/imsimportdocs?folder="+caller+"&phase=one"
 1971:     newWindow = window.open("","IMSimport","HEIGHT=700,WIDTH=750,scrollbars=yes")
 1972:     newWindow.location.href = newlocation
 1973: }
 1974: 
 1975: 
 1976: function finishpick() {
 1977:     var title=this.document.forms.extimport.title.value;
 1978:     var url=this.document.forms.extimport.url.value;
 1979:     var form=this.document.forms.extimport.useform.value;
 1980:     eval
 1981:      ('this.document.forms.'+form+'.importdetail.value="'+title+'='+url+
 1982:     '";this.document.forms.'+form+'.submit();');
 1983: }
 1984: 
 1985: function changename(folderpath,index,oldtitle,container,pagesymb) {
 1986:     var title=prompt('New Title',oldtitle);
 1987:     if (title) {
 1988: 	this.document.forms.renameform.title.value=title;
 1989: 	this.document.forms.renameform.cmd.value='rename_'+index;
 1990:         if (container == 'sequence') {
 1991: 	    this.document.forms.renameform.folderpath.value=folderpath;
 1992:         }
 1993:         if (container == 'page') {
 1994:             this.document.forms.renameform.pagepath.value=folderpath;
 1995:             this.document.forms.renameform.pagesymb.value=pagesymb;
 1996:         }
 1997:         this.document.forms.renameform.submit();
 1998:     }
 1999: }
 2000: 
 2001: function removeres(folderpath,index,oldtitle,container,pagesymb) {
 2002:     if (confirm('Remove "'+oldtitle+'"?')) {
 2003: 	this.document.forms.renameform.cmd.value='del_'+index;
 2004:         if (container == 'sequence') {
 2005:             this.document.forms.renameform.folderpath.value=folderpath;
 2006:         }
 2007:         if (container == 'page') {
 2008:             this.document.forms.renameform.pagepath.value=folderpath;
 2009:             this.document.forms.renameform.pagesymb.value=pagesymb;
 2010:         }
 2011:         this.document.forms.renameform.submit();
 2012:     }
 2013: }
 2014: 
 2015: </script>
 2016: 
 2017: ENDNEWSCRIPT
 2018:   }
 2019: # -------------------------------------------------------------------- Body tag
 2020:   $r->print('</head>'.
 2021:             &Apache::loncommon::bodytag('Course Documents','',$events,
 2022: 					'','',$showdoc).
 2023: 	    &Apache::loncommon::help_open_menu('','','','',273,'RAT'));
 2024:   unless ($showdoc) {
 2025: # -----------------------------------------------------------------------------
 2026:        my %lt=&Apache::lonlocal::texthash(
 2027:                 'uplm' => 'Upload a new main course document',
 2028:                 'upls' => 'Upload a new supplemental course document',
 2029:                 'impp' => 'Import a published document',
 2030:                 'spec' => 'Special documents',
 2031:                 'upld' => 'Upload Document',
 2032:                 'srch' => 'Search',
 2033:                 'impo' => 'Import',
 2034:                 'selm' => 'Select Map',
 2035:                 'load' => 'Load Map',
 2036:                 'newf' => 'New Folder',
 2037:                 'newp' => 'New Composite Page',
 2038:                 'extr' => 'External Resource',
 2039:                 'syll' => 'Syllabus',
 2040:                 'navc' => 'Navigate Contents',
 2041:                 'sipa' => 'Simple Page',
 2042:                 'sipr' => 'Simple Problem',
 2043:                 'scuf' => 'Score Upload Form',
 2044:                 'bull' => 'Bulletin Board',
 2045:                 'mypi' => 'My Personal Info',
 2046: 		'abou' => 'About User',
 2047:                 'imsf' => 'Import IMS package',
 2048:                 'file' =>  'File',
 2049:                 'title' => 'Title',
 2050:                 'comment' => 'Comment' 
 2051: 					  );
 2052: # -----------------------------------------------------------------------------
 2053:     if ($allowed) {
 2054:        my $dumpbut=&dumpbutton();
 2055:        my $exportbut=&exportbutton();
 2056:        my %lt=&Apache::lonlocal::texthash(
 2057: 					 'vc' => 'Verify Content',
 2058: 					 'cv' => 'Check/Set Resource Versions',
 2059: 					  );
 2060: 
 2061:        my $folderpath=$ENV{'form.folderpath'};
 2062:        if (!$folderpath) {
 2063: 	   if ($ENV{'form.folder'} eq '' ||
 2064: 	       $ENV{'form.folder'} eq 'supplemental') {
 2065: 	       $folderpath='default&'.
 2066: 		   &Apache::lonnet::escape(&mt('Main Course Documents'));
 2067: 	   }
 2068:        }
 2069:        unless ($ENV{'form.pagepath'}) {
 2070:            $containertag = '<input type="hidden" name="folderpath" value="" />';
 2071:            $uploadtag = '<input type="hidden" name="folderpath" value="'.$folderpath.'" />';
 2072:        }
 2073: 
 2074:        $r->print(<<ENDCOURSEVERIFY);
 2075: <form name="renameform" method="post" action="/adm/coursedocs">
 2076: <input type="hidden" name="title" />
 2077: <input type="hidden" name="cmd" />
 2078: $containertag
 2079: </form>
 2080: <form name="simpleedit" method="post" action="/adm/coursedocs">
 2081: <input type=hidden name="importdetail" value="">
 2082: $uploadtag
 2083: </form>
 2084: <form action="/adm/coursedocs" method="post" name="courseverify">
 2085: <table bgcolor="#AAAAAA" width="100%" cellspacing="4" cellpadding="4">
 2086: <tr><td bgcolor="#DDDDCC">
 2087: <input type="submit" name="verify" value="$lt{'vc'}" />$help{'Verify_Content'}
 2088: </td><td bgcolor="#DDDDCC">
 2089:     <input type="submit" name="versions" value="$lt{'cv'}" />$help{'Check_Resource_Versions'}
 2090: $dumpbut
 2091: $exportbut
 2092: </td></tr></table>
 2093: </form>
 2094: ENDCOURSEVERIFY
 2095:        $r->print(&Apache::loncommon::help_open_topic('Docs_Adding_Course_Doc',
 2096: 		     &mt('Editing the Table of Contents for your Course')));
 2097:     }
 2098: # --------------------------------------------------------- Standard documents
 2099:     $r->print('<table border=2 cellspacing=4 cellpadding=4>');
 2100:     if (($standard) && ($allowed) && (!$forcesupplement)) {
 2101: 	$r->print('<tr><td bgcolor="#BBBBBB">');
 2102: #  '<h2>'.&mt('Main Course Documents').
 2103: #  ($allowed?' '.$help{'Main_Course_Documents'}:'').'</h2>');
 2104:        my $folder=$ENV{'form.folder'};
 2105:        if ($folder eq '' || $folder eq 'supplemental') {
 2106:            $folder='default';
 2107: 	   $ENV{'form.folderpath'}='default&'.&Apache::lonnet::escape(&mt('Main Course Documents'));
 2108:        }
 2109:        my $postexec='';
 2110:        if ($folder eq 'default') {
 2111: 	   $r->print('<script>this.window.name="loncapaclient";</script>');
 2112:        } else {
 2113:            #$postexec='self.close();';
 2114:        }
 2115:        $hadchanges=0;
 2116:        &editor($r,$coursenum,$coursedom,$folder,$allowed);
 2117:        if ($hadchanges) {
 2118: 	   &mark_hash_old()
 2119:        }
 2120:        &changewarning($r,$postexec);
 2121:        my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.
 2122:                      '.sequence';
 2123:        my $pageseq = '/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.
 2124:                      '.page';
 2125: 
 2126:        $r->print(<<ENDFORM);
 2127: <table cellspacing=4 cellpadding=4><tr>
 2128: <th bgcolor="#DDDDDD">$lt{'uplm'}</th>
 2129: <th bgcolor="#DDDDDD">$lt{'impp'}</th>
 2130: <th bgcolor="#DDDDDD">$lt{'spec'}</th>
 2131: </tr>
 2132: <tr><td bgcolor="#DDDDDD">
 2133: $lt{'file'}:<br />
 2134: <form action="/adm/coursedocs" method="post" enctype="multipart/form-data">
 2135: <input type="file" name="uploaddoc" size="40">
 2136: <br />
 2137: $lt{'title'}:<br />
 2138: <input type="text" size="50" name="comment">
 2139: $uploadtag
 2140: <input type="hidden" name="cmd" value="upload_default">
 2141: <nobr>
 2142: <input type="submit" value="$lt{'upld'}">
 2143:  $help{'Uploading_From_Harddrive'}
 2144: </nobr>
 2145: </form>
 2146: </td>
 2147: <td bgcolor="#DDDDDD">
 2148: <form action="/adm/coursedocs" method="post" name="simpleeditdefault">
 2149: $uploadtag
 2150: <input type=button onClick="javascript:groupsearch()" value="$lt{'srch'}">
 2151: <nobr>
 2152: <input type=button onClick="javascript:groupimport();" value="$lt{'impo'}">
 2153: $help{'Importing_LON-CAPA_Resource'}
 2154: </nobr>
 2155: <p>
 2156: <hr />
 2157: <input type="text" size="20" name="importmap"><br />
 2158: <nobr><input type=button 
 2159: onClick="javascript:openbrowser('simpleeditdefault','importmap','sequence,page','')"
 2160: value="$lt{'selm'}"> <input type="submit" name="loadmap" value="$lt{'load'}">
 2161: $help{'Load_Map'}</nobr>
 2162: </p>
 2163: </form>
 2164: </td>
 2165: <td bgcolor="#DDDDDD">
 2166: ENDFORM
 2167:        unless ($ENV{'form.pagepath'}) {
 2168:            $r->print(<<ENDFORM);
 2169: <form action="/adm/coursedocs" method="post" name="newfolder">
 2170: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2171: <input type=hidden name="importdetail" value="">
 2172: <nobr>
 2173: <input name="newfolder" type="button"
 2174: onClick="javascript:makenewfolder(this.form,'$folderseq');"
 2175: value="$lt{'newf'}" />$help{'Adding_Folders'}
 2176: </nobr>
 2177: </form>
 2178: <form action="/adm/coursedocs" method="post" name="newpage">
 2179: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2180: <input type=hidden name="importdetail" value="">
 2181: <nobr>
 2182: <input name="newpage" type="button"
 2183: onClick="javascript:makenewpage(this.form,'$pageseq');"
 2184: value="$lt{'newp'}" />$help{'Adding_Pages'}
 2185: </nobr>
 2186: </form>
 2187: <form action="/adm/coursedocs" method="post" name="newext">
 2188: $uploadtag
 2189: <input type=hidden name="importdetail" value="">
 2190: <nobr>
 2191: <input name="newext" type="button" onClick="javascript:makenewext('newext');"
 2192: value="$lt{'extr'}" /> $help{'Adding_External_Resource'}
 2193: </nobr>
 2194: </form>
 2195: <form action="/adm/coursedocs" method="post" name="newsyl">
 2196: $uploadtag
 2197: <input type=hidden name="importdetail" 
 2198: value="Syllabus=/public/$coursedom/$coursenum/syllabus">
 2199: <nobr>
 2200: <input name="newsyl" type="submit" value="$lt{'syll'}" /> 
 2201:  $help{'Syllabus'}
 2202: </nobr>
 2203: </form>
 2204: <form action="/adm/coursedocs" method="post" name="newnav">
 2205: $uploadtag
 2206: <input type=hidden name="importdetail" 
 2207: value="Navigate Content=/adm/navmaps">
 2208: <nobr>
 2209: <input name="newnav" type="submit" value="$lt{'navc'}" />
 2210: $help{'Navigate_Content'}
 2211: </nobr>
 2212: </form>
 2213: <form action="/adm/coursedocs" method="post" name="newsmppg">
 2214: $uploadtag
 2215: <input type=hidden name="importdetail" value="">
 2216: <nobr>
 2217: <input name="newsmppg" type="button" value="$lt{'sipa'}"
 2218: onClick="javascript:makesmppage();" /> $help{'Simple Page'}
 2219: </nobr>
 2220: </form>
 2221: <form action="/adm/coursedocs" method="post" name="newsmpproblem">
 2222: $uploadtag
 2223: <input type=hidden name="importdetail" value="">
 2224: <nobr>
 2225: <input name="newsmpproblem" type="button" value="$lt{'sipr'}"
 2226: onClick="javascript:makesmpproblem();" />$help{'Simple Problem'}
 2227: </nobr>
 2228: </form>
 2229: <form action="/adm/coursedocs" method="post" name="newexamupload">
 2230: $uploadtag
 2231: <input type=hidden name="importdetail" value="">
 2232: <nobr>
 2233: <input name="newexamupload" type="button" value="$lt{'scuf'}"
 2234: onClick="javascript:makeexamupload();" />
 2235: $help{'Score_Upload_Form'}
 2236: </nobr>
 2237: </form>
 2238: <form action="/adm/coursedocs" method="post" name="newbul">
 2239: $uploadtag
 2240: <input type=hidden name="importdetail" value="">
 2241: <nobr>
 2242: <input name="newbulletin" type="button" value="$lt{'bull'}"
 2243: onClick="javascript:makebulboard();" />
 2244: $help{'Bulletin Board'}
 2245: </nobr>
 2246: </form>
 2247: <form action="/adm/coursedocs" method="post" name="newaboutme">
 2248: $uploadtag
 2249: <input type=hidden name="importdetail" 
 2250: value="$plainname=/adm/$udom/$uname/aboutme">
 2251: <nobr>
 2252: <input name="newaboutme" type="submit" value="$lt{'mypi'}" />
 2253: $help{'My Personal Info'}
 2254: </nobr>
 2255: </form>
 2256: <form action="/adm/coursedocs" method="post" name="newaboutsomeone">
 2257: $uploadtag
 2258: <input type=hidden name="importdetail" value="">
 2259: <nobr>
 2260: <input name="newaboutsomeone" type="button" value="$lt{'abou'}" 
 2261: onClick="javascript:makeabout();" />
 2262: </nobr>
 2263: ENDFORM
 2264:        }
 2265:        if ($ENV{'form.pagepath'}) {
 2266:            $r->print(<<ENDBLOCK);
 2267: <form action="/adm/coursedocs" method="post" name="newsmpproblem">
 2268: $uploadtag
 2269: <input type=hidden name="importdetail" value="">
 2270: <nobr>
 2271: <input name="newsmpproblem" type="button" value="$lt{'sipr'}"
 2272: onClick="javascript:makesmpproblem();" />$help{'Simple Problem'}
 2273: </nobr>
 2274: </form>
 2275: <form action="/adm/coursedocs" method="post" name="newexamupload">
 2276: $uploadtag
 2277: <input type=hidden name="importdetail" value="">
 2278: <nobr>
 2279: <input name="newexamupload" type="button" value="$lt{'scuf'}"
 2280: onClick="javascript:makeexamupload();" />
 2281: $help{'Score_Upload_Form'}
 2282: </nobr>
 2283: </form>
 2284: ENDBLOCK
 2285:        } else {
 2286:            $r->print(<<ENDFORM);
 2287: </form>
 2288: <form action="/adm/imsimportdocs" method="post" name="ims">
 2289: <input type="hidden" name="folder" value="$folder" />
 2290: <input name="imsimport" type="button" value="$lt{'imsf'}" onClick="javascript:makeims();" />
 2291: </nobr>
 2292: </form>
 2293: ENDFORM
 2294:        }
 2295:        $r->print('</td></tr>'."\n".
 2296: '</table>');
 2297:        $r->print('</td></tr>');
 2298:     }
 2299: # ----------------------------------------------------- Supplemental documents
 2300:     if (!$forcestandard) {
 2301:        $r->print('<tr><td bgcolor="#BBBBBB">');
 2302: # '<h2>'.&mt('Supplemental Course Documents').
 2303: #  ($allowed?' '.$help{'Supplemental'}:'').'</h2>');
 2304:        my $folder=$ENV{'form.folder'};
 2305:        unless ($folder=~/^supplemental/) {
 2306: 	   $folder='supplemental';
 2307:        }
 2308:        if ($folder =~ /^supplemental$/ &&
 2309: 	   $ENV{'form.folderpath'} =~ /^default\&/) {
 2310: 	   $ENV{'form.folderpath'}='supplemental&'.
 2311: 	       &Apache::lonnet::escape(&mt('Supplemental Course Documents'));
 2312:        }
 2313:        &editor($r,$coursenum,$coursedom,$folder,$allowed);
 2314:        if ($allowed) {
 2315:        my $folderseq=
 2316:                   '/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_'.time.
 2317:                      '.sequence';
 2318: 
 2319:           $r->print(<<ENDSUPFORM);
 2320: <table cellspacing=4 cellpadding=4><tr>
 2321: <th bgcolor="#DDDDDD">$lt{'upls'}</th>
 2322: <th bgcolor="#DDDDDD">$lt{'spec'}</th>
 2323: </tr>
 2324: <tr><td bgcolor="#DDDDDD">
 2325: <form action="/adm/coursedocs" method="post" enctype="multipart/form-data">
 2326: <input type="file" name="uploaddoc" size="40">
 2327: <br />$lt{'comment'}:<br />
 2328: <textarea cols=50 rows=4 name='comment'>
 2329: </textarea>
 2330: <br />
 2331: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2332: <input type="hidden" name="cmd" value="upload_supplemental">
 2333: <nobr>
 2334: <input type="submit" value="$lt{'upld'}">
 2335:  $help{'Uploading_From_Harddrive'}
 2336: </nobr>
 2337: </form>
 2338: </td>
 2339: <td bgcolor="#DDDDDD">
 2340: <form action="/adm/coursedocs" method="post" name="supnewfolder">
 2341: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2342: <input type=hidden name="importdetail" value="">
 2343: <nobr>
 2344: <input name="newfolder" type="button"
 2345: onClick="javascript:makenewfolder(this.form,'$folderseq');"
 2346: value="$lt{'newf'}" /> $help{'Adding_Folders'}
 2347: </nobr>
 2348: </form>
 2349: <form action="/adm/coursedocs" method="post" name="supnewext">
 2350: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2351: <input type=hidden name="importdetail" value="">
 2352: <nobr>
 2353: <input name="newext" type="button" 
 2354: onClick="javascript:makenewext('supnewext');"
 2355: value="$lt{'extr'}" /> $help{'Adding_External_Resource'}
 2356: </nobr>
 2357: </form>
 2358: <form action="/adm/coursedocs" method="post" name="supnewsyl">
 2359: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2360: <input type=hidden name="importdetail" 
 2361: value="Syllabus=/public/$coursedom/$coursenum/syllabus">
 2362: <nobr>
 2363: <input name="newsyl" type="submit" value="$lt{'syll'}" />
 2364: $help{'Syllabus'}
 2365: </nobr>
 2366: </form>
 2367: <form action="/adm/coursedocs" method="post" name="subnewaboutme">
 2368: <input type="hidden" name="folderpath" value="$ENV{'form.folderpath'}" />
 2369: <input type=hidden name="importdetail" 
 2370: value="$plainname=/adm/$udom/$uname/aboutme">
 2371: <nobr>
 2372: <input name="newaboutme" type="submit" value="$lt{'mypi'}" />
 2373: $help{'My Personal Info'}
 2374: </nobr>
 2375: </form>
 2376: </td></tr>
 2377: </table></td></tr>
 2378: ENDSUPFORM
 2379:        }
 2380:     }
 2381:     if ($allowed) {
 2382: 	$r->print('<form name="extimport"><input type="hidden" name="title"><input type="hidden" name="url"><input type="hidden" name="useform"></form>');
 2383:     }
 2384:     $r->print('</table>');
 2385:   } else {
 2386: # -------------------------------------------------------- This is showdoc mode
 2387:       $r->print("<h1>".&mt('Uploaded Document').' - '.
 2388: 		&Apache::lonnet::gettitle($r->uri).'</h1><p>'.
 2389: &mt('It is recommended that you use an up-to-date virus scanner before handling this file.')."</p><p><table>".
 2390:          &entryline(0,&mt("Click to download or use your browser's Save Link function"),$showdoc).'</table></p>');
 2391:   }
 2392:  }
 2393:  $r->print('</body></html>');
 2394:  return OK;
 2395: } 
 2396: 
 2397: 1;
 2398: __END__

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>