diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 12 | ||||
| -rw-r--r-- | lisp/gnus/gnus-html.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/shr.el | 3 | ||||
| -rw-r--r-- | lisp/gnus/sieve-manage.el | 7 |
4 files changed, 22 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 9b7832b5cfb..45fcb4a2cf3 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2010-10-05 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * shr.el (shr-tag-em): Add <EM> tag. | ||
| 4 | |||
| 5 | 2010-10-05 Florian Ragwitz <rafl@debian.org> (tiny change) | ||
| 6 | |||
| 7 | * sieve-manage.el (sieve-manage-default-stream): Make default stream | ||
| 8 | customizable. | ||
| 9 | |||
| 10 | * gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid | ||
| 11 | handing broken links to browse-url. | ||
| 12 | |||
| 1 | 2010-10-05 Julien Danjou <julien@danjou.info> | 13 | 2010-10-05 Julien Danjou <julien@danjou.info> |
| 2 | 14 | ||
| 3 | * gnus-util.el (gnus-emacs-completing-read) | 15 | * gnus-util.el (gnus-emacs-completing-read) |
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el index 3ae3766ed62..bfbdc41e98c 100644 --- a/lisp/gnus/gnus-html.el +++ b/lisp/gnus/gnus-html.el | |||
| @@ -282,7 +282,7 @@ Use ALT-TEXT for the image string." | |||
| 282 | (setq url (match-string 1 parameters)) | 282 | (setq url (match-string 1 parameters)) |
| 283 | (gnus-message 8 "gnus-html-wash-tags: fetching link URL %s" url) | 283 | (gnus-message 8 "gnus-html-wash-tags: fetching link URL %s" url) |
| 284 | (gnus-article-add-button start end | 284 | (gnus-article-add-button start end |
| 285 | 'browse-url url | 285 | 'browse-url (mm-url-decode-entities-string url) |
| 286 | url) | 286 | url) |
| 287 | (let ((overlay (gnus-make-overlay start end))) | 287 | (let ((overlay (gnus-make-overlay start end))) |
| 288 | (gnus-overlay-put overlay 'evaporate t) | 288 | (gnus-overlay-put overlay 'evaporate t) |
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el index 59d7b784a1f..f905bf5ac05 100644 --- a/lisp/gnus/shr.el +++ b/lisp/gnus/shr.el | |||
| @@ -125,6 +125,9 @@ fit these criteria." | |||
| 125 | (defun shr-tag-i (cont) | 125 | (defun shr-tag-i (cont) |
| 126 | (shr-fontize-cont cont 'italic)) | 126 | (shr-fontize-cont cont 'italic)) |
| 127 | 127 | ||
| 128 | (defun shr-tag-em (cont) | ||
| 129 | (shr-fontize-cont cont 'bold)) | ||
| 130 | |||
| 128 | (defun shr-tag-u (cont) | 131 | (defun shr-tag-u (cont) |
| 129 | (shr-fontize-cont cont 'underline)) | 132 | (shr-fontize-cont cont 'underline)) |
| 130 | 133 | ||
diff --git a/lisp/gnus/sieve-manage.el b/lisp/gnus/sieve-manage.el index 0f16444ca39..8749864d81b 100644 --- a/lisp/gnus/sieve-manage.el +++ b/lisp/gnus/sieve-manage.el | |||
| @@ -162,6 +162,12 @@ for doing the actual authentication." | |||
| 162 | :type 'integer | 162 | :type 'integer |
| 163 | :group 'sieve-manage) | 163 | :group 'sieve-manage) |
| 164 | 164 | ||
| 165 | (defcustom sieve-manage-default-stream 'network | ||
| 166 | "Default stream type to use for `sieve-manage'. | ||
| 167 | Must be a name of a stream in `sieve-manage-stream-alist'." | ||
| 168 | :type 'symbol | ||
| 169 | :group 'sieve-manage) | ||
| 170 | |||
| 165 | ;; Internal variables: | 171 | ;; Internal variables: |
| 166 | 172 | ||
| 167 | (defconst sieve-manage-local-variables '(sieve-manage-server | 173 | (defconst sieve-manage-local-variables '(sieve-manage-server |
| @@ -174,7 +180,6 @@ for doing the actual authentication." | |||
| 174 | sieve-manage-client-eol | 180 | sieve-manage-client-eol |
| 175 | sieve-manage-server-eol | 181 | sieve-manage-server-eol |
| 176 | sieve-manage-capability)) | 182 | sieve-manage-capability)) |
| 177 | (defconst sieve-manage-default-stream 'network) | ||
| 178 | (defconst sieve-manage-coding-system-for-read 'binary) | 183 | (defconst sieve-manage-coding-system-for-read 'binary) |
| 179 | (defconst sieve-manage-coding-system-for-write 'binary) | 184 | (defconst sieve-manage-coding-system-for-write 'binary) |
| 180 | (defvar sieve-manage-stream nil) | 185 | (defvar sieve-manage-stream nil) |