From: <lan...@us...> - 2003-01-10 16:50:20
|
Update of /cvsroot/webmacro/webmacro/macros/html In directory sc8-pr-cvs1:/tmp/cvs-serv10271/macros/html Modified Files: all.wmm formControls.wmm frames.wmm Log Message: test and macro updates Index: all.wmm =================================================================== RCS file: /cvsroot/webmacro/webmacro/macros/html/all.wmm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** all.wmm 21 Dec 2002 07:30:20 -0000 1.2 --- all.wmm 10 Jan 2003 16:49:43 -0000 1.3 *************** *** 5,6 **** --- 5,7 ---- #include as macro "html/frames.wmm" #include as macro "html/formControls.wmm" + #include as macro "html/menuStyles.wmm" Index: formControls.wmm =================================================================== RCS file: /cvsroot/webmacro/webmacro/macros/html/formControls.wmm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** formControls.wmm 21 Dec 2002 07:30:20 -0000 1.1 --- formControls.wmm 10 Jan 2003 16:49:45 -0000 1.2 *************** *** 61,64 **** --- 61,80 ---- } + ## textInput(textData, formatProps) where: + ## arg1 corresponds to the data + ## arg2 provides format values for the text + ## Formats a choice using radio button controls + #macro textInput($textData, $formatProps) { + <INPUT TYPE="TEXT" + MAXLENGTH="textData.maxChars" + NAME="textData.name" + SIZE="$formatProps.charLength" + VALUE="textData.value" + > + } + + + + ## dateControl(dateValues, formatProps) where: ## arg1 corresponds to the values for the date control Index: frames.wmm =================================================================== RCS file: /cvsroot/webmacro/webmacro/macros/html/frames.wmm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** frames.wmm 21 Dec 2002 01:06:55 -0000 1.1 --- frames.wmm 10 Jan 2003 16:49:45 -0000 1.2 *************** *** 17,24 **** onClick= "window.open( ! '$urlProps.url', 'popup', 'resizable=$scriptProps.resizeable,toolbar=no,status=no,location=no,scrollbars=yes,width=$scriptProps.width,height=$scriptProps.height,screenX=0,screenY=0,alwaysRaised=yes')"> ! $urlProps.visibleContent</a> } --- 17,24 ---- onClick= "window.open( ! '$urlProps.hrefOnly', 'popup', 'resizable=$scriptProps.resizeable,toolbar=no,status=no,location=no,scrollbars=yes,width=$scriptProps.width,height=$scriptProps.height,screenX=0,screenY=0,alwaysRaised=yes')"> ! $urlProps.hrefLabel</a> } |