The 4.6.7 bug fix cycle.

This commit is contained in:
JT Smith 2002-09-08 23:13:27 +00:00
parent a1a21aa1ee
commit c9dcb9dda1
9 changed files with 7467 additions and 7120 deletions

View file

@ -30,7 +30,8 @@ use WebGUI::URL;
use WebGUI::HTMLForm;
$f = WebGUI::HTMLForm->new;
$f->checkbox("toggleGadget","Turn Gadgets On?");
$f->checkbox("whichOne","Is red your favorite?","red");
$f->checkList("dayOfWeek",\%days,"Which day?");
$f->combo("fruit",\%fruit,"Choose a fruit or enter your own.");
$f->date("endDate","End Date",$endDate);
$f->email("emailAddress","Email Address");
@ -39,8 +40,11 @@ use WebGUI::URL;
$f->hidden("wid","55");
$f->HTMLArea("description","Description");
$f->integer("size","Size");
$f->interval("timeToLive","How long should this last?",12,"hours");
$f->password("identifier","Password");
$f->phone("cellPhone","Cell Phone");
$f->radio("whichOne","Is red your favorite?","red");
$f->radioList("dayOfWeek",\%days,"Which day?");
$f->raw("text");
$f->readOnly("34","Page ID");
$f->select("dayOfWeek",\%days,"Which day?");