[Httpunit-commit] CVS: httpunit/doc release_notes.txt,1.96,1.97
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-03-06 04:59:55
|
Update of /cvsroot/httpunit/httpunit/doc In directory usw-pr-cvs1:/tmp/cvs-serv9204/doc Modified Files: release_notes.txt Log Message: Added support for gzip-encoded responses Index: release_notes.txt =================================================================== RCS file: /cvsroot/httpunit/httpunit/doc/release_notes.txt,v retrieving revision 1.96 retrieving revision 1.97 diff -u -r1.96 -r1.97 --- release_notes.txt 6 Mar 2002 03:45:55 -0000 1.96 +++ release_notes.txt 6 Mar 2002 04:59:52 -0000 1.97 @@ -46,32 +46,33 @@ 2. HttpUnit now handles multiple file form controls with the same name. 3. WebResponse now has a getSubframeContents method which returns the contents of a subframe of the frame represented by the response. + 4. gzip-encoded responses are now handled ServletUnit enhancements - 4. ServletUnit now supports creating a RequestDispatcher from ServletContext to forward to other servlets. - Support for this is rudimentary at present: query parameters on the request dispatcher create are ignored. 5. ServletUnit now supports the web.xml <context-param> tag. 6. ServletUnit now supports the HttpServletRequest.getRequestURI method 7. ServletUnit now supports defining (and retrieving) a non-empty context path for a web application 8. ServletUnit now supports wild-cards in web.xml servlet mapping + 9. ServletUnit now supports creating a RequestDispatcher from ServletContext to forward to other servlets. + Support for this is rudimentary at present: query parameters on the request dispatcher create are ignored. Form manipulation enhancements: - 9. It is now possible to set values for a form directly into the WebForm object. All such changes will be validated. + 10. It is now possible to set values for a form directly into the WebForm object. All such changes will be validated. These will be used by any requests derived from the form. - 10. Parameters defined in form query strings are now included in the known parameters of a form and requests + 11. Parameters defined in form query strings are now included in the known parameters of a form and requests built from it. - 11. Form parameters can be reset to their initial values using WebForm.reset(). - 12. You can now change the position of an image button click in a request with WebRequest.setImageButtonClickPosition() + 12. Form parameters can be reset to their initial values using WebForm.reset(). + 13. You can now change the position of an image button click in a request with WebRequest.setImageButtonClickPosition() Test properties enhancements: - 12. You can now call HttpUnitOptions.setAutoRedirect( false ) to enable explicit testing of redirect requests. - 13. WebClient now has an exceptionsThrownOnErrorStatus property to control this behavior per client. + 14. You can now call HttpUnitOptions.setAutoRedirect( false ) to enable explicit testing of redirect requests. + 15. WebClient now has an exceptionsThrownOnErrorStatus property to control this behavior per client. Extensibility enhancements: - 14. HttpUnit can now use any jaxp-compliant parser, rather than just xerces. - 15. MessageBodyWebRequest's constructors and inner class are now public, allowing outside code to create new request classes. - 16. WebClient now exposes the protected method writeMessageBody to ease implementation of new subclasses - 17. WebClient can now accept a listener of type WebClientListener to report on each request sent and response received. + 16. HttpUnit can now use any jaxp-compliant parser, rather than just xerces. + 17. MessageBodyWebRequest's constructors and inner class are now public, allowing outside code to create new request classes. + 18. WebClient now exposes the protected method writeMessageBody to ease implementation of new subclasses + 19. WebClient can now accept a listener of type WebClientListener to report on each request sent and response received. Notes: 1. Parameter validation is now handled by the form. Requests created from the form while parameter validation is |