Annotation of loncom/homework/edit.pm, revision 1.105
1.1 albertel 1: # The LearningOnline Network with CAPA
2: # edit mode helpers
1.25 albertel 3: #
1.105 ! albertel 4: # $Id: edit.pm,v 1.104 2007/01/29 23:51:19 albertel 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.82 www 28:
1.1 albertel 29: package Apache::edit;
30:
31: use strict;
1.92 albertel 32: use Apache::lonnet;
1.32 albertel 33: use HTML::Entities();
1.71 www 34: use Apache::lonlocal;
1.102 www 35: use lib '/home/httpd/lib/perl/';
36: use LONCAPA;
37:
1.1 albertel 38:
1.10 albertel 39: # Global Vars
40: # default list of colors to use in editing
41: @Apache::edit::colorlist=('#ffffff','#ff0000','#00ff00','#0000ff','#0ff000','#000ff0','#f0000f');
42: # depth of nesting of edit
43: $Apache::edit::colordepth=0;
1.38 www 44: @Apache::edit::inserttag=();
1.49 www 45: # image-type responses: active background image and curdepth at definition
46: $Apache::edit::bgimgsrc='';
47: $Apache::edit::bgimgsrccurdepth='';
1.10 albertel 48:
49: sub initialize_edit {
1.63 albertel 50: $Apache::edit::colordepth=0;
51: @Apache::edit::inserttag=();
1.10 albertel 52: }
53:
1.1 albertel 54: sub tag_start {
1.63 albertel 55: my ($target,$token,$description) = @_;
56: my $result='';
57: if ($target eq "edit") {
58: my $tag=$token->[1];
59: if (!$description) {
60: $description=&Apache::lonxml::description($token);
61: if (!$description) { $description="<$tag>"; }
62: }
63: $result.= &start_table($token)."<tr><td>$description</td>
64: <td>Delete".
65: &deletelist($target,$token)
66: ."</td>
67: <td>".
68: &insertlist($target,$token);
1.27 matthew 69: #<td>".
1.22 albertel 70: # &movebuttons($target,$token).
71: # "</tr><tr><td colspan=\"3\">\n";
1.66 matthew 72: my @help = Apache::lonxml::helpinfo($token);
1.63 albertel 73: if ($help[0]) {
1.88 albertel 74: $result .= '</td><td align="right" valign="top">' .
75: Apache::loncommon::help_open_topic(@help);
76: } else { $result .= "</td><td> "; }
1.63 albertel 77: $result .= &end_row().&start_spanning_row();
78: }
79: return $result;
1.1 albertel 80: }
81:
82: sub tag_end {
1.63 albertel 83: my ($target,$token,$description) = @_;
84: my $result='';
85: if ($target eq 'edit') {
86: $result.="</td></tr>".&end_table()."\n";
87: }
88: return $result;
1.4 albertel 89: }
1.1 albertel 90:
1.10 albertel 91: sub start_table {
1.63 albertel 92: my ($token)=@_;
1.104 albertel 93: my $tag = &Apache::lonxml::get_tag($token);
94:
95: my $color = $Apache::lonxml::insertlist{"$tag.color"};
96: &Apache::lonxml::debug(" $tag -- $color");
1.63 albertel 97: if (!defined($color)) {
98: $color = $Apache::edit::colorlist[$Apache::edit::colordepth];
99: }
100: $Apache::edit::colordepth++;
101: push(@Apache::edit::inserttag,$token->[1]);
102: my $result='<div align="right">';
103: $result.='<table bgcolor="'.$color.'" width="97%" border="0" cellspacing="5" cellpadding="3">';
104: return $result;
1.10 albertel 105: }
106:
107: sub end_table {
1.63 albertel 108: $Apache::edit::colordepth--;
109: my $result='</table></div>';
1.94 albertel 110: $result.='<div align="left"><table><tr><td>';
1.63 albertel 111:
112: my ($tagname,$closingtag);
113: if (defined($Apache::edit::inserttag[-2])) {
114: $tagname=$Apache::edit::inserttag[-2];
1.105 ! albertel 115: } else {
! 116: if ($Apache::lonhomework::parsing_a_task) {
! 117: $tagname='Task';
! 118: } else {
! 119: $tagname='problem';
! 120: }
! 121: }
1.63 albertel 122: if (defined($Apache::edit::inserttag[-1])) {
123: $closingtag=$Apache::edit::inserttag[-1];
124: }
125: $result.=&innerinsertlist('edit',$tagname,$closingtag).
1.94 albertel 126: "</td></tr></table></div>";
1.105 ! albertel 127: my $last = pop(@Apache::edit::inserttag);
1.63 albertel 128: return $result;
1.10 albertel 129: }
130:
1.58 bowersj2 131: sub start_spanning_row { return '<tr><td colspan="4" bgcolor="#DDDDDD">';}
1.41 www 132: sub start_row { return '<tr><td bgcolor="#DDDDDD">'; }
1.27 matthew 133: sub end_row { return '</td></tr>'; }
134:
1.22 albertel 135: sub movebuttons {
1.63 albertel 136: my ($target,$token) = @_;
137: my $result='<input type="submit" name="moveup.'.
138: $Apache::lonxml::curdepth.'" value="Move Up" />';
139: $result.='<input type="submit" name="movedown.'.
140: $Apache::lonxml::curdepth.'" value="Move Down" />';
141: return $result;
1.22 albertel 142: }
143:
1.8 albertel 144: sub deletelist {
1.63 albertel 145: my ($target,$token) = @_;
146: my $result = "<select name=\"delete_$Apache::lonxml::curdepth\">
1.14 albertel 147: <option></option>
148: <option>Yes</option>
1.8 albertel 149: </select>";
1.63 albertel 150: return $result;
1.8 albertel 151: }
152:
1.14 albertel 153: sub handle_delete {
1.92 albertel 154: if (!$env{"form.delete_$Apache::lonxml::curdepth"}) { return ''; }
1.63 albertel 155: my ($space,$target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
156: my $result=0;
157: if ($space) {
158: my $sub1="$space\:\:delete_$token->[1]";
159: {
160: no strict 'refs';
161: if (defined &$sub1) {
162: $result=&$sub1($target,$token,$tagstack,$parstack,$parser,$safeeval,$style);
163: }
164: }
165: }
166: if (!$result) {
167: my $endtag='/'.$token->[1];
1.97 albertel 168: my $bodytext=&Apache::lonxml::get_all_text($endtag,$parser,$style);
1.63 albertel 169: $$parser['-1']->get_token();
170: &Apache::lonxml::debug("Deleting :$bodytext: for $token->[1]");
171: &Apache::lonxml::end_tag($tagstack,$parstack,$token);
172: }
173: return 1;
1.14 albertel 174: }
175:
1.7 albertel 176: sub get_insert_list {
1.63 albertel 177: my ($tagname) = @_;
178: my $result='';
1.104 albertel 179: my @tags= ();
1.63 albertel 180: #&Apache::lonxml::debug("keys ".join("\n",sort(keys(%Apache::lonxml::insertlist))));
181: if ($Apache::lonxml::insertlist{"$tagname.which"}) {
1.104 albertel 182: push (@tags, @{ $Apache::lonxml::insertlist{"$tagname.which"} });
1.63 albertel 183: }
184: foreach my $namespace (@Apache::lonxml::namespace) {
185: if ($Apache::lonxml::insertlist{"$namespace".'::'."$tagname.which"}) {
1.104 albertel 186: push (@tags, @{ $Apache::lonxml::insertlist{"$namespace".'::'."$tagname.which"} });
1.63 albertel 187: }
188: }
1.104 albertel 189: if (@tags) {
1.63 albertel 190: my %options;
1.104 albertel 191: foreach my $tag (@tags) {
192: my $descrip=$Apache::lonxml::insertlist{"$tag.description"};
193: my $tagnum =$Apache::lonxml::insertlist{"$tag.num"};
1.63 albertel 194: $options{$descrip} ="<option value=\"$tagnum\">".
195: $descrip."</option>\n";
196: }
197: foreach my $option (sort(keys(%options))) {$result.=$options{$option};}
1.88 albertel 198: if ($result) { $result='<option selected="selected"></option>'.$result; }
1.63 albertel 199: }
200: return $result;
1.5 albertel 201: }
202:
1.4 albertel 203: sub insertlist {
1.63 albertel 204: my ($target,$token) = @_;
205: return &innerinsertlist($target,$token->[1]);
1.38 www 206: }
207:
208: sub innerinsertlist {
1.63 albertel 209: my ($target,$tagname,$closingtag) = @_;
210: my $result;
211: my $after='';
212: if ($closingtag) {
213: $after='_after_'.$closingtag;
214: }
215: if ($target eq 'edit') {
216: my $optionlist= &get_insert_list($tagname);
217: if ($optionlist) {
218: $result = "Insert:
219: <select name=\"insert$after\_$Apache::lonxml::curdepth\">
220: $optionlist
221: </select>"
222: } else {
223: $result=" ";
224: }
1.6 albertel 225: }
1.63 albertel 226: return $result;
1.6 albertel 227: }
228:
1.7 albertel 229: sub handle_insert {
1.92 albertel 230: if ($env{"form.insert_$Apache::lonxml::curdepth"} eq '') { return ''; }
231: my $tagnum = $env{"form.insert_$Apache::lonxml::curdepth"};
1.104 albertel 232: return &do_insert($tagnum);
1.38 www 233: }
234:
235: sub handle_insertafter {
1.63 albertel 236: my $tagname=shift;
1.104 albertel 237: if ($env{"form.insert_after_$tagname\_$Apache::lonxml::curdepth"} eq '') {
238: return '';
239: }
240: my $tagnum =$env{"form.insert_after_$tagname\_$Apache::lonxml::curdepth"};
1.105 ! albertel 241: return &do_insert($tagnum,1);
1.104 albertel 242: }
243:
244: sub do_insert {
1.105 ! albertel 245: my ($tagnum,$after) = @_;
1.63 albertel 246: my $result;
1.104 albertel 247:
248: my $newtag = $Apache::lonxml::insertlist{"$tagnum.tag"};
249: my $func = $Apache::lonxml::insertlist{"$newtag.function"};
1.63 albertel 250: if ($func eq 'default') {
251: my $namespace;
252: if ($newtag =~ /::/) { ($namespace,$newtag) = split(/::/,$newtag); }
1.105 ! albertel 253: my $depth = scalar(@Apache::lonxml::depthcounter);
! 254: $depth -- if ($after);
! 255: my $inset = "\t"x$depth;
! 256: $result.="\n$inset<$newtag>\n$inset</$newtag>";
1.38 www 257: } else {
1.63 albertel 258: if (defined(&$func)) {
259: {
260: no strict 'refs';
261: $result.=&$func();
262: }
263: } else {
1.104 albertel 264: &Apache::lonxml::error("Unable to insert tag $newtag, $func was not defined. ($tagnum)");
1.63 albertel 265: }
1.5 albertel 266: }
1.63 albertel 267: return $result;
1.69 albertel 268: }
269:
270: sub insert_img {
271: return '
272: <img />';
1.16 albertel 273: }
274:
275: sub insert_responseparam {
1.63 albertel 276: return '
1.16 albertel 277: <responseparam />';
1.5 albertel 278: }
279:
1.87 albertel 280: sub insert_parameter {
281: return '
282: <parameter />';
283: }
284:
1.24 albertel 285: sub insert_formularesponse {
1.63 albertel 286: return '
1.24 albertel 287: <formularesponse answer="" samples="">
1.86 albertel 288: <responseparam description="Numerical Tolerance" type="tolerance" default="0.00001" name="tol" />
289: <textline size="25"/>
1.24 albertel 290: <hintgroup>
1.78 www 291: <startouttext /><endouttext />
1.24 albertel 292: </hintgroup>
293: </formularesponse>';
294: }
295:
1.15 albertel 296: sub insert_numericalresponse {
1.63 albertel 297: return '
1.15 albertel 298: <numericalresponse answer="">
1.90 www 299: <responseparam type="tolerance" default="5%" name="tol" description="Numerical Tolerance" />
300: <responseparam name="sig" type="int_range,0-16" default="0,15" description="Significant Figures" />
1.15 albertel 301: <textline />
302: <hintgroup>
1.78 www 303: <startouttext /><endouttext />
1.15 albertel 304: </hintgroup>
305: </numericalresponse>';
306: }
307:
1.96 albertel 308: sub insert_customresponse {
1.95 albertel 309: return '
1.96 albertel 310: <customresponse>
1.95 albertel 311: <answer type="loncapa/perl">
312: </answer>
313: <textline />
314: <hintgroup>
315: <startouttext /><endouttext />
316: </hintgroup>
1.96 albertel 317: </customresponse>';
1.95 albertel 318: }
319:
1.96 albertel 320: sub insert_customresponse_answer {
1.95 albertel 321: return '
322: <answer type="loncapa/perl">
323: </answer>
324: ';
325: }
326:
1.18 albertel 327: sub insert_stringresponse {
1.63 albertel 328: return '
1.18 albertel 329: <stringresponse answer="" type="">
330: <textline />
331: <hintgroup>
1.78 www 332: <startouttext /><endouttext />
1.18 albertel 333: </hintgroup>
334: </stringresponse>';
1.36 albertel 335: }
336:
337: sub insert_essayresponse {
1.63 albertel 338: return '
1.36 albertel 339: <essayresponse>
340: <textfield></textfield>
341: </essayresponse>';
1.54 albertel 342: }
343:
344: sub insert_imageresponse {
1.63 albertel 345: return '
1.54 albertel 346: <imageresponse max="1">
347: <foilgroup>
1.89 albertel 348: <foil>
349: </foil>
1.54 albertel 350: </foilgroup>
351: <hintgroup>
1.78 www 352: <startouttext /><endouttext />
1.54 albertel 353: </hintgroup>
354: </imageresponse>';
1.18 albertel 355: }
356:
1.7 albertel 357: sub insert_optionresponse {
1.63 albertel 358: return '
1.7 albertel 359: <optionresponse max="10">
360: <foilgroup options="">
1.89 albertel 361: <foil>
362: <startouttext /><endouttext />
363: </foil>
1.7 albertel 364: </foilgroup>
1.14 albertel 365: <hintgroup>
1.78 www 366: <startouttext /><endouttext />
1.14 albertel 367: </hintgroup>
1.7 albertel 368: </optionresponse>';
1.1 albertel 369: }
370:
1.72 albertel 371: sub insert_organicresponse {
372: return '
373: <organicresponse>
374: <textline />
375: <hintgroup>
1.78 www 376: <startouttext /><endouttext />
1.72 albertel 377: </hintgroup>
378: </organicresponse>';
379: }
380:
381: sub insert_organicstructure {
382: return '
383: <organicstructure />
384: ';
385: }
386:
1.23 albertel 387: sub insert_radiobuttonresponse {
1.63 albertel 388: return '
1.23 albertel 389: <radiobuttonresponse max="10">
390: <foilgroup>
1.89 albertel 391: <foil>
392: <startouttext /><endouttext />
393: </foil>
1.23 albertel 394: </foilgroup>
395: <hintgroup>
1.78 www 396: <startouttext /><endouttext />
1.23 albertel 397: </hintgroup>
398: </radiobuttonresponse>';
1.72 albertel 399: }
400:
401: sub insert_reactionresponse {
402: return '
403: <reactionresponse>
404: <textline />
405: <hintgroup>
1.78 www 406: <startouttext /><endouttext />
1.72 albertel 407: </hintgroup>
408: </reactionresponse>';
1.43 albertel 409: }
410:
411: sub insert_rankresponse {
1.63 albertel 412: return '
1.43 albertel 413: <rankresponse max="10">
414: <foilgroup options="">
1.89 albertel 415: <foil>
416: <startouttext /><endouttext />
417: </foil>
1.43 albertel 418: </foilgroup>
419: <hintgroup>
1.78 www 420: <startouttext /><endouttext />
1.43 albertel 421: </hintgroup>
422: </rankresponse>';
1.23 albertel 423: }
424:
1.44 albertel 425: sub insert_matchresponse {
1.63 albertel 426: return '
1.44 albertel 427: <matchresponse max="10">
428: <foilgroup options="">
429: <itemgroup>
430: </itemgroup>
1.89 albertel 431: <foil>
432: <startouttext /><endouttext />
433: </foil>
1.44 albertel 434: </foilgroup>
435: <hintgroup>
1.78 www 436: <startouttext /><endouttext />
1.44 albertel 437: </hintgroup>
438: </matchresponse>';
439: }
440:
1.21 albertel 441: sub insert_displayduedate { return '<displayduedate />'; }
442: sub insert_displaytitle { return '<displaytitle />'; }
1.22 albertel 443: sub insert_hintpart {
1.63 albertel 444: return '
1.22 albertel 445: <hintpart on="default">
1.90 www 446: <startouttext/><endouttext />
1.22 albertel 447: </hintpart>';
1.67 albertel 448: }
449:
450: sub insert_hintgroup {
451: return '
452: <hintgroup>
1.78 www 453: <startouttext /><endouttext />
1.67 albertel 454: </hintgroup>';
1.22 albertel 455: }
456:
457: sub insert_numericalhint {
1.63 albertel 458: return '
1.22 albertel 459: <numericalhint>
460: </numericalhint>';
1.46 albertel 461: }
462:
463: sub insert_stringhint {
1.63 albertel 464: return '
1.46 albertel 465: <stringhint>
466: </stringhint>';
467: }
468:
469: sub insert_formulahint {
1.63 albertel 470: return '
1.46 albertel 471: <formulahint>
472: </formulahint>';
1.37 albertel 473: }
474:
475: sub insert_radiobuttonhint {
1.63 albertel 476: return '
1.37 albertel 477: <radiobuttonhint>
478: </radiobuttonhint>';
1.50 albertel 479: }
480:
481: sub insert_optionhint {
1.63 albertel 482: return '
1.50 albertel 483: <optionhint>
484: </optionhint>';
1.22 albertel 485: }
1.21 albertel 486:
1.23 albertel 487: sub insert_startouttext {
1.78 www 488: return "<startouttext /><endouttext />";
1.23 albertel 489: }
490:
491: sub insert_script {
1.78 www 492: return "\n<script type=\"loncapa/perl\"></script>";
1.23 albertel 493: }
494:
1.98 albertel 495: sub js_change_detection {
496: my $unsaved=&mt("There are unsaved changes");
497: return (<<SCRIPT);
498: <script type="text/javascript">
499: var clean = true;
500: var is_submit = false;
1.99 albertel 501: var still_ask = false;
1.98 albertel 502: function compareForm(event_) {
503: if (!event_ && window.event) {
504: event_ = window.event;
505: }
1.99 albertel 506: if ((!is_submit || (is_submit && still_ask)) && !clean) {
507: still_ask = false;
508: is_submit = false;
1.98 albertel 509: event_.returnValue = "$unsaved";
510: return "$unsaved";
511: }
512: }
513: function unClean() {
514: clean=false;
515: }
516: window.onbeforeunload = compareForm;
517: </script>
518: SCRIPT
519: }
520:
521: sub form_change_detection {
522: return ' onsubmit="is_submit=true;" ';
523: }
524:
525: sub element_change_detection {
526: return ' onchange="unClean();" ';
527: }
528:
1.99 albertel 529: sub submit_ask_anyway {
530: return ' onclick="still_ask=true;" ';
531: }
532:
1.25 albertel 533: sub textarea_sizes {
1.63 albertel 534: my ($data)=@_;
535: my $count=0;
536: my $maxlength=-1;
537: foreach (split ("\n", $$data)) {
538: $count+=int(length($_)/79);
539: $count++;
540: if (length($_) > $maxlength) { $maxlength = length($_); }
541: }
542: my $rows = $count;
543: my $cols = $maxlength;
544: return ($rows,$cols);
1.25 albertel 545: }
546:
1.32 albertel 547: sub editline {
1.31 matthew 548: my ($tag,$data,$description,$size)=@_;
1.81 albertel 549: $data=&HTML::Entities::encode($data,'<>&"');
1.31 matthew 550: if ($description) { $description="<br />".$description."<br />"; }
1.98 albertel 551: my $change_code = &element_change_detection();
1.31 matthew 552: my $result = <<"END";
553: $description
554: <input type="text" name="homework_edit_$Apache::lonxml::curdepth"
1.98 albertel 555: value="$data" size="$size" $change_code />
1.31 matthew 556: END
557: return $result;
558: }
559:
1.2 albertel 560: sub editfield {
1.82 www 561: my ($tag,$data,$description,$minwidth,$minheight,$usehtmlarea)=@_;
1.22 albertel 562:
1.63 albertel 563: my ($rows,$cols)=&textarea_sizes(\$data);
1.84 www 564: if (&Apache::lonhtmlcommon::htmlareabrowser() &&
565: !&Apache::lonhtmlcommon::htmlareablocked()) {
566: $rows+=7; # make room for HTMLarea
567: $minheight+=7; # make room for HTMLarea
568: }
1.63 albertel 569: if ($cols > 80) { $cols = 80; }
570: if ($cols < $minwidth ) { $cols = $minwidth; }
571: if ($rows < $minheight) { $rows = $minheight; }
572: if ($description) { $description="<br />".$description."<br />"; }
1.82 www 573: if ($usehtmlarea) {
1.101 albertel 574: &Apache::lonhtmlcommon::add_htmlareafields('homework_edit_'.
575: $Apache::lonxml::curdepth);
1.82 www 576: }
1.105 ! albertel 577: # remove typesetting whitespace from between data and the end tag
! 578: # to make the edit look prettier
! 579: $data =~ s/\n?[ \t]*$//;
! 580:
1.103 albertel 581: return $description."\n".'<textarea style="width:100%" rows="'.$rows.
1.63 albertel 582: '" cols="'.$cols.'" name="homework_edit_'.
1.82 www 583: $Apache::lonxml::curdepth.'" id="homework_edit_'.
1.98 albertel 584: $Apache::lonxml::curdepth.'" '.&element_change_detection().'>'.
1.85 www 585: &HTML::Entities::encode($data,'<>&"').'</textarea>'.
586: ($usehtmlarea?&Apache::lonhtmlcommon::spelllink('lonhomework',
587: 'homework_edit_'.$Apache::lonxml::curdepth):'')."\n";
1.2 albertel 588: }
589:
590: sub modifiedfield {
1.70 albertel 591: my ($endtag,$parser) = @_;
1.63 albertel 592: my $result;
1.92 albertel 593: $result=$env{"form.homework_edit_$Apache::lonxml::curdepth"};
1.70 albertel 594: my $bodytext=&Apache::lonxml::get_all_text($endtag,$parser);
595: # textareas throw away intial \n
1.105 ! albertel 596: if ($bodytext=~/^\n/) {
! 597: $result="\n".$result;
! 598: }
! 599: # if there is typesetting whitespace from between the data and the end tag
! 600: # restore to keep the source looking pretty
! 601: if ($bodytext =~ /(\n?[ \t]*)$/) {
! 602: $result .= $1;
! 603: }
1.63 albertel 604: return $result;
1.2 albertel 605: }
606:
1.15 albertel 607: # Returns a 1 if the token has been modified and you should rebuild the tag
1.12 albertel 608: # side-effects, will modify the $token if new values are found
609: sub get_new_args {
1.61 albertel 610: my ($token,$parstack,$safeeval,@args)=@_;
611: my $rebuild=0;
612: foreach my $arg (@args) {
1.63 albertel 613: #just want the string that it was set to
614: my $value=$token->[2]->{$arg};
615: my $element=&html_element_name($arg);
1.92 albertel 616: my $newvalue=$env{"form.$element"};
1.63 albertel 617: &Apache::lonxml::debug("for:$arg: cur is :$value: new is :$newvalue:");
618: if (defined($newvalue) && $value ne $newvalue) {
619: if (ref($newvalue) eq 'ARRAY') {
620: $token->[2]->{$arg}=join(',',@$newvalue);
621: } else {
622: $token->[2]->{$arg}=$newvalue;
623: }
1.79 albertel 624: $rebuild=1;
625: } elsif (!defined($newvalue) && defined($value)) {
626: delete($token->[2]->{$arg});
1.63 albertel 627: $rebuild=1;
1.61 albertel 628: }
1.12 albertel 629: }
1.63 albertel 630: return $rebuild;
1.12 albertel 631: }
632:
1.15 albertel 633: # looks for /> on start tags
1.12 albertel 634: sub rebuild_tag {
1.63 albertel 635: my ($token) = @_;
636: my $result;
637: if ($token->[0] eq 'S') {
638: $result = '<'.$token->[1];
639: while (my ($key,$val)= each(%{$token->[2]})) {
640: $val=~s:^\s+|\s+$::g;
641: $val=~s:"::g; #"
642: &Apache::lonxml::debug("setting :$key: to :$val:");
643: $result.=' '.$key.'="'.$val.'"';
644: }
645: if ($token->[4] =~ m:/>$:) {
646: $result.=' />';
647: } else {
648: $result.='>';
649: }
650: } elsif ( $token->[0] eq 'E' ) {
651: $result = '</'.$token->[1].'>';
1.12 albertel 652: }
1.63 albertel 653: return $result;
1.12 albertel 654: }
1.13 albertel 655:
1.47 matthew 656: sub html_element_name {
657: my ($name) = @_;
1.48 albertel 658: return $name.'_'.$Apache::lonxml::curdepth;
659: }
660:
661: sub hidden_arg {
662: my ($name,$token) = @_;
663: my $result;
664: my $arg=$token->[2]{$name};
665: $result='<input name="'.&html_element_name($name).
666: '" type="hidden" value="'.$arg.'" />';
1.61 albertel 667: return $result;
668: }
669:
670: sub checked_arg {
671: my ($description,$name,$list,$token) = @_;
672: my $result;
673: my $optionlist="";
674: my $allselected=$token->[2]{$name};
1.71 www 675: $result=&mt($description);
1.61 albertel 676: foreach my $option (@$list) {
677: my ($value,$text);
678: if ( ref($option) eq 'ARRAY') {
679: $value='value="'.$$option[0].'"';
680: $text=$$option[1];
681: $option=$$option[0];
682: } else {
683: $text=$option;
684: $value='value="'.$option.'"';
685: }
1.100 albertel 686: $result.="<nobr><label><input type='checkbox' $value name='".
1.61 albertel 687: &html_element_name($name)."'";
688: foreach my $selected (split(/,/,$allselected)) {
689: if ( $selected eq $option ) {
1.88 albertel 690: $result.=" checked='checked' ";
1.61 albertel 691: last;
692: }
693: }
1.100 albertel 694: $result.=&element_change_detection()." />$text</label></nobr>\n";
1.61 albertel 695: }
1.48 albertel 696: return $result;
1.47 matthew 697: }
698:
1.13 albertel 699: sub text_arg {
1.63 albertel 700: my ($description,$name,$token,$size) = @_;
701: my $result;
702: if (!defined $size) { $size=20; }
703: my $arg=$token->[2]{$name};
1.71 www 704: $result=&mt($description).' <input name="'.&html_element_name($name).
1.98 albertel 705: '" type="text" value="'.$arg.'" size="'.$size.'" '.
706: &element_change_detection().'/>';
1.63 albertel 707: return '<nobr>'.$result.'</nobr>';
1.13 albertel 708: }
709:
710: sub select_arg {
1.39 albertel 711: my ($description,$name,$list,$token) = @_;
712: my $result;
713: my $optionlist="";
714: my $selected=$token->[2]{$name};
715: foreach my $option (@$list) {
1.64 albertel 716: my ($text,$value);
1.39 albertel 717: if ( ref($option) eq 'ARRAY') {
1.93 albertel 718: $value='value="'.&HTML::Entities::encode($$option[0]).'"';
1.64 albertel 719: $text=$$option[1];
720: $option=$$option[0];
1.39 albertel 721: } else {
1.64 albertel 722: $text=$option;
1.93 albertel 723: $value='value="'.&HTML::Entities::encode($option,'\'"&<>').'"';
1.39 albertel 724: }
725: if ( $selected eq $option ) {
1.88 albertel 726: $optionlist.="<option $value selected=\"selected\">$text</option>\n";
1.39 albertel 727: } else {
1.64 albertel 728: $optionlist.="<option $value >$text</option>\n";
1.39 albertel 729: }
1.13 albertel 730: }
1.57 albertel 731: $result.='<nobr>'.$description.' <select name="'.
1.98 albertel 732: &html_element_name($name).'" '.&element_change_detection().' >
1.13 albertel 733: '.$optionlist.'
1.57 albertel 734: </select></nobr>';
1.39 albertel 735: return $result;
1.13 albertel 736: }
737:
1.19 albertel 738: sub select_or_text_arg {
1.39 albertel 739: my ($description,$name,$list,$token,$size) = @_;
740: my $result;
741: my $optionlist="";
742: my $found=0;
743: my $selected=$token->[2]{$name};
744: foreach my $option (@$list) {
1.64 albertel 745: my ($text,$value);
1.39 albertel 746: if ( ref($option) eq 'ARRAY') {
1.93 albertel 747: $value='value="'.&HTML::Entities::encode($$option[0]).'"';
1.64 albertel 748: $text=$$option[1];
749: $option=$$option[0];
1.39 albertel 750: } else {
1.64 albertel 751: $text=$option;
1.93 albertel 752: $value='value="'.&HTML::Entities::encode($option,'\'"&<>').'"';
1.39 albertel 753: }
754: if ( $selected eq $option ) {
1.88 albertel 755: $optionlist.="<option $value selected=\"selected\">$text</option>\n";
1.39 albertel 756: $found=1;
757: } else {
1.64 albertel 758: $optionlist.="<option $value>$text</option>\n";
1.39 albertel 759: }
760: }
1.60 www 761: $optionlist.="<option value=\"TYPEDINVALUE\"".
1.88 albertel 762: ((!$found)?' selected="selected"':'').
1.73 www 763: ">".&mt('Type-in value')."</option>\n";
1.60 www 764: #
1.98 albertel 765: my $change_code=&element_change_detection();
1.60 www 766: my $element=&html_element_name($name);
767: my $selectelement='select_list_'.$element;
768: my $typeinelement='type_in_'.$element;
769: my $typeinvalue=($found?'':$selected);
770: #
771: my $hiddenvalue='this.form.'.$element.'.value';
772: my $selectedindex='this.form.'.$selectelement.'.selectedIndex';
773: my $selectedvalue='this.form.'.$selectelement.
774: '.options['.$selectedindex.'].value';
775: my $typedinvalue='this.form.'.$typeinelement.'.value';
776: my $selecttypeinindex='this.form.'.$selectelement.'.options.length';
1.71 www 777: $description=&mt($description);
1.60 www 778: #
779: return (<<ENDSELECTORTYPE);
780: <nobr>
781: $description
782: <select name="$selectelement"
1.74 albertel 783: onChange="if ($selectedvalue!='TYPEDINVALUE') { $hiddenvalue=$selectedvalue; $typedinvalue=''; }" >
1.60 www 784: $optionlist
785: </select>
786: <input type="text" size="$size" name="$typeinelement"
787: value="$typeinvalue"
788: onChange="$hiddenvalue=$typedinvalue;"
789: onFocus="$selectedindex=$selecttypeinindex-1;" />
1.98 albertel 790: <input type="hidden" name="$element" value="$selected" $change_code />
1.60 www 791: </nobr>
792: ENDSELECTORTYPE
1.19 albertel 793: }
1.29 matthew 794:
1.49 www 795: #----------------------------------------------------- image coordinates
796: # single image coordinates, x, y
797: sub entercoords {
1.80 albertel 798: my ($idx,$idy,$mode,$width,$height) = @_;
1.49 www 799: unless ($Apache::edit::bgimgsrc) { return ''; }
800: if ($idx) { $idx.='_'; }
801: if ($idy) { $idy.='_'; }
1.102 www 802: my $bgfile=&escape(&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$Apache::edit::bgimgsrc));
1.49 www 803: my $form = 'lonhomework';
804: my $element;
805: if (! defined($mode) || $mode eq 'attribute') {
1.102 www 806: $element = &escape("$Apache::lonxml::curdepth");
1.49 www 807: } elsif ($mode eq 'textnode') { # for data between <tag> ... </tag>
1.102 www 808: $element = &escape('homework_edit_'.
1.49 www 809: $Apache::lonxml::curdepth);
810: }
1.80 albertel 811: my $id=$Apache::lonxml::curdepth;
812: my %data=("imagechoice.$id.type" =>'point',
813: "imagechoice.$id.formname" =>$form,
814: "imagechoice.$id.formx" =>"$idx$element",
815: "imagechoice.$id.formy" =>"$idy$element",
816: "imagechoice.$id.file" =>$bgfile,
817: "imagechoice.$id.formcoord" =>$element);
1.49 www 818: if ($height) {
1.80 albertel 819: $data{"imagechoice.$id.formheight"}=$height.'_'.
820: $Apache::edit::bgimgsrccurdepth;
1.49 www 821: }
822: if ($width) {
1.80 albertel 823: $data{"imagechoice.$id.formwidth"}=$width.'_'.
824: $Apache::edit::bgimgsrccurdepth;
1.49 www 825: }
1.80 albertel 826: &Apache::lonnet::appenv(%data);
827: my $text="Click Coordinates";
828: my $result='<a href="/adm/imagechoice?token='.$id.'" target="imagechoice">'.$text.'</a>';
1.49 www 829: return $result;
830: }
831:
1.77 albertel 832: # coordinates (x1,y1)-(x2,y2)...
833: # mode can be either box, or polygon
834: sub entercoord {
835: my ($idx,$mode,$width,$height,$type) = @_;
1.49 www 836: unless ($Apache::edit::bgimgsrc) { return ''; }
1.102 www 837: my $bgfile=&escape(&Apache::lonnet::filelocation($Apache::lonxml::pwd[-1],$Apache::edit::bgimgsrc));
1.75 albertel 838: my $form = 'lonhomework';
839: my $element;
840: if (! defined($mode) || $mode eq 'attribute') {
1.102 www 841: $element = &escape("$idx\_$Apache::lonxml::curdepth");
1.75 albertel 842: } elsif ($mode eq 'textnode') { # for data between <tag> ... </tag>
1.102 www 843: $element = &escape('homework_edit_'.
1.75 albertel 844: $Apache::lonxml::curdepth);
845: }
1.76 albertel 846: my $id=$Apache::lonxml::curdepth;
1.77 albertel 847: my %data=("imagechoice.$id.type" =>$type,
1.76 albertel 848: "imagechoice.$id.formname" =>$form,
849: "imagechoice.$id.file" =>$bgfile,
850: "imagechoice.$id.formcoord" =>$element);
1.75 albertel 851: if ($height) {
1.76 albertel 852: $data{"imagechoice.$id.formheight"}=$height.'_'.
853: $Apache::edit::bgimgsrccurdepth;
1.75 albertel 854: }
855: if ($width) {
1.76 albertel 856: $data{"imagechoice.$id.formwidth"}=$width.'_'.
857: $Apache::edit::bgimgsrccurdepth;
1.75 albertel 858: }
859: &Apache::lonnet::appenv(%data);
1.77 albertel 860: my $text="Enter Coordinates";
861: if ($type eq 'polygon') { $text='Create Polygon Data'; }
862: my $result='<a href="/adm/imagechoice?token='.$id.'" target="imagechoice">'.$text.'</a>';
1.49 www 863: return $result;
864: }
1.76 albertel 865:
866: sub deletecoorddata {
867: &Apache::lonnet::delenv("imagechoice\\.");
868: }
869:
1.29 matthew 870: #----------------------------------------------------- browse
871: sub browse {
872: # insert a link to call up the filesystem browser (lonindexer)
1.68 albertel 873: my ($id, $mode, $titleid) = @_;
1.29 matthew 874: my $form = 'lonhomework';
1.42 matthew 875: my $element;
876: if (! defined($mode) || $mode eq 'attribute') {
1.102 www 877: $element = &escape("$id\_$Apache::lonxml::curdepth");
1.42 matthew 878: } elsif ($mode eq 'textnode') { # for data between <tag> ... </tag>
1.102 www 879: $element = &escape('homework_edit_'.
1.68 albertel 880: $Apache::lonxml::curdepth);
881: }
882: my $titleelement;
883: if ($titleid) {
1.102 www 884: $titleelement=",'','','".&escape("$titleid\_$Apache::lonxml::curdepth")."'";
1.42 matthew 885: }
1.29 matthew 886: my $result = <<"ENDBUTTON";
1.68 albertel 887: <a href=\"javascript:openbrowser('$form','$element'$titleelement)\"\>Select</a>
1.29 matthew 888: ENDBUTTON
889: return $result;
890: }
891:
1.30 matthew 892: #----------------------------------------------------- browse
893: sub search {
894: # insert a link to call up the filesystem browser (lonindexer)
1.68 albertel 895: my ($id, $mode, $titleid) = @_;
1.30 matthew 896: my $form = 'lonhomework';
1.49 www 897: my $element;
898: if (! defined($mode) || $mode eq 'attribute') {
1.102 www 899: $element = &escape("$id\_$Apache::lonxml::curdepth");
1.49 www 900: } elsif ($mode eq 'textnode') { # for data between <tag> ... </tag>
1.102 www 901: $element = &escape('homework_edit_'.
1.49 www 902: $Apache::lonxml::curdepth);
903: }
1.68 albertel 904: my $titleelement;
905: if ($titleid) {
1.102 www 906: $titleelement=",'".&escape("$titleid\_$Apache::lonxml::curdepth")."'";
1.68 albertel 907: }
1.30 matthew 908: my $result = <<"ENDBUTTON";
1.68 albertel 909: <a href=\"javascript:opensearcher('$form','$element'$titleelement)\"\>Search</a>
1.30 matthew 910: ENDBUTTON
911: return $result;
912: }
913:
914:
1.1 albertel 915: 1;
916: __END__
1.26 harris41 917:
918: =head1 NAME
919:
920: Apache::edit - edit mode helpers
921:
922: =head1 SYNOPSIS
923:
924: Invoked by many homework and xml related modules.
925:
926: &Apache::edit::SUBROUTINENAME(ARGUMENTS);
927:
928: =head1 INTRODUCTION
929:
930: This module outputs HTML syntax helpful for the rendering of edit
931: mode interfaces.
932:
933: This is part of the LearningOnline Network with CAPA project
934: described at http://www.lon-capa.org.
935:
936: =head1 HANDLER SUBROUTINE
937:
938: There is no handler subroutine.
939:
940: =head1 OTHER SUBROUTINES
941:
942: =over 4
943:
944: =item *
945:
946: initialize_edit() : initialize edit (set colordepth to zero)
947:
948: =item *
949:
950: tag_start($target,$token,$description) : provide deletion and insertion lists
951: for the manipulation of a start tag; return a scalar string
952:
953: =item *
954:
955: tag_end($target,$token,$description) : ending syntax corresponding to
956: &tag_start. return a scalar string.
957:
958: =item *
959:
960: start_table($token) : start table; update colordepth; return scalar string.
961:
962: =item *
963:
964: end_table() : reduce color depth; end table; return scalar string
1.27 matthew 965:
966: =item *
967:
968: start_spanning_row() : start a new table row spanning the 'edit' environment.
969:
970: =item *
971:
972: start_row() : start a new table row and element.
973:
974: =item *
975:
976: end_row() : end current table element and row.
1.26 harris41 977:
978: =item *
979:
980: movebuttons($target,$token) : move-up and move-down buttons; return scalar
981: string
982:
983: =item *
984:
985: deletelist($target,$token) : provide a yes option in an HTML select element;
986: return scalar string
987:
988: =item *
989:
990: handle_delete($space,$target,$token,$tagstack,$parstack,$parser,$safeeval,
991: $style) : respond to a user delete request by passing relevant stack
992: and array information to various rendering functions; return a scalar string
993:
994: =item *
995:
996: get_insert_list($token) : provide an insertion list based on possibilities
997: from lonxml; return a scalar string
998:
999: =item *
1000:
1001: insertlist($target,$token) : api that uses get_insert_list;
1002: return a scalar string
1003:
1004: =item *
1005:
1006: handleinsert($token) : provide an insertion list based on possibilities
1007: from lonxml; return a scalar string
1008:
1009: =item *
1010:
1011: get_insert_list($token) : provide an insertion list based on possibilities
1012: from lonxml; return a scalar string
1.29 matthew 1013:
1014: =item *
1015: browse($elementname) : provide a link which will open up the filesystem
1016: browser (lonindexer) and, once a file is selected, place the result in
1.30 matthew 1017: the form element $elementname.
1018:
1019: =item *
1020: search($elementname) : provide a link which will open up the filesystem
1021: searcher (lonsearchcat) and, once a file is selected, place the result in
1.29 matthew 1022: the form element $elementname.
1.31 matthew 1023:
1.34 harris41 1024: =item *
1.32 albertel 1025: editline(tag,data,description,size): Provide a <input type="text" ../> for
1.31 matthew 1026: single-line text entry. This is to be used for text enclosed by tags, not
1027: arguements/parameters associated with a tag.
1.26 harris41 1028:
1029: =back
1030:
1031: incomplete...
1032:
1033: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>