File:  [LON-CAPA] / rat / lonratedt.pm
Revision 1.37: download - view: text, annotated - select for diffs
Thu Oct 3 15:07:25 2002 UTC (21 years, 7 months ago) by www
Branches: MAIN
CVS tags: HEAD
Bug #777

    1: # The LearningOnline Network with CAPA
    2: # Edit Handler for RAT Maps
    3: #
    4: # $Id: lonratedt.pm,v 1.37 2002/10/03 15:07:25 www 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: # (TeX Content Handler
   29: #
   30: # 05/29/00,05/30 Gerd Kortemeyer)
   31: # 7/1,6/30 Gerd Kortemeyer
   32: 
   33: package Apache::lonratedt;
   34: 
   35: use strict;
   36: use Apache::Constants qw(:common);
   37: use Apache::lonnet;
   38: use Apache::lonratsrv;
   39: use Apache::lonsequence;
   40: use Apache::loncommon;
   41: use File::Copy;
   42: 
   43: use vars qw(@order @resources);
   44: 
   45: 
   46: # Mapread read maps into global arrays @links and @resources, determines status
   47: # sets @order - pointer to resources in right order
   48: # sets @resources - array with the resources with correct idx
   49: #
   50: sub mapread {
   51:     my $fn=shift;
   52: 
   53:     my @links;
   54:     undef @links;
   55:     undef @resources;
   56:     undef @order;
   57:     @resources=('');
   58:     @order=();
   59: 
   60:     my ($outtext,$errtext)=&Apache::lonratsrv::loadmap($fn,'');
   61:     if ($errtext) { return ($errtext,2); }
   62: 
   63: # -------------------------------------------------------------------- Read map
   64:     foreach (split(/\<\&\>/,$outtext)) {
   65: 	my ($command,$number,$content)=split(/\<\:\>/,$_);
   66:         if ($command eq 'objcont') {
   67: 	    $resources[$number]=$content;
   68:         }
   69:         if ($command eq 'objlinks') {
   70:             $links[$number]=$content;
   71:         }
   72:         if ($command eq 'objparms') {
   73: 	    return('Map has resource parameters. Use advanced editor.',1);
   74:         }
   75:     }
   76: # ------------------------------------------------------- Is this a linear map?
   77:     my @starters=();
   78:     my @endings=();
   79:     undef @starters;
   80:     undef @endings;
   81: 
   82:     foreach (@links) {
   83:         if (defined($_)) {
   84: 	    my ($start,$end,$cond)=split(/\:/,$_);
   85:             if ((defined($starters[$start])) || (defined($endings[$end]))) { 
   86: 		return
   87:                  ('Map has branchings. Use advanced editor.',1);
   88:             }
   89: 	    $starters[$start]=1;
   90: 	    $endings[$end]=1;
   91: 	    if ($cond) {
   92: 		return
   93:                  ('Map has conditions. Use advanced editor.',1);
   94:             }
   95: 	}
   96: 
   97:     }
   98:     for (my $i=1; $i<=$#resources; $i++) {
   99:         if (defined($resources[$i])) {
  100: 	    unless (($starters[$i]) || ($endings[$i])) {
  101:                 return
  102: 		 ('Map has unconnected resources. Use advanced editor.',1);
  103:             }
  104:         }
  105:     }
  106: 
  107: # -------------------------------------------------- This is a linear map, sort
  108: 
  109:     my $startidx=0;
  110:     my $endidx=0;
  111:     for (my $i=0; $i<=$#resources; $i++) {
  112:         if (defined($resources[$i])) {
  113:             my ($title,$url,$ext,$type)=split(/\:/,$resources[$i]);
  114: 	    if ($type eq 'start') { $startidx=$i; }
  115:             if ($type eq 'finish') { $endidx=$i; }
  116:         }
  117:     }
  118:     my $k=0;
  119:     my $currentidx=$startidx;
  120:     $order[$k]=$currentidx;
  121:     for (my $i=0; $i<=$#resources; $i++) {
  122:         foreach (@links) {
  123: 	    my ($start,$end)=split(/\:/,$_);
  124:             if ($start==$currentidx) {
  125: 		$currentidx=$end;
  126:                 $k++;
  127:                 $order[$k]=$currentidx;
  128:                 last;
  129:             }
  130:         }
  131:         if ($currentidx==$endidx) { last; }
  132:     }
  133:     return $errtext;
  134: }
  135: 
  136: # ---------------------------------------------- Read a map as well as possible
  137: # Also used by the sequence handler
  138: # Call lonsequence::attemptread to read from resource space
  139: #
  140: sub attemptread {
  141:     my $fn=shift;
  142: 
  143:     my @links;
  144:     undef @links;
  145:     my @theseres;
  146:     undef @theseres;
  147: 
  148:     my ($outtext,$errtext)=&Apache::lonratsrv::loadmap($fn,'');
  149:     if ($errtext) { return @theseres }
  150: 
  151: # -------------------------------------------------------------------- Read map
  152:     foreach (split(/\<\&\>/,$outtext)) {
  153: 	my ($command,$number,$content)=split(/\<\:\>/,$_);
  154:         if ($command eq 'objcont') {
  155: 	    $theseres[$number]=$content;
  156:         }
  157:         if ($command eq 'objlinks') {
  158:             $links[$number]=$content;
  159:         }
  160:     }
  161: 
  162: # --------------------------------------------------------------- Sort, sort of
  163: 
  164:     my @objsort=();
  165:     undef @objsort;
  166: 
  167:     my @data1=();
  168:     my @data2=();
  169:     undef @data1;
  170:     undef @data2;
  171: 
  172:     my $k;
  173:     my $kj;
  174:     my $j;
  175:     my $ij;
  176: 
  177:    for ($k=1;$k<=$#theseres;$k++) {
  178:       if (defined($theseres[$k])) {
  179:          $objsort[$#objsort+1]=$k;
  180:       }
  181:    }
  182: 
  183:    for ($k=1;$k<=$#links;$k++) {
  184:      if (defined($links[$k])) {
  185:       @data1=split(/\:/,$links[$k]);
  186:       $kj=-1;
  187:       for (my $j=0;$j<=$#objsort;$j++) {
  188:          if ((split(/\:/,$objsort[$j]))[0]==$data1[0]) {
  189:             $kj=$j;
  190:          }
  191:       }
  192:       if ($kj!=-1) { $objsort[$kj].=':'.$data1[1]; }
  193:      }
  194:    }
  195:     for ($k=0;$k<=$#objsort;$k++) {
  196:       for ($j=0;$j<=$#objsort;$j++) {
  197:         if ($k!=$j) {
  198:           @data1=split(/\:/,$objsort[$k]);
  199:           @data2=split(/\:/,$objsort[$j]);
  200:           my $dol=$#data1+1;
  201:           my $dtl=$#data2+1;
  202:           if ($dol+$dtl<1000) {
  203:            for ($kj=1;$kj<$dol;$kj++) {
  204:              if ($data1[$kj]==$data2[0]) {
  205:                 for ($ij=1;$ij<$dtl;$ij++) {
  206:                    $data1[$#data1+1]=$data2[$ij];
  207:                 }
  208:              }
  209:            }
  210:            for ($kj=1;$kj<$dtl;$kj++) {
  211:              if ($data2[$kj]==$data1[0]) {
  212:                  for ($ij=1;$ij<$dol;$ij++) {
  213:                     $data2[$#data2+1]=$data1[$ij];
  214:                  }
  215:              }
  216:            }
  217:            $objsort[$k]=join(':',@data1);
  218:            $objsort[$j]=join(':',@data2);
  219:           }
  220:          }
  221:       } 
  222:   }
  223: # ---------------------------------------------------------------- Now sort out
  224: 
  225:     @objsort=sort {
  226:       my @data1=split(/\:/,$a);
  227:       my @data2=split(/\:/,$b);
  228:       my $rvalue=0;
  229:       my $k;
  230:       for ($k=1;$k<=$#data1;$k++) {
  231:          if ($data1[$k]==$data2[0]) { $rvalue--; }
  232:       }
  233:       for ($k=1;$k<=$#data2;$k++) {
  234:          if ($data2[$k]==$data1[0]) { $rvalue++; }
  235:       }
  236:       if ($rvalue==0) { $rvalue=$#data2-$#data1; }
  237:       $rvalue;
  238:     } @objsort;
  239: 
  240:     my @outres=();
  241:     undef @outres;
  242: 
  243:     for ($k=0;$k<=$#objsort;$k++) {
  244: 	$outres[$k]=$theseres[(split(/\:/,$objsort[$k]))[0]];
  245:     }
  246:     return @outres;
  247: }
  248: 
  249: # --------------------------------------------------------- Build up RAT screen
  250: sub ratedt {
  251:   my ($r,$url)=@_;
  252:   $r->print(<<ENDDOCUMENT);
  253: 
  254: <html>
  255: <head>
  256: <script language="JavaScript">
  257:     var flag=0;
  258: </script>
  259: </head>
  260: <frameset rows="1,50,*" border=0>
  261: <frame name=server src="$url/loadonly/ratserver" noresize noscroll>
  262: <frame name=code src="/adm/rat/code.html">
  263: <frame name=mapout src="/adm/rat/map.html">
  264: </frameset>
  265: </html>
  266: 
  267: ENDDOCUMENT
  268: }
  269: 
  270: # ---------------------------------------------------------------- Make buttons
  271: 
  272: sub buttons {
  273:     my $adv=shift;
  274:     my $output='<form method=post>';     
  275:     if ($adv==1) {
  276: 	$output.='<input type=submit name=forceadv value="Edit">';
  277:     } else {
  278:         unless ($adv==2) {
  279:            $output.='<input type=submit name=forcesmp value="Simple Edit">';
  280:         }
  281: 	$output.='<input type=submit name=forceadv value="Advanced Edit">';
  282:     }
  283:     return $output.'</form><hr>';
  284: }
  285: 
  286: # ----------------------------------------------------------- Paste into target
  287: # modifies @order, @resources
  288: 
  289: sub pastetarget {
  290:     my ($after,@which)=@_;
  291:     my @insertorder=();
  292:     foreach (@which) {
  293:         if (defined($_)) {
  294: 	    my ($name,$url)=split(/\=/,$_);
  295:             $name=&Apache::lonnet::unescape($name);
  296:             $url=&Apache::lonnet::unescape($url);
  297:             if ($url) {
  298: 	       my $idx=$#resources+1;
  299:                $insertorder[$#insertorder+1]=$idx;
  300:                my $ext='false';
  301:                if ($url=~/^http\:\/\//) { $ext='true'; }
  302:                $url=~s/\:/\&colon;/g;
  303:                $name=~s/\:/\&colon;/g;
  304:                $resources[$idx]=$name.':'.$url.':'.$ext.':normal:res';
  305: 	   }
  306:         }
  307:     }
  308:     my @oldorder=splice(@order,$after);
  309:     @order=(@order,@insertorder,@oldorder);
  310: }
  311: 
  312: # ------------------------------------------------ Get start and finish correct
  313: # modifies @resources
  314: 
  315: sub startfinish {
  316:     foreach (@order) {
  317: 	my ($name,$url,$ext)=split(/\:/,$resources[$_]);
  318:         if ($url=~/http\&colon\:\/\//) { $ext='true'; }
  319:         $resources[$_]=$name.':'.$url.':'.$ext.':normal:res';
  320:     }
  321:    my ($name,$url,$ext)=split(/\:/,$resources[$order[0]]);
  322:    $resources[$order[0]]=$name.':'.$url.':'.$ext.':start:res';
  323:    if ($#order==0) {
  324:        $resources[$#resources+1]='::false';
  325:        $order[1]=$#resources;
  326:    }
  327:    my ($name,$url,$ext)=split(/\:/,$resources[$order[$#order]]);
  328:    $resources[$order[$#order]]=$name.':'.$url.':'.$ext.':finish:res';
  329: }
  330: 
  331: # ------------------------------------------------------------------- Store map
  332: 
  333: sub storemap {
  334:     my $realfn=shift;
  335:     my $fn=$realfn;
  336: # unless this is forced to work from the original file, use a temporary file
  337: # instead
  338:     unless (shift) {
  339:        $fn=$realfn.'.tmp';
  340:        unless (-e $fn) {
  341: 	  copy($realfn,$fn);
  342:        }
  343:     }
  344: # store data either into tmp or real file
  345:     &startfinish();
  346:     my $output='graphdef<:>no';
  347:     my $k=1;
  348:     for (my $i=0; $i<=$#order; $i++) {
  349:         if (defined($resources[$order[$i]])) {
  350: 	    $output.='<&>objcont<:>'.$order[$i].'<:>'.$resources[$order[$i]];
  351:         }
  352:         if (defined($order[$i+1])) {
  353: 	    if (defined($resources[$order[$i+1]])) {
  354:                $output.='<&>objlinks<:>'.$k.'<:>'.
  355: 		   $order[$i].':'.$order[$i+1].':0';
  356: 	       $k++;
  357:             }
  358:         }
  359:     }
  360:     $output=~s/http\&colon\;\/\///g;
  361:     $ENV{'form.output'}=$output;
  362:     return 
  363:      &Apache::lonratsrv::loadmap($fn,&Apache::lonratsrv::savemap($fn,''));
  364: }
  365: 
  366: sub editscript {
  367:     my $mode=shift;
  368:     return(<<ENDSCRIPT);
  369: var srch;
  370: var srchflag=-1; // 1 means currently open
  371:                  // 0 means closed (but has been open)
  372:                  // -1 means never yet opened/defined
  373: var srchmode='';
  374: 
  375: var idx;
  376: var idxflag=-1; // 1 means currently open
  377:                  // 0 means closed (but has been open)
  378:                  // -1 means never yet opened/defined
  379: var idxmode='';
  380: 
  381: // ------------------------------------------------------ Clears indexer window
  382: function idxclear() {
  383:   idx.document.clear();
  384: }
  385: 
  386: // ------------------------------------------------------- Clears search window
  387: function srchclear() {
  388:   srch.document.clear();
  389: }
  390: 
  391: // ------------------------------------------------------ Closes indexer window
  392: function idxclose() {
  393:   if (idx && !idx.closed) {
  394:     idxflag=0;
  395:     idx.close();
  396:   }
  397: }
  398: 
  399: // ------------------------------------------------------- Closes search window
  400: function srchclose() {
  401:   if (srch && !srch.closed) {
  402:     srchflag=0;
  403:     srch.close();
  404:   }
  405: }
  406: 
  407: // -------------------------------------------------------- Open indexer window
  408: function idxopen(mode) {
  409:    var options="scrollbars=1,resizable=1,menubar=0";
  410:    idxmode=mode;
  411:    idxflag=1;
  412:    idx=open("/res/?launch=1&mode=$mode&catalogmode="+mode,"idxout",options);
  413:    idx.focus();
  414: }
  415: 
  416: // --------------------------------------------------------- Open search window
  417: function srchopen(mode) {
  418:    var options="scrollbars=1,resizable=1,menubar=0";
  419:    srchmode=mode;
  420:    srchflag=1;
  421:    srch=open("/adm/searchcat?launch=1&mode=$mode&catalogmode="+mode,"srchout",options);
  422:    srch.focus();
  423: }
  424: // ----------------------------------------------------- launch indexer browser
  425: function groupsearch() {
  426:    srchcheck('groupsearch');
  427: }
  428: 
  429: function groupimport() {
  430:    idxcheck('groupimport');
  431: }
  432: // ------------------------------------------------------- Do srch status check
  433: function srchcheck(mode) {
  434:    if (!srch || srch.closed || srchmode!=mode) {
  435:       srchopen(mode);
  436:    }
  437:    srch.focus();
  438: }
  439: 
  440: // -------------------------------------------------------- Do idx status check
  441: function idxcheck(mode) {
  442:    if (!idx || idx.closed || idxmode!=mode) {
  443:       idxopen(mode);
  444:    }
  445:    idx.focus();
  446: }
  447: 
  448: 
  449:     var editbrowser;
  450:     function openbrowser(formname,elementname,only,omit) {
  451:         var url = '/res/?';
  452:         if (editbrowser == null) {
  453:             url += 'launch=1&';
  454:         }
  455:         url += 'catalogmode=interactive&';
  456:         url += 'mode=edit&';
  457:         url += 'form=' + formname + '&';
  458:         if (only != null) {
  459:             url += 'only=' + only + '&';
  460:         } 
  461:         if (omit != null) {
  462:             url += 'omit=' + omit + '&';
  463:         }
  464:         url += 'element=' + elementname + '';
  465:         var title = 'Browser';
  466:         var options = 'scrollbars=1,resizable=1,menubar=0';
  467:         options += ',width=700,height=600';
  468:         editbrowser = open(url,title,options,'1');
  469:         editbrowser.focus();
  470:     }
  471: ENDSCRIPT
  472: }
  473: # ------------------------------------------------------- Simple edit processor
  474: 
  475: sub smpedt {
  476:    my ($r,$url,$errtext)=@_;
  477:    my $buttons=&buttons(2);
  478:    my $tmpfn=&Apache::lonnet::filelocation('',$url).'.tmp';
  479:    my $targetmsg='';
  480:    if ($ENV{'form.save'}) {
  481:        $targetmsg='<b>Saving ...</b><br>';
  482:        copy($tmpfn,&Apache::lonnet::filelocation('',$url));
  483:        unlink($tmpfn);
  484:        my ($errtext,$fatal)=
  485:                            &mapread(&Apache::lonnet::filelocation('',$url),'');
  486:    }
  487:    if ($ENV{'form.revert'}) {
  488:        $targetmsg='<b>Reverting ...</b><br>';
  489:        unlink($tmpfn);
  490:        my ($errtext,$fatal)=
  491:                            &mapread(&Apache::lonnet::filelocation('',$url),'');
  492:    }
  493:    if (-e $tmpfn) {
  494:       $targetmsg=
  495:         '<b><font color="red">You are working with an unsaved version of your map.</font></b><br>';
  496:       my ($errtext,$fatal)=&mapread($tmpfn,'');
  497:    }
  498: # ---------------------------------------------------------- Process form input
  499: 
  500:    my @importselect=();
  501:    my @targetselect=();
  502:    undef @importselect;
  503:    undef @targetselect;
  504:    if (defined($ENV{'form.importsel'})) {
  505:        if (ref($ENV{'form.importsel'})) {
  506: 	   @importselect=sort(@{$ENV{'form.importsel'}});
  507:        } else {
  508:            @importselect=($ENV{'form.importsel'});
  509:        }
  510:    }
  511:    if (defined($ENV{'form.target'})) {
  512:        if (ref($ENV{'form.target'})) {
  513: 	   @targetselect=sort(@{$ENV{'form.target'}});
  514:        } else {
  515:            @targetselect=($ENV{'form.target'});
  516:        }
  517:    }
  518: # ============================================================ Process commands
  519: 
  520:    my $targetdetail=$ENV{'form.targetdetail'};
  521:    my $importdetail=$ENV{'form.curimpdetail'};
  522: 
  523: # ---------------------------------------------------- Importing from groupsort
  524:    if (($ENV{'form.importdetail'}) && (!$ENV{'form.impfortarget'})) {
  525: 
  526:        $importdetail='';
  527:        my @curimport=split(/\&/,$ENV{'form.curimpdetail'});
  528: 
  529:        my $lastsel;
  530: 
  531:        if (defined($importselect[-1])) {
  532: 	   $lastsel=$importselect[-1];
  533:        } else {
  534:            $lastsel=$#curimport;
  535:        }
  536: 
  537:        for (my $i=0;$i<=$lastsel;$i++) {
  538:            my ($name,$url)=split(/\=/,$curimport[$i]);
  539:            if ($url) {
  540:               $importdetail.='&'.$name.'='.$url;
  541: 	   }
  542:        }
  543: 
  544:       $importdetail.='&'.$ENV{'form.importdetail'};
  545: 
  546:        for (my $i=$lastsel+1;$i<=$#curimport;$i++) {
  547:            my ($name,$url)=split(/\=/,$curimport[$i]);
  548:            if ($url) {
  549:               $importdetail.='&'.$name.'='.$url;
  550: 	  }
  551:        }
  552:        $importdetail=~s/\&+/\&/g;
  553:        $importdetail=~s/^\&//;
  554: 
  555: # ------------------------------------------------------------------- Clear all
  556:    } elsif ($ENV{'form.clear'}) {
  557:        $importdetail='';
  558: # ------------------------------------------------------------ Discard selected
  559:    } elsif ($ENV{'form.discard'}) {
  560:        $importdetail='';
  561:        my @curimport=split(/\&/,$ENV{'form.curimpdetail'});
  562:        foreach (@importselect) {
  563: 	   $curimport[$_]='';
  564:        }
  565:        for (my $i=0;$i<=$#curimport;$i++) {
  566:            my ($name,$url)=split(/\=/,$curimport[$i]);
  567:            if ($url) {
  568:               $importdetail.='&'.$name.'='.$url;
  569: 	   }
  570:        }
  571: # --------------------------------------------------------- Loading another map
  572:    } elsif ($ENV{'form.loadmap'}) {
  573:        $importdetail='';
  574:        my @curimport=split(/\&/,$ENV{'form.curimpdetail'});
  575: 
  576:        my $lastsel;
  577: 
  578:        if (defined($importselect[-1])) {
  579: 	   $lastsel=$importselect[-1];
  580:        } else {
  581:            $lastsel=$#curimport;
  582:        }
  583: 
  584:        for (my $i=0;$i<=$lastsel;$i++) {
  585:            my ($name,$url)=split(/\=/,$curimport[$i]);
  586:            if ($url) {
  587:               $importdetail.='&'.$name.'='.$url;
  588: 	   }
  589:        }
  590: 
  591:        foreach (
  592:     &Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$ENV{'form.importmap'}))) {
  593: 	   my ($name,$url)=split(/\:/,$_);
  594:            if ($url) {
  595:               $importdetail.='&'.&Apache::lonnet::escape($name).'='.
  596: 		 	         &Apache::lonnet::escape($url);
  597: 	  }
  598:        }
  599: 
  600:        for (my $i=$lastsel+1;$i<=$#curimport;$i++) {
  601:            my ($name,$url)=split(/\=/,$curimport[$i]);
  602:            if ($url) {
  603:               $importdetail.='&'.$name.'='.$url;
  604: 	  }
  605:        }
  606:        $importdetail=~s/\&+/\&/g;
  607:        $importdetail=~s/^\&//;
  608: 
  609: # ------------------------------------------------ Groupimport/search to target
  610:    } elsif ($ENV{'form.importdetail'}) {
  611:        my $lastsel;
  612:        if (defined($targetselect[-1])) {
  613: 	   $lastsel=$targetselect[-1];
  614:        } else {
  615:            $lastsel=$#order+1;
  616:        }
  617:        &pastetarget($lastsel,split(/\&/,$ENV{'form.importdetail'}));
  618:        &storemap(&Apache::lonnet::filelocation('',$url));
  619: # ------------------------------------------------------------------------- Cut
  620:    } elsif (($ENV{'form.cut'}) || ($ENV{'form.copy'})) {
  621:        $importdetail='';
  622:        my @curimport=split(/\&/,$ENV{'form.curimpdetail'});
  623: 
  624:        my $lastsel;
  625: 
  626:        if (defined($importselect[-1])) {
  627: 	   $lastsel=$importselect[-1];
  628:        } else {
  629:            $lastsel=$#curimport;
  630:        }
  631: 
  632:        for (my $i=0;$i<=$lastsel;$i++) {
  633:            my ($name,$url)=split(/\=/,$curimport[$i]);
  634:            if ($url) {
  635:               $importdetail.='&'.$name.'='.$url;
  636: 	   }
  637:        }
  638: 
  639:        foreach (@targetselect) {
  640: 	   my ($name,$url)=split(/\:/,$resources[$order[$_-1]]);
  641:            if ($url) {
  642:               $importdetail.='&'.&Apache::lonnet::escape($name).'='.
  643: 		 	         &Apache::lonnet::escape($url);
  644: 	  }
  645:        }
  646: 
  647:        for (my $i=$lastsel+1;$i<=$#curimport;$i++) {
  648:            my ($name,$url)=split(/\=/,$curimport[$i]);
  649:            if ($url) {
  650:               $importdetail.='&'.$name.'='.$url;
  651: 	  }
  652:        }
  653:        $importdetail=~s/\&+/\&/g;
  654:        $importdetail=~s/^\&//;
  655: 
  656:        if ($ENV{'form.cut'}) {
  657:            my @neworder=();
  658:            for (my $i=0;$i<=$#order;$i++) {
  659:                my $include=1;
  660:                foreach (@targetselect) {
  661: 		   if ($_-1==$i) { $include=0; }
  662:                }
  663:                if ($include) { $neworder[$#neworder+1]=$order[$i]; }
  664:            }
  665:            @order=@neworder;
  666:            &storemap(&Apache::lonnet::filelocation('',$url));      
  667:        }
  668: 
  669: # ----------------------------------------------------------------------- Paste
  670:    } elsif ($ENV{'form.paste'}) {
  671:        my $lastsel;
  672:        if (defined($targetselect[-1])) {
  673: 	   $lastsel=$targetselect[-1];
  674:        } else {
  675:            $lastsel=$#order+1;
  676:        }
  677:        my @newsequence;
  678:        my @curimport=split(/\&/,$ENV{'form.curimpdetail'});
  679:        foreach (@importselect) {
  680:           $newsequence[$#newsequence+1]=$curimport[$_];
  681:        }
  682:        &pastetarget($lastsel,@newsequence);
  683:        &storemap(&Apache::lonnet::filelocation('',$url));
  684: # ------------------------------------------------ 
  685:    }
  686: # ------------------------------------------------------------ Assemble windows
  687:    
  688:    my $idx=-1;
  689:    $importdetail='&'.$importdetail;
  690:    $importdetail=~s/^\&+/\&/;
  691:    my $importwindow=
  692:        '<option value="-1"> ---- Import and Paste Area ---- </option>'.
  693:      join("\n",map {
  694:        $idx++;
  695:        if ($_) { 
  696:           my ($name,$url)=split(/\=/,$_);
  697:           unless ($name) { $name=(split(/\//,$url))[-1]; }
  698:           unless ($name) { $name='EMPTY'; }
  699:           '<option value="'.$idx.'">'.&Apache::lonnet::unescape($name).
  700:                                     '</option>';
  701:       }
  702:    } split(/\&/,$importdetail));
  703: 
  704:    $idx=0;
  705:    my $targetwindow=       
  706:        '<option value="0"> ------- Target Edit Map ------- </option>'.
  707:      join("\n",map { 
  708:        my ($name,$url)=split(/\:/,$resources[$_]);
  709:        unless ($name) {  $name=(split(/\//,$url))[-1]; }
  710:        unless ($name) { $name='EMPTY'; }
  711:        $targetdetail.='&'.&Apache::lonnet::escape($name).'='.
  712: 	                  &Apache::lonnet::escape($url);
  713:        $idx++;
  714:        $name=~s/\&colon;/\:/g;
  715:        '<option value="'.$idx.'">'.$name.'</option>';
  716:    } @order);
  717: 
  718: # ----------------------------------------------------- Start simple RAT screen
  719:    my $editscript=&editscript('simple');
  720:    my $bodytag=&Apache::loncommon::bodytag(undef,undef,undef,1);
  721:    $r->print(<<ENDSMPHEAD);
  722: <html>
  723: <head>
  724: <script>
  725: 
  726:    $editscript
  727: 
  728:    function openview(entry) {
  729:        var url=unescape((entry.split('='))[1]);
  730:        var parts=new Array;
  731:        parts=url.split('&colon;');
  732:        url=parts.join(':');
  733:        if (url) { open(url,'cat'); }
  734:    }
  735: 
  736:    function viewtarget() {
  737:        openview((document.forms.simpleedit.targetdetail.value.split('&'))
  738:                 [document.forms.simpleedit.target.selectedIndex]);
  739:    }
  740: 
  741:    function viewimport() {
  742:        openview((document.forms.simpleedit.curimpdetail.value.split('&'))
  743:                 [document.forms.simpleedit.importsel.selectedIndex]);
  744:    }
  745: 
  746: </script>
  747: </head>                 
  748: $bodytag
  749: $buttons
  750: <font color=red>$errtext</font>
  751: <form name=simpleedit method=post>
  752: <input type=hidden name=forcesmp value=1>
  753: <table>
  754:     <tr><th width="40%">Temporary Assembly Workspace</th>
  755: <th>&nbsp;</th>
  756: <th width="40%">File: $url</th></tr>
  757: <tr><td bgcolor="#FFFFCC">
  758: <input type=button onClick="javascript:groupsearch()" value="Search">
  759: <input type=button onClick="javascript:groupimport();" value="Import">
  760: after selected
  761: <hr>
  762: <input type=text size=20 name=importmap>
  763: <input type=button 
  764: onClick="javascript:openbrowser('simpleedit','importmap','sequence,page','')"
  765: value="Browse"><input type=submit name=loadmap value="Load Map"><hr>
  766: <input type=submit name="discard" value="Discard Selected">
  767: <input type=submit name="clear" value="Clear All">
  768: <input type=button onClick="javascript:viewimport()" value="View">
  769: 
  770:     </td><td>&nbsp;</td><td bgcolor="#FFFFCC">
  771: 
  772: <input type=button onClick=
  773: "javascript:impfortarget.value=1;groupsearch()" value="Search">
  774: <input type=button onClick=
  775: "javascript:impfortarget.value=1;groupimport();" value="Import">
  776: after selected
  777: <hr>$targetmsg
  778: <input type=submit name="revert" value="Revert to Last Saved">
  779: <input type=submit name="save" value="Save">
  780: <input type=button onClick="javascript:viewtarget()" value="View">
  781: </td></tr>
  782: 
  783: <tr><td bgcolor="#FFFFCC"><select name="importsel" size=10 multiple>
  784: $importwindow
  785: </select>
  786: </td>
  787: <td bgcolor="#FFFFAA" align="center">
  788: Cut selected<br>
  789: <input type=submit name=cut value='<<<'><p>
  790: <hr>
  791: Copy selected<br>
  792: <input type=submit name=copy value='<--'><p>
  793: <hr>
  794: Paste after selected<br>
  795: <input type=submit name=paste value='-->'>
  796: </td>
  797: <td bgcolor="#FFFFCC"><select name="target" size=10 multiple>
  798: $targetwindow
  799: </select>
  800: </table>
  801: <input type=hidden name=importdetail value="">
  802: <input type=hidden name=curimpdetail value="$importdetail">
  803: <input type=hidden name=targetdetail value="$targetdetail">
  804: <input type=hidden name=impfortarget value="0">
  805: </form>
  806: </body></html>
  807: ENDSMPHEAD
  808: }
  809: 
  810: # ----------------------------------------------------------------- No such dir
  811: sub nodir {
  812:    my ($r,$dir)=@_;
  813:    $dir=~s/^\/home\/\w+\/public\_html//;
  814:    $r->print(<<ENDNODIR);
  815: <html>
  816: <body bgcolor='#FFFFFF'>
  817: <h1>No such directory: $dir</h1>
  818: </body>
  819: </html>
  820: ENDNODIR
  821: }
  822: 
  823: # ---------------------------------------------------------------- View Handler
  824: 
  825: sub viewmap {
  826:     my ($r,$url,$adv,$errtext)=@_;
  827:     $r->print('<html>'.
  828:      &Apache::loncommon::bodytag('Edit Content of a Map').
  829:      &buttons($adv));
  830:     if ($errtext) {
  831: 	$r->print($errtext.'<hr>');
  832:     }
  833:     my $idx=0;
  834:     $r->print('<h1>'.$url.'</h1>');
  835:     foreach (&attemptread(&Apache::lonnet::filelocation('',$url))) {
  836: 	if (defined($_)) {
  837:             $idx++;
  838: 	    my ($title,$url)=split(/\:/,$_);
  839:             $title=~s/\&colon\;/\:/g;
  840:             $url=~s/\&colon\;/\:/g;
  841:             unless ($title) { $title=(split(/\//,$url))[-1] };
  842:             unless ($title) { $title='<i>Empty</i>'; }
  843:             if ($url) {
  844: 		$r->print('<a href="'.&Apache::lonratsrv::qtescape($url).'">');
  845:             }
  846:             $r->print(&Apache::lonratsrv::qtescape($title));
  847:             if ($url) { $r->print('</a>'); }
  848: 	    $r->print('<br>');
  849:         }
  850:     }
  851:     $r->print('</body></html>');
  852: }
  853: 
  854: # ================================================================ Main Handler
  855: 
  856: sub handler {
  857:   my $r=shift;
  858:   $r->content_type('text/html');
  859:   $r->send_http_header;
  860: 
  861:   return OK if $r->header_only;
  862: 
  863:   my $url=$r->uri;
  864:   my $fn=&Apache::lonnet::filelocation('',$url);
  865: 
  866:   my ($dir)=($fn=~/^(.+)\/[^\/]+$/);
  867:   unless (-e $dir) {
  868:       &nodir($r,$dir);
  869:       return OK;
  870:   }
  871: 
  872: # ------------------------------------------- Determine which tools can be used
  873:   my $adv=0;
  874: 
  875:   unless ($ENV{'form.forcesmp'}) {
  876:      if ($ENV{'form.forceadv'}) {
  877:         $adv=1;
  878:      } elsif (my $fh=Apache::File->new($fn)) {
  879: 	 my $allmap=join('',<$fh>);
  880:          $adv=($allmap=~/\<map[^\>]+mode\s*\=\s*(\'|\")rat/is);
  881:      }
  882:   }
  883: 
  884:   my $errtext='';
  885:   my $fatal=0;
  886: 
  887: # -------------------------------------------------------------------- Load map
  888:   ($errtext,$fatal)=&mapread($fn,$errtext);
  889: 
  890:   if ($fatal==1) { $adv=1; }
  891: 
  892: # ----------------------------------- adv==1 now means "graphical MUST be used"
  893: 
  894:   if ($ENV{'form.forceadv'}) {
  895:       &ratedt($r,$url);
  896:   } elsif ($ENV{'form.forcesmp'}) {
  897:       &smpedt($r,$url,$errtext);
  898:   } else {
  899:       &viewmap($r,$url,$adv,$errtext);
  900:   }
  901:   return OK;
  902: }
  903: 
  904: 1;
  905: __END__
  906: 
  907: 
  908: 
  909: 
  910: 
  911: 
  912: 

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