emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104919: Merge changes made in Gnus t


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104919: Merge changes made in Gnus trunk.
Date: Sun, 03 Jul 2011 22:17:49 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104919
author: Gnus developers <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Sun 2011-07-03 22:17:49 +0000
message:
  Merge changes made in Gnus trunk.
  
  gnus.texi (Subscription Methods): Link to "Group Levels" to explain zombies.  
(Checking New Groups): Ditto (bug#8974).
  gnus.texi (Startup Files): Clarify that we're talking about numbered backups, 
and not actual vc (bug#8975).
  gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding systems to 
binary before writing and reading the mbox files.
  gnus.el (gnus-summary-line-format): Link to the info node for %U instead of 
trying to list them all (bug#8978).
  pop3.el (pop3-open-server): Use :end-of-capability.
  gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that the id is 
always a number.
  gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into debbugs mode, 
if possible.
modified:
  doc/misc/ChangeLog
  doc/misc/gnus.texi
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-group.el
  lisp/gnus/gnus.el
  lisp/gnus/pop3.el
=== modified file 'doc/misc/ChangeLog'
--- a/doc/misc/ChangeLog        2011-07-03 12:40:59 +0000
+++ b/doc/misc/ChangeLog        2011-07-03 22:17:49 +0000
@@ -1,3 +1,14 @@
+2011-07-03  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * gnus.texi (Subscription Methods): Link to "Group Levels" to explain
+       zombies.
+       (Checking New Groups): Ditto (bug#8974).
+
+2011-07-03  Dave Abrahams  <address@hidden>  (tiny change)
+
+       * gnus.texi (Startup Files): Clarify that we're talking about numbered
+       backups, and not actual vc (bug#8975).
+
 2011-07-03  Kevin Ryde  <address@hidden>
 
        * cl.texi (For Clauses): @items for hash-values and key-bindings

=== modified file 'doc/misc/gnus.texi'
--- a/doc/misc/gnus.texi        2011-06-26 12:41:14 +0000
+++ b/doc/misc/gnus.texi        2011-07-03 22:17:49 +0000
@@ -1167,16 +1167,17 @@
 @node Checking New Groups
 @subsection Checking New Groups
 
-Gnus normally determines whether a group is new or not by comparing the
-list of groups from the active file(s) with the lists of subscribed and
-dead groups.  This isn't a particularly fast method.  If
address@hidden is @code{ask-server}, Gnus will ask the
-server for new groups since the last time.  This is both faster and
-cheaper.  This also means that you can get rid of the list of killed
-groups altogether, so you may set @code{gnus-save-killed-list} to
address@hidden, which will save time both at startup, at exit, and all over.
-Saves disk space, too.  Why isn't this the default, then?
-Unfortunately, not all servers support this command.
+Gnus normally determines whether a group is new or not by comparing
+the list of groups (@pxref{Group Levels}) from the active file(s) with
+the lists of subscribed and dead groups.  This isn't a particularly
+fast method.  If @code{gnus-check-new-newsgroups} is
address@hidden, Gnus will ask the server for new groups since the
+last time.  This is both faster and cheaper.  This also means that you
+can get rid of the list of killed groups altogether, so you may set
address@hidden to @code{nil}, which will save time both
+at startup, at exit, and all over.  Saves disk space, too.  Why isn't
+this the default, then?  Unfortunately, not all servers support this
+command.
 
 I bet I know what you're thinking now: How do I find out whether my
 server supports @code{ask-server}?  No?  Good, because I don't have a
@@ -1214,9 +1215,10 @@
 
 @item gnus-subscribe-zombies
 @vindex gnus-subscribe-zombies
-Make all new groups zombies.  This is the default.  You can browse the
-zombies later (with @kbd{A z}) and either kill them all off properly
-(with @kbd{S z}), or subscribe to them (with @kbd{u}).
+Make all new groups zombies (@pxref{Group Levels}).  This is the
+default.  You can browse the zombies later (with @kbd{A z}) and either
+kill them all off properly (with @kbd{S z}), or subscribe to them
+(with @kbd{u}).
 
 @item gnus-subscribe-randomly
 @vindex gnus-subscribe-randomly
@@ -1430,7 +1432,7 @@
 The @code{gnus-startup-file} variable says where the startup files are.
 The default value is @file{~/.newsrc}, with the Gnus (El Dingo) startup
 file being whatever that one is, with a @samp{.eld} appended.
-If you want version control for this file, set
+If you want to keep multiple numbered backups of this file, set
 @code{gnus-backup-startup-file}.  It respects the same values as the
 @code{version-control} variable.
 
@@ -2360,6 +2362,7 @@
 go back to showing nonempty subscribed groups again.  Thus, unsubscribed
 groups are hidden, in a way.
 
address@hidden zombie groups
 Zombie and killed groups are similar to unsubscribed groups in that they
 are hidden by default.  But they are different from subscribed and
 unsubscribed groups in that Gnus doesn't ask the news server for

=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2011-07-03 00:24:28 +0000
+++ b/lisp/gnus/ChangeLog       2011-07-03 22:17:49 +0000
@@ -1,3 +1,23 @@
+2011-07-03  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * gnus-group.el (gnus-read-ephemeral-bug-group): Bind the coding
+       systems to binary before writing and reading the mbox files.
+
+       * gnus.el (gnus-summary-line-format): Link to the info node for %U
+       instead of trying to list them all (bug#8978).
+
+2011-07-03  Wolfgang Jenkner  <address@hidden>  (tiny change)
+
+       * pop3.el (pop3-open-server): Use :end-of-capability.
+
+2011-07-03  Lars Magne Ingebrigtsen  <address@hidden>
+
+       * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Make sure that
+       the id is always a number.
+
+       * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Hook into
+       debbugs mode, if possible.
+
 2011-07-02  Daiki Ueno  <address@hidden>
 
        * auth-source.el (auth-source-token-passphrase-callback-function):

=== modified file 'lisp/gnus/gnus-group.el'
--- a/lisp/gnus/gnus-group.el   2011-07-03 00:24:28 +0000
+++ b/lisp/gnus/gnus-group.el   2011-07-03 22:17:49 +0000
@@ -2437,7 +2437,9 @@
                     (cdr (assoc 'emacs gnus-bug-group-download-format-alist))))
   (when (stringp number)
     (setq number (string-to-number number)))
-  (let ((tmpfile (mm-make-temp-file "gnus-temp-group-")))
+  (let ((tmpfile (mm-make-temp-file "gnus-temp-group-"))
+       (coding-system-for-write 'binary)
+       (coding-system-for-read 'binary))
     (with-temp-file tmpfile
       (url-insert-file-contents (format mbox-url number))
       (goto-char (point-min))
@@ -2466,12 +2468,17 @@
 
 (defun gnus-read-ephemeral-emacs-bug-group (number &optional window-conf)
   "Browse Emacs bug NUMBER as ephemeral group."
-  (interactive (list (read-string "Enter bug number: "
-                                 (thing-at-point 'word) nil)))
+  (interactive (list (string-to-number
+                     (read-string "Enter bug number: "
+                                  (thing-at-point 'word) nil))))
   (gnus-read-ephemeral-bug-group
    number
    (cdr (assoc 'emacs gnus-bug-group-download-format-alist))
-   window-conf))
+   window-conf)
+  (when (boundp 'debbugs-summary-mode)
+    (with-current-buffer (window-buffer (selected-window))
+      (debbugs-summary-mode 1)
+      (set (make-local-variable 'debbugs-bug-number) number))))
 
 (defun gnus-group-jump-to-group (group &optional prompt)
   "Jump to newsgroup GROUP.

=== modified file 'lisp/gnus/gnus.el'
--- a/lisp/gnus/gnus.el 2011-07-03 00:24:28 +0000
+++ b/lisp/gnus/gnus.el 2011-07-03 22:17:49 +0000
@@ -2966,8 +2966,8 @@
             on level one
 %R          \"A\" if this article has been replied to, \" \"
             otherwise (character)
-%U          Status of this article (character, \"R\", \"K\",
-            \"-\" or \" \")
+%U          \"Read\" status of this article.
+            See Info node `(gnus)Read Articles'
 %[          Opening bracket (character, \"[\" or \"<\")
 %]          Closing bracket (character, \"]\" or \">\")
 %>          Spaces of length thread-level (string)

=== modified file 'lisp/gnus/pop3.el'
--- a/lisp/gnus/pop3.el 2011-05-30 22:11:52 +0000
+++ b/lisp/gnus/pop3.el 2011-07-03 22:17:49 +0000
@@ -306,7 +306,8 @@
                    (t
                     (or pop3-stream-type 'network)))
             :capability-command "CAPA\r\n"
-            :end-of-command "^\\.\r?\n\\|^\\(-ERR\\|+OK \\).*\n"
+            :end-of-command "^\\(-ERR\\|+OK \\).*\n"
+            :end-of-capability "^\\.\r?\n"
             :success "^\\+OK.*\n"
             :return-list t
             :starttls-function


reply via email to

[Prev in Thread] Current Thread [Next in Thread]