sieve.el (sieve-edit-script): Avoid beginning-of-buffer
[gnus] / lisp / ChangeLog
index d3398ad..f7d942f 100644 (file)
@@ -1,5 +1,274 @@
+2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mm-decode.el (mm-convert-shr-links): New function to convert
+       new-style shr URL links into widgets.
+       (mm-shr): Use it.
+
+       * eww.el (eww-mode-map): Use `shr-next-link' (etc) instead of the
+       widget commands, since we're no longer using widgets for links.
+
+       * shr.el (shr-next-link): New command.
+       (shr-previous-link): New command.
+       (shr-urlify): Don't use `widget-convert', because that's slow.
+       (shr-put-color-1): Use `add-face-text-property' instead of overlays,
+       because collecting the overlays and reapplying them when generating
+       tables is slow.
+       (shr-insert-table): Ditto.
+
+2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * sieve.el (sieve-edit-script): Avoid beginning-of-buffer.
+       * shr.el (browse-url): Require `url'.
+       * eww.el (url): Require format-spec.
+
+2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * eww.el (eww-display-html): Default to using the entire window width.
+       (eww-browse-url): Don't add a User-Agent header (twice), because that
+       makes Bing refuse connection.
+
+       * shr.el (shr-make-table): Cache the table rendering at the table
+       level, and not the <td> level.  This is a bit faster.
+
+       * eww.el (eww-render): Go to the correct ID when given URLs ending with
+       #id.
+
+       * shr.el (shr-tag-li): Don't require a new paragraph, since other
+       browsers don't.
+       (shr-expand-url): Respect #anchor links.
+       (shr-parse-base): Chop off the anchor before using.
+       (shr-descend): Respect display: none.
+       (shr-descend): Allow marking elements that have certain IDs.
+
+       * eww.el (eww-tag-textarea): Use `text' instead of `editable-field'.
+
+       * shr.el (shr-expand-url): Don't bug out on zero-length links.
+
+       * eww.el (eww-tag-textarea): Support <textarea>.
+
+2013-06-16  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
+
+       * shr.el (shr-dom-to-xml): Fixed function call.
+
+       * eww.el (eww): New group.
+       (eww-header-line-format): New custom variable.
+       (eww-current-title): New variable.
+       (eww-display-html): Update header and handle title tag.
+       (eww-update-header-line-format): New function.
+       (eww-tag-title): New function.
+
+       * shr.el (shr-dom-to-xml): (shr-dom-to-xml): New function.
+       (shr-tag-svg): Add support for the SVG tag.
+       (shr-bullet): New custom variable.
+       (shr-tag-li): Support custom bullet in unordered lists.
+
+2013-06-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-expand-url): Respect // URLs.
+
+       * eww.el (eww-tag-body): Override the shr body rendering so that we can
+       put a background colour onto the entire buffer.
+       (eww-render): When being redirected, use the redirect URL as the new
+       base URL.
+
+       * shr.el (shr-parse-base): Fix parsing error.
+
+       * eww.el (eww-submit): Pass the base in to `shr-expand-url'.
+
+       * shr.el (shr-parse-base): New function.
+       (shr-expand-url): Use it to expand relative URLs reliably.
+
+2013-06-15  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * auth-source.el (auth-source-search-collection): Fix docstring.
+       (auth-source-netrc-parse): Refactor and improve netrc parser to support
+       single-quoted strings and multiline entries.
+       (auth-source-netrc-parse-next-interesting)
+       (auth-source-netrc-parse-one, auth-source-netrc-parse-entries): New
+       functions to support parser.
+
+2013-06-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * eww.el (eww-submit): Get submit button logic right when hitting RET
+       on non-submit buttons.
+
+       * shr.el: Remove shr-preliminary-table-render, since that can't really
+       be used for anything in practice.
+
+2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
+
+       * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
+       (sieve-manage-quit).
+
+2013-06-14  Glenn Morris  <rgm@gnu.org>
+
+       * mml2015.el (mml2015-maximum-key-image-dimension): Add :version.
+
+2013-06-14  David Edmondson  <dme@dme.org>  (tiny change)
+
+       * mml2015.el (mml2015-maximum-key-image-dimension): New user option to
+       control the maximum size of photo ID image.
+       (mml2015-epg-key-image-to-string): Respect it.
+
+2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-tag-table-1): Mark the preliminary table renderings
+       instead of the final one so that we can more easily distinguish them.
+
+       * eww.el (eww-submit): Compute the submission URL correctly.
+
+2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * sieve-manage.el (sieve-manage-open-server): Don't quote lambda.
+       Use plist-get rather than CL's getf.
+       (sieve-manage-parse-capability): Avoid CL's remove-if.
+
+2013-06-13  Albert Krewinkel  <tarleb@moltkeplatz.de>
+
+       * sieve.el: Rebind q to (sieve-bury-buffer), bind Q to
+       (sieve-manage-quit).
+
+2013-06-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-expand-url): Expansion should chop off the bits after the
+       last slash.
+
+       * eww.el (eww-tag-select): Use the first value as the default value.
+
+2013-06-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
+
+       * eww.el (eww): Prepend urls with http:// if scheme is missing.
+       (eww-mode): Use `define-derived-mode'.
+       (eww-parse-headers): Parse headers from beginning of buffer so that
+       file:// links work.
+
+2013-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * eww.el (eww-detect-charset): Detect charset from the <meta> tag.
+
+2013-06-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el (shr-tag-svg): Ignore SVG elements, because we don't know how
+       to handle them at all.
+
+2013-06-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * eww.el (eww-convert-widgets): Make widgets from non-tabular layouts
+       work, too.
+       (eww-tag-select): Implement <select>.
+
+2013-06-10  Albert Krewinkel  <krewinkel@moltkeplatz.de>
+
+       * 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  <larsi@gnus.org>
+
+       * eww.el (eww-tag-input): Support password fields.
+       (eww-submit): Support POST.
+
+2013-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * eww.el (eww-tag-form): Protect against degenerate forms.
+
+       * shr.el (shr-expand-url): Expand URLs that start with a slash
+       correctly.
+
+       * 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  <krewinkel@moltkeplatz.de>
+
+       * 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  <roy.hashimoto@gmail.com>  (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  <tzz@lifelogs.com>
+
+       * 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  <deng@randomsample.de>
+
+       * 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  <tzz@lifelogs.com>
+
+       * tls.el (open-tls-stream): Remove unneeded buffer contents up to point
+       when opening the connection.
+       Suggested by João Távora <joaotavora@gmail.com> in
+       <http://lists.gnu.org/archive/html/emacs-devel/2013-05/msg00464.html>.
+
+2013-06-04  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * 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  <deng@randomsample.de>
+
+       * 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  <rgm@gnu.org>
 
+       * 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  <rgm@gnu.org>