2000-11-12 09:47:54 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 12 Nov 2000 13:52:03 +0000 (13:52 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 12 Nov 2000 13:52:03 +0000 (13:52 +0000)
* gnus-art.el (gnus-mime-display-part): Display multipart/related
as multipart/mixed.

lisp/ChangeLog
lisp/gnus-art.el

index c8815dd..4f8cb11 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-12 09:47:54  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gnus-art.el (gnus-mime-display-part): Display multipart/related
+       as multipart/mixed.
+
 2000-11-12  David Edmondson  <dme@dme.org>
        
        * message.el (message-cite-prefix-regexp): moved from gnus-cite.el
 
 2000-09-29  David Edmondson  <dme@thus.net>
 
-       One-line patch.
-       
        * message.el (message-newline-and-reformat): Typo.
 
 2000-11-04 10:11:05  ShengHuo ZHU  <zsh@cs.rochester.edu>
index 3fcb0da..1ab6b58 100644 (file)
@@ -3566,8 +3566,11 @@ In no internal viewer is available, use an external viewer."
         (not gnus-mime-display-multipart-as-mixed))
     ;;;!!!We should find the start part, but we just default
     ;;;!!!to the first part.
-    (gnus-mime-display-part (cadr handle)))
-   ;; Other multiparts are handled like multipart/mixed.
+    ;;(gnus-mime-display-part (cadr handle))
+    ;;;!!! Most multipart/related is an HTML message plus images.
+    ;;;!!! Unfortunately we are unable to let W3 display those 
+    ;;;!!! included images, so we just display it as a mixed multipart.
+    (gnus-mime-display-mixed (cdr handle)))
    ((equal (car handle) "multipart/signed")
     (or (memq 'signed gnus-article-wash-types)
        (push 'signed gnus-article-wash-types))
@@ -3578,6 +3581,7 @@ In no internal viewer is available, use an external viewer."
        (push 'encrypted gnus-article-wash-types))
     (gnus-insert-mime-security-button handle)
     (gnus-mime-display-mixed (cdr handle)))
+   ;; Other multiparts are handled like multipart/mixed.
    (t
     (gnus-mime-display-mixed (cdr handle)))))