Index: documentation/manual/en/module_specs/Zend_Http_Client.xml
===================================================================
--- documentation/manual/en/module_specs/Zend_Http_Client.xml	(revision 20255)
+++ documentation/manual/en/module_specs/Zend_Http_Client.xml	(working copy)
@@ -138,6 +138,14 @@
                             <entry>boolean</entry>
                             <entry><constant>TRUE</constant></entry>
                         </row>
+                        <row>
+                            <entry>encodecookies</entry>
+                            <entry>Whether to pass the cookie value through urlencode/urldecode.
+                            Enabling this breaks support with some web servers.
+                            Disabling this limits the range of values the cookies can contain.</entry>
+                            <entry>boolean</entry>
+                            <entry><constant>TRUE</constant></entry>
+                        </row>
                     </tbody>
                 </tgroup>
             </table>
Index: documentation/manual/en/module_specs/Zend_Http_Cookie-Handling.xml
===================================================================
--- documentation/manual/en/module_specs/Zend_Http_Cookie-Handling.xml	(revision 20255)
+++ documentation/manual/en/module_specs/Zend_Http_Cookie-Handling.xml	(working copy)
@@ -81,12 +81,33 @@
                 </listitem>
                 <listitem>
                     <para>
-                    By calling the fromString() static method, with a cookie string as represented in the
+                    By calling the fromString($cookieStr, [$refUri, [$encodeValue]]) static method, with a cookie string as represented in the
                     'Set-Cookie' <acronym>HTTP</acronym> response header or 'Cookie' <acronym>HTTP</acronym> request header. In this case, the
                     cookie value must already be encoded. When the cookie string does not contain a 'domain'
                     part, you must provide a reference <acronym>URI</acronym> according to which the cookie's domain and path
                     will be set.
                     </para>
+                    <itemizedlist>
+                        <listitem>
+                            <para>
+                            <varname>$cookieStr</varname>: a cookie string as represented in the
+                           'Set-Cookie' <acronym>HTTP</acronym> response header or 'Cookie' 
+                           <acronym>HTTP</acronym> request header (required)
+                            </para>
+                        </listitem>
+                        <listitem>
+                            <para>
+                            <varname>$refUri</varname>: a reference <acronym>URI</acronym> according to which the cookie's domain and path
+                            will be set. (optional, defaults to parsing the value from the $cookieStr)
+                            </para>
+                        </listitem>
+                        <listitem>
+                            <para>
+                            <varname>$encodeValue</varname>: If the value should be passed through urldecode. Also effects the cookie's
+                            behavior when being converted back to a cookie string. (optional, defaults to true)
+                            </para>
+                        </listitem>
+                    </itemizedlist>
                 </listitem>
             </itemizedlist>
             <example id="zend.http.cookies.cookie.instantiating.example-1">

