diff options
Diffstat (limited to 'lisp/gnus/ChangeLog')
| -rw-r--r-- | lisp/gnus/ChangeLog | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 7eca03bd93b..51169f7b9df 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,137 @@ | |||
| 1 | 2011-03-30 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * proto-stream.el (open-protocol-stream): Bring back `network' type. | ||
| 4 | Make this the default type. | ||
| 5 | (proto-stream-open-plain): Rename from proto-stream-open-default. | ||
| 6 | (open-protocol-stream, proto-stream-open-starttls) | ||
| 7 | (proto-stream-open-tls, proto-stream-open-shell): Replace `default' | ||
| 8 | with `plain'. | ||
| 9 | |||
| 10 | * nnimap.el (nnimap-stream, nnimap-open-connection-1): Accept `network' | ||
| 11 | value. | ||
| 12 | |||
| 13 | * nntp.el (nntp-open-connection-function): Document the fact that some | ||
| 14 | values are not functions but are instead handled specially. Recognize | ||
| 15 | nntp-open-plain-stream value. | ||
| 16 | (nntp-open-connection): Recognize that value. | ||
| 17 | |||
| 18 | 2011-03-29 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 19 | |||
| 20 | * gssapi.el (open-gssapi-stream): Remove the last mentions of the IMAP | ||
| 21 | stuff. | ||
| 22 | |||
| 23 | * gnus-score.el (gnus-score-string): Fix calling convention of | ||
| 24 | `gnus-simplify-buffer-fuzzy' after last patches. | ||
| 25 | |||
| 26 | * gnus-sum.el (gnus-update-marks): Don't send any marks updates to the | ||
| 27 | server for articles we didn't get any headers for. This is a sanity | ||
| 28 | check. | ||
| 29 | |||
| 30 | 2011-03-29 Michael Welsh Duggan <md5i@md5i.com> | ||
| 31 | |||
| 32 | * nnimap.el (nnimap-open-connection-1): Is the login responds with a | ||
| 33 | new CAPABILITY, use it. | ||
| 34 | |||
| 35 | 2011-03-29 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 36 | |||
| 37 | * gnus-agent.el (gnus-agent-fetch-headers): Don't message if we're not | ||
| 38 | downloading anything. | ||
| 39 | |||
| 40 | * gnus.el (gnus-splash-svg-color-symbols): Removed superfluous `and'. | ||
| 41 | |||
| 42 | 2011-03-29 Adam Sjøgren <asjo@koldfront.dk> | ||
| 43 | |||
| 44 | * gnus.el (gnus-group-startup-message): Prefer svg file and replace | ||
| 45 | colors. | ||
| 46 | (gnus-splash-svg-color-symbols): New function. | ||
| 47 | |||
| 48 | 2011-03-29 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 49 | |||
| 50 | * gnus-sum.el (gnus-simplify-buffer-fuzzy): Take the regexp explicitly | ||
| 51 | instead of using the global gnus-simplify-subject-fuzzy-regexp. | ||
| 52 | (gnus-simplify-subject-fuzzy): Use the local | ||
| 53 | gnus-simplify-subject-fuzzy-regex instead of the global one. This | ||
| 54 | makes using this variable in group parameters work. | ||
| 55 | |||
| 56 | 2011-03-29 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 57 | |||
| 58 | * gnus-registry.el (gnus-registry-unfollowed-groups): Add | ||
| 59 | "archive:sent" to the unfollowed group regex (for the recent Gnus | ||
| 60 | archive:sent-YYYY-MM-DD groups). | ||
| 61 | (gnus-registry-split-fancy-with-parent): Bail out early in sender | ||
| 62 | tracking if there are more than `gnus-registry-max-track-groups' | ||
| 63 | matches. | ||
| 64 | |||
| 65 | 2011-03-29 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 66 | |||
| 67 | * message.el (message--yank-original-internal): New function to do the | ||
| 68 | insertion cleanly inside eval in `message-yank-original'. | ||
| 69 | (message-yank-original): Use it. | ||
| 70 | |||
| 71 | 2011-03-29 Julien Danjou <julien@danjou.info> | ||
| 72 | |||
| 73 | * mm-view.el (mm-display-inline-fontify): Use `set-normal-mode' with | ||
| 74 | local variables disabled rather than `normal-mode'. | ||
| 75 | |||
| 76 | 2011-03-26 Chong Yidong <cyd@stupidchicken.com> | ||
| 77 | |||
| 78 | * proto-stream.el: Changes preparatory to merging open-protocol-stream | ||
| 79 | with open-network-stream. | ||
| 80 | (proto-stream-always-use-starttls): Option removed. | ||
| 81 | (open-protocol-stream): Return a process object by default. Provide a | ||
| 82 | new parameter :return-list specifying a list-type return value, which | ||
| 83 | now has the form (PROP . PLIST) instead of a fixed-length list. Change | ||
| 84 | :type `network' to `try-starttls', and `network-only' to `default'. | ||
| 85 | Make `default' the default, for compatibility with open-network-stream. | ||
| 86 | Handle the no-parameter case exactly as open-network-stream, with no | ||
| 87 | additional stream processing. Search plists using plist-get. | ||
| 88 | Explicitly add :end-of-commend parameter if it is missing. | ||
| 89 | (proto-stream-open-default): Renamed from | ||
| 90 | proto-stream-open-network-only. Return 'default as the type. | ||
| 91 | (proto-stream-open-starttls): Rename from proto-stream-open-network. | ||
| 92 | Use plist-get. Don't return `tls' as the type if STARTTLS negotiation | ||
| 93 | failed. Always return a list with a (possibly dead) process as the | ||
| 94 | first element, for compatibility with open-network-stream. | ||
| 95 | (proto-stream-open-tls): Use plist-get. Always return a list. | ||
| 96 | (proto-stream-open-shell): Return `default' as connection type. | ||
| 97 | (proto-stream-capability-open): Use plist-get. | ||
| 98 | (proto-stream-eoc): Function deleted. | ||
| 99 | |||
| 100 | * nnimap.el (nnimap-stream, nnimap-open-connection) | ||
| 101 | (nnimap-open-connection-1): Handle renaming of :type parameter for | ||
| 102 | open-protocol-stream. | ||
| 103 | (nnimap-open-connection-1): Pass a :return-list parameter | ||
| 104 | open-protocol-stream to obtain a list return value. Parse this list | ||
| 105 | using plist-get. | ||
| 106 | |||
| 107 | * nntp.el (nntp-open-connection): Handle renaming of :type parameter | ||
| 108 | for open-protocol-stream. Accept open-protocol-stream return value | ||
| 109 | that is a subprocess object instead of a list. Handle the case of a | ||
| 110 | dead returned process. | ||
| 111 | |||
| 112 | 2011-03-25 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 113 | |||
| 114 | * mm-util.el (mm-handle-filename): Move to mm-decode.el (bug#8330). | ||
| 115 | |||
| 116 | * mm-decode.el (mm-handle-filename): Move from mm-util.el (bug#8330). | ||
| 117 | |||
| 118 | 2011-03-21 Julien Danjou <julien@danjou.info> | ||
| 119 | |||
| 120 | * mm-view.el (mm-display-inline-fontify): Make mode optional, and call | ||
| 121 | normal-mode if not set. Set temp buffer unmodified to avoid kill-buffer | ||
| 122 | query. | ||
| 123 | (mm-inline-text): Render normal text with fontification whenever | ||
| 124 | possible. | ||
| 125 | |||
| 126 | * gnus-sum.el (gnus-summary-save-parts-1): | ||
| 127 | * gnus-art.el (gnus-article-browse-html-save-cid-content) | ||
| 128 | (gnus-article-browse-html-parts, gnus-mime-delete-part) | ||
| 129 | (gnus-mime-copy-part, gnus-mime-inline-part, gnus-insert-mime-button): | ||
| 130 | Use `mm-handle-filename'. | ||
| 131 | |||
| 132 | * mm-util.el (mm-handle-filename): New function, return the filename of | ||
| 133 | an handle. | ||
| 134 | |||
| 1 | 2011-03-18 Julien Danjou <julien@danjou.info> | 135 | 2011-03-18 Julien Danjou <julien@danjou.info> |
| 2 | 136 | ||
| 3 | * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p. | 137 | * gnus-util.el (gnus-buffer-live-p): Simplify gnus-buffer-live-p. |