File:  [LON-CAPA] / loncom / homework / edit.pm
Revision 1.61: download - view: text, annotated - select for diffs
Mon Sep 8 21:10:53 2003 UTC (20 years, 8 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- adding new type of arg, checked_arg

    1: # The LearningOnline Network with CAPA 
    2: # edit mode helpers
    3: #
    4: # $Id: edit.pm,v 1.61 2003/09/08 21:10:53 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: # 3/20 Guy
   29: # 01/10/02 Matthew
   30: # 03/06/02 Matthew
   31: package Apache::edit; 
   32: 
   33: use strict;
   34: use Apache::lonnet();
   35: use HTML::Entities();
   36: 
   37: # Global Vars
   38: # default list of colors to use in editing
   39: @Apache::edit::colorlist=('#ffffff','#ff0000','#00ff00','#0000ff','#0ff000','#000ff0','#f0000f');
   40: # depth of nesting of edit
   41: $Apache::edit::colordepth=0;
   42: @Apache::edit::inserttag=();
   43: # image-type responses: active background image and curdepth at definition
   44: $Apache::edit::bgimgsrc='';
   45: $Apache::edit::bgimgsrccurdepth='';
   46: 
   47: sub initialize_edit {
   48:   $Apache::edit::colordepth=0;
   49:   @Apache::edit::inserttag=();
   50: }
   51: 
   52: sub tag_start {
   53:   my ($target,$token,$description) = @_;
   54:   my $result='';
   55:   if ($target eq "edit") {
   56:     my $tag=$token->[1];
   57:     if (!$description) {
   58:       $description=&Apache::lonxml::description($token);
   59:       if (!$description) { $description="<$tag>"; }
   60:     }
   61:     $result.= &start_table($token)."<tr><td>$description</td>
   62: <td>Delete".
   63:   &deletelist($target,$token)
   64:   ."</td>
   65: <td>".
   66:     &insertlist($target,$token);
   67: #<td>". 
   68: #  &movebuttons($target,$token).
   69: #    "</tr><tr><td colspan=\"3\">\n";
   70:     my @help;# = Apache::lonxml::helpinfo($token);
   71:     if ($help[0]) {
   72: 	$result .= '<td align="right" valign="top">' .
   73: 	    Apache::loncommon::help_open_topic(@help) .
   74: 	    '</td>';
   75:     } else { $result .= "<td>&nbsp;</td>"; }
   76:     $result .= &end_row().&start_spanning_row();
   77:   }
   78:   return $result;
   79: }
   80: 
   81: sub tag_end {
   82:   my ($target,$token,$description) = @_;
   83:   my $result='';
   84:   if ($target eq 'edit') {
   85:     $result.="</td></tr>".&end_table()."\n";
   86:   }
   87:   return $result;
   88: }
   89: 
   90: sub start_table {
   91:   my ($token)=@_;
   92:   my $tag = $token->[1];
   93:   my $tagnum;
   94:   foreach my $namespace (reverse @Apache::lonxml::namespace) {
   95:     my $testtag=$namespace.'::'.$tag;
   96:     $tagnum=$Apache::lonxml::insertlist{"$testtag.num"};
   97:     if (defined($tagnum)) { last; }
   98:   }
   99:   if (!defined ($tagnum)) { $tagnum=$Apache::lonxml::insertlist{"$tag.num"}; }
  100:   my $color = $Apache::lonxml::insertlist{"$tagnum.color"};
  101:   if (!defined($color)) {
  102:     $color = $Apache::edit::colorlist[$Apache::edit::colordepth];
  103:   }
  104:   $Apache::edit::colordepth++;
  105:   push(@Apache::edit::inserttag,$token->[1]);
  106:   my $result='<div align="right">';
  107:   $result.='<table bgcolor="'.$color.'" width="97%" border="0" cellspacing="5" cellpadding="3">';
  108:   return $result;
  109: }
  110: 
  111: sub end_table {
  112:   $Apache::edit::colordepth--;
  113:   my $result='</table></div>';
  114:   $result.="<table><tr><td>";
  115: 
  116:   my ($tagname,$closingtag);
  117:   if (defined($Apache::edit::inserttag[-2])) {
  118:     $tagname=$Apache::edit::inserttag[-2];
  119:   } else {$tagname='problem';}
  120:   if (defined($Apache::edit::inserttag[-1])) {
  121:     $closingtag=$Apache::edit::inserttag[-1];
  122:   }
  123:   $result.=&innerinsertlist('edit',$tagname,$closingtag).
  124:     "</td></tr></table>";
  125:   pop(@Apache::edit::inserttag);
  126:   return $result;
  127: }
  128: 
  129: sub start_spanning_row { return '<tr><td colspan="4" bgcolor="#DDDDDD">';}
  130: sub start_row          { return '<tr><td bgcolor="#DDDDDD">';            }
  131: sub end_row            { return '</td></tr>';          }
  132: 
  133: sub movebuttons {
  134:   my ($target,$token) = @_;
  135:   my $result='<input type="submit" name="moveup.'.
  136:     $Apache::lonxml::curdepth.'" value="Move Up" />';
  137:   $result.='<input type="submit" name="movedown.'.
  138:     $Apache::lonxml::curdepth.'" value="Move Down" />';
  139:   return $result;
  140: }
  141: 
  142: sub deletelist {
  143:   my ($target,$token) = @_;
  144:   my $result = "<select name=\"delete_$Apache::lonxml::curdepth\">
  145: <option></option>
  146: <option>Yes</option>
  147: </select>";
  148:   return $result;
  149: }
  150: 
  151: sub handle_delete {
  152:   if (!$ENV{"form.delete_$Apache::lonxml::curdepth"}) { return ''; }
  153:   my ($space,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
  154:   my $result=0;
  155:   if ($space) {
  156:     my $sub1="$space\:\:delete_$token->[1]";
  157:     {
  158:       no strict 'refs';
  159:       if (defined &$sub1) {
  160: 	$result=&$sub1($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);
  161:       }
  162:     }
  163:   }
  164:   if (!$result) {
  165:     my $endtag='/'.$token->[1];
  166:     my $bodytext=&Apache::lonxml::get_all_text($endtag,$parser);
  167:     $$parser['-1']->get_token();
  168:     &Apache::lonxml::debug("Deleting :$bodytext: for $token->[1]");
  169:     &Apache::lonxml::end_tag($tagstack,$parstack,$token);
  170:   }
  171:   return 1;
  172: }
  173: 
  174: sub get_insert_list {
  175:   my ($tagname) = @_;
  176:   my $result='';
  177:   my @tagnums= ();
  178:   #&Apache::lonxml::debug("keys ".join("\n",sort(keys(%Apache::lonxml::insertlist))));
  179:   if ($Apache::lonxml::insertlist{"$tagname.which"}) {
  180:     push (@tagnums, @{ $Apache::lonxml::insertlist{"$tagname.which"} });
  181:   }
  182:   foreach my $namespace (@Apache::lonxml::namespace) {
  183:     if ($Apache::lonxml::insertlist{"$namespace".'::'."$tagname.which"}) {
  184:       push (@tagnums, @{ $Apache::lonxml::insertlist{"$namespace".'::'."$tagname.which"} });
  185:     }
  186:   }
  187:   if (@tagnums) {
  188:     my %options;
  189:     foreach my $tagnum (@tagnums) {
  190:       my $descrip=$Apache::lonxml::insertlist{"$tagnum.description"};
  191:       $options{$descrip} ="<option value=\"$tagnum\">".$descrip."</option>\n";
  192:     }
  193:     foreach my $option (sort(keys(%options))) { $result.=$options{$option}; }
  194:     if ($result) { $result='<option selected="on"></option>'.$result; }
  195:   }
  196:   return $result;
  197: }
  198: 
  199: sub insertlist {
  200:   my ($target,$token) = @_;
  201:   return &innerinsertlist($target,$token->[1]);
  202: }
  203: 
  204: sub innerinsertlist {
  205:   my ($target,$tagname,$closingtag) = @_;
  206:   my $result;
  207:   my $after='';
  208:   if ($closingtag) {
  209:      $after='_after_'.$closingtag; 
  210:   }
  211:   if ($target eq 'edit') {
  212:     my $optionlist= &get_insert_list($tagname);
  213:     if ($optionlist) {
  214:       $result = "Insert:
  215: <select name=\"insert$after\_$Apache::lonxml::curdepth\">
  216: $optionlist
  217: </select>"
  218:     } else {
  219:       $result="&nbsp;";
  220:     }
  221:   }
  222:   return $result;
  223: }
  224: 
  225: sub handle_insert {
  226:   if ($ENV{"form.insert_$Apache::lonxml::curdepth"} eq '') { return ''; }
  227:   my $result;
  228:   my $tagnum = $ENV{"form.insert_$Apache::lonxml::curdepth"};
  229:   my $func=$Apache::lonxml::insertlist{"$tagnum.function"};
  230:   if ($func eq 'default') {
  231:     my $newtag=$Apache::lonxml::insertlist{"$tagnum.tag"};
  232:     my $namespace;
  233:     if ($newtag =~ /::/) { ($namespace,$newtag) = split(/::/,$newtag); }
  234:     $result.="\n<$newtag>\n</$newtag>";
  235:   } else {
  236:     if (defined(&$func)) {
  237:       {
  238: 	no strict 'refs';
  239: 	$result.=&$func();
  240:       }
  241:     } else {
  242:       my $newtag=$Apache::lonxml::insertlist{"$tagnum.tag"};
  243:       &Apache::lonxml::error("Unable to insert tag $newtag, $func was not defined.");
  244:     }
  245:   }
  246:   return $result;
  247: }
  248: 
  249: sub handle_insertafter {
  250:   my $tagname=shift;
  251:   if ($ENV{"form.insert_after_$tagname\_$Apache::lonxml::curdepth"} eq '')
  252:      { return ''; }
  253:   my $result;
  254:   my $tagnum =$ENV{"form.insert_after_$tagname\_$Apache::lonxml::curdepth"};
  255:   my $func=$Apache::lonxml::insertlist{"$tagnum.function"};
  256:   if ($func eq 'default') {
  257:     my $newtag=$Apache::lonxml::insertlist{"$tagnum.tag"};
  258:     my $namespace;
  259:     if ($newtag =~ /::/) { ($namespace,$newtag) = split(/::/,$newtag); }
  260:     $result.="\n<$newtag>\n</$newtag>";
  261:   } else {
  262:     if (defined(&$func)) {
  263:       {
  264: 	no strict 'refs';
  265: 	$result.=&$func();
  266:       }
  267:     } else {
  268:       my $newtag=$Apache::lonxml::insertlist{"$tagnum.tag"};
  269:       &Apache::lonxml::error("Unable to insert (after) tag $newtag, $func was not defined. ($tagname $tagnum)");
  270:     }
  271:   }
  272:   return $result;
  273: }
  274: 
  275: sub insert_responseparam {
  276:   return '
  277:     <responseparam />';
  278: }
  279: 
  280: sub insert_formularesponse {
  281:   return '
  282: <formularesponse answer="" samples="">
  283:     <textline />
  284:     <hintgroup>
  285:     </hintgroup>
  286: </formularesponse>';
  287: }
  288: 
  289: sub insert_numericalresponse {
  290:   return '
  291: <numericalresponse answer="">
  292:     <textline />
  293:     <hintgroup>
  294:     </hintgroup>
  295: </numericalresponse>';
  296: }
  297: 
  298: sub insert_stringresponse {
  299:   return '
  300: <stringresponse answer="" type="">
  301:     <textline />
  302:     <hintgroup>
  303:     </hintgroup>
  304: </stringresponse>';
  305: }
  306: 
  307: sub insert_essayresponse {
  308:   return '
  309: <essayresponse>
  310:     <textfield></textfield>
  311: </essayresponse>';
  312: }
  313: 
  314: sub insert_imageresponse {
  315:   return '
  316: <imageresponse max="1">
  317:     <foilgroup>
  318:     </foilgroup>
  319:     <hintgroup>
  320:     </hintgroup>
  321: </imageresponse>';
  322: }
  323: 
  324: sub insert_optionresponse {
  325:   return '
  326: <optionresponse max="10">
  327:     <foilgroup options="">
  328:     </foilgroup>
  329:     <hintgroup>
  330:     </hintgroup>
  331: </optionresponse>';
  332: }
  333: 
  334: sub insert_radiobuttonresponse {
  335:   return '
  336: <radiobuttonresponse max="10">
  337:     <foilgroup>
  338:     </foilgroup>
  339:     <hintgroup>
  340:     </hintgroup>
  341: </radiobuttonresponse>';
  342: }
  343: 
  344: sub insert_rankresponse {
  345:   return '
  346: <rankresponse max="10">
  347:     <foilgroup options="">
  348:     </foilgroup>
  349:     <hintgroup>
  350:     </hintgroup>
  351: </rankresponse>';
  352: }
  353: 
  354: sub insert_matchresponse {
  355:   return '
  356: <matchresponse max="10">
  357:     <foilgroup options="">
  358:       <itemgroup>
  359:       </itemgroup>
  360:     </foilgroup>
  361:     <hintgroup>
  362:     </hintgroup>
  363: </matchresponse>';
  364: }
  365: 
  366: sub insert_displayduedate { return '<displayduedate />'; }
  367: sub insert_displaytitle   { return '<displaytitle />'; }
  368: sub insert_hintpart {
  369:   return '
  370: <hintpart on="default">
  371:     <startouttext/>
  372:     <endouttext />
  373: </hintpart>';
  374: }
  375: 
  376: sub insert_numericalhint {
  377:   return '
  378: <numericalhint>
  379: </numericalhint>';
  380: }
  381: 
  382: sub insert_stringhint {
  383:   return '
  384: <stringhint>
  385: </stringhint>';
  386: }
  387: 
  388: sub insert_formulahint {
  389:   return '
  390: <formulahint>
  391: </formulahint>';
  392: }
  393: 
  394: sub insert_radiobuttonhint {
  395:   return '
  396: <radiobuttonhint>
  397: </radiobuttonhint>';
  398: }
  399: 
  400: sub insert_optionhint {
  401:   return '
  402: <optionhint>
  403: </optionhint>';
  404: }
  405: 
  406: sub insert_startouttext {
  407:   return "<startouttext />\n<endouttext />";
  408: }
  409: 
  410: sub insert_script {
  411:   return "\n<script type=\"loncapa/perl\">\n</script>";
  412: }
  413: 
  414: sub textarea_sizes {
  415:   my ($data)=@_;
  416:   my $count=0;
  417:   my $maxlength=-1;
  418:   foreach (split ("\n", $$data)) {
  419:       $count+=int(length($_)/79);
  420:       $count++;
  421:       if (length($_) > $maxlength) { $maxlength = length($_); }
  422:   }
  423:   my $rows = $count;
  424:   my $cols = $maxlength;
  425:   return ($rows,$cols);
  426: }
  427: 
  428: sub editline {
  429:     my ($tag,$data,$description,$size)=@_;
  430:     $data=&HTML::Entities::encode($data);
  431:     if ($description) { $description="<br />".$description."<br />"; }
  432:     my $result = <<"END";
  433: $description
  434: <input type="text" name="homework_edit_$Apache::lonxml::curdepth" 
  435:        value="$data" size="$size" />
  436: END
  437:     return $result;
  438: }
  439: 
  440: sub editfield {
  441:   my ($tag,$data,$description,$minwidth,$minheight)=@_;
  442: 
  443:   my ($rows,$cols)=&textarea_sizes(\$data);
  444:   if ($cols > 80) { $cols = 80; }
  445:   if ($cols < $minwidth ) { $cols = $minwidth; }
  446:   if ($rows < $minheight) { $rows = $minheight; }
  447:   if ($description) { $description="<br />".$description."<br />"; }
  448:   return $description."\n".'&nbsp;&nbsp;&nbsp;<textarea rows="'.$rows.
  449:     '" cols="'.$cols.'" name="homework_edit_'.$Apache::lonxml::curdepth.'">'.
  450:       &HTML::Entities::encode($data).'</textarea>'."\n";
  451: }
  452: 
  453: sub modifiedfield {
  454:   my ($token) = @_;
  455:   my $result;
  456: #  foreach my $envkey (sort keys %ENV) {
  457: #    &Apache::lonxml::debug("$envkey ---- $ENV{$envkey}");
  458: #  }
  459: #  &Apache::lonxml::debug("I want homework_edit_$Apache::lonxml::curdepth");
  460: #  &Apache::lonxml::debug($ENV{"form.homework_edit_$Apache::lonxml::curdepth"});
  461:   $result=$ENV{"form.homework_edit_$Apache::lonxml::curdepth"};
  462:   return $result;
  463: }
  464: 
  465: # Returns a 1 if the token has been modified and you should rebuild the tag
  466: # side-effects, will modify the $token if new values are found
  467: sub get_new_args {
  468:     my ($token,$parstack,$safeeval,@args)=@_;
  469:     my $rebuild=0;
  470:     foreach my $arg (@args) {
  471:     #just want the string that it was set to
  472:     my $value=$token->[2]->{$arg};
  473:     my $element=&html_element_name($arg);
  474:     my $newvalue=$ENV{"form.$element"};
  475:     &Apache::lonxml::debug(" for:$arg: cur is :$value: new is :$newvalue:");
  476:     if (defined($newvalue) && $value ne $newvalue) {
  477: 	if (ref($newvalue) eq 'ARRAY') {
  478: 	    $token->[2]->{$arg}=join(',',@$newvalue);
  479: 	} else {
  480: 	    $token->[2]->{$arg}=$newvalue;
  481: 	}
  482: 	$rebuild=1;
  483:     }
  484:   }
  485:   return $rebuild;
  486: }
  487: 
  488: # looks for /> on start tags
  489: sub rebuild_tag {
  490:   my ($token) = @_;
  491:   my $result;
  492:   if ($token->[0] eq 'S') {
  493:     $result = '<'.$token->[1];
  494:     while (my ($key,$val)= each(%{$token->[2]})) {
  495:       $val=~s:^\s+|\s+$::g;
  496:       $val=~s:"::g; #"
  497:       &Apache::lonxml::debug("setting :$key: to  :$val:");
  498:       $result.=' '.$key.'="'.$val.'"';
  499:     }
  500:     if ($token->[4] =~ m:/>$:) {
  501:       $result.=' />';
  502:     } else {
  503:       $result.='>';
  504:     }
  505:   } elsif ( $token->[0] eq 'E' ) {
  506:     $result = '</'.$token->[1].'>';
  507:   }
  508:   return $result;
  509: }
  510: 
  511: sub html_element_name {
  512:     my ($name) = @_;
  513:     return $name.'_'.$Apache::lonxml::curdepth;
  514: }
  515: 
  516: sub hidden_arg {
  517:     my ($name,$token) = @_;
  518:     my $result;
  519:     my $arg=$token->[2]{$name};
  520:     $result='<input name="'.&html_element_name($name).
  521: 	'" type="hidden" value="'.$arg.'" />';
  522:     return $result;
  523: }
  524: 
  525: sub checked_arg {
  526:     my ($description,$name,$list,$token) = @_;
  527:     my $result;
  528:     my $optionlist="";
  529:     my $allselected=$token->[2]{$name};
  530:     $result=$description;
  531:     foreach my $option (@$list) {
  532: 	my ($value,$text);
  533: 	if ( ref($option) eq 'ARRAY') {
  534: 	    $value='value="'.$$option[0].'"';
  535: 	    $text=$$option[1];
  536: 	    $option=$$option[0];
  537: 	} else {
  538: 	    $text=$option;
  539: 	    $value='value="'.$option.'"';
  540: 	}
  541: 	$result.="<nobr><input type='checkbox' $value name='".
  542: 	    &html_element_name($name)."'";
  543: 	foreach my $selected (split(/,/,$allselected)) {
  544: 	    &Apache::lonxml::error("wha $selected $option<br />");
  545: 	    if ( $selected eq $option ) {
  546: 		$result.=" checked='on' ";
  547: 		last;
  548: 	    }
  549: 	}
  550: 	$result.=" />$text</nobr>\n";
  551:     }
  552:     return $result;
  553: }
  554: 
  555: sub text_arg {
  556:   my ($description,$name,$token,$size) = @_;
  557:   my $result;
  558:   if (!defined $size) { $size=20; }
  559:   my $arg=$token->[2]{$name};
  560:   $result=$description.'&nbsp;<input name="'.&html_element_name($name).
  561:     '" type="text" value="'.$arg.'" size="'.$size.'" />';
  562:   return '<nobr>'.$result.'</nobr>';
  563: }
  564: 
  565: sub select_arg {
  566:     my ($description,$name,$list,$token) = @_;
  567:     my $result;
  568:     my $optionlist="";
  569:     my $selected=$token->[2]{$name};
  570:     foreach my $option (@$list) {
  571: 	my $value;
  572: 	if ( ref($option) eq 'ARRAY') {
  573: 	    $value='value="'.$$option[0].'"';
  574: 	    $option=$$option[1];
  575: 	} else {
  576: 	    $value='value="'.$option.'"';
  577: 	}
  578: 	if ( $selected eq $option ) {
  579: 	    $optionlist.="<option $value selected=\"on\">$option</option>\n";
  580: 	} else {
  581: 	    $optionlist.="<option $value >$option</option>\n";
  582: 	}
  583:     }
  584:     $result.='<nobr>'.$description.'&nbsp;<select name="'.
  585: 	&html_element_name($name).'">
  586:        '.$optionlist.'
  587:       </select></nobr>';
  588:     return $result;
  589: }
  590: 
  591: sub select_or_text_arg {
  592:     my ($description,$name,$list,$token,$size) = @_;
  593:     my $result;
  594:     my $optionlist="";
  595:     my $found=0;
  596:     my $selected=$token->[2]{$name};
  597:     foreach my $option (@$list) {
  598: 	my $value;
  599: 	if ( ref($option) eq 'ARRAY') {
  600: 	    $value='value="'.$$option[0].'"';
  601: 	    $option=$$option[1];
  602: 	} else {
  603: 	    $value='value="'.$option.'"';
  604: 	}
  605: 	if ( $selected eq $option ) {
  606: 	    $optionlist.="<option $value selected=\"on\">$option</option>\n";
  607: 	    $found=1;
  608: 	} else {
  609: 	    $optionlist.="<option $value>$option</option>\n";
  610: 	}
  611:     }
  612:     $optionlist.="<option value=\"TYPEDINVALUE\"".
  613:  	((!$found)?' selected="on"':'').
  614:  	">Type in value</option>\n";
  615: #
  616:     my $element=&html_element_name($name);
  617:     my $selectelement='select_list_'.$element;
  618:     my $typeinelement='type_in_'.$element;
  619:     my $typeinvalue=($found?'':$selected);
  620: #
  621:     my $hiddenvalue='this.form.'.$element.'.value';
  622:     my $selectedindex='this.form.'.$selectelement.'.selectedIndex';
  623:     my $selectedvalue='this.form.'.$selectelement.
  624: 	     '.options['.$selectedindex.'].value';
  625:     my $typedinvalue='this.form.'.$typeinelement.'.value';
  626:     my $selecttypeinindex='this.form.'.$selectelement.'.options.length';
  627: #
  628:     return (<<ENDSELECTORTYPE);
  629: <nobr>
  630: $description
  631: &nbsp;<select name="$selectelement"
  632: onChange="if ($selectedvalue!='TYPEDINVALUE') { $hiddenvalue=$selectedvalue; $typedinvalue=''; }"
  633: $optionlist
  634: </select>
  635: <input type="text" size="$size" name="$typeinelement"
  636:        value="$typeinvalue" 
  637: onChange="$hiddenvalue=$typedinvalue;"
  638: onFocus="$selectedindex=$selecttypeinindex-1;" />
  639: <input type="hidden" name="$element" value="$selected" />
  640: </nobr>
  641: ENDSELECTORTYPE
  642: }
  643: 
  644: #----------------------------------------------------- image coordinates
  645: # single image coordinates, x, y 
  646: sub entercoords {
  647:     my ($idx,,$idy,$mode,$width,$height) = @_;
  648:     unless ($Apache::edit::bgimgsrc) { return ''; }
  649:     if ($idx) { $idx.='_'; }
  650:     if ($idy) { $idy.='_'; }
  651:     my $bgfile=&Apache::lonnet::escape($Apache::edit::bgimgsrc);
  652:     my $form    = 'lonhomework';
  653:     my $element;
  654:     if (! defined($mode) || $mode eq 'attribute') {
  655:         $element = &Apache::lonnet::escape("$Apache::lonxml::curdepth");
  656:     } elsif ($mode eq 'textnode') {  # for data between <tag> ... </tag>
  657:         $element = &Apache::lonnet::escape('homework_edit_'.
  658:                                            $Apache::lonxml::curdepth);
  659:     }
  660:     my $formheight='';
  661:     if ($height) {
  662: 	$formheight='&formheight='.$height.'_'.$Apache::edit::bgimgsrccurdepth;
  663:     }
  664:     my $formwidth='';
  665:     if ($width) {
  666: 	$formwidth='&formwidth='.$width.'_'.$Apache::edit::bgimgsrccurdepth;
  667:     }
  668:     my $result = <<"ENDBUTTON";
  669: <a href="/cgi-bin/imagechoice.pl?formname=$form&file=$bgfile&formx=$idx$element&formy=$idy$element$formheight$formwidth"
  670: target="imagechoice">Click Coordinates</a>
  671: ENDBUTTON
  672:     return $result;
  673: }
  674: 
  675: # coordinate pair (x1,y1)-(x2,y2)
  676: sub entercoordpair {
  677:     my ($id,$mode,$width,$height) = @_;
  678:     unless ($Apache::edit::bgimgsrc) { return ''; }
  679:     my $bgfile=&Apache::lonnet::escape($Apache::edit::bgimgsrc);
  680:     my $form    = 'lonhomework';
  681:     my $element;
  682:     if (! defined($mode) || $mode eq 'attribute') {
  683:         $element = &Apache::lonnet::escape("$id\_$Apache::lonxml::curdepth");
  684:     } elsif ($mode eq 'textnode') {  # for data between <tag> ... </tag>
  685:         $element = &Apache::lonnet::escape('homework_edit_'.
  686:                                            $Apache::lonxml::curdepth);
  687:     }
  688:     my $formheight='';
  689:     if ($height) {
  690: 	$formheight='&formheight='.$height.'_'.$Apache::edit::bgimgsrccurdepth;
  691:     }
  692:     my $formwidth='';
  693:     if ($width) {
  694: 	$formwidth='&formwidth='.$width.'_'.$Apache::edit::bgimgsrccurdepth;
  695:     }
  696:     my $result = <<"ENDBUTTON";
  697: <a href="/cgi-bin/imagechoice.pl?mode=pair&formname=$form&file=$bgfile$formheight$formwidth&formcoord=$element"
  698: target="imagechoice">Click Coordinate Pair</a>
  699: ENDBUTTON
  700:     return $result;
  701: }
  702: #----------------------------------------------------- browse
  703: sub browse {
  704:     # insert a link to call up the filesystem browser (lonindexer)
  705:     my ($id, $mode) = @_;
  706:     my $form    = 'lonhomework';
  707:     my $element;
  708:     if (! defined($mode) || $mode eq 'attribute') {
  709:         $element = &Apache::lonnet::escape("$id\_$Apache::lonxml::curdepth");
  710:     } elsif ($mode eq 'textnode') {  # for data between <tag> ... </tag>
  711:         $element = &Apache::lonnet::escape('homework_edit_'.
  712:                                            $Apache::lonxml::curdepth);
  713:     }
  714:     my $result = <<"ENDBUTTON";
  715: <a href=\"javascript:openbrowser('$form','$element')\"\>Select</a>
  716: ENDBUTTON
  717:     return $result;
  718: }
  719: 
  720: #----------------------------------------------------- browse
  721: sub search {
  722:     # insert a link to call up the filesystem browser (lonindexer)
  723:     my ($id, $mode) = @_;
  724:     my $form    = 'lonhomework';
  725:     my $element;
  726:     if (! defined($mode) || $mode eq 'attribute') {
  727:         $element = &Apache::lonnet::escape("$id\_$Apache::lonxml::curdepth");
  728:     } elsif ($mode eq 'textnode') {  # for data between <tag> ... </tag>
  729:         $element = &Apache::lonnet::escape('homework_edit_'.
  730:                                            $Apache::lonxml::curdepth);
  731:     }
  732:     my $result = <<"ENDBUTTON";
  733: <a href=\"javascript:opensearcher('$form','$element')\"\>Search</a>
  734: ENDBUTTON
  735:     return $result;
  736: }
  737: 
  738: 
  739: 1;
  740: __END__
  741: 
  742: =head1 NAME
  743: 
  744: Apache::edit - edit mode helpers
  745: 
  746: =head1 SYNOPSIS
  747: 
  748: Invoked by many homework and xml related modules.
  749: 
  750:  &Apache::edit::SUBROUTINENAME(ARGUMENTS);
  751: 
  752: =head1 INTRODUCTION
  753: 
  754: This module outputs HTML syntax helpful for the rendering of edit
  755: mode interfaces.
  756: 
  757: This is part of the LearningOnline Network with CAPA project
  758: described at http://www.lon-capa.org.
  759: 
  760: =head1 HANDLER SUBROUTINE
  761: 
  762: There is no handler subroutine.
  763: 
  764: =head1 OTHER SUBROUTINES
  765: 
  766: =over 4
  767: 
  768: =item *
  769: 
  770: initialize_edit() : initialize edit (set colordepth to zero)
  771: 
  772: =item *
  773: 
  774: tag_start($target,$token,$description) : provide deletion and insertion lists
  775: for the manipulation of a start tag; return a scalar string
  776: 
  777: =item *
  778: 
  779: tag_end($target,$token,$description) : ending syntax corresponding to
  780: &tag_start. return a scalar string.
  781: 
  782: =item *
  783: 
  784: start_table($token) : start table; update colordepth; return scalar string.
  785: 
  786: =item *
  787: 
  788: end_table() : reduce color depth; end table; return scalar string
  789: 
  790: =item *
  791: 
  792: start_spanning_row() : start a new table row spanning the 'edit' environment.
  793: 
  794: =item *
  795: 
  796: start_row() : start a new table row and element. 
  797: 
  798: =item *
  799: 
  800: end_row() : end current table element and row.
  801: 
  802: =item *
  803: 
  804: movebuttons($target,$token) : move-up and move-down buttons; return scalar
  805: string
  806: 
  807: =item *
  808: 
  809: deletelist($target,$token) : provide a yes option in an HTML select element;
  810: return scalar string
  811: 
  812: =item *
  813: 
  814: handle_delete($space,$target,$token,$tagstack,$parstack,$parser,$safeeval,
  815: $style) : respond to a user delete request by passing relevant stack
  816: and array information to various rendering functions; return a scalar string
  817: 
  818: =item *
  819: 
  820: get_insert_list($token) : provide an insertion list based on possibilities
  821: from lonxml; return a scalar string
  822: 
  823: =item *
  824: 
  825: insertlist($target,$token) : api that uses get_insert_list;
  826: return a scalar string
  827: 
  828: =item *
  829: 
  830: handleinsert($token) : provide an insertion list based on possibilities
  831: from lonxml; return a scalar string
  832: 
  833: =item *
  834: 
  835: get_insert_list($token) : provide an insertion list based on possibilities
  836: from lonxml; return a scalar string
  837: 
  838: =item *
  839: browse($elementname) : provide a link which will open up the filesystem
  840: browser (lonindexer) and, once a file is selected, place the result in
  841: the form element $elementname.
  842: 
  843: =item *
  844: search($elementname) : provide a link which will open up the filesystem
  845: searcher (lonsearchcat) and, once a file is selected, place the result in
  846: the form element $elementname.
  847: 
  848: =item *
  849: editline(tag,data,description,size): Provide a <input type="text" ../> for
  850: single-line text entry.  This is to be used for text enclosed by tags, not
  851: arguements/parameters associated with a tag.
  852: 
  853: =back
  854: 
  855: incomplete...
  856: 
  857: =cut

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