GNU bug report logs - #16199
24.3.50; [PATCH 2/2] eww: Does not support file upload.

Previous Next

Package: emacs;

Reported by: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>

Date: Fri, 20 Dec 2013 09:32:02 UTC

Severity: normal

Tags: fixed, patch

Found in version 24.3.50

Fixed in version 25.1

Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 16199 in the body.
You can then email your comments to 16199 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#16199; Package emacs. (Fri, 20 Dec 2013 09:32:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Fri, 20 Dec 2013 09:32:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.3.50; [PATCH 2/2] eww: Does not support file upload.
Date: Fri, 20 Dec 2013 18:30:57 +0900
Signed-off-by: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>

diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index bff5cd8..22a9023 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -91,6 +91,15 @@ See also `eww-form-checkbox-selected-symbol'."
   :version "24.4"
   :group 'eww)
 
+(defface eww-form-file
+  '((((type x w32 ns) (class color))	; Like default mode line
+     :box (:line-width 2 :style released-button)
+     :background "#808080" :foreground "black"))
+  "Face for eww buffer buttons."
+  :version "24.4"
+  :group 'eww
+  :type "Browse")
+
 (defface eww-form-checkbox
   '((((type x w32 ns) (class color))	; Like default mode line
      :box (:line-width 2 :style released-button)
@@ -565,6 +574,12 @@ appears in a <link> or <a> tag."
     (define-key map [(control c) (control c)] 'eww-submit)
     map))
 
+(defvar eww-submit-file
+  (let ((map (make-sparse-keymap)))
+    (define-key map "\r" 'eww-select-file)
+    (define-key map [(control c) (control c)] 'eww-submit)
+    map))
+
 (defvar eww-checkbox-map
   (let ((map (make-sparse-keymap)))
     (define-key map [space] 'eww-toggle-checkbox)
@@ -675,6 +690,37 @@ appears in a <link> or <a> tag."
     (put-text-property start (point) 'keymap eww-checkbox-map)
     (insert " ")))
 
+(defun eww-form-file (cont)
+  (let ((start (point))
+	(value (cdr (assq :value cont)))
+	)
+    (setq value
+	  (if (zerop (length value))
+	      " No file selected"
+	    value))
+    (insert "Browse")
+    (add-face-text-property start (point) 'eww-form-file)
+    (insert value)
+    (put-text-property start (point) 'eww-form
+		       (list :eww-form eww-form
+			     :value (cdr (assq :value cont))
+			     :type (downcase (cdr (assq :type cont)))
+			     :name (cdr (assq :name cont))))
+    (put-text-property start (point) 'keymap eww-submit-file)
+    (insert " ")))
+
+(defun eww-select-file ()
+  "Change the value of the upload file menu under point."
+  (interactive)
+  (let*  ((input (get-text-property (point) 'eww-form))
+	 )
+    (let ((filename
+	   (let ((insert-default-directory t))
+	     (read-file-name "filename:  ")))
+	  )
+      (eww-update-field filename (length "Browse"))
+              (plist-put input :filename filename))))
+
 (defun eww-form-text (cont)
   (let ((start (point))
 	(type (downcase (or (cdr (assq :type cont))
@@ -787,6 +833,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
      ((or (equal type "checkbox")
 	  (equal type "radio"))
       (eww-form-checkbox cont))
+     ((equal type "file")
+      (eww-form-file cont))
      ((equal type "submit")
       (eww-form-submit cont))
      ((equal type "hidden")
@@ -845,6 +893,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
       (put-text-property start (point) 'eww-form menu)
       (add-face-text-property start (point) 'eww-form-select)
       (put-text-property start (point) 'keymap eww-select-map)
+      (unless (= start (point))
+	(put-text-property start (1+ start) 'help-echo "select field"))
       (shr-ensure-paragraph))))
 
 (defun eww-select-display (select)
@@ -877,14 +927,18 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
     (goto-char
      (eww-update-field display))))
 
-(defun eww-update-field (string)
+(defun eww-update-field (string &optional offset)
+  (if (not offset) (setq offset 0))
   (let ((properties (text-properties-at (point)))
-	(start (eww-beginning-of-field))
-	(end (1+ (eww-end-of-field))))
-    (delete-region start end)
+	(start (+ (eww-beginning-of-field) offset))
+	(current-end (1+ (eww-end-of-field)))
+	(new-end (1+ (+ (eww-beginning-of-field) (length string)))))
+    (delete-region start current-end)
+    (forward-char offset)
     (insert string
-	    (make-string (- (- end start) (length string)) ? ))
-    (set-text-properties start end properties)
+	    (make-string (- (- (+ new-end offset) start) (length string)) ? ))
+
+    (if (= 0 offset) (set-text-properties start new-end properties))
     start))
 
 (defun eww-toggle-checkbox ()
@@ -952,8 +1006,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	 (form (plist-get this-input :eww-form))
 	 values next-submit)
     (dolist (elem (sort (eww-inputs form)
-			 (lambda (o1 o2)
-			   (< (car o1) (car o2)))))
+                        (lambda (o1 o2)
+                          (< (car o1) (car o2)))))
       (let* ((input (cdr elem))
 	     (input-start (car elem))
 	     (name (plist-get input :name)))
@@ -963,6 +1017,13 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	    (when (plist-get input :checked)
 	      (push (cons name (plist-get input :value))
 		    values)))
+	   ((equal (plist-get input :type) "file")
+	    (push (cons "file" (list (cons "filedata" (with-temp-buffer (insert-file-contents
+						  (plist-get input :filename))
+						 (buffer-string)))
+			(cons "name" (plist-get input :name))
+			(cons "filename" (plist-get input :filename))))
+		  values))
 	   ((equal (plist-get input :type) "submit")
 	    ;; We want the values from buttons if we hit a button if
 	    ;; we hit enter on it, or if it's the first button after
@@ -985,12 +1046,31 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	      values)))
     (if (and (stringp (cdr (assq :method form)))
 	     (equal (downcase (cdr (assq :method form))) "post"))
-	(let ((url-request-method "POST")
-	      (url-request-extra-headers
-	       '(("Content-Type" . "application/x-www-form-urlencoded")))
-	      (url-request-data (mm-url-encode-www-form-urlencoded values)))
-	  (eww-browse-url (shr-expand-url (cdr (assq :action form))
-					  eww-current-url)))
+        (let ((mtype))
+          (dolist (x values mtype)
+            (if (equal (car x) "file")
+                (progn
+                  (setq mtype "multipart/form-data")
+                  )))
+          (cond ((equal mtype "multipart/form-data")
+		 (let ((boundary (mml-compute-boundary '()))
+		       )
+		   (let ((url-request-method "POST")
+			 (url-request-extra-headers
+			  (list (cons "Content-Type" (concat "multipart/form-data; boundary=" boundary)))
+			)
+			 (url-request-data (mm-url-encode-multipart-form-data values boundary)))
+		     (eww-browse-url (shr-expand-url (cdr (assq :action form))
+						     eww-current-url))))
+		)
+                (t
+                 (let ((url-request-method "POST")
+                       (url-request-extra-headers
+                        '(("Content-Type" . "application/x-www-form-urlencoded")))
+                       (url-request-data (mm-url-encode-www-form-urlencoded values)))
+                   (eww-browse-url (shr-expand-url (cdr (assq :action form))
+                                                   eww-current-url)))
+                 )))
       (eww-browse-url
        (concat
 	(if (cdr (assq :action form))
-- 
1.8.3.1





Added tag(s) pending. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Tue, 24 Dec 2013 07:40:06 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#16199; Package emacs. (Wed, 25 Dec 2013 04:33:02 GMT) Full text and rfc822 format available.

Message #10 received at 16199 <at> debbugs.gnu.org (full text, mbox):

From: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>
To: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>
Cc: 16199 <at> debbugs.gnu.org
Subject: Re: bug#16199: 24.3.50; [PATCH 2/2] eww: Does not support file upload.
Date: Wed, 25 Dec 2013 13:31:55 +0900
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 02c93a0..80eba2f 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -91,6 +91,15 @@ See also `eww-form-checkbox-selected-symbol'."
   :version "24.4"
   :group 'eww)

+(defface eww-form-file
+  '((((type x w32 ns) (class color))	; Like default mode line
+     :box (:line-width 2 :style released-button)
+     :background "#808080" :foreground "black"))
+  "Face for eww buffer buttons."
+  :version "24.4"
+  :group 'eww
+  :type "Browse")
+
 (defface eww-form-checkbox
   '((((type x w32 ns) (class color))	; Like default mode line
      :box (:line-width 2 :style released-button)
@@ -568,6 +577,12 @@ appears in a <link> or <a> tag."
     (define-key map [(control c) (control c)] 'eww-submit)
     map))

+(defvar eww-submit-file
+  (let ((map (make-sparse-keymap)))
+    (define-key map "\r" 'eww-select-file)
+    (define-key map [(control c) (control c)] 'eww-submit)
+    map))
+
 (defvar eww-checkbox-map
   (let ((map (make-sparse-keymap)))
     (define-key map " " 'eww-toggle-checkbox)
@@ -678,6 +693,34 @@ appears in a <link> or <a> tag."
     (put-text-property start (point) 'keymap eww-checkbox-map)
     (insert " ")))
 
+(defun eww-form-file (cont)
+  (let ((start (point))
+	(value (cdr (assq :value cont))))
+    (setq value
+	  (if (zerop (length value))
+	      " No file selected"
+	    value))
+    (insert "Browse")
+    (add-face-text-property start (point) 'eww-form-file)
+    (insert value)
+    (put-text-property start (point) 'eww-form
+		       (list :eww-form eww-form
+			     :value (cdr (assq :value cont)) ;; value を interactive に
+			     :type (downcase (cdr (assq :type cont)))
+			     :name (cdr (assq :name cont))))
+    (put-text-property start (point) 'keymap eww-submit-file)
+    (insert " ")))
+
+(defun eww-select-file ()
+  "Change the value of the upload file menu under point."
+  (interactive)
+  (let*  ((input (get-text-property (point) 'eww-form)))
+    (let ((filename
+	   (let ((insert-default-directory t))
+	     (read-file-name "filename:  "))))
+      (eww-update-field filename (length "Browse"))
+              (plist-put input :filename filename))))
+
 (defun eww-form-text (cont)
   (let ((start (point))
 	(type (downcase (or (cdr (assq :type cont))
@@ -794,6 +837,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
      ((or (equal type "checkbox")
 	  (equal type "radio"))
       (eww-form-checkbox cont))
+     ((equal type "file")
+      (eww-form-file cont))
      ((equal type "submit")
       (eww-form-submit cont))
      ((equal type "hidden")
@@ -886,14 +931,17 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
     (goto-char
      (eww-update-field display))))

-(defun eww-update-field (string)
+(defun eww-update-field (string &optional offset)
+  (if (not offset) (setq offset 0))
   (let ((properties (text-properties-at (point)))
-	(start (eww-beginning-of-field))
-	(end (1+ (eww-end-of-field))))
-    (delete-region start end)
+	(start (+ (eww-beginning-of-field) offset))
+	(current-end (1+ (eww-end-of-field)))
+	(new-end (1+ (+ (eww-beginning-of-field) (length string)))))
+    (delete-region start current-end)
+    (forward-char offset)
     (insert string
-	    (make-string (- (- end start) (length string)) ? ))
-    (set-text-properties start end properties)
+	    (make-string (- (- (+ new-end offset) start) (length string)) ? ))
+    (if (= 0 offset) (set-text-properties start new-end properties))
     start))
 
 (defun eww-toggle-checkbox ()
@@ -961,8 +1009,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	 (form (plist-get this-input :eww-form))
 	 values next-submit)
     (dolist (elem (sort (eww-inputs form)
-			 (lambda (o1 o2)
-			   (< (car o1) (car o2)))))
+			(lambda (o1 o2)
+			  (< (car o1) (car o2)))))
       (let* ((input (cdr elem))
 	     (input-start (car elem))
 	     (name (plist-get input :name)))
@@ -972,6 +1020,13 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	    (when (plist-get input :checked)
 	      (push (cons name (plist-get input :value))
 		    values)))
+	   ((equal (plist-get input :type) "file")
+	    (push (cons "file" (list (cons "filedata" (with-temp-buffer (insert-file-contents
+									 (plist-get input :filename))
+									(buffer-string)))
+				     (cons "name" (plist-get input :name))
+				     (cons "filename" (plist-get input :filename))))
+		  values))
 	   ((equal (plist-get input :type) "submit")
 	    ;; We want the values from buttons if we hit a button if
 	    ;; we hit enter on it, or if it's the first button after
@@ -994,12 +1049,26 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
 	      values)))
     (if (and (stringp (cdr (assq :method form)))
 	     (equal (downcase (cdr (assq :method form))) "post"))
-	(let ((url-request-method "POST")
-	      (url-request-extra-headers
-	       '(("Content-Type" . "application/x-www-form-urlencoded")))
-	      (url-request-data (mm-url-encode-www-form-urlencoded values)))
-	  (eww-browse-url (shr-expand-url (cdr (assq :action form))
-					  eww-current-url)))
+        (let ((mtype))
+          (dolist (x values mtype)
+            (if (equal (car x) "file")
+                (progn
+                  (setq mtype "multipart/form-data"))))
+          (cond ((equal mtype "multipart/form-data")
+		 (let ((boundary (mml-compute-boundary '())))
+		   (let ((url-request-method "POST")
+			 (url-request-extra-headers
+			  (list (cons "Content-Type" (concat "multipart/form-data; boundary=" boundary))))
+			 (url-request-data (mm-url-encode-multipart-form-data values boundary)))
+		     (eww-browse-url (shr-expand-url (cdr (assq :action form))
+						     eww-current-url)))))
+                (t
+                 (let ((url-request-method "POST")
+                       (url-request-extra-headers
+                        '(("Content-Type" . "application/x-www-form-urlencoded")))
+                       (url-request-data (mm-url-encode-www-form-urlencoded values)))
+                   (eww-browse-url (shr-expand-url (cdr (assq :action form))
+                                                   eww-current-url))))))
       (eww-browse-url
        (concat
 	(if (cdr (assq :action form))
---
1.8.3.1


    --- [2/2] ---

Regards,

Kenjiro 

nakayamakenjiro <at> gmail.com writes:

> Signed-off-by: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>
>
> diff --git a/lisp/net/eww.el b/lisp/net/eww.el
> index bff5cd8..22a9023 100644
> --- a/lisp/net/eww.el
> +++ b/lisp/net/eww.el
> @@ -91,6 +91,15 @@ See also `eww-form-checkbox-selected-symbol'."
>    :version "24.4"
>    :group 'eww)
>  
> +(defface eww-form-file
> +  '((((type x w32 ns) (class color))	; Like default mode line
> +     :box (:line-width 2 :style released-button)
> +     :background "#808080" :foreground "black"))
> +  "Face for eww buffer buttons."
> +  :version "24.4"
> +  :group 'eww
> +  :type "Browse")
> +
>  (defface eww-form-checkbox
>    '((((type x w32 ns) (class color))	; Like default mode line
>       :box (:line-width 2 :style released-button)
> @@ -565,6 +574,12 @@ appears in a <link> or <a> tag."
>      (define-key map [(control c) (control c)] 'eww-submit)
>      map))
>  
> +(defvar eww-submit-file
> +  (let ((map (make-sparse-keymap)))
> +    (define-key map "\r" 'eww-select-file)
> +    (define-key map [(control c) (control c)] 'eww-submit)
> +    map))
> +
>  (defvar eww-checkbox-map
>    (let ((map (make-sparse-keymap)))
>      (define-key map [space] 'eww-toggle-checkbox)
> @@ -675,6 +690,37 @@ appears in a <link> or <a> tag."
>      (put-text-property start (point) 'keymap eww-checkbox-map)
>      (insert " ")))
>  
> +(defun eww-form-file (cont)
> +  (let ((start (point))
> +	(value (cdr (assq :value cont)))
> +	)
> +    (setq value
> +	  (if (zerop (length value))
> +	      " No file selected"
> +	    value))
> +    (insert "Browse")
> +    (add-face-text-property start (point) 'eww-form-file)
> +    (insert value)
> +    (put-text-property start (point) 'eww-form
> +		       (list :eww-form eww-form
> +			     :value (cdr (assq :value cont))
> +			     :type (downcase (cdr (assq :type cont)))
> +			     :name (cdr (assq :name cont))))
> +    (put-text-property start (point) 'keymap eww-submit-file)
> +    (insert " ")))
> +
> +(defun eww-select-file ()
> +  "Change the value of the upload file menu under point."
> +  (interactive)
> +  (let*  ((input (get-text-property (point) 'eww-form))
> +	 )
> +    (let ((filename
> +	   (let ((insert-default-directory t))
> +	     (read-file-name "filename:  ")))
> +	  )
> +      (eww-update-field filename (length "Browse"))
> +              (plist-put input :filename filename))))
> +
>  (defun eww-form-text (cont)
>    (let ((start (point))
>  	(type (downcase (or (cdr (assq :type cont))
> @@ -787,6 +833,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>       ((or (equal type "checkbox")
>  	  (equal type "radio"))
>        (eww-form-checkbox cont))
> +     ((equal type "file")
> +      (eww-form-file cont))
>       ((equal type "submit")
>        (eww-form-submit cont))
>       ((equal type "hidden")
> @@ -845,6 +893,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>        (put-text-property start (point) 'eww-form menu)
>        (add-face-text-property start (point) 'eww-form-select)
>        (put-text-property start (point) 'keymap eww-select-map)
> +      (unless (= start (point))
> +	(put-text-property start (1+ start) 'help-echo "select field"))
>        (shr-ensure-paragraph))))
>  
>  (defun eww-select-display (select)
> @@ -877,14 +927,18 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>      (goto-char
>       (eww-update-field display))))
>  
> -(defun eww-update-field (string)
> +(defun eww-update-field (string &optional offset)
> +  (if (not offset) (setq offset 0))
>    (let ((properties (text-properties-at (point)))
> -	(start (eww-beginning-of-field))
> -	(end (1+ (eww-end-of-field))))
> -    (delete-region start end)
> +	(start (+ (eww-beginning-of-field) offset))
> +	(current-end (1+ (eww-end-of-field)))
> +	(new-end (1+ (+ (eww-beginning-of-field) (length string)))))
> +    (delete-region start current-end)
> +    (forward-char offset)
>      (insert string
> -	    (make-string (- (- end start) (length string)) ? ))
> -    (set-text-properties start end properties)
> +	    (make-string (- (- (+ new-end offset) start) (length string)) ? ))
> +
> +    (if (= 0 offset) (set-text-properties start new-end properties))
>      start))
>  
>  (defun eww-toggle-checkbox ()
> @@ -952,8 +1006,8 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>  	 (form (plist-get this-input :eww-form))
>  	 values next-submit)
>      (dolist (elem (sort (eww-inputs form)
> -			 (lambda (o1 o2)
> -			   (< (car o1) (car o2)))))
> +                        (lambda (o1 o2)
> +                          (< (car o1) (car o2)))))
>        (let* ((input (cdr elem))
>  	     (input-start (car elem))
>  	     (name (plist-get input :name)))
> @@ -963,6 +1017,13 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>  	    (when (plist-get input :checked)
>  	      (push (cons name (plist-get input :value))
>  		    values)))
> +	   ((equal (plist-get input :type) "file")
> +	    (push (cons "file" (list (cons "filedata" (with-temp-buffer (insert-file-contents
> +						  (plist-get input :filename))
> +						 (buffer-string)))
> +			(cons "name" (plist-get input :name))
> +			(cons "filename" (plist-get input :filename))))
> +		  values))
>  	   ((equal (plist-get input :type) "submit")
>  	    ;; We want the values from buttons if we hit a button if
>  	    ;; we hit enter on it, or if it's the first button after
> @@ -985,12 +1046,31 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.")
>  	      values)))
>      (if (and (stringp (cdr (assq :method form)))
>  	     (equal (downcase (cdr (assq :method form))) "post"))
> -	(let ((url-request-method "POST")
> -	      (url-request-extra-headers
> -	       '(("Content-Type" . "application/x-www-form-urlencoded")))
> -	      (url-request-data (mm-url-encode-www-form-urlencoded values)))
> -	  (eww-browse-url (shr-expand-url (cdr (assq :action form))
> -					  eww-current-url)))
> +        (let ((mtype))
> +          (dolist (x values mtype)
> +            (if (equal (car x) "file")
> +                (progn
> +                  (setq mtype "multipart/form-data")
> +                  )))
> +          (cond ((equal mtype "multipart/form-data")
> +		 (let ((boundary (mml-compute-boundary '()))
> +		       )
> +		   (let ((url-request-method "POST")
> +			 (url-request-extra-headers
> +			  (list (cons "Content-Type" (concat "multipart/form-data; boundary=" boundary)))
> +			)
> +			 (url-request-data (mm-url-encode-multipart-form-data values boundary)))
> +		     (eww-browse-url (shr-expand-url (cdr (assq :action form))
> +						     eww-current-url))))
> +		)
> +                (t
> +                 (let ((url-request-method "POST")
> +                       (url-request-extra-headers
> +                        '(("Content-Type" . "application/x-www-form-urlencoded")))
> +                       (url-request-data (mm-url-encode-www-form-urlencoded values)))
> +                   (eww-browse-url (shr-expand-url (cdr (assq :action form))
> +                                                   eww-current-url)))
> +                 )))
>        (eww-browse-url
>         (concat
>  	(if (cdr (assq :action form))





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#16199; Package emacs. (Mon, 10 Nov 2014 21:36:01 GMT) Full text and rfc822 format available.

Message #13 received at 16199 <at> debbugs.gnu.org (full text, mbox):

From: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
To: Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com>
Cc: 16199 <at> debbugs.gnu.org
Subject: Re: bug#16199: 24.3.50; [PATCH 2/2] eww: Does not support file upload.
Date: Mon, 10 Nov 2014 22:34:52 +0100
Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com> writes:

> diff --git a/lisp/net/eww.el b/lisp/net/eww.el
> index 02c93a0..80eba2f 100644

Thanks; applied.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) fixed. Request was from Lars Magne Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Mon, 10 Nov 2014 21:36:02 GMT) Full text and rfc822 format available.

bug marked as fixed in version 25.1, send any further explanations to 16199 <at> debbugs.gnu.org and Kenjiro NAKAYAMA <nakayamakenjiro <at> gmail.com> Request was from Lars Magne Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Mon, 10 Nov 2014 21:36:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 09 Dec 2014 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 10 years and 197 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.