*** empty log message ***
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 6 Nov 1999 22:16:05 +0000 (22:16 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 6 Nov 1999 22:16:05 +0000 (22:16 +0000)
lisp/ChangeLog
lisp/gnus-art.el
lisp/gnus-group.el
lisp/mm-decode.el
texi/ChangeLog
texi/gnus.texi

index 7cc45c6..c579b3f 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-06 22:56:49  Jens-Ulrik Petersen  <Jens-Ulrik.Petersen@nokia.com>
+
+       * gnus-group.el (gnus-group-read-ephemeral-group): Doc fix.
+
 1999-11-06 21:40:30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-uu.el (gnus-uu-mark-thread): Don't move point around.
@@ -291,6 +295,14 @@ Fri Nov  5 19:10:02 1999  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>
 
        * gnus-sum.el (gnus-newsgroup-ignored-charsets): Add x-unknown. 
 
+1999-10-20  David S. Goldberg  <dsg@mitre.org>
+
+       * mm-decode.el mm-inline-override-types: New variable
+
+       * mm-decode.el (mm-inline-override-p): Use it
+
+       * gnus-art.el (gnus-mime-display-single): Then use that
+
 Mon Sep 27 15:18:05 1999  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>
 
        * gnus.el: Pterodactyl Gnus v0.97 is released.
index 605d657..47d07bf 100644 (file)
@@ -3180,7 +3180,8 @@ If ALL-HEADERS is non-nil, no headers are hidden."
                       (or (not (mm-handle-disposition handle))
                           (equal (car (mm-handle-disposition handle))
                                  "inline")
-                          (mm-attachment-override-p handle)))
+                          (mm-attachment-override-p handle)
+                          (not (mm-inline-override-p handle))))
                 (mm-automatic-display-p handle)
                 (or (mm-inlined-p handle)
                     (mm-automatic-external-display-p type)))
index f75cc2d..bd52e1b 100644 (file)
@@ -1602,7 +1602,7 @@ ephemeral group.
 If REQUEST-ONLY, don't actually read the group; just request it.
 If SELECT-ARTICLES, only select those articles.
 
-Return the name of the group is selection was successful."
+Return the name of the group if selection was successful."
   ;; Transform the select method into a unique server.
   (when (stringp method)
     (setq method (gnus-server-to-method method)))
index 8abeeca..f3495a8 100644 (file)
 (defvar mm-attachment-override-types '("text/x-vcard")
   "Types that should have \"attachment\" ignored if they can be displayed inline.")
 
+(defvar mm-inline-override-types nil
+  "Types that should be treated as attachments even if they can be displayed inline.")
+
 (defvar mm-automatic-external-display nil
   "List of MIME type regexps that will be displayed externally automatically.")
 
@@ -500,6 +503,16 @@ external if displayed external."
                   (mm-inlinable-p handle))
          (throw 'found t))))))
 
+(defun mm-inline-override-p (handle)
+  "Say whether HANDLE should have inline behavior overridden."
+  (let ((types mm-inline-override-types)
+       (type (mm-handle-media-type handle))
+       ty)
+    (catch 'found
+      (while (setq ty (pop types))
+       (when (string-match ty type)
+         (throw 'found t))))))
+
 (defun mm-automatic-external-display-p (type)
   "Return the user-defined method for TYPE."
   (let ((methods mm-automatic-external-display)
index 2074b61..302c4ec 100644 (file)
@@ -1,3 +1,7 @@
+1999-11-06 23:09:31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus.texi (Customizing Articles): Fix.
+
 1999-11-05 22:34:23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus.texi (Posting Styles): Addition.
index 2be73e2..026905e 100644 (file)
@@ -6576,6 +6576,10 @@ Hide @sc{pem} (privacy enhanced messages) cruft
 @item W W B
 @kindex W W B (Summary)
 @findex gnus-article-strip-banner
+@cindex banner
+@cindex OneList
+@cindex stripping advertisments
+@cindex advertisments
 Strip the banner specified by the @code{banner} group parameter
 (@code{gnus-article-strip-banner}).  This is mainly used to hide those
 annoying banners and/or signatures that some mailing lists and moderated
@@ -8525,8 +8529,7 @@ You can, of course, write your own functions to be called from
 @code{gnus-part-display-hook}.  The functions are called narrowed to the
 part, and you can do anything you like, pretty much.  There is no
 information that you have to keep in the buffer---you can change
-everything.  However, you shouldn't delete any headers.  Instead make
-them invisible if you want to make them go away.
+everything.  
 
 
 @node Article Keymap