2010-07-01 Mark A. Hershberger <mah@everybody.org>
authorMark A. Hershberger <mah@everybody.org>
Thu, 1 Jul 2010 18:02:43 +0000 (14:02 -0400)
committerMark A. Hershberger <mah@everybody.org>
Thu, 1 Jul 2010 18:02:43 +0000 (14:02 -0400)
  * url-http.el (url-http-create-request): Add a CRLF on the end so
  that POSTs with content to https urls work. See
  <https://bugs.launchpad.net/mediawiki-el/+bug/540759>

Prior to this, the following request would not terminate:

(let ((url-request-method "POST")
             (url-request-data "action=login"))
         (url-retrieve-synchronously "https://example.org/wiki/api.php"))

lisp/url/ChangeLog
lisp/url/url-http.el

index 4499ea5..1de6f93 100644 (file)
@@ -1,3 +1,9 @@
+2010-07-01  Mark A. Hershberger  <mah@everybody.org>
+
+       * url-http.el (url-http-create-request): Add a CRLF on the end so
+       that POSTs with content to https urls work. See
+       <https://bugs.launchpad.net/mediawiki-el/+bug/540759>
+
 2010-06-22  Mark A. Hershberger  <mah@everybody.org>
 
        * url-parse.el (url-user-for-url, url-password-for-url):
index 9f988be..24daba4 100644 (file)
@@ -339,7 +339,7 @@ request.")
              ;; End request
              "\r\n"
              ;; Any data
-             url-http-data))
+             url-http-data "\r\n"))
            ""))
     (url-http-debug "Request is: \n%s" request)
     request))