Skip to content

Commit

Permalink
Updated README in preparation for snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Aug 30, 2011
1 parent 7a082e4 commit e10ae0f
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
-------------------
Expand Down

0 comments on commit e10ae0f

Please sign in to comment.