From e10ae0f4d4427e9a5cdb03f58c78a701d57a74d5 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Tue, 30 Aug 2011 12:29:14 -0500 Subject: [PATCH] Updated README in preparation for snapshot --- README.txt | 46 ++++++++++++++++++++++++++++++---------------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/README.txt b/README.txt index beda5aa5f0a..3168471f435 100644 --- a/README.txt +++ b/README.txt @@ -10,25 +10,25 @@ PLEASE USE AT YOUR OWN RISK. NEW FEATURES ------------ -This release contains the following: +This snapshot includes: - - Dispatchable interface (Zend\Stdlib\Dispatchable) and related functionality - (Message, Request, and Response interfaces and implementations) + - The "Dispatchable" and related interfaces (Zend\Stdlib\Dispatchable, + MessageDescription, RequestDescription, and ResponseDescription) - - Rewritten HTTP component - - Rewritten URI component, with better and more extensible support for an - array of different URI schemas, as well as more flexible path and parameter - decomposition and serialization. + - A fully refactored HTTP component + - Rewritten URI component, with better and more extensible support + for an array of different URI schemas, as well as more flexible + path and parameter decomposition and serialization. - - Adds HTTP versions of the Stdlib Request and Response interfaces, along - with full-fledged support for standard HTTP headers + - Adds HTTP versions of the Stdlib Request and Response interfaces, + along with full-fledged support for standard HTTP headers. - - A rewritten HTTP client that consumes Http\Request objects and produces - Http\Response objects. + - A rewritten HTTP client that consumes Http\Request objects and + produces Http\Response objects. - - Two additional HTTP client implementations that provide a convenience API - around the base HTTP client. One is static, and allows for simple one-off - requests: + - Two additional HTTP client implementations that provide a + convenience API around the base HTTP client. One is static, and + allows for simple one-off requests: $response = ClientStatic::get($uri); $response = ClientStatic::post( @@ -37,8 +37,22 @@ This release contains the following: array('Content-Type' => ClientStatic::ENC_URENCODED) ); - The other largely mimics the Zend Framework 1.X HTTP client, and proxies - functionality to the Request object when appropriate. + The other largely mimics the Zend Framework 1.X HTTP client, and + proxies functionality to the Request object when appropriate. + + - Updated all docbook sources to DocBook 5 formatting standards. + + - Merging of more than 50 pull requests made by community members, + ranging from one-liner documentation changes to sweeping fixes to the + testing repository (including fixing most assertions deprecated in + PHPUnit 3.5.0). + +We will be refactoring all components using the HTTP client in an +upcoming milestone to ensure they continue to work, and will also +post a blog entry and documentation page containing tips. + +This snapshot should NOT be used in production, as it is considered +pre-pre alpha quality. SYSTEM REQUIREMENTS -------------------