[Httpunit-commit] CVS: httpunit/doc Javascript-support.html,1.12,1.13 release_notes.txt,1.147,1.148
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-08-27 16:26:06
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv9481/doc Modified Files: Javascript-support.html release_notes.txt todo.txt Log Message: Added support for reset button and associated JavaScript Index: Javascript-support.html =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/Javascript-support.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- Javascript-support.html 21 Aug 2002 19:06:27 -0000 1.12 +++ Javascript-support.html 27 Aug 2002 16:26:02 -0000 1.13 @@ -45,11 +45,13 @@ </ul> <h4>events</h4> <ul> -<li>onSubmit - invoked when the form.submit() is invoked</li> +<li>onReset - invoked when form.reset() is invoked or a reset button is clicked</li> +<li>onSubmit - invoked when form.submit() is invoked or a submit button is clicked</li> </ul> <h4>methods</h4> <ul> <li>submit - submits the form</li> +<li>reset - resets the form controls to their default values</li> </ul> <h3>Image</h3> Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.147 retrieving revision 1.148 diff -u -r1.147 -r1.148 --- release_notes.txt 23 Aug 2002 19:33:12 -0000 1.147 +++ release_notes.txt 27 Aug 2002 16:26:02 -0000 1.148 @@ -11,6 +11,12 @@ Revision History: +27-Aug-2002 +Additions: + 1. Reset buttons may now be clicked to reset the form + 2. WebForm supports getButtonWithID + 3. JavaScript: Form now supports reset() and onReset event. + 23-Aug-2002 Additions: 1. javascript URLs are now supported. Index: todo.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/todo.txt,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- todo.txt 21 Aug 2002 20:49:39 -0000 1.28 +++ todo.txt 27 Aug 2002 16:26:03 -0000 1.29 @@ -4,14 +4,13 @@ o Support optional tags which hide their contents (as in IFRAME, OBJECT, etc.) o Check conformance with RFC 2109 - not currently sending $Version=1 string o Support IFRAME tag -o Support reset button detection o Support _new frame tag o Documentation, Documentation JavaScript priorities: o Document.write -o JavaScript URLs -o Form.onreset and Form.reset +o Javascript includes +o Navigator object Possibles: o replace JTidy with a simpler custom parser |