emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100681: 2010-07-01 Mark A. Hershberg


From: Mark A. Hershberger
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100681: 2010-07-01 Mark A. Hershberger <address@hidden>
Date: Thu, 01 Jul 2010 14:02:43 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100681
committer: Mark A. Hershberger <address@hidden>
branch nick: trunk
timestamp: Thu 2010-07-01 14:02:43 -0400
message:
  2010-07-01  Mark A. Hershberger  <address@hidden>
  
    * 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";))
modified:
  lisp/url/ChangeLog
  lisp/url/url-http.el
=== modified file 'lisp/url/ChangeLog'
--- a/lisp/url/ChangeLog        2010-06-22 16:48:53 +0000
+++ b/lisp/url/ChangeLog        2010-07-01 18:02:43 +0000
@@ -1,3 +1,9 @@
+2010-07-01  Mark A. Hershberger  <address@hidden>
+
+       * 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  <address@hidden>
 
        * url-parse.el (url-user-for-url, url-password-for-url):

=== modified file 'lisp/url/url-http.el'
--- a/lisp/url/url-http.el      2010-03-25 01:14:42 +0000
+++ b/lisp/url/url-http.el      2010-07-01 18:02:43 +0000
@@ -339,7 +339,7 @@
              ;; End request
              "\r\n"
              ;; Any data
-             url-http-data))
+             url-http-data "\r\n"))
            ""))
     (url-http-debug "Request is: \n%s" request)
     request))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]