X-Git-Url: http://cgit.sxemacs.org/?a=blobdiff_plain;f=lisp%2FChangeLog;h=29f678c512c88365e9e7853d19fe072755a2f9b3;hb=91c762b26aeb17dfd2c5b8330745a66bb4b285b9;hp=5f9d5fe2ed211943c6717d88c54afb0778a21c8b;hpb=e1f824dab887260a93d016ee5ac66d7607529f81;p=gnus diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5f9d5fe2e..29f678c51 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,12 +1,247 @@ -2013-05-06 Glenn Morris +2013-06-10 Albert Krewinkel + + * sieve-manage.el (sieve-manage-open): work with STARTTLS: shorten + stream managing functions by using open-protocol-stream to do most of + the work. Has the nice benefit of enabling STARTTLS. + Wait for capabilities after STARTTLS: following RFC5804, the server + sends new capabilities after successfully establishing a TLS connection + with the client. The client should update the cached list of + capabilities, but we just ignore the answer for now. + (sieve-manage-network-p, sieve-manage-network-open) + (sieve-manage-starttls-p, sieve-manage-starttls-open) + (sieve-manage-forward, sieve-manage-streams) + (sieve-manage-stream-alist): Remove unneeded functions neither in the + API, nor called by any other function. + Enable Multibyte for SieveManage buffers: The parser won't properly + handle umlauts and line endings unless multibyte is turned on in the + process buffer. + +2013-06-11 Lars Magne Ingebrigtsen + + * eww.el (eww-tag-input): Support password fields. + (eww-submit): Support POST. + +2013-06-10 Lars Magne Ingebrigtsen + + * eww.el (eww-tag-form): Protect against degenerate forms. + + * shr.el (shr-expand-url): Expand URLs that start with a slash + correctly. - * mml2015.el (mml2015-epg-sign): Add name="signature.asc". (Bug#13465) + * eww.el (eww-submit): Get submit button logic right. + + * shr.el (shr-final-table-render): New variable to signal when we're + doing the final table rendering so that we can collect more data at + that point. + + * eww.el (eww-submit): Make form submission work. + (eww-tag-input): Implement submit buttons. + (eww-click-radio): Implement radio and checkboxes. + (eww-submit): Handle hidden elements. + + * shr.el (shr-descend): Allow other packages to override (or provide) + rendering of elements. + (shr-expand-url): Strip query strings from URLs before expanding them. + + * eww.el: Don't require cl-lib. + (eww-tag-form): Start form support. + + * dgnushack.el (dgnushack-compile): Ignore eww on XEmacs. + + * eww.el: Start writing a new, tiny web browser. + (eww-previous-url): New command. + (eww-quit): New command. + +2013-06-10 Albert Krewinkel + + * sieve.el: Put point at beginning of buffer when viewing a script. + (sieve-open-server): respect the PORT parameter. Show the correct port + number in sieve-buffer's header. Fixed code to also work with a string + as port specifier. Properly close the connection on pressing 'q'. Make + sieve-manage-quit close the connection and process buffer. Also, remove + duplicate keybinding for 'q'. + +2013-06-10 Roy Hashimoto (tiny change) + + * mm-view.el (mm-pkcs7-signed-magic): Allow newline in the regexp and + make it easier to read. + (mm-pkcs7-enveloped-magic): Ditto. + +2013-06-06 Teodor Zlatanov + + * gnus-ems.el (gnus-image-type-available-p): Test `display-images-p' + before `image-type-available-p' to avoid loading the image libraries + needlessly. + +2013-06-05 David Engster + + * gnus-sum.el (gnus-update-marks): Do not remove empty 'unexist' + ranges, since `nnimap-retrieve-group-data-early' also uses it as a flag + to see whether the group was synced before. + +2013-06-05 Teodor Zlatanov + + * tls.el (open-tls-stream): Remove unneeded buffer contents up to point + when opening the connection. + Suggested by João Távora in + . + +2013-06-04 Katsumi Yamaoka + + * gnus-art.el (article-date-ut, article-update-date-lapsed): Don't + assume Date header begins with "Date", that may be customized into + something like "X-Sent" using gnus-article-time-format. + (article-transform-date): Allow multi-line Date header. + +2013-06-02 David Engster + + * registry.el (initialize-instance, registry-lookup) + (registry-lookup-breaks-before-lexbind, registry-lookup-secondary) + (registry-lookup-secondary-value, registry-search, registry-delete) + (registry-insert, registry-reindex, registry-size, registry-prune): Do + not wrap methods in `eval-and-compile'. This breaks due to latest + changes in EIEIO (introduction of eieio-core.el). + +2013-05-30 Glenn Morris + + * nnmail.el (nnmail-fancy-expiry-target): + Also bind mail-dont-reply-to-names. + + * spam-stat.el (spam-stat-save): + No need to tweak font-lock in temp buffers. + + * shr.el (shr-put-image): Silence compiler. + +2013-05-29 Glenn Morris + + * gnus-ems.el (set-process-plist): Every supported Emacs has this. + + * gnus-group.el (gnus-sequence-of-unread-articles) + (gnus-summary-add-mark, gnus-mark-article-as-read) + (gnus-group-make-articles-read): Declare. + + * gnus-sum.el (gnus-parameter-list-identifier) + (gnus-article-stop-animations, gnus-stop-downloads) + (gnus-article-only-boring-p, article-goto-body) + (gnus-flush-original-article-buffer, article-narrow-to-head) + (gnus-article-hidden-text-p, gnus-delete-wash-type) + (gnus-summary-save-in-pipe, gnus-article-show-summary): Declare. + + * gnus.el: No need to eval-and-compile autoloads. + + * gravatar.el (help-function-arglist): Autoload. -2013-05-04 Thierry Volpiatto + * nnimap.el (gnus-refer-thread-use-nnir): Declare. - * message.el (message-bury): Make `buffer' optional. - (message-send-and-exit): Don't pass `buf' so as to hide the buffer - (bug#14085). + * nnmail.el (nnmail-fancy-expiry-target): Maybe use mail-dont-reply-to. + + * spam.el: No need to load spam-report when compiling. + No need to eval-and-compile autoloads. + (spam-report-resend-to): Declare. + (spam-report-resend-register-routine): Require 'spam-report. + +2013-05-24 Julien Danjou + + * sieve.el (sieve-setup-buffer): Fix default port value in sieve buffer + setup. + +2013-05-23 Glenn Morris + + * gnus-util.el (rmail-swap-buffers-maybe) + (rmail-maybe-set-message-counters, rmail-count-new-messages) + (rmail-summary-exists, rmail-show-message, rmail-summary-displayed) + (rmail-pop-to-buffer, rmail-maybe-display-summary): Declare. + + * mm-decode.el: No need to load term when compiling. + (term-mode, term-char-mode): Declare. + + * mm-util.el: No need to load jka-compr when compiling. + (jka-compr-acceptable-retval-list, jka-compr-make-temp-name): Declare. + + * nnmaildir.el: Require is automatically eval-and-compile. + (nnmail): Require at run-time too. + + * registry.el (registry-size): Move definition before use. + +2013-05-22 Daiki Ueno + + * mml2015.el (mml2015-epg-sign): Make sure to insert newline after the + signed data to conform the standard. (Bug#14232) + +2013-05-20 Adam Sjøgren + + * gnus-spec.el (gnus-parse-complex-format): Use unicode escape for left + double angle quotation mark. + +2013-05-20 Glenn Morris + + * format-spec.el (format-spec): Allow spec chars with nil. (Bug#14420) + +2013-05-19 Adam Sjøgren + + * message.el (message-insert-formatted-citation-line): handle finding + first/lastname when more than 2 names appear. + +2013-05-19 Adam Sjøgren + + * shr.el (shr-tag-span): New function. + +2013-05-18 Glenn Morris + + * message.el (message-mode): Use message-mode-abbrev-table, + with text-mode-abbrev-table as parent. (Bug#14413) + +2013-05-16 Katsumi Yamaoka + + * message.el (message-expand-group): Decode group names. + +2013-05-16 Julien Danjou + + * gnus-notifications.el (gnus-notifications-notify): Use photo-file as + app-icon. + +2013-05-15 Glenn Morris + + * shr-color.el (shr-color-visible-luminance-min) + (shr-color-visible-distance-min): Use shr-color group. + +2013-05-11 Glenn Morris + + * gnus-vm.el: Make it loadable without VM. + (gnus-vm-make-folder, gnus-summary-save-in-vm): Require 'vm. + (vm-forward-message, vm-reply, vm-mail): Remove unused autoloads. + +2013-05-09 Glenn Morris + + * mml1991.el: Make it loadable. (Bug#13456) + + * gnus-art.el (gnus-article-date-headers, gnus-blocked-images): + * gnus-async.el (gnus-async-post-fetch-function): + * gnus-gravatar.el (gnus-gravatar-size, gnus-gravatar-properties): + * gnus-html.el (gnus-html-image-cache-ttl): + * gnus-notifications.el (gnus-notifications-timeout): + * gnus-picon.el (gnus-picon-properties): + * gnus-util.el (gnus-completion-styles): + * gnus.el (gnus-other-frame-resume-function): + * message.el (message-user-organization-file) + (message-cite-reply-position): + * nnir.el (nnir-summary-line-format) + (nnir-retrieve-headers-override-function): + * shr-color.el (shr-color-visible-luminance-min): + * shr.el (shr-blocked-images): + * spam-report.el (spam-report-resend-to): + * spam.el (spam-summary-exit-behavior): Fix custom types. + + * gnus-salt.el (gnus-selected-tree-face): Fix default. + +2013-05-07 Katsumi Yamaoka + + * gnus-art.el (gnus-article-describe-bindings): Require help-mode + because of let-binding help-xref-following. (Bug#14356) + +2013-05-06 Glenn Morris + + * mml2015.el (mml2015-epg-sign): Add name="signature.asc". (Bug#13465) 2013-05-04 Andrew Cohen