version 1.33, 2002/03/28 22:03:21
|
version 1.37, 2002/10/25 19:02:38
|
Line 249 sub insert_stringresponse {
|
Line 249 sub insert_stringresponse {
|
</stringresponse>'; |
</stringresponse>'; |
} |
} |
|
|
|
sub insert_essayresponse { |
|
return ' |
|
<essayresponse> |
|
<textfield></textfield> |
|
</essayresponse>'; |
|
} |
|
|
sub insert_optionresponse { |
sub insert_optionresponse { |
return ' |
return ' |
<optionresponse max="10"> |
<optionresponse max="10"> |
Line 285 sub insert_numericalhint {
|
Line 292 sub insert_numericalhint {
|
</numericalhint>'; |
</numericalhint>'; |
} |
} |
|
|
|
sub insert_radiobuttonhint { |
|
return ' |
|
<radiobuttonhint> |
|
</radiobuttonhint>'; |
|
} |
|
|
sub insert_startouttext { |
sub insert_startouttext { |
return "<startouttext />\n<endouttext />"; |
return "<startouttext />\n<endouttext />"; |
} |
} |
Line 426 sub select_or_text_arg {
|
Line 439 sub select_or_text_arg {
|
} |
} |
} |
} |
$optionlist.="<option value=\"TYPEDINVALUE\">Type in value</option>\n"; |
$optionlist.="<option value=\"TYPEDINVALUE\">Type in value</option>\n"; |
if ($found) { |
if (($found) || (!$selected)) { |
$result.=$description.'<select name="'."$Apache::lonxml::curdepth.$name".'"> |
$result.=$description.'<select name="'."$Apache::lonxml::curdepth.$name".'"> |
'.$optionlist.' |
'.$optionlist.' |
</select>'; |
</select>'; |
Line 570 search($elementname) : provide a link wh
|
Line 583 search($elementname) : provide a link wh
|
searcher (lonsearchcat) and, once a file is selected, place the result in |
searcher (lonsearchcat) and, once a file is selected, place the result in |
the form element $elementname. |
the form element $elementname. |
|
|
= item * |
=item * |
editline(tag,data,description,size): Provide a <input type="text" ../> for |
editline(tag,data,description,size): Provide a <input type="text" ../> for |
single-line text entry. This is to be used for text enclosed by tags, not |
single-line text entry. This is to be used for text enclosed by tags, not |
arguements/parameters associated with a tag. |
arguements/parameters associated with a tag. |