Diff for /loncom/homework/edit.pm between versions 1.30 and 1.31

version 1.30, 2002/03/08 18:30:33 version 1.31, 2002/03/22 14:45:11
Line 301  sub textarea_sizes { Line 301  sub textarea_sizes {
   return ($rows,$cols);    return ($rows,$cols);
 }  }
   
   sub textfield {
       my ($tag,$data,$description,$size)=@_;
       if ($description) { $description="<br />".$description."<br />"; }
       my $result = <<"END";
   $description
   <input type="text" name="homework_edit_$Apache::lonxml::curdepth" 
          value="$data" size="$size" />
   END
       return $result;
   }
   
 sub editfield {  sub editfield {
   my ($tag,$data,$description,$minwidth,$minheight)=@_;    my ($tag,$data,$description,$minwidth,$minheight)=@_;
   
Line 552  search($elementname) : provide a link wh Line 563  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 *
   textfield(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
   arguements/parameters associated with a tag.
   
 =back  =back
   
 incomplete...  incomplete...

Removed from v.1.30  
changed lines
  Added in v.1.31


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