mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-18 03:40:47 -08:00
Merge changes made in Gnus trunk.
gnus.texi (Listing Groups): Explain `gnus-group-list-limit'. (Finding the News): Doc clarification. (Terminology): Mention naming. gnus-group.el (gnus-group-list-limit): Explain what the command does. gnus-sum.el (gnus-fetch-headers): Bump message level.
This commit is contained in:
parent
20f53c6979
commit
0afb49a1bf
7 changed files with 43 additions and 14 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||||
|
|
||||||
|
* gnus.texi (Listing Groups): Explain `gnus-group-list-limit'.
|
||||||
|
(Finding the News): Doc clarification.
|
||||||
|
(Terminology): Mention naming.
|
||||||
|
|
||||||
2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||||
|
|
||||||
* gnus.texi: Remove mentions of `recent', which are now obsolete.
|
* gnus.texi: Remove mentions of `recent', which are now obsolete.
|
||||||
|
|
|
||||||
|
|
@ -1011,7 +1011,7 @@ The @code{gnus-select-method} variable says where Gnus should look for
|
||||||
news. This variable should be a list where the first element says
|
news. This variable should be a list where the first element says
|
||||||
@dfn{how} and the second element says @dfn{where}. This method is your
|
@dfn{how} and the second element says @dfn{where}. This method is your
|
||||||
native method. All groups not fetched with this method are
|
native method. All groups not fetched with this method are
|
||||||
foreign groups.
|
secondary or foreign groups.
|
||||||
|
|
||||||
For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where
|
For instance, if the @samp{news.somewhere.edu} @acronym{NNTP} server is where
|
||||||
you want to get your daily dosage of news from, you'd say:
|
you want to get your daily dosage of news from, you'd say:
|
||||||
|
|
@ -3335,8 +3335,12 @@ List all groups with ticked articles (@code{gnus-group-list-ticked}).
|
||||||
@item A /
|
@item A /
|
||||||
@kindex A / (Group)
|
@kindex A / (Group)
|
||||||
@findex gnus-group-list-limit
|
@findex gnus-group-list-limit
|
||||||
List groups limited within the current selection
|
Further limit groups within the current selection
|
||||||
(@code{gnus-group-list-limit}).
|
(@code{gnus-group-list-limit}). If you've first limited to groups
|
||||||
|
with dormant articles with @kbd{A ?}, you can then further limit with
|
||||||
|
@kbd{A / c}, which will then limit to groups with cached articles,
|
||||||
|
giving you the groups that have both dormant articles and cached
|
||||||
|
articles.
|
||||||
|
|
||||||
@item A f
|
@item A f
|
||||||
@kindex A f (Group)
|
@kindex A f (Group)
|
||||||
|
|
@ -28572,18 +28576,21 @@ confusing.
|
||||||
@item native
|
@item native
|
||||||
@cindex native
|
@cindex native
|
||||||
Gnus will always use one method (and back end) as the @dfn{native}, or
|
Gnus will always use one method (and back end) as the @dfn{native}, or
|
||||||
default, way of getting news.
|
default, way of getting news. Groups from the native select method
|
||||||
|
have names like @samp{gnu.emacs.gnus}.
|
||||||
|
|
||||||
@item foreign
|
@item foreign
|
||||||
@cindex foreign
|
@cindex foreign
|
||||||
You can also have any number of foreign groups active at the same time.
|
You can also have any number of foreign groups active at the same
|
||||||
These are groups that use non-native non-secondary back ends for getting
|
time. These are groups that use non-native non-secondary back ends
|
||||||
news.
|
for getting news. Foreign groups have names like
|
||||||
|
@samp{nntp+news.gmane.org:gmane.emacs.gnus.devel}.
|
||||||
|
|
||||||
@item secondary
|
@item secondary
|
||||||
@cindex secondary
|
@cindex secondary
|
||||||
Secondary back ends are somewhere half-way between being native and being
|
Secondary back ends are somewhere half-way between being native and
|
||||||
foreign, but they mostly act like they are native.
|
being foreign, but they mostly act like they are native, but they, too
|
||||||
|
have names like @samp{nntp+news.gmane.org:gmane.emacs.gnus.devel}.
|
||||||
|
|
||||||
@item article
|
@item article
|
||||||
@cindex article
|
@cindex article
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,13 @@
|
||||||
switch-to-buffer-other-frame and switch-to-buffer-other-window instead
|
switch-to-buffer-other-frame and switch-to-buffer-other-window instead
|
||||||
of setting buffer display varibles.
|
of setting buffer display varibles.
|
||||||
|
|
||||||
|
2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||||
|
|
||||||
|
* gnus-group.el (gnus-group-list-limit): Explain what the command
|
||||||
|
does.
|
||||||
|
|
||||||
|
* gnus-sum.el (gnus-fetch-headers): Bump message level.
|
||||||
|
|
||||||
2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||||
|
|
||||||
* gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
|
* gnus-dup.el (gnus-dup-suppress-articles): Move "Suppressing
|
||||||
|
|
@ -14,6 +21,10 @@
|
||||||
* gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
|
* gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the
|
||||||
most egregious messages.
|
most egregious messages.
|
||||||
|
|
||||||
|
2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||||
|
|
||||||
|
* gnus-msg.el (gnus-summary-mail-forward): Minuscule doc fix.
|
||||||
|
|
||||||
2011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change)
|
2011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change)
|
||||||
|
|
||||||
* nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
|
* nnrss.el (nnrss-retrieve-groups): Decode the charset before looking
|
||||||
|
|
|
||||||
|
|
@ -1933,7 +1933,7 @@ article numbers will be returned."
|
||||||
(with-current-buffer nntp-server-buffer
|
(with-current-buffer nntp-server-buffer
|
||||||
(if articles
|
(if articles
|
||||||
(progn
|
(progn
|
||||||
(gnus-message 7 "Fetching headers for %s..."
|
(gnus-message 8 "Fetching headers for %s..."
|
||||||
(gnus-agent-decoded-group-name group))
|
(gnus-agent-decoded-group-name group))
|
||||||
|
|
||||||
;; Fetch them.
|
;; Fetch them.
|
||||||
|
|
|
||||||
|
|
@ -4636,7 +4636,12 @@ This command may read the active file."
|
||||||
(gnus-group-list-plus args)))
|
(gnus-group-list-plus args)))
|
||||||
|
|
||||||
(defun gnus-group-list-limit (&optional args)
|
(defun gnus-group-list-limit (&optional args)
|
||||||
"List groups limited within the current selection."
|
"List groups limited within the current selection.
|
||||||
|
If you've limited the groups, you can further limit the selection
|
||||||
|
with this command. If you've first limited to groups with
|
||||||
|
dormant articles with `A ?', you can then further limit with
|
||||||
|
`A / c', which will then limit to groups with cached articles, giving
|
||||||
|
you the groups that have both dormant articles and cached articles."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(let ((gnus-group-list-option 'limit))
|
(let ((gnus-group-list-option 'limit))
|
||||||
(gnus-group-list-plus args)))
|
(gnus-group-list-plus args)))
|
||||||
|
|
|
||||||
|
|
@ -1225,7 +1225,7 @@ if ARG is 3, decode message and forward as an rfc822 MIME section;
|
||||||
if ARG is 4, forward message directly inline;
|
if ARG is 4, forward message directly inline;
|
||||||
otherwise, use flipped `message-forward-as-mime'.
|
otherwise, use flipped `message-forward-as-mime'.
|
||||||
If POST, post instead of mail.
|
If POST, post instead of mail.
|
||||||
For the `inline' alternatives, also see the variable
|
For the \"inline\" alternatives, also see the variable
|
||||||
`message-forward-ignored-headers'."
|
`message-forward-ignored-headers'."
|
||||||
(interactive "P")
|
(interactive "P")
|
||||||
(if (cdr (gnus-summary-work-articles nil))
|
(if (cdr (gnus-summary-work-articles nil))
|
||||||
|
|
|
||||||
|
|
@ -5543,7 +5543,7 @@ or a straight list of headers."
|
||||||
(defun gnus-fetch-headers (articles &optional limit force-new dependencies)
|
(defun gnus-fetch-headers (articles &optional limit force-new dependencies)
|
||||||
"Fetch headers of ARTICLES."
|
"Fetch headers of ARTICLES."
|
||||||
(let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
|
(let ((name (gnus-group-decoded-name gnus-newsgroup-name)))
|
||||||
(gnus-message 5 "Fetching headers for %s..." name)
|
(gnus-message 7 "Fetching headers for %s..." name)
|
||||||
(prog1
|
(prog1
|
||||||
(if (eq 'nov
|
(if (eq 'nov
|
||||||
(setq gnus-headers-retrieved-by
|
(setq gnus-headers-retrieved-by
|
||||||
|
|
@ -5560,7 +5560,7 @@ or a straight list of headers."
|
||||||
(gnus-get-newsgroup-headers-xover
|
(gnus-get-newsgroup-headers-xover
|
||||||
articles force-new dependencies gnus-newsgroup-name t)
|
articles force-new dependencies gnus-newsgroup-name t)
|
||||||
(gnus-get-newsgroup-headers dependencies force-new))
|
(gnus-get-newsgroup-headers dependencies force-new))
|
||||||
(gnus-message 5 "Fetching headers for %s...done" name))))
|
(gnus-message 7 "Fetching headers for %s...done" name))))
|
||||||
|
|
||||||
(defun gnus-select-newsgroup (group &optional read-all select-articles)
|
(defun gnus-select-newsgroup (group &optional read-all select-articles)
|
||||||
"Select newsgroup GROUP.
|
"Select newsgroup GROUP.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue