Annotation of loncom/interface/londocs.pm, revision 1.47

1.1       www         1: # The LearningOnline Network
1.2       www         2: # Documents
1.1       www         3: #
1.47    ! www         4: # $Id: londocs.pm,v 1.46 2003/01/23 19:00:06 www Exp $
1.1       www         5: #
1.3       www         6: # Copyright Michigan State University Board of Trustees
1.1       www         7: #
1.3       www         8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
1.1       www         9: #
1.3       www        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.
1.1       www        14: #
1.3       www        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: 
1.2       www        29: package Apache::londocs;
1.1       www        30: 
                     31: use strict;
1.28      www        32: use Apache::Constants qw(:common :http);
1.4       www        33: use Apache::lonnet;
                     34: use Apache::loncommon;
1.7       www        35: use Apache::lonratedt;
                     36: use Apache::lonratsrv;
1.15      www        37: use Apache::lonxml;
1.38      www        38: use HTML::Entities;
1.27      www        39: use GDBM_File;
1.7       www        40: 
1.8       www        41: my $iconpath;
1.7       www        42: 
1.27      www        43: my %hash;
                     44: 
                     45: my $hashtied;
1.29      www        46: my %alreadyseen=();
1.27      www        47: 
1.40      www        48: my $hadchanges;
                     49: 
1.47    ! www        50: # Available help topics
        !            51: 
        !            52: my %help=();
        !            53: 
1.7       www        54: # Mapread read maps into lonratedt::global arrays 
1.10      www        55: # @order and @resources, determines status
1.7       www        56: # sets @order - pointer to resources in right order
                     57: # sets @resources - array with the resources with correct idx
                     58: #
                     59: 
                     60: sub mapread {
                     61:     my ($coursenum,$coursedom,$map)=@_;
                     62:     return
                     63:       &Apache::lonratedt::mapread('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
                     64:                                 $map);
                     65: }
                     66: 
                     67: sub storemap {
                     68:     my ($coursenum,$coursedom,$map)=@_;
1.40      www        69:     $hadchanges=1;
1.7       www        70:     return
                     71:       &Apache::lonratedt::storemap('/uploaded/'.$coursedom.'/'.$coursenum.'/'.
1.15      www        72:                                 $map,1);
1.7       www        73: }
                     74: 
                     75: sub editor {
                     76:     my ($r,$coursenum,$coursedom,$folder,$allowed)=@_;
1.17      www        77:     if ($ENV{'form.foldername'}) {
                     78: 	$r->print('<h3>Folder: '.$ENV{'form.foldername'}.'</h3>');
                     79:     }
1.10      www        80:     my $errtext='';
                     81:     my $fatal=0;
                     82:     ($errtext,$fatal)=
1.7       www        83:           &mapread($coursenum,$coursedom,$folder.'.sequence');
1.17      www        84:     if ($#Apache::lonratedt::order<1) {
                     85:        	$Apache::lonratedt::order[0]=1;
                     86:         $Apache::lonratedt::resources[1]='';
                     87:     }
1.7       www        88:     if ($fatal) {
                     89: 	   $r->print('<p><font color="red">'.$errtext.'</font></p>');
                     90:     } else {
                     91: # ------------------------------------------------------------ Process commands
1.16      www        92: # ---------------- if they are for this folder and user allowed to make changes
                     93: 	if (($allowed) && ($ENV{'form.folder'} eq $folder)) {
1.10      www        94: # upload a file, if present
                     95:            if (($ENV{'form.uploaddoc.filename'}) &&
                     96:                ($ENV{'form.cmd'}=~/^upload_(\w+)/)) {
                     97: 	    if ($folder=~/^$1/) {
                     98: # this is for a course, not a user, so set coursedoc flag
                     99: # probably the only place in the system where this should be "1"
                    100: 	      my $url=&Apache::lonnet::userfileupload('uploaddoc',1);
                    101:               my $ext='false';
                    102:               if ($url=~/^http\:\/\//) { $ext='true'; }
                    103:               $url=~s/\:/\&colon;/g;
                    104: 	      my $comment=$ENV{'form.comment'};
                    105:               $comment=~s/\</\&lt\;/g;
                    106:               $comment=~s/\>/\&gt\;/g;
                    107:               $comment=~s/\:/\&colon;/g;
1.17      www       108:               if ($folder=~/^supplemental/) {
                    109: 		  $comment=time.'___&&&___'.$ENV{'user.name'}.'___&&&___'.
                    110: 		      $ENV{'user.domain'}.'___&&&___'.$comment;
                    111:               }
1.10      www       112:               my $newidx=$#Apache::lonratedt::resources+1;
                    113:               $Apache::lonratedt::resources[$newidx]=
                    114:                   $comment.':'.$url.':'.$ext.':normal:res';
                    115:               $Apache::lonratedt::order[$#Apache::lonratedt::order+1]=
                    116:                                                               $newidx;       
                    117:  	      &storemap($coursenum,$coursedom,$folder.'.sequence');
                    118: 	     }
                    119:             }
1.8       www       120: 	    if ($ENV{'form.cmd'}) {
1.10      www       121:                 my ($cmd,$idx)=split(/\_/,$ENV{'form.cmd'});
                    122:                 if ($cmd eq 'del') {
                    123: 		    for (my $i=$idx;$i<$#Apache::lonratedt::order;$i++) {
                    124:                         $Apache::lonratedt::order[$i]=
                    125:                           $Apache::lonratedt::order[$i+1];
                    126:                     }
                    127:                     $#Apache::lonratedt::order--;
                    128:                 } elsif ($cmd eq 'up') {
1.38      www       129: 		  if (($idx) && (defined($Apache::lonratedt::order[$idx-1]))) {
1.10      www       130:                     my $i=$Apache::lonratedt::order[$idx-1];
                    131:                     $Apache::lonratedt::order[$idx-1]=
                    132: 			$Apache::lonratedt::order[$idx];
                    133:                     $Apache::lonratedt::order[$idx]=$i;
1.38      www       134: 		   }
1.10      www       135:                 } elsif ($cmd eq 'down') {
1.38      www       136: 		   if (defined($Apache::lonratedt::order[$idx+1])) {
1.10      www       137:                     my $i=$Apache::lonratedt::order[$idx+1];
                    138:                     $Apache::lonratedt::order[$idx+1]=
                    139: 			$Apache::lonratedt::order[$idx];
                    140:                     $Apache::lonratedt::order[$idx]=$i;
1.38      www       141: 		   }
1.36      www       142:                 } elsif ($cmd eq 'rename') {
                    143:                     my ($rtitle,@rrest)=split(/\:/,
                    144:                        $Apache::lonratedt::resources[
                    145: 				       $Apache::lonratedt::order[$idx]]);
1.38      www       146:                     my $comment=
                    147:                      &HTML::Entities::decode($ENV{'form.title'});
1.36      www       148:                     $comment=~s/\</\&lt\;/g;
                    149:                     $comment=~s/\>/\&gt\;/g;
                    150:                     $comment=~s/\:/\&colon;/g;
                    151:                     $Apache::lonratedt::resources[
                    152: 				       $Apache::lonratedt::order[$idx]]=
                    153:                              $comment.':'.join(':',@rrest);
                    154:                     
1.10      www       155:                 }
                    156: # Store the changed version
                    157: 		&storemap($coursenum,$coursedom,$folder.'.sequence');
1.8       www       158:             }
1.11      www       159: # Group import/search
                    160: 	    if ($ENV{'form.importdetail'}) {
                    161:                foreach (split(/\&/,$ENV{'form.importdetail'})) {
                    162:                   if (defined($_)) {
                    163: 	             my ($name,$url)=split(/\=/,$_);
                    164:                      $name=&Apache::lonnet::unescape($name);
                    165:                      $url=&Apache::lonnet::unescape($url);
                    166:                      if ($url) {
                    167: 	                my $idx=$#Apache::lonratedt::resources+1;
                    168:                         $Apache::lonratedt::order
                    169:                            [$#Apache::lonratedt::order+1]=$idx;
                    170:                         my $ext='false';
                    171:                         if ($url=~/^http\:\/\//) { $ext='true'; }
                    172:                         $url=~s/\:/\&colon;/g;
1.46      www       173:                         $name=~s/\:/\&colon;/g;
1.11      www       174:                         $Apache::lonratedt::resources[$idx]=
                    175:                            $name.':'.$url.':'.$ext.':normal:res';
                    176: 	             }
                    177:                  }
                    178: 	      }
                    179: # Store the changed version
                    180: 		&storemap($coursenum,$coursedom,$folder.'.sequence');
                    181:             }
1.16      www       182:        }
                    183: # ---------------------------------------------------------------- End commands
1.7       www       184: # ---------------------------------------------------------------- Print screen
1.10      www       185:         my $idx=0;
                    186:         $r->print('<table>');
                    187:         foreach (@Apache::lonratedt::order) {
                    188:            my ($name,$url)=split(/\:/,$Apache::lonratedt::resources[$_]);
                    189:            unless ($name) {  $name=(split(/\//,$url))[-1]; }
1.37      www       190:            unless ($name) { $name='NO RESOURCE'; $url='/adm/notfound.html'; }
1.10      www       191:            $r->print(&entryline($idx,$name,$url,$folder,$allowed));
                    192:            $idx++;
                    193:         }
                    194:         $r->print('</table>');
1.7       www       195:     }
                    196: }
1.1       www       197: 
1.8       www       198: # --------------------------------------------------------------- An entry line
                    199: 
                    200: sub entryline {
                    201:     my ($index,$title,$url,$folder,$allowed)=@_;
1.38      www       202:     $title=~s/\&colon\;/\:/g;
                    203:     $title=&HTML::Entities::encode(&HTML::Entities::decode(
                    204:      &Apache::lonnet::unescape($title)),'\"\<\>\&\'');
                    205:     my $renametitle=$title;
                    206:     my $foldertitle=$title;
                    207:     if ($title=~
                    208:  /^(\d+)\_\_\_\&amp\;\&amp\;\&amp\;\_\_\_(\w+)\_\_\_\&amp\;\&amp\;\&amp\;\_\_\_(\w+)\_\_\_\&amp\;\&amp\;\&amp\;\_\_\_(.*)$/
                    209: 	) { 
                    210:             $foldertitle=&Apache::lontexconvert::msgtexconverted($4);
                    211:             $renametitle=$4;
                    212:             $title='<i>'.localtime($1).'</i> '.
                    213:                 &Apache::loncommon::plainname($2,$3).': <br>'.
                    214: 		$foldertitle;
                    215: 	}
                    216:     $renametitle=~s/\&quot\;/\\\"/g;
1.8       www       217:     my $line='<tr>';
                    218: # Edit commands
                    219:     if ($allowed) {
                    220:        $line.=(<<END);
                    221: <td><table border='0' cellspacing='0' cellpadding='0'>
                    222: <tr><td><a href='/adm/coursedocs?folder=$folder&cmd=up_$index'>
                    223: <img src="${iconpath}move_up.gif" alt='UP' border='0' /></a></td></tr>
                    224: <tr><td><a href='/adm/coursedocs?folder=$folder&cmd=down_$index'>
                    225: <img src="${iconpath}move_down.gif" alt='DOWN' border='0' /></a></td></tr>
                    226: </table></td><td>
1.36      www       227: <a href='/adm/coursedocs?folder=$folder&cmd=del_$index'>
                    228: <font size="-2">Remove</font></a>
1.38      www       229: <a href='javascript:changename("$folder","$index","$renametitle");'>
1.36      www       230: <font size="-2">Rename</font></a></td>
1.8       www       231: END
                    232:     }
1.16      www       233: # Figure out what kind of a resource this is
                    234:     my ($extension)=($url=~/\.(\w+)$/);
                    235:     my $uploaded=($url=~/^\/*uploaded\//);
                    236:     my $icon='unknown';
                    237:     if (-e "/home/httpd/html/adm/lonIcons/$extension.gif") {
                    238: 	$icon=$extension;
1.10      www       239:     }
1.17      www       240:     my $isfolder=0;
1.16      www       241:     if ($uploaded) {
                    242:        if ($extension eq 'sequence') {
                    243: 	  $icon='folder_closed';
                    244:           $url=~/\/(\w+)\.sequence/;
                    245:           $url='/adm/coursedocs?folder='.$1;
1.17      www       246:           $isfolder=1;
1.16      www       247:        } else {
                    248: 	  $url=&Apache::lonnet::tokenwrapper($url);
                    249:        } 
                    250:     }
1.18      www       251:     $url=~s/^http\&colon\;\/\//\/adm\/wrapper\/ext\//;
1.17      www       252:     if ($isfolder) { $url.='&foldername='.$foldertitle; }
1.23      www       253:     $line.='<td bgcolor="#FFFFBB"><a href="'.$url.'" target="cat_'.$folder.
                    254: '"><img src="/adm/lonIcons/'.
1.17      www       255:         $icon.'.gif" border="0"></a></td>'.
1.23      www       256:         "<td bgcolor='#FFFFBB'><a href='$url' target='cat_$folder'>$title</a></td></tr>";
1.8       www       257:     return $line;
                    258: }
                    259: 
1.27      www       260: # ---------------------------------------------------------------- tie the hash
                    261: 
                    262: sub tiehash {
                    263:     $hashtied=0;
                    264:     if ($ENV{'request.course.fn'}) {
                    265:         if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db",
                    266:             &GDBM_READER(),0640)) {
                    267:                 $hashtied=1;
                    268:         }
                    269:     }    
                    270: }
                    271: 
                    272: sub untiehash {
                    273:     if ($hashtied) { untie %hash; }
                    274:     $hashtied=0;
                    275: }
                    276: 
1.29      www       277: # --------------------------------------------------------------- check on this
                    278: 
                    279: sub checkonthis {
                    280:     my ($r,$url,$level,$title)=@_;
                    281:     $alreadyseen{$url}=1;
                    282:     $r->rflush();
1.41      www       283:     if (($url) && ($url!~/^\/uploaded\//) && ($url!~/\*$/)) {
1.29      www       284:        $r->print('<br />');
                    285:        for (my $i=0;$i<=$level*5;$i++) {
                    286:            $r->print('&nbsp;');
                    287:        }
                    288:        $r->print('<a href="'.$url.'" target="cat">'.
                    289: 		 ($title?$title:$url).'</a> ');
                    290:        if ($url=~/^\/res\//) {
                    291: 	  my $result=&Apache::lonnet::repcopy(
                    292:                               &Apache::lonnet::filelocation('',$url));
                    293:           if ($result==OK) {
                    294:              $r->print('<font color="green">ok</font>');
                    295:              $r->rflush();
1.34      www       296:              &Apache::lonnet::countacc($url);
                    297:              $url=~/\.(\w+)$/;
                    298:              if (&Apache::loncommon::fileembstyle($1) eq 'ssi') {
                    299: 		 $r->print('<br />');
                    300:                  $r->rflush();
                    301:                  for (my $i=0;$i<=$level*5;$i++) {
                    302:                      $r->print('&nbsp;');
                    303:                  }
                    304:                  $r->print('- Rendering: ');
                    305:                  &Apache::lonxml::xmlparse($r,'web',
                    306:                    &Apache::lonnet::getfile(
1.35      albertel  307:                     &Apache::lonnet::filelocation('',$url)));
1.34      www       308:                  if (($Apache::lonxml::errorcount) ||
                    309:                      ($Apache::lonxml::warningcount)) {
                    310: 		     if ($Apache::lonxml::errorcount) {
                    311:                         $r->print('<font color="red"><b>'.
                    312: 			  $Apache::lonxml::errorcount.' error(s)</b></font> ');
                    313:                      }
                    314: 		     if ($Apache::lonxml::warningcount) {
                    315:                         $r->print('<font color="blue">'.
                    316: 			  $Apache::lonxml::warningcount.' warning(s)</font>');
                    317:                      }
                    318:                  } else {
                    319:                      $r->print('<font color="green">ok</font>');
                    320:                  }
                    321:                  $r->rflush();
                    322:              }
1.29      www       323: 	     my $dependencies=
                    324:                 &Apache::lonnet::metadata($url,'dependencies');
                    325:              foreach (split(/\,/,$dependencies)) {
                    326: 		 if (($_=~/^\/res\//) && (!$alreadyseen{$_})) {
                    327:                     &checkonthis($r,$_,$level+1);
                    328:                  }
                    329:              }
                    330:           } elsif ($result==HTTP_SERVICE_UNAVAILABLE) {
                    331:              $r->print('<font color="red"><b>connection down</b></font>');
                    332:           } elsif ($result==HTTP_NOT_FOUND) {
                    333:              $r->print('<font color="red"><b>not found</b></font>');
                    334:           } else {
                    335:              $r->print('<font color="red"><b>access denied</b></font>');
                    336:           }
                    337:       }
                    338:    }
                    339: }
                    340: 
1.8       www       341: # ================================================================ Main Handler
1.1       www       342: sub handler {
                    343:     my $r = shift;
                    344:     $r->content_type('text/html');
                    345:     $r->send_http_header;
                    346:     return OK if $r->header_only;
                    347: 
1.47    ! www       348: # --------------------------------------------- Initialize help topics for this
        !           349:   foreach ('Adding_Course_Doc','Main_Course_Documents',
        !           350:            'Adding_External_Resource','Navigate_Content',
        !           351:            'Adding_Folders','Docs_Overview',
        !           352:            'Creating_From_Template','Supplemental',
        !           353:            'Importing_LON-CAPA_Resource','Uploading_From_Harddrive') {
        !           354:       $help{$_}=&Apache::loncommon::help_open_topic('Docs_'.$_);
        !           355:   }
        !           356: 
1.26      www       357:   if ($ENV{'form.verify'}) {
                    358:  
                    359:    my $loaderror=&Apache::lonnet::overloaderror($r);
                    360:    if ($loaderror) { return $loaderror; }
                    361: 
                    362:    $r->print('<html><head><title>Verify Content</title></head>'.
                    363:               &Apache::loncommon::bodytag('Verify Course Documents'));
1.27      www       364:    $hashtied=0;
1.30      www       365:    undef %alreadyseen;
                    366:    %alreadyseen=();
1.27      www       367:    &tiehash();
                    368:    foreach (keys %hash) {
1.28      www       369:        if (($_=~/^src\_(.+)$/) && (!$alreadyseen{$hash{$_}})) {
1.29      www       370:            &checkonthis($r,$hash{$_},0,$hash{'title_'.$1});
1.27      www       371:        }
                    372:    }
                    373:    &untiehash();
1.26      www       374:   } elsif ($ENV{'form.versions'}) {
                    375:     $r->print('<html><head><title>Check Versions</title></head>'.
                    376:               &Apache::loncommon::bodytag('Check Course Document Versions'));
1.27      www       377:    $hashtied=0;
                    378:    &tiehash();
1.30      www       379:    my %changes=&Apache::lonnet::dump
                    380:     ('versionupdate',$ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
                    381:                      $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
1.31      www       382:    my $firstkey=(keys %changes)[0];
                    383:    unless ($firstkey=~/^error\:/) {
                    384:        unless ($ENV{'form.timerange'}) {
                    385: 	   $ENV{'form.timerange'}=604800;
                    386:        }
                    387:        my $seltext='during the last '.$ENV{'form.timerange'}.' seconds';
                    388:        my $startsel='';
                    389:        my $monthsel='';
                    390:        my $weeksel='';
                    391:        my $daysel='';
                    392:        if ($ENV{'form.timerange'}==-1) {
                    393: 	   $seltext='since start of course';
                    394:            $startsel='selected';
1.32      www       395:            $ENV{'form.timerange'}=time;
                    396:        }
                    397:        my $starttime=time-$ENV{'form.timerange'};
                    398:        if ($ENV{'form.timerange'}==2592000) {
                    399:            $seltext='during the last month ('.localtime($starttime).')';
1.31      www       400:            $monthsel='selected';
                    401:        } elsif ($ENV{'form.timerange'}==604800) {
1.32      www       402:            $seltext='during the last week ('.localtime($starttime).')';
1.31      www       403:            $weeksel='selected';
                    404:        } elsif ($ENV{'form.timerange'}==86400) {
1.32      www       405:            $seltext='since yesterday ('.localtime($starttime).')';
1.31      www       406:            $daysel='selected';
                    407:        }
1.32      www       408:  
1.31      www       409:        $r->print(<<ENDHEADERS);
                    410: <form action="/adm/coursedocs" method="post">
                    411: <select name="timerange">
                    412: <option value="-1" $startsel>Since Start of Course</option>
                    413: <option value="2592000" $monthsel>Last Month</option>
                    414: <option value="604800" $weeksel>Last Week</option>
                    415: <option value="86400" $daysel>Since Yesterday</option>
                    416: </select>
                    417: <input type="submit" name="versions" value="Display" />
                    418: </form>
1.32      www       419: <h3>Content changed $seltext</h3>
1.31      www       420: <table border="2">
                    421: <tr>
                    422: <th>File</th><th>Modification Date</th>
                    423: <th>Version</th><th>Differences</th></tr>
                    424: ENDHEADERS
                    425:        foreach (keys %changes) {
1.32      www       426: 	  if ($changes{$_}>$starttime) {
                    427: 	     my ($root,$extension)=($_=~/^(.*)\.(\w+)$/);
                    428:              my $currentversion=&Apache::lonnet::getversion($_);
                    429:              my $linkurl=&Apache::lonnet::clutter($_);
                    430:              $r->print(
                    431:                  '<tr><td><a href="'.$linkurl.'" target="cat">'.$linkurl.
                    432:                  '</a></td><td>'.
                    433:                  localtime($changes{$_}).'</td><td>'.$currentversion.'</td>'.
                    434: 		       '<td>');
                    435:              my $lastold=1;
                    436:              for (my $prevvers=1;$prevvers<$currentversion;$prevvers++) {
                    437:                  my $url=$root.'.'.$prevvers.'.'.$extension;
                    438:                  if (&Apache::lonnet::metadata($url,'lastrevisiondate')<
                    439:                                                              $starttime) {
                    440:                      $lastold=$prevvers;
                    441:                  }
                    442:              }
                    443:             for (my $prevvers=$lastold;$prevvers<$currentversion;$prevvers++) {
                    444:                  my $url=$root.'.'.$prevvers.'.'.$extension;
                    445:                  $r->print('<a href="'.&Apache::lonnet::clutter($url).
                    446:                    '">Version '.$prevvers.' ('.
                    447:                  localtime(&Apache::lonnet::metadata($url,'lastrevisiondate')).
1.33      www       448:                  ')</a>');
                    449:                  if (&Apache::loncommon::fileembstyle($extension) eq 'ssi') {
                    450:                     $r->print(' <a href="/adm/diff?filename='.
                    451:                             &Apache::lonnet::clutter($root.'.'.$extension).
                    452:                             '&versionone='.$prevvers.
                    453: 			     '">Diffs</a>');
                    454:                  }
                    455:                  $r->print('<br />');
1.32      www       456:              }
                    457:              $r->print('</td></tr>');
                    458:           }
1.31      www       459:        }
                    460:        $r->print('</table>');
                    461:    } else {
                    462:        $r->print('<p>No content modifications yet.</p>');
1.30      www       463:    }
1.27      www       464:    &untiehash();
1.26      www       465:   } else {
1.7       www       466: # is this a standard course?
                    467: 
                    468:     my $standard=($ENV{'request.course.uri'}=~/^\/uploaded\//);
1.15      www       469:     my $forcestandard;
                    470:     my $forcesupplement;
                    471:     my $script='';
                    472:     my $allowed;
                    473:     my $events='';
1.19      www       474:     my $showdoc=0;
1.15      www       475:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.21      www       476:        ['folder','foldername']);
                    477:     if ($r->uri=~/^\/adm\/coursedocs\/showdoc\/(.*)$/) {
                    478:        $showdoc=$1;
                    479:     }
                    480:     unless ($showdoc) { # got called from remote
1.15      www       481:        $forcestandard=($ENV{'form.folder'}=~/^default_/);
                    482:        $forcesupplement=($ENV{'form.folder'}=~/^supplemental_/);
1.7       www       483: 
1.4       www       484: # does this user have privileges to post, etc?
1.15      www       485:        $allowed=&Apache::lonnet::allowed('srm',$ENV{'request.course.id'});
                    486:        if ($allowed) { 
                    487:          &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['cmd']);
                    488:          $script=&Apache::lonratedt::editscript('simple'); 
                    489:        }
                    490:     } else { # got called in sequence from course
                    491:        $allowed=0;
1.21      www       492:        $script='</script>'.&Apache::lonxml::registerurl(1,undef).'<script>';
1.15      www       493:        $events='onLoad="'.&Apache::lonxml::loadevents.
                    494:            '" onUnload="'.&Apache::lonxml::unloadevents.'"';
1.3       www       495:     }
1.4       www       496: 
                    497: # get course data
                    498:     my $coursenum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                    499:     my $coursedom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                    500: 
1.14      www       501: # get personal data
                    502:  
                    503:     my $uname=$ENV{'user.name'};
                    504:     my $udom=$ENV{'user.domain'};
                    505:     my $plainname=&Apache::lonnet::escape(
                    506:                      &Apache::loncommon::plainname($uname,$udom));
                    507: 
1.8       www       508: # graphics settings
1.4       www       509: 
1.8       www       510:     $iconpath = $r->dir_config('lonIconsURL') . "/";
                    511: 
1.22      www       512:     my $now=time;
                    513: 
1.4       www       514: # print screen
1.1       www       515:     $r->print(<<ENDDOCUMENT);
                    516: <html>
                    517: <head>
                    518: <title>The LearningOnline Network with CAPA</title>
1.16      www       519: <script>
                    520: $script
1.20      www       521: </script>
1.19      www       522: ENDDOCUMENT
                    523:    if ($allowed) {
                    524:     $r->print(<<ENDNEWSCRIPT);
1.20      www       525: <script>
1.16      www       526: function makenewfolder(targetform,folderseq) {
                    527:     var foldername=prompt('Name of New Folder','New Folder');
                    528:     if (foldername) {
                    529: 	targetform.importdetail.value=foldername+"="+folderseq;
                    530:         targetform.submit();
                    531:     }
                    532: }
                    533: 
1.18      www       534: function makenewext(targetname) {
                    535:     this.document.forms.extimport.useform.value=targetname;
                    536:     window.open('/adm/rat/extpickframe.html');
                    537: }
                    538: 
1.22      www       539: function makesmppage() {
1.38      www       540:    var title=prompt('Listed Title for the Page');
                    541:    if (title) { 
1.22      www       542:     this.document.forms.newsmppg.importdetail.value=
                    543: 	title+'=/adm/$udom/$uname/$now/smppg';
                    544:     this.document.forms.newsmppg.submit();
1.38      www       545:    }
1.22      www       546: }
                    547: 
                    548: function makebulboard() {
1.38      www       549:    var title=prompt('Listed Title for the Bulletin Board');
                    550:    if (title) {
1.22      www       551:     this.document.forms.newbul.importdetail.value=
                    552: 	title+'=/adm/$udom/$uname/$now/bulletinboard';
                    553:     this.document.forms.newbul.submit();
1.38      www       554:    }
1.22      www       555: }
                    556: 
1.18      www       557: function finishpick() {
                    558:     var title=this.document.forms.extimport.title.value;
                    559:     var url=this.document.forms.extimport.url.value;
                    560:     var form=this.document.forms.extimport.useform.value;
                    561:     eval
                    562:      ('this.document.forms.'+form+'.importdetail.value="'+title+'='+url+
                    563:     '";this.document.forms.'+form+'.submit();');
1.16      www       564: }
1.36      www       565: 
                    566: function changename(folder,index,oldtitle) {
                    567:     var title=prompt('New Title',oldtitle);
                    568:     if (title) {
                    569: 	this.document.forms.renameform.title.value=title;
                    570: 	this.document.forms.renameform.cmd.value='rename_'+index;
                    571: 	this.document.forms.renameform.folder.value=folder;
                    572:         this.document.forms.renameform.submit();
                    573:     }
                    574: }
1.16      www       575: </script>
1.42      www       576: 
                    577: ENDNEWSCRIPT
                    578:   }
                    579: # -------------------------------------------------------------------- Body tag
                    580:   $r->print('</head>'.
                    581:             &Apache::loncommon::bodytag('Course Documents','',$events));
                    582:   unless ($showdoc) {
                    583:     if ($allowed) {
1.47    ! www       584:        $r->print(&Apache::loncommon::help_open_topic('Docs_Adding_Course_Doc',
        !           585: 		     'Editing the Table of Contents for your Course'));
1.42      www       586:        $r->print(<<ENDCOURSEVERIFY);
1.36      www       587: <form name="renameform" method="post" action="/adm/coursedocs">
                    588: <input type="hidden" name="title" />
                    589: <input type="hidden" name="cmd" />
                    590: <input type="hidden" name="folder" />
                    591: </form>
1.39      www       592: <form name="simpleedit" method="post" action="/adm/coursedocs">
                    593: <input type=hidden name="importdetail" value="">
                    594: <input type="hidden" name="folder" />
                    595: </form>
1.26      www       596: <form action="/adm/coursedocs" method="post" name="courseverify">
1.25      www       597: <input type="submit" name="verify" value="Verify Content" />
                    598: <input type="submit" name="versions" value="Check Resource Versions" />
                    599: </form>
                    600: ENDCOURSEVERIFY
                    601:     }
1.17      www       602: # --------------------------------------------------------- Standard documents
1.43      www       603:     $r->print('<table border=2 cellspacing=4 cellpadding=4>');
1.7       www       604:     if (($standard) && ($allowed) && (!$forcesupplement)) {
1.47    ! www       605:        $r->print('<tr><td bgcolor="#BBBBBB"><h2>Main Course Documents'.
        !           606:   ($allowed?' '.$help{'Main_Course_Documents'}:'').'</h2>');
1.7       www       607:        my $folder=$ENV{'form.folder'};
1.10      www       608:        unless ($folder=~/^default/) { $folder='default'; }
1.40      www       609:        $hadchanges=0;
1.7       www       610:        &editor($r,$coursenum,$coursedom,$folder,$allowed);
1.40      www       611:        if ($hadchanges) {
1.44      www       612: 	   $r->print('<form method="post" action="/adm/roles">'.
1.45      www       613: '<input type=hidden name=orgurl value="/adm/coursedocs" /><input type=hidden name=selectrole value=1 /><h3><font color="red">Changes will become active for your current session after <input type="submit" name="'.
                    614: $ENV{'request.role'}.'" value="re-initializing course" />, or the next time you log in.</font></h3></form>');
1.40      www       615:        }
1.16      www       616:        my $folderseq='/uploaded/'.$coursedom.'/'.$coursenum.'/default_'.time.
                    617:                      '.sequence';
1.47    ! www       618: 
1.8       www       619:        $r->print(<<ENDFORM);
1.43      www       620: <table cellspacing=4 cellpadding=4><tr>
1.16      www       621: <th bgcolor="#DDDDDD">Upload a new main course document</th>
                    622: <th bgcolor="#DDDDDD">Import a published document</th>
                    623: <th bgcolor="#DDDDDD">Special documents</th>
1.11      www       624: </tr>
1.16      www       625: <tr><td bgcolor="#DDDDDD">
1.11      www       626: File:<br />
1.10      www       627: <form action="/adm/coursedocs" method="post" enctype="multipart/form-data">
1.8       www       628: <input type="file" name="uploaddoc" size="50">
                    629: <br />
1.11      www       630: Title:<br /> 
                    631: <input type="text" size="50" name="comment">
1.8       www       632: <input type="hidden" name="folder" value="$folder">
1.17      www       633: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.10      www       634: <input type="hidden" name="cmd" value="upload_default">
1.8       www       635: <input type="submit" value="Upload Document">
1.47    ! www       636:  $help{'Uploading_From_Harddrive'}</form>
1.11      www       637: </td>
1.16      www       638: <td bgcolor="#DDDDDD">
1.39      www       639: <form action="/adm/coursedocs" method="post" name="simpleeditdefault">
1.11      www       640: <input type=button onClick=
1.39      www       641: "javascript:document.forms.simpleedit.folder.value='$folder';groupsearch()" value="Search">
1.11      www       642: <input type=button onClick=
1.39      www       643: "javascript:document.forms.simpleedit.folder.value='$folder';groupimport();" value="Import">
1.47    ! www       644: $help{'Importing_LON-CAPA_Resource'}</form>
1.16      www       645: </td><td bgcolor="#DDDDDD">
1.11      www       646: <form action="/adm/coursedocs" method="post" name="newfolder">
1.16      www       647: <input type="hidden" name="folder" value="$folder">
1.17      www       648: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.13      www       649: <input type=hidden name="importdetail" value="">
1.16      www       650: <input name="newfolder" type="button"
                    651: onClick="javascript:makenewfolder(this.form,'$folderseq');"
1.47    ! www       652: value="New Folder" /> $help{'Adding_Folders'}
1.11      www       653: </form>
                    654: <form action="/adm/coursedocs" method="post" name="newext">
1.16      www       655: <input type="hidden" name="folder" value="$folder">
1.17      www       656: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.13      www       657: <input type=hidden name="importdetail" value="">
1.18      www       658: <input name="newext" type="button" onClick="javascript:makenewext('newext');"
1.47    ! www       659: value="External Resource" /> $help{'Adding_External_Resource'}
1.11      www       660: </form>
                    661: <form action="/adm/coursedocs" method="post" name="newsyl">
1.16      www       662: <input type="hidden" name="folder" value="$folder">
1.17      www       663: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.14      www       664: <input type=hidden name="importdetail" 
                    665: value="Syllabus=/public/$coursedom/$coursenum/syllabus">
1.47    ! www       666: <input name="newsyl" type="submit" value="Syllabus" /> 
        !           667:  $help{'Creating_From_Template'}</form>
1.17      www       668: <form action="/adm/coursedocs" method="post" name="newnav">
1.20      www       669: <input type="hidden" name="folder" value="$folder">
                    670: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.15      www       671: <input type=hidden name="importdetail" 
                    672: value="Navigate Content=/adm/navmaps">
1.20      www       673: <input name="newnav" type="submit" value="Navigate Content" />
1.47    ! www       674: $help{'Navigate_Content'}
1.22      www       675: </form>
                    676: <form action="/adm/coursedocs" method="post" name="newsmppg">
                    677: <input type="hidden" name="folder" value="$folder">
                    678: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    679: <input type=hidden name="importdetail" value="">
                    680: <input name="newsmppg" type="button" value="Simple Page"
1.47    ! www       681: onClick="javascript:makesmppage();" /> $help{'Creating_From_Template'}
1.22      www       682: </form>
                    683: <form action="/adm/coursedocs" method="post" name="newbul">
                    684: <input type="hidden" name="folder" value="$folder">
                    685: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    686: <input type=hidden name="importdetail" value="">
                    687: <input name="newbulletin" type="button" value="Bulletin Board"
                    688: onClick="javascript:makebulboard();" />
1.47    ! www       689: $help{'Creating_From_Template'}</form>
1.12      www       690: <form action="/adm/coursedocs" method="post" name="newaboutme">
1.16      www       691: <input type="hidden" name="folder" value="$folder">
1.17      www       692: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.14      www       693: <input type=hidden name="importdetail" 
                    694: value="$plainname=/adm/$udom/$uname/aboutme">
1.16      www       695: <input name="newaboutme" type="submit" value="My Personal Info" />
1.47    ! www       696: $help{'Creating_From_Template'}</form>
1.11      www       697: </td></tr>
                    698: </table>
1.8       www       699: ENDFORM
1.24      www       700:        $r->print('</td></tr>');
1.7       www       701:     }
                    702: # ----------------------------------------------------- Supplemental documents
                    703:     if (!$forcestandard) {
1.24      www       704:        $r->print(
1.47    ! www       705:   '<tr><td bgcolor="#BBBBBB"><h2>Supplemental Course Documents'.
        !           706:   ($allowed?' '.$help{'Supplemental'}:'').'</h2>');
1.7       www       707:        my $folder=$ENV{'form.folder'};
1.10      www       708:        unless ($folder=~/supplemental/) { $folder='supplemental'; }
1.7       www       709:        &editor($r,$coursenum,$coursedom,$folder,$allowed);
1.8       www       710:        if ($allowed) {
1.17      www       711:        my $folderseq=
                    712:                   '/uploaded/'.$coursedom.'/'.$coursenum.'/supplemental_'.time.
                    713:                      '.sequence';
                    714: 
1.8       www       715:           $r->print(<<ENDSUPFORM);
1.43      www       716: <table cellspacing=4 cellpadding=4><tr>
1.17      www       717: <th bgcolor="#DDDDDD">Upload a new supplemental course document</th>
                    718: <th bgcolor="#DDDDDD">Import a published document</th>
                    719: <th bgcolor="#DDDDDD">Special documents</th>
                    720: </tr>
                    721: <tr><td bgcolor="#DDDDDD">
1.10      www       722: <form action="/adm/coursedocs" method="post" enctype="multipart/form-data">
1.4       www       723: <input type="file" name="uploaddoc" size="50">
                    724: <br />Comment:<br />
                    725: <textarea cols=50 rows=4 name='comment'>
                    726: </textarea>
1.8       www       727: <input type="hidden" name="folder" value="$folder">
1.17      www       728: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
1.10      www       729: <input type="hidden" name="cmd" value="upload_supplemental">
1.3       www       730: <input type="submit" value="Upload Document">
1.47    ! www       731:  $help{'Uploading_From_Harddrive'}</form>
1.17      www       732: </td>
                    733: <td bgcolor="#DDDDDD">
1.39      www       734: <form action="/adm/coursedocs" method="post" name="simpleeditsupplement">
1.17      www       735: <input type=hidden name="importdetail" value="">
                    736: <input type=button onClick=
1.39      www       737: "javascript:document.forms.simpleedit.folder.value='$folder';groupsearch()" value="Search">
1.17      www       738: <input type=button onClick=
1.47    ! www       739: "javascript:document.forms.simpleedit.folder.value='$folder';groupimport();" value="Import">$help{'Importing_LON-CAPA_Resource'}
1.17      www       740: </form>
                    741: </td><td bgcolor="#DDDDDD">
1.18      www       742: <form action="/adm/coursedocs" method="post" name="supnewfolder">
1.17      www       743: <input type="hidden" name="folder" value="$folder">
                    744: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    745: <input type=hidden name="importdetail" value="">
                    746: <input name="newfolder" type="button"
                    747: onClick="javascript:makenewfolder(this.form,'$folderseq');"
1.47    ! www       748: value="New Folder" /> $help{'Adding_Folders'}
1.17      www       749: </form>
1.18      www       750: <form action="/adm/coursedocs" method="post" name="supnewext">
1.17      www       751: <input type="hidden" name="folder" value="$folder">
                    752: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    753: <input type=hidden name="importdetail" value="">
1.18      www       754: <input name="newext" type="button" 
                    755: onClick="javascript:makenewext('supnewext');"
1.47    ! www       756: value="External Resource" /> $help{'Adding_External_Resource'}
1.17      www       757: </form>
1.18      www       758: <form action="/adm/coursedocs" method="post" name="supnewsyl">
1.17      www       759: <input type="hidden" name="folder" value="$folder">
                    760: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    761: <input type=hidden name="importdetail" 
                    762: value="Syllabus=/public/$coursedom/$coursenum/syllabus">
                    763: <input name="newsyl" type="submit" value="Syllabus" />
1.47    ! www       764: $help{'Creating_From_Template'}</form>
1.18      www       765: <form action="/adm/coursedocs" method="post" name="subnewaboutme">
1.17      www       766: <input type="hidden" name="folder" value="$folder">
                    767: <input type="hidden" name="foldername" value="$ENV{'form.foldername'}">
                    768: <input type=hidden name="importdetail" 
                    769: value="$plainname=/adm/$udom/$uname/aboutme">
                    770: <input name="newaboutme" type="submit" value="My Personal Info" />
1.47    ! www       771: $help{'Creating_From_Template'}</form>
1.17      www       772: </td></tr>
1.24      www       773: </table></td></tr>
1.8       www       774: ENDSUPFORM
                    775:        }
1.7       www       776:     }
1.18      www       777:     if ($allowed) {
                    778: 	$r->print('<form name="extimport"><input type="hidden" name="title"><input type="hidden" name="url"><input type="hidden" name="useform"></form>');
                    779:     }
1.24      www       780:     $r->print('</table>');
1.19      www       781:   } else {
                    782: # -------------------------------------------------------- This is showdoc mode
                    783:       $r->print("<h1>Uploaded Document</h1><p>It is recommended that you use an up-to-date virus scanner before handling this file.</p><p><table>".
1.21      www       784:          &entryline(0,"Click to download or use your browser's Save Link function",$showdoc).'</table></p>');
1.19      www       785:   }
1.26      www       786:  }
                    787:  $r->print('</body></html>');
                    788:  return OK;
1.1       www       789: } 
                    790: 
                    791: 1;
                    792: __END__

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