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