*** empty log message ***
[gnus] / lisp / gnus-group.el
1 ;;; gnus-group.el --- group mode commands for Gnus
2 ;; Copyright (C) 1996,97,98,99 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Keywords: news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29
30 (require 'gnus)
31 (require 'gnus-start)
32 (require 'nnmail)
33 (require 'gnus-spec)
34 (require 'gnus-int)
35 (require 'gnus-range)
36 (require 'gnus-win)
37 (require 'gnus-undo)
38 (require 'time-date)
39
40 (defcustom gnus-group-archive-directory
41   "*ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list/"
42   "*The address of the (ding) archives."
43   :group 'gnus-group-foreign
44   :type 'directory)
45
46 (defcustom gnus-group-recent-archive-directory
47   "*ftp@ftp.hpc.uh.edu:/pub/emacs/ding-list-recent/"
48   "*The address of the most recent (ding) articles."
49   :group 'gnus-group-foreign
50   :type 'directory)
51
52 (defcustom gnus-no-groups-message "No gnus is bad news"
53   "*Message displayed by Gnus when no groups are available."
54   :group 'gnus-start
55   :type 'string)
56
57 (defcustom gnus-keep-same-level nil
58   "*Non-nil means that the next newsgroup after the current will be on the same level.
59 When you type, for instance, `n' after reading the last article in the
60 current newsgroup, you will go to the next newsgroup.  If this variable
61 is nil, the next newsgroup will be the next from the group
62 buffer.
63 If this variable is non-nil, Gnus will either put you in the
64 next newsgroup with the same level, or, if no such newsgroup is
65 available, the next newsgroup with the lowest possible level higher
66 than the current level.
67 If this variable is `best', Gnus will make the next newsgroup the one
68 with the best level."
69   :group 'gnus-group-levels
70   :type '(choice (const nil)
71                  (const best)
72                  (sexp :tag "other" t)))
73
74 (defcustom gnus-group-goto-unread t
75   "*If non-nil, movement commands will go to the next unread and subscribed group."
76   :link '(custom-manual "(gnus)Group Maneuvering")
77   :group 'gnus-group-various
78   :type 'boolean)
79
80 (defcustom gnus-goto-next-group-when-activating t
81   "*If non-nil, the \\<gnus-group-mode-map>\\[gnus-group-get-new-news-this-group] command will advance point to the next group."
82   :link '(custom-manual "(gnus)Scanning New Messages")
83   :group 'gnus-group-various
84   :type 'boolean)
85
86 (defcustom gnus-permanently-visible-groups nil
87   "*Regexp to match groups that should always be listed in the group buffer.
88 This means that they will still be listed even when there are no
89 unread articles in the groups.
90
91 If nil, no groups are permanently visible."
92   :group 'gnus-group-listing
93   :type '(choice regexp (const nil)))
94
95 (defcustom gnus-list-groups-with-ticked-articles t
96   "*If non-nil, list groups that have only ticked articles.
97 If nil, only list groups that have unread articles."
98   :group 'gnus-group-listing
99   :type 'boolean)
100
101 (defcustom gnus-group-default-list-level gnus-level-subscribed
102   "*Default listing level.
103 Ignored if `gnus-group-use-permanent-levels' is non-nil."
104   :group 'gnus-group-listing
105   :type 'integer)
106
107 (defcustom gnus-group-list-inactive-groups t
108   "*If non-nil, inactive groups will be listed."
109   :group 'gnus-group-listing
110   :group 'gnus-group-levels
111   :type 'boolean)
112
113 (defcustom gnus-group-sort-function 'gnus-group-sort-by-alphabet
114   "*Function used for sorting the group buffer.
115 This function will be called with group info entries as the arguments
116 for the groups to be sorted.  Pre-made functions include
117 `gnus-group-sort-by-alphabet', `gnus-group-sort-by-real-name',
118 `gnus-group-sort-by-unread', `gnus-group-sort-by-level',
119 `gnus-group-sort-by-score', `gnus-group-sort-by-method', and
120 `gnus-group-sort-by-rank'.
121
122 This variable can also be a list of sorting functions.  In that case,
123 the most significant sort function should be the last function in the
124 list."
125   :group 'gnus-group-listing
126   :link '(custom-manual "(gnus)Sorting Groups")
127   :type '(radio (function-item gnus-group-sort-by-alphabet)
128                 (function-item gnus-group-sort-by-real-name)
129                 (function-item gnus-group-sort-by-unread)
130                 (function-item gnus-group-sort-by-level)
131                 (function-item gnus-group-sort-by-score)
132                 (function-item gnus-group-sort-by-method)
133                 (function-item gnus-group-sort-by-rank)
134                 (function :tag "other" nil)))
135
136 (defcustom gnus-group-line-format "%M\%S\%p\%P\%5y: %(%g%)%l\n"
137   "*Format of group lines.
138 It works along the same lines as a normal formatting string,
139 with some simple extensions.
140
141 %M    Only marked articles (character, \"*\" or \" \")
142 %S    Whether the group is subscribed (character, \"U\", \"K\", \"Z\" or \" \")
143 %L    Level of subscribedness (integer)
144 %N    Number of unread articles (integer)
145 %I    Number of dormant articles (integer)
146 %i    Number of ticked and dormant (integer)
147 %T    Number of ticked articles (integer)
148 %R    Number of read articles (integer)
149 %t    Estimated total number of articles (integer)
150 %y    Number of unread, unticked articles (integer)
151 %G    Group name (string)
152 %g    Qualified group name (string)
153 %D    Group description (string)
154 %s    Select method (string)
155 %o    Moderated group (char, \"m\")
156 %p    Process mark (char)
157 %O    Moderated group (string, \"(m)\" or \"\")
158 %P    Topic indentation (string)
159 %m    Whether there is new(ish) mail in the group (char, \"%\")
160 %l    Whether there are GroupLens predictions for this group (string)
161 %n    Select from where (string)
162 %z    A string that look like `<%s:%n>' if a foreign select method is used
163 %d    The date the group was last entered.
164 %u    User defined specifier.  The next character in the format string should
165       be a letter.  Gnus will call the function gnus-user-format-function-X,
166       where X is the letter following %u.  The function will be passed the
167       current header as argument.  The function should return a string, which
168       will be inserted into the buffer just like information from any other
169       group specifier.
170
171 Text between %( and %) will be highlighted with `gnus-mouse-face' when
172 the mouse point move inside the area.  There can only be one such area.
173
174 Note that this format specification is not always respected.  For
175 reasons of efficiency, when listing killed groups, this specification
176 is ignored altogether.  If the spec is changed considerably, your
177 output may end up looking strange when listing both alive and killed
178 groups.
179
180 If you use %o or %O, reading the active file will be slower and quite
181 a bit of extra memory will be used.  %D will also worsen performance.
182 Also note that if you change the format specification to include any
183 of these specs, you must probably re-start Gnus to see them go into
184 effect."
185   :group 'gnus-group-visual
186   :type 'string)
187
188 (defcustom gnus-group-mode-line-format "Gnus: %%b {%M\%:%S}"
189   "*The format specification for the group mode line.
190 It works along the same lines as a normal formatting string,
191 with some simple extensions:
192
193 %S   The native news server.
194 %M   The native select method.
195 %:   \":\" if %S isn't \"\"."
196   :group 'gnus-group-visual
197   :type 'string)
198
199 (defcustom gnus-group-mode-hook nil
200   "Hook for Gnus group mode."
201   :group 'gnus-group-various
202   :options '(gnus-topic-mode)
203   :type 'hook)
204
205 (defcustom gnus-group-menu-hook nil
206   "Hook run after the creation of the group mode menu."
207   :group 'gnus-group-various
208   :type 'hook)
209
210 (defcustom gnus-group-catchup-group-hook nil
211   "Hook run when catching up a group from the group buffer."
212   :group 'gnus-group-various
213   :link '(custom-manual "(gnus)Group Data")
214   :type 'hook)
215
216 (defcustom gnus-group-update-group-hook nil
217   "Hook called when updating group lines."
218   :group 'gnus-group-visual
219   :type 'hook)
220
221 (defcustom gnus-group-prepare-function 'gnus-group-prepare-flat
222   "*A function that is called to generate the group buffer.
223 The function is called with three arguments: The first is a number;
224 all group with a level less or equal to that number should be listed,
225 if the second is non-nil, empty groups should also be displayed.  If
226 the third is non-nil, it is a number.  No groups with a level lower
227 than this number should be displayed.
228
229 The only current function implemented is `gnus-group-prepare-flat'."
230   :group 'gnus-group-listing
231   :type 'function)
232
233 (defcustom gnus-group-prepare-hook nil
234   "Hook called after the group buffer has been generated.
235 If you want to modify the group buffer, you can use this hook."
236   :group 'gnus-group-listing
237   :type 'hook)
238
239 (defcustom gnus-suspend-gnus-hook nil
240   "Hook called when suspending (not exiting) Gnus."
241   :group 'gnus-exit
242   :type 'hook)
243
244 (defcustom gnus-exit-gnus-hook nil
245   "Hook called when exiting Gnus."
246   :group 'gnus-exit
247   :type 'hook)
248
249 (defcustom gnus-after-exiting-gnus-hook nil
250   "Hook called after exiting Gnus."
251   :group 'gnus-exit
252   :type 'hook)
253
254 (defcustom gnus-group-update-hook '(gnus-group-highlight-line)
255   "Hook called when a group line is changed.
256 The hook will not be called if `gnus-visual' is nil.
257
258 The default function `gnus-group-highlight-line' will
259 highlight the line according to the `gnus-group-highlight'
260 variable."
261   :group 'gnus-group-visual
262   :type 'hook)
263
264 (defcustom gnus-useful-groups
265   '(("(ding) mailing list mirrored at sunsite.auc.dk"
266      "emacs.ding"
267      (nntp "sunsite.auc.dk"
268            (nntp-address "sunsite.auc.dk")))
269     ("gnus-bug archive"
270      "gnus-bug"
271      (nndir "/ftp@ftp.ifi.uio.no:/pub/emacs/gnus/gnus-bug/"))
272     ("Gnus help group"
273      "gnus-help"
274      (nndoc "gnus-help"
275             (nndoc-article-type mbox)
276             (eval `(nndoc-address
277                     ,(let ((file (nnheader-find-etc-directory
278                                   "gnus-tut.txt" t)))
279                        (unless file
280                          (error "Couldn't find doc group"))
281                        file))))))
282   "*Alist of useful group-server pairs."
283   :group 'gnus-group-listing
284   :type '(repeat (list (string :tag "Description")
285                        (string :tag "Name")
286                        (sexp :tag "Method"))))
287
288 (defcustom gnus-group-highlight
289   '(;; News.
290     ((and (= unread 0) (not mailp) (eq level 1)) .
291      gnus-group-news-1-empty-face)
292     ((and (not mailp) (eq level 1)) .
293      gnus-group-news-1-face)
294     ((and (= unread 0) (not mailp) (eq level 2)) .
295      gnus-group-news-2-empty-face)
296     ((and (not mailp) (eq level 2)) .
297      gnus-group-news-2-face)
298     ((and (= unread 0) (not mailp) (eq level 3)) .
299      gnus-group-news-3-empty-face)
300     ((and (not mailp) (eq level 3)) .
301      gnus-group-news-3-face)
302     ((and (= unread 0) (not mailp) (eq level 4)) .
303      gnus-group-news-4-empty-face)
304     ((and (not mailp) (eq level 4)) .
305      gnus-group-news-4-face)
306     ((and (= unread 0) (not mailp) (eq level 5)) .
307      gnus-group-news-5-empty-face)
308     ((and (not mailp) (eq level 5)) .
309      gnus-group-news-5-face)
310     ((and (= unread 0) (not mailp) (eq level 6)) .
311      gnus-group-news-6-empty-face)
312     ((and (not mailp) (eq level 6)) .
313      gnus-group-news-6-face)
314     ((and (= unread 0) (not mailp)) .
315      gnus-group-news-low-empty-face)
316     ((and (not mailp)) .
317      gnus-group-news-low-face)
318     ;; Mail.
319     ((and (= unread 0) (eq level 1)) .
320      gnus-group-mail-1-empty-face)
321     ((eq level 1) .
322      gnus-group-mail-1-face)
323     ((and (= unread 0) (eq level 2)) .
324      gnus-group-mail-2-empty-face)
325     ((eq level 2) .
326      gnus-group-mail-2-face)
327     ((and (= unread 0) (eq level 3)) .
328      gnus-group-mail-3-empty-face)
329     ((eq level 3) .
330      gnus-group-mail-3-face)
331     ((= unread 0) .
332      gnus-group-mail-low-empty-face)
333     (t .
334      gnus-group-mail-low-face))
335   "*Controls the highlighting of group buffer lines.
336
337 Below is a list of `Form'/`Face' pairs.  When deciding how a a
338 particular group line should be displayed, each form is
339 evaluated.  The content of the face field after the first true form is
340 used.  You can change how those group lines are displayed by
341 editing the face field.
342
343 It is also possible to change and add form fields, but currently that
344 requires an understanding of Lisp expressions.  Hopefully this will
345 change in a future release.  For now, you can use the following
346 variables in the Lisp expression:
347
348 group: The name of the group.
349 unread: The number of unread articles in the group.
350 method: The select method used.
351 mailp: Whether it's a mail group or not.
352 level: The level of the group.
353 score: The score of the group.
354 ticked: The number of ticked articles."
355   :group 'gnus-group-visual
356   :type '(repeat (cons (sexp :tag "Form") face)))
357
358 (defcustom gnus-new-mail-mark ?%
359   "Mark used for groups with new mail."
360   :group 'gnus-group-visual
361   :type 'character)
362
363 ;;; Internal variables
364
365 (defvar gnus-group-sort-alist-function 'gnus-group-sort-flat
366   "Function for sorting the group buffer.")
367
368 (defvar gnus-group-sort-selected-function 'gnus-group-sort-selected-flat
369   "Function for sorting the selected groups in the group buffer.")
370
371 (defvar gnus-group-indentation-function nil)
372 (defvar gnus-goto-missing-group-function nil)
373 (defvar gnus-group-update-group-function nil)
374 (defvar gnus-group-goto-next-group-function nil
375   "Function to override finding the next group after listing groups.")
376
377 (defvar gnus-group-edit-buffer nil)
378
379 (defvar gnus-group-line-format-alist
380   `((?M gnus-tmp-marked-mark ?c)
381     (?S gnus-tmp-subscribed ?c)
382     (?L gnus-tmp-level ?d)
383     (?N (cond ((eq number t) "*" )
384               ((numberp number)
385                (int-to-string
386                 (+ number
387                    (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
388                    (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))))))
389               (t number)) ?s)
390     (?R gnus-tmp-number-of-read ?s)
391     (?t gnus-tmp-number-total ?d)
392     (?y gnus-tmp-number-of-unread ?s)
393     (?I (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked))) ?d)
394     (?T (gnus-range-length (cdr (assq 'tick gnus-tmp-marked))) ?d)
395     (?i (+ (gnus-range-length (cdr (assq 'dormant gnus-tmp-marked)))
396            (gnus-range-length (cdr (assq 'tick gnus-tmp-marked)))) ?d)
397     (?g gnus-tmp-group ?s)
398     (?G gnus-tmp-qualified-group ?s)
399     (?c (gnus-short-group-name gnus-tmp-group) ?s)
400     (?D gnus-tmp-newsgroup-description ?s)
401     (?o gnus-tmp-moderated ?c)
402     (?O gnus-tmp-moderated-string ?s)
403     (?p gnus-tmp-process-marked ?c)
404     (?s gnus-tmp-news-server ?s)
405     (?n gnus-tmp-news-method ?s)
406     (?P gnus-group-indentation ?s)
407     (?l gnus-tmp-grouplens ?s)
408     (?z gnus-tmp-news-method-string ?s)
409     (?m (gnus-group-new-mail gnus-tmp-group) ?c)
410     (?d (gnus-group-timestamp-string gnus-tmp-group) ?s)
411     (?u gnus-tmp-user-defined ?s)))
412
413 (defvar gnus-group-mode-line-format-alist
414   `((?S gnus-tmp-news-server ?s)
415     (?M gnus-tmp-news-method ?s)
416     (?u gnus-tmp-user-defined ?s)
417     (?: gnus-tmp-colon ?s)))
418
419 (defvar gnus-topic-topology nil
420   "The complete topic hierarchy.")
421
422 (defvar gnus-topic-alist nil
423   "The complete topic-group alist.")
424
425 (defvar gnus-group-marked nil)
426
427 (defvar gnus-group-list-mode nil)
428
429 ;;;
430 ;;; Gnus group mode
431 ;;;
432
433 (put 'gnus-group-mode 'mode-class 'special)
434
435 (when t
436   (gnus-define-keys gnus-group-mode-map
437     " " gnus-group-read-group
438     "=" gnus-group-select-group
439     "\r" gnus-group-select-group
440     "\M-\r" gnus-group-quick-select-group
441     [(meta control return)] gnus-group-select-group-ephemerally
442     "j" gnus-group-jump-to-group
443     "n" gnus-group-next-unread-group
444     "p" gnus-group-prev-unread-group
445     "\177" gnus-group-prev-unread-group
446     [delete] gnus-group-prev-unread-group
447     [backspace] gnus-group-prev-unread-group
448     "N" gnus-group-next-group
449     "P" gnus-group-prev-group
450     "\M-n" gnus-group-next-unread-group-same-level
451     "\M-p" gnus-group-prev-unread-group-same-level
452     "," gnus-group-best-unread-group
453     "." gnus-group-first-unread-group
454     "u" gnus-group-unsubscribe-current-group
455     "U" gnus-group-unsubscribe-group
456     "c" gnus-group-catchup-current
457     "C" gnus-group-catchup-current-all
458     "\M-c" gnus-group-clear-data
459     "l" gnus-group-list-groups
460     "L" gnus-group-list-all-groups
461     "m" gnus-group-mail
462     "g" gnus-group-get-new-news
463     "\M-g" gnus-group-get-new-news-this-group
464     "R" gnus-group-restart
465     "r" gnus-group-read-init-file
466     "B" gnus-group-browse-foreign-server
467     "b" gnus-group-check-bogus-groups
468     "F" gnus-group-find-new-groups
469     "\C-c\C-d" gnus-group-describe-group
470     "\M-d" gnus-group-describe-all-groups
471     "\C-c\C-a" gnus-group-apropos
472     "\C-c\M-\C-a" gnus-group-description-apropos
473     "a" gnus-group-post-news
474     "\ek" gnus-group-edit-local-kill
475     "\eK" gnus-group-edit-global-kill
476     "\C-k" gnus-group-kill-group
477     "\C-y" gnus-group-yank-group
478     "\C-w" gnus-group-kill-region
479     "\C-x\C-t" gnus-group-transpose-groups
480     "\C-c\C-l" gnus-group-list-killed
481     "\C-c\C-x" gnus-group-expire-articles
482     "\C-c\M-\C-x" gnus-group-expire-all-groups
483     "V" gnus-version
484     "s" gnus-group-save-newsrc
485     "z" gnus-group-suspend
486     "q" gnus-group-exit
487     "Q" gnus-group-quit
488     "?" gnus-group-describe-briefly
489     "\C-c\C-i" gnus-info-find-node
490     "\M-e" gnus-group-edit-group-method
491     "^" gnus-group-enter-server-mode
492     gnus-mouse-2 gnus-mouse-pick-group
493     "<" beginning-of-buffer
494     ">" end-of-buffer
495     "\C-c\C-b" gnus-bug
496     "\C-c\C-s" gnus-group-sort-groups
497     "t" gnus-topic-mode
498     "\C-c\M-g" gnus-activate-all-groups
499     "\M-&" gnus-group-universal-argument
500     "#" gnus-group-mark-group
501     "\M-#" gnus-group-unmark-group)
502
503   (gnus-define-keys (gnus-group-mark-map "M" gnus-group-mode-map)
504     "m" gnus-group-mark-group
505     "u" gnus-group-unmark-group
506     "w" gnus-group-mark-region
507     "b" gnus-group-mark-buffer
508     "r" gnus-group-mark-regexp
509     "U" gnus-group-unmark-all-groups)
510
511   (gnus-define-keys (gnus-group-group-map "G" gnus-group-mode-map)
512     "d" gnus-group-make-directory-group
513     "h" gnus-group-make-help-group
514     "u" gnus-group-make-useful-group
515     "a" gnus-group-make-archive-group
516     "k" gnus-group-make-kiboze-group
517     "m" gnus-group-make-group
518     "E" gnus-group-edit-group
519     "e" gnus-group-edit-group-method
520     "p" gnus-group-edit-group-parameters
521     "v" gnus-group-add-to-virtual
522     "V" gnus-group-make-empty-virtual
523     "D" gnus-group-enter-directory
524     "f" gnus-group-make-doc-group
525     "w" gnus-group-make-web-group
526     "r" gnus-group-rename-group
527     "c" gnus-group-customize
528     "\177" gnus-group-delete-group
529     [delete] gnus-group-delete-group)
530
531   (gnus-define-keys (gnus-group-soup-map "s" gnus-group-group-map)
532     "b" gnus-group-brew-soup
533     "w" gnus-soup-save-areas
534     "s" gnus-soup-send-replies
535     "p" gnus-soup-pack-packet
536     "r" nnsoup-pack-replies)
537
538   (gnus-define-keys (gnus-group-sort-map "S" gnus-group-group-map)
539     "s" gnus-group-sort-groups
540     "a" gnus-group-sort-groups-by-alphabet
541     "u" gnus-group-sort-groups-by-unread
542     "l" gnus-group-sort-groups-by-level
543     "v" gnus-group-sort-groups-by-score
544     "r" gnus-group-sort-groups-by-rank
545     "m" gnus-group-sort-groups-by-method)
546
547   (gnus-define-keys (gnus-group-sort-selected-map "P" gnus-group-group-map)
548     "s" gnus-group-sort-selected-groups
549     "a" gnus-group-sort-selected-groups-by-alphabet
550     "u" gnus-group-sort-selected-groups-by-unread
551     "l" gnus-group-sort-selected-groups-by-level
552     "v" gnus-group-sort-selected-groups-by-score
553     "r" gnus-group-sort-selected-groups-by-rank
554     "m" gnus-group-sort-selected-groups-by-method)
555
556   (gnus-define-keys (gnus-group-list-map "A" gnus-group-mode-map)
557     "k" gnus-group-list-killed
558     "z" gnus-group-list-zombies
559     "s" gnus-group-list-groups
560     "u" gnus-group-list-all-groups
561     "A" gnus-group-list-active
562     "a" gnus-group-apropos
563     "d" gnus-group-description-apropos
564     "m" gnus-group-list-matching
565     "M" gnus-group-list-all-matching
566     "l" gnus-group-list-level)
567
568   (gnus-define-keys (gnus-group-score-map "W" gnus-group-mode-map)
569     "f" gnus-score-flush-cache)
570
571   (gnus-define-keys (gnus-group-help-map "H" gnus-group-mode-map)
572     "d" gnus-group-describe-group
573     "f" gnus-group-fetch-faq
574     "v" gnus-version)
575
576   (gnus-define-keys (gnus-group-sub-map "S" gnus-group-mode-map)
577     "l" gnus-group-set-current-level
578     "t" gnus-group-unsubscribe-current-group
579     "s" gnus-group-unsubscribe-group
580     "k" gnus-group-kill-group
581     "y" gnus-group-yank-group
582     "w" gnus-group-kill-region
583     "\C-k" gnus-group-kill-level
584     "z" gnus-group-kill-all-zombies))
585
586 (defun gnus-group-make-menu-bar ()
587   (gnus-turn-off-edit-menu 'group)
588   (unless (boundp 'gnus-group-reading-menu)
589
590     (easy-menu-define
591      gnus-group-reading-menu gnus-group-mode-map ""
592      '("Group"
593        ["Read" gnus-group-read-group (gnus-group-group-name)]
594        ["Select" gnus-group-select-group (gnus-group-group-name)]
595        ["See old articles" (gnus-group-select-group 'all)
596         :keys "C-u SPC" :active (gnus-group-group-name)]
597        ["Catch up" gnus-group-catchup-current (gnus-group-group-name)]
598        ["Catch up all articles" gnus-group-catchup-current-all
599         (gnus-group-group-name)]
600        ["Check for new articles" gnus-group-get-new-news-this-group
601         (gnus-group-group-name)]
602        ["Toggle subscription" gnus-group-unsubscribe-current-group
603         (gnus-group-group-name)]
604        ["Kill" gnus-group-kill-group (gnus-group-group-name)]
605        ["Yank" gnus-group-yank-group gnus-list-of-killed-groups]
606        ["Describe" gnus-group-describe-group (gnus-group-group-name)]
607        ["Fetch FAQ" gnus-group-fetch-faq (gnus-group-group-name)]
608        ;; Actually one should check, if any of the marked groups gives t for
609        ;; (gnus-check-backend-function 'request-expire-articles ...)
610        ["Expire articles" gnus-group-expire-articles
611         (or (and (gnus-group-group-name)
612                  (gnus-check-backend-function
613                   'request-expire-articles
614                   (gnus-group-group-name))) gnus-group-marked)]
615        ["Set group level" gnus-group-set-current-level
616         (gnus-group-group-name)]
617        ["Select quick" gnus-group-quick-select-group (gnus-group-group-name)]
618        ["Customize" gnus-group-customize (gnus-group-group-name)]
619        ("Edit"
620         ["Parameters" gnus-group-edit-group-parameters
621          (gnus-group-group-name)]
622         ["Select method" gnus-group-edit-group-method
623          (gnus-group-group-name)]
624         ["Info" gnus-group-edit-group (gnus-group-group-name)]
625         ["Local kill file" gnus-group-edit-local-kill (gnus-group-group-name)]
626         ["Global kill file" gnus-group-edit-global-kill t])))
627
628     (easy-menu-define
629      gnus-group-group-menu gnus-group-mode-map ""
630      '("Groups"
631        ("Listing"
632         ["List unread subscribed groups" gnus-group-list-groups t]
633         ["List (un)subscribed groups" gnus-group-list-all-groups t]
634         ["List killed groups" gnus-group-list-killed gnus-killed-list]
635         ["List zombie groups" gnus-group-list-zombies gnus-zombie-list]
636         ["List level..." gnus-group-list-level t]
637         ["Describe all groups" gnus-group-describe-all-groups t]
638         ["Group apropos..." gnus-group-apropos t]
639         ["Group and description apropos..." gnus-group-description-apropos t]
640         ["List groups matching..." gnus-group-list-matching t]
641         ["List all groups matching..." gnus-group-list-all-matching t]
642         ["List active file" gnus-group-list-active t])
643        ("Sort"
644         ["Default sort" gnus-group-sort-groups t]
645         ["Sort by method" gnus-group-sort-groups-by-method t]
646         ["Sort by rank" gnus-group-sort-groups-by-rank t]
647         ["Sort by score" gnus-group-sort-groups-by-score t]
648         ["Sort by level" gnus-group-sort-groups-by-level t]
649         ["Sort by unread" gnus-group-sort-groups-by-unread t]
650         ["Sort by name" gnus-group-sort-groups-by-alphabet t])
651        ("Sort process/prefixed"
652         ["Default sort" gnus-group-sort-selected-groups
653          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
654         ["Sort by method" gnus-group-sort-selected-groups-by-method
655          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
656         ["Sort by rank" gnus-group-sort-selected-groups-by-rank
657          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
658         ["Sort by score" gnus-group-sort-selected-groups-by-score
659          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
660         ["Sort by level" gnus-group-sort-selected-groups-by-level
661          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
662         ["Sort by unread" gnus-group-sort-selected-groups-by-unread
663          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))]
664         ["Sort by name" gnus-group-sort-selected-groups-by-alphabet
665          (or (not (boundp 'gnus-topic-mode)) (not gnus-topic-mode))])
666        ("Mark"
667         ["Mark group" gnus-group-mark-group
668          (and (gnus-group-group-name)
669               (not (memq (gnus-group-group-name) gnus-group-marked)))]
670         ["Unmark group" gnus-group-unmark-group
671          (and (gnus-group-group-name)
672               (memq (gnus-group-group-name) gnus-group-marked))]
673         ["Unmark all" gnus-group-unmark-all-groups gnus-group-marked]
674         ["Mark regexp..." gnus-group-mark-regexp t]
675         ["Mark region" gnus-group-mark-region t]
676         ["Mark buffer" gnus-group-mark-buffer t]
677         ["Execute command" gnus-group-universal-argument
678          (or gnus-group-marked (gnus-group-group-name))])
679        ("Subscribe"
680         ["Subscribe to a group" gnus-group-unsubscribe-group t]
681         ["Kill all newsgroups in region" gnus-group-kill-region t]
682         ["Kill all zombie groups" gnus-group-kill-all-zombies
683          gnus-zombie-list]
684         ["Kill all groups on level..." gnus-group-kill-level t])
685        ("Foreign groups"
686         ["Make a foreign group" gnus-group-make-group t]
687         ["Add a directory group" gnus-group-make-directory-group t]
688         ["Add the help group" gnus-group-make-help-group t]
689         ["Add the archive group" gnus-group-make-archive-group t]
690         ["Make a doc group" gnus-group-make-doc-group t]
691         ["Make a web group" gnus-group-make-web-group t]
692         ["Make a kiboze group" gnus-group-make-kiboze-group t]
693         ["Make a virtual group" gnus-group-make-empty-virtual t]
694         ["Add a group to a virtual" gnus-group-add-to-virtual t]
695         ["Rename group" gnus-group-rename-group
696          (gnus-check-backend-function
697           'request-rename-group (gnus-group-group-name))]
698         ["Delete group" gnus-group-delete-group
699          (gnus-check-backend-function
700           'request-delete-group (gnus-group-group-name))])
701        ("Move"
702         ["Next" gnus-group-next-group t]
703         ["Previous" gnus-group-prev-group t]
704         ["Next unread" gnus-group-next-unread-group t]
705         ["Previous unread" gnus-group-prev-unread-group t]
706         ["Next unread same level" gnus-group-next-unread-group-same-level t]
707         ["Previous unread same level"
708          gnus-group-prev-unread-group-same-level t]
709         ["Jump to group" gnus-group-jump-to-group t]
710         ["First unread group" gnus-group-first-unread-group t]
711         ["Best unread group" gnus-group-best-unread-group t])
712        ["Delete bogus groups" gnus-group-check-bogus-groups t]
713        ["Find new newsgroups" gnus-group-find-new-groups t]
714        ["Transpose" gnus-group-transpose-groups
715         (gnus-group-group-name)]
716        ["Read a directory as a group..." gnus-group-enter-directory t]))
717
718     (easy-menu-define
719      gnus-group-misc-menu gnus-group-mode-map ""
720      '("Misc"
721        ("SOUP"
722         ["Pack replies" nnsoup-pack-replies (fboundp 'nnsoup-request-group)]
723         ["Send replies" gnus-soup-send-replies
724          (fboundp 'gnus-soup-pack-packet)]
725         ["Pack packet" gnus-soup-pack-packet (fboundp 'gnus-soup-pack-packet)]
726         ["Save areas" gnus-soup-save-areas (fboundp 'gnus-soup-pack-packet)]
727         ["Brew SOUP" gnus-group-brew-soup (fboundp 'gnus-soup-pack-packet)])
728        ["Send a mail" gnus-group-mail t]
729        ["Post an article..." gnus-group-post-news t]
730        ["Check for new news" gnus-group-get-new-news t]
731        ["Activate all groups" gnus-activate-all-groups t]
732        ["Restart Gnus" gnus-group-restart t]
733        ["Read init file" gnus-group-read-init-file t]
734        ["Browse foreign server" gnus-group-browse-foreign-server t]
735        ["Enter server buffer" gnus-group-enter-server-mode t]
736        ["Expire all expirable articles" gnus-group-expire-all-groups t]
737        ["Generate any kiboze groups" nnkiboze-generate-groups t]
738        ["Gnus version" gnus-version t]
739        ["Save .newsrc files" gnus-group-save-newsrc t]
740        ["Suspend Gnus" gnus-group-suspend t]
741        ["Clear dribble buffer" gnus-group-clear-dribble t]
742        ["Read manual" gnus-info-find-node t]
743        ["Flush score cache" gnus-score-flush-cache t]
744        ["Toggle topics" gnus-topic-mode t]
745        ["Send a bug report" gnus-bug t]
746        ["Exit from Gnus" gnus-group-exit t]
747        ["Exit without saving" gnus-group-quit t]))
748
749     (gnus-run-hooks 'gnus-group-menu-hook)))
750
751 (defun gnus-group-mode ()
752   "Major mode for reading news.
753
754 All normal editing commands are switched off.
755 \\<gnus-group-mode-map>
756 The group buffer lists (some of) the groups available.  For instance,
757 `\\[gnus-group-list-groups]' will list all subscribed groups with unread articles, while `\\[gnus-group-list-zombies]'
758 lists all zombie groups.
759
760 Groups that are displayed can be entered with `\\[gnus-group-read-group]'.  To subscribe
761 to a group not displayed, type `\\[gnus-group-unsubscribe-group]'.
762
763 For more in-depth information on this mode, read the manual (`\\[gnus-info-find-node]').
764
765 The following commands are available:
766
767 \\{gnus-group-mode-map}"
768   (interactive)
769   (when (gnus-visual-p 'group-menu 'menu)
770     (gnus-group-make-menu-bar))
771   (kill-all-local-variables)
772   (gnus-simplify-mode-line)
773   (setq major-mode 'gnus-group-mode)
774   (setq mode-name "Group")
775   (gnus-group-set-mode-line)
776   (setq mode-line-process nil)
777   (use-local-map gnus-group-mode-map)
778   (buffer-disable-undo)
779   (setq truncate-lines t)
780   (setq buffer-read-only t)
781   (gnus-set-default-directory)
782   (gnus-update-format-specifications nil 'group 'group-mode)
783   (gnus-update-group-mark-positions)
784   (when gnus-use-undo
785     (gnus-undo-mode 1))
786   (when gnus-slave
787     (gnus-slave-mode))
788   (gnus-run-hooks 'gnus-group-mode-hook))
789
790 (defun gnus-update-group-mark-positions ()
791   (save-excursion
792     (let ((gnus-process-mark ?\200)
793           (gnus-group-marked '("dummy.group"))
794           (gnus-active-hashtb (make-vector 10 0))
795           (topic ""))
796       (gnus-set-active "dummy.group" '(0 . 0))
797       (gnus-set-work-buffer)
798       (gnus-group-insert-group-line "dummy.group" 0 nil 0 nil)
799       (goto-char (point-min))
800       (setq gnus-group-mark-positions
801             (list (cons 'process (and (search-forward "\200" nil t)
802                                       (- (point) 2))))))))
803
804 (defun gnus-mouse-pick-group (e)
805   "Enter the group under the mouse pointer."
806   (interactive "e")
807   (mouse-set-point e)
808   (gnus-group-read-group nil))
809
810 ;; Look at LEVEL and find out what the level is really supposed to be.
811 ;; If LEVEL is non-nil, LEVEL will be returned, if not, what happens
812 ;; will depend on whether `gnus-group-use-permanent-levels' is used.
813 (defun gnus-group-default-level (&optional level number-or-nil)
814   (cond
815    (gnus-group-use-permanent-levels
816     (or (setq gnus-group-use-permanent-levels
817               (or level (if (numberp gnus-group-use-permanent-levels)
818                             gnus-group-use-permanent-levels
819                           (or gnus-group-default-list-level
820                               gnus-level-subscribed))))
821         gnus-group-default-list-level gnus-level-subscribed))
822    (number-or-nil
823     level)
824    (t
825     (or level gnus-group-default-list-level gnus-level-subscribed))))
826
827 (defun gnus-group-setup-buffer ()
828   (set-buffer (gnus-get-buffer-create gnus-group-buffer))
829   (unless (eq major-mode 'gnus-group-mode)
830     (gnus-group-mode)
831     (when gnus-carpal
832       (gnus-carpal-setup-buffer 'group))))
833
834 (defun gnus-group-list-groups (&optional level unread lowest)
835   "List newsgroups with level LEVEL or lower that have unread articles.
836 Default is all subscribed groups.
837 If argument UNREAD is non-nil, groups with no unread articles are also
838 listed.
839
840 Also see the `gnus-group-use-permanent-levels' variable."
841   (interactive
842    (list (if current-prefix-arg
843              (prefix-numeric-value current-prefix-arg)
844            (or
845             (gnus-group-default-level nil t)
846             gnus-group-default-list-level
847             gnus-level-subscribed))))
848   (unless level
849     (setq level (car gnus-group-list-mode)
850           unread (cdr gnus-group-list-mode)))
851   (setq level (gnus-group-default-level level))
852   (gnus-group-setup-buffer)
853   (gnus-update-format-specifications nil 'group 'group-mode)
854   (let ((case-fold-search nil)
855         (props (text-properties-at (gnus-point-at-bol)))
856         (empty (= (point-min) (point-max)))
857         (group (gnus-group-group-name))
858         number)
859     (set-buffer gnus-group-buffer)
860     (setq number (funcall gnus-group-prepare-function level unread lowest))
861     (when (or (and (numberp number)
862                    (zerop number))
863               (zerop (buffer-size)))
864       ;; No groups in the buffer.
865       (gnus-message 5 gnus-no-groups-message))
866     ;; We have some groups displayed.
867     (goto-char (point-max))
868     (when (or (not gnus-group-goto-next-group-function)
869               (not (funcall gnus-group-goto-next-group-function
870                             group props)))
871       (cond
872        (empty
873         (goto-char (point-min)))
874        ((not group)
875         ;; Go to the first group with unread articles.
876         (gnus-group-search-forward t))
877        (t
878         ;; Find the right group to put point on.  If the current group
879         ;; has disappeared in the new listing, try to find the next
880         ;; one.  If no next one can be found, just leave point at the
881         ;; first newsgroup in the buffer.
882         (when (not (gnus-goto-char
883                     (text-property-any
884                      (point-min) (point-max)
885                      'gnus-group (gnus-intern-safe
886                                   group gnus-active-hashtb))))
887           (let ((newsrc (cdddr (gnus-gethash group gnus-newsrc-hashtb))))
888             (while (and newsrc
889                         (not (gnus-goto-char
890                               (text-property-any
891                                (point-min) (point-max) 'gnus-group
892                                (gnus-intern-safe
893                                 (caar newsrc) gnus-active-hashtb)))))
894               (setq newsrc (cdr newsrc)))
895             (unless newsrc
896               (goto-char (point-max))
897               (forward-line -1)))))))
898     ;; Adjust cursor point.
899     (gnus-group-position-point)))
900
901 (defun gnus-group-list-level (level &optional all)
902   "List groups on LEVEL.
903 If ALL (the prefix), also list groups that have no unread articles."
904   (interactive "nList groups on level: \nP")
905   (gnus-group-list-groups level all level))
906
907 (defun gnus-group-prepare-flat (level &optional all lowest regexp)
908   "List all newsgroups with unread articles of level LEVEL or lower.
909 If ALL is non-nil, list groups that have no unread articles.
910 If LOWEST is non-nil, list all newsgroups of level LOWEST or higher.
911 If REGEXP, only list groups matching REGEXP."
912   (set-buffer gnus-group-buffer)
913   (let ((buffer-read-only nil)
914         (newsrc (cdr gnus-newsrc-alist))
915         (lowest (or lowest 1))
916         info clevel unread group params)
917     (erase-buffer)
918     (when (< lowest gnus-level-zombie)
919       ;; List living groups.
920       (while newsrc
921         (setq info (car newsrc)
922               group (gnus-info-group info)
923               params (gnus-info-params info)
924               newsrc (cdr newsrc)
925               unread (car (gnus-gethash group gnus-newsrc-hashtb)))
926         (and unread                     ; This group might be bogus
927              (or (not regexp)
928                  (string-match regexp group))
929              (<= (setq clevel (gnus-info-level info)) level)
930              (>= clevel lowest)
931              (or all                    ; We list all groups?
932                  (if (eq unread t)      ; Unactivated?
933                      gnus-group-list-inactive-groups ; We list unactivated
934                    (> unread 0))        ; We list groups with unread articles
935                  (and gnus-list-groups-with-ticked-articles
936                       (cdr (assq 'tick (gnus-info-marks info))))
937                                         ; And groups with tickeds
938                  ;; Check for permanent visibility.
939                  (and gnus-permanently-visible-groups
940                       (string-match gnus-permanently-visible-groups
941                                     group))
942                  (memq 'visible params)
943                  (cdr (assq 'visible params)))
944              (gnus-group-insert-group-line
945               group (gnus-info-level info)
946               (gnus-info-marks info) unread (gnus-info-method info)))))
947
948     ;; List dead groups.
949     (and (>= level gnus-level-zombie) (<= lowest gnus-level-zombie)
950          (gnus-group-prepare-flat-list-dead
951           (setq gnus-zombie-list (sort gnus-zombie-list 'string<))
952           gnus-level-zombie ?Z
953           regexp))
954     (and (>= level gnus-level-killed) (<= lowest gnus-level-killed)
955          (gnus-group-prepare-flat-list-dead
956           (setq gnus-killed-list (sort gnus-killed-list 'string<))
957           gnus-level-killed ?K regexp))
958
959     (gnus-group-set-mode-line)
960     (setq gnus-group-list-mode (cons level all))
961     (gnus-run-hooks 'gnus-group-prepare-hook)
962     t))
963
964 (defun gnus-group-prepare-flat-list-dead (groups level mark regexp)
965   ;; List zombies and killed lists somewhat faster, which was
966   ;; suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.  It does
967   ;; this by ignoring the group format specification altogether.
968   (let (group)
969     (if regexp
970         ;; This loop is used when listing groups that match some
971         ;; regexp.
972         (while groups
973           (setq group (pop groups))
974           (when (string-match regexp group)
975             (gnus-add-text-properties
976              (point) (prog1 (1+ (point))
977                        (insert " " mark "     *: " group "\n"))
978              (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
979                    'gnus-unread t
980                    'gnus-level level))))
981       ;; This loop is used when listing all groups.
982       (while groups
983         (gnus-add-text-properties
984          (point) (prog1 (1+ (point))
985                    (insert " " mark "     *: "
986                            (setq group (pop groups)) "\n"))
987          (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
988                'gnus-unread t
989                'gnus-level level))))))
990
991 (defun gnus-group-update-group-line ()
992   "Update the current line in the group buffer."
993   (let* ((buffer-read-only nil)
994          (group (gnus-group-group-name))
995          (entry (and group (gnus-gethash group gnus-newsrc-hashtb)))
996          gnus-group-indentation)
997     (when group
998       (and entry
999            (not (gnus-ephemeral-group-p group))
1000            (gnus-dribble-enter
1001             (concat "(gnus-group-set-info '"
1002                     (gnus-prin1-to-string (nth 2 entry))
1003                     ")")))
1004       (setq gnus-group-indentation (gnus-group-group-indentation))
1005       (gnus-delete-line)
1006       (gnus-group-insert-group-line-info group)
1007       (forward-line -1)
1008       (gnus-group-position-point))))
1009
1010 (defun gnus-group-insert-group-line-info (group)
1011   "Insert GROUP on the current line."
1012   (let ((entry (gnus-gethash group gnus-newsrc-hashtb))
1013         (gnus-group-indentation (gnus-group-group-indentation))
1014         active info)
1015     (if entry
1016         (progn
1017           ;; (Un)subscribed group.
1018           (setq info (nth 2 entry))
1019           (gnus-group-insert-group-line
1020            group (gnus-info-level info) (gnus-info-marks info)
1021            (or (car entry) t) (gnus-info-method info)))
1022       ;; This group is dead.
1023       (gnus-group-insert-group-line
1024        group
1025        (if (member group gnus-zombie-list) gnus-level-zombie gnus-level-killed)
1026        nil
1027        (if (setq active (gnus-active group))
1028            (if (zerop (cdr active))
1029                0
1030              (- (1+ (cdr active)) (car active)))
1031          nil)
1032        nil))))
1033
1034 (defun gnus-group-insert-group-line (gnus-tmp-group gnus-tmp-level
1035                                                     gnus-tmp-marked number
1036                                                     gnus-tmp-method)
1037   "Insert a group line in the group buffer."
1038   (let* ((gnus-tmp-active (gnus-active gnus-tmp-group))
1039          (gnus-tmp-number-total
1040           (if gnus-tmp-active
1041               (1+ (- (cdr gnus-tmp-active) (car gnus-tmp-active)))
1042             0))
1043          (gnus-tmp-number-of-unread
1044           (if (numberp number) (int-to-string (max 0 number))
1045             "*"))
1046          (gnus-tmp-number-of-read
1047           (if (numberp number)
1048               (int-to-string (max 0 (- gnus-tmp-number-total number)))
1049             "*"))
1050          (gnus-tmp-subscribed
1051           (cond ((<= gnus-tmp-level gnus-level-subscribed) ? )
1052                 ((<= gnus-tmp-level gnus-level-unsubscribed) ?U)
1053                 ((= gnus-tmp-level gnus-level-zombie) ?Z)
1054                 (t ?K)))
1055          (gnus-tmp-qualified-group (gnus-group-real-name gnus-tmp-group))
1056          (gnus-tmp-newsgroup-description
1057           (if gnus-description-hashtb
1058               (or (gnus-gethash gnus-tmp-group gnus-description-hashtb) "")
1059             ""))
1060          (gnus-tmp-moderated
1061           (if (and gnus-moderated-hashtb
1062                    (gnus-gethash gnus-tmp-group gnus-moderated-hashtb))
1063               ?m ? ))
1064          (gnus-tmp-moderated-string
1065           (if (eq gnus-tmp-moderated ?m) "(m)" ""))
1066          (gnus-tmp-method
1067           (gnus-server-get-method gnus-tmp-group gnus-tmp-method)) ;
1068          (gnus-tmp-news-server (or (cadr gnus-tmp-method) ""))
1069          (gnus-tmp-news-method (or (car gnus-tmp-method) ""))
1070          (gnus-tmp-news-method-string
1071           (if gnus-tmp-method
1072               (format "(%s:%s)" (car gnus-tmp-method)
1073                       (cadr gnus-tmp-method)) ""))
1074          (gnus-tmp-marked-mark
1075           (if (and (numberp number)
1076                    (zerop number)
1077                    (cdr (assq 'tick gnus-tmp-marked)))
1078               ?* ? ))
1079          (gnus-tmp-process-marked
1080           (if (member gnus-tmp-group gnus-group-marked)
1081               gnus-process-mark ? ))
1082          (gnus-tmp-grouplens
1083           (or (and gnus-use-grouplens
1084                    (bbb-grouplens-group-p gnus-tmp-group))
1085               ""))
1086          (buffer-read-only nil)
1087          header gnus-tmp-header)        ; passed as parameter to user-funcs.
1088     (beginning-of-line)
1089     (gnus-add-text-properties
1090      (point)
1091      (prog1 (1+ (point))
1092        ;; Insert the text.
1093        (eval gnus-group-line-format-spec))
1094      `(gnus-group ,(gnus-intern-safe gnus-tmp-group gnus-active-hashtb)
1095                   gnus-unread ,(if (numberp number)
1096                                    (string-to-int gnus-tmp-number-of-unread)
1097                                  t)
1098                   gnus-marked ,gnus-tmp-marked-mark
1099                   gnus-indentation ,gnus-group-indentation
1100                   gnus-level ,gnus-tmp-level))
1101     (when (inline (gnus-visual-p 'group-highlight 'highlight))
1102       (forward-line -1)
1103       (gnus-run-hooks 'gnus-group-update-hook)
1104       (forward-line))
1105     ;; Allow XEmacs to remove front-sticky text properties.
1106     (gnus-group-remove-excess-properties)))
1107
1108 (defun gnus-group-highlight-line ()
1109   "Highlight the current line according to `gnus-group-highlight'."
1110   (let* ((list gnus-group-highlight)
1111          (p (point))
1112          (end (progn (end-of-line) (point)))
1113          ;; now find out where the line starts and leave point there.
1114          (beg (progn (beginning-of-line) (point)))
1115          (group (gnus-group-group-name))
1116          (entry (gnus-group-entry group))
1117          (unread (if (numberp (car entry)) (car entry) 0))
1118          (active (gnus-active group))
1119          (total (if active (1+ (- (cdr active) (car active))) 0))
1120          (info (nth 2 entry))
1121          (method (gnus-server-get-method group (gnus-info-method info)))
1122          (marked (gnus-info-marks info))
1123          (mailp (memq 'mail (assoc (symbol-name
1124                                     (car (or method gnus-select-method)))
1125                                    gnus-valid-select-methods)))
1126          (level (or (gnus-info-level info) gnus-level-killed))
1127          (score (or (gnus-info-score info) 0))
1128          (ticked (gnus-range-length (cdr (assq 'tick marked))))
1129          (group-age (gnus-group-timestamp-delta group))
1130          (inhibit-read-only t))
1131     ;; Eval the cars of the lists until we find a match.
1132     (while (and list
1133                 (not (eval (caar list))))
1134       (setq list (cdr list)))
1135     (let ((face (cdar list)))
1136       (unless (eq face (get-text-property beg 'face))
1137         (gnus-put-text-property-excluding-characters-with-faces
1138          beg end 'face
1139          (setq face (if (boundp face) (symbol-value face) face)))
1140         (gnus-extent-start-open beg)))
1141     (goto-char p)))
1142
1143 (defun gnus-group-update-group (group &optional visible-only)
1144   "Update all lines where GROUP appear.
1145 If VISIBLE-ONLY is non-nil, the group won't be displayed if it isn't
1146 already."
1147   ;; Can't use `save-excursion' here, so we do it manually.
1148   (let ((buf (current-buffer))
1149         mark)
1150     (set-buffer gnus-group-buffer)
1151     (setq mark (point-marker))
1152     ;; The buffer may be narrowed.
1153     (save-restriction
1154       (widen)
1155       (let ((ident (gnus-intern-safe group gnus-active-hashtb))
1156             (loc (point-min))
1157             found buffer-read-only)
1158         ;; Enter the current status into the dribble buffer.
1159         (let ((entry (gnus-gethash group gnus-newsrc-hashtb)))
1160           (when (and entry
1161                      (not (gnus-ephemeral-group-p group)))
1162             (gnus-dribble-enter
1163              (concat "(gnus-group-set-info '"
1164                      (gnus-prin1-to-string (nth 2 entry))
1165                      ")"))))
1166         ;; Find all group instances.  If topics are in use, each group
1167         ;; may be listed in more than once.
1168         (while (setq loc (text-property-any
1169                           loc (point-max) 'gnus-group ident))
1170           (setq found t)
1171           (goto-char loc)
1172           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1173             (gnus-delete-line)
1174             (gnus-group-insert-group-line-info group)
1175             (save-excursion
1176               (forward-line -1)
1177               (gnus-run-hooks 'gnus-group-update-group-hook)))
1178           (setq loc (1+ loc)))
1179         (unless (or found visible-only)
1180           ;; No such line in the buffer, find out where it's supposed to
1181           ;; go, and insert it there (or at the end of the buffer).
1182           (if gnus-goto-missing-group-function
1183               (funcall gnus-goto-missing-group-function group)
1184             (let ((entry (cddr (gnus-gethash group gnus-newsrc-hashtb))))
1185               (while (and entry (car entry)
1186                           (not
1187                            (gnus-goto-char
1188                             (text-property-any
1189                              (point-min) (point-max)
1190                              'gnus-group (gnus-intern-safe
1191                                           (caar entry) gnus-active-hashtb)))))
1192                 (setq entry (cdr entry)))
1193               (or entry (goto-char (point-max)))))
1194           ;; Finally insert the line.
1195           (let ((gnus-group-indentation (gnus-group-group-indentation)))
1196             (gnus-group-insert-group-line-info group)
1197             (save-excursion
1198               (forward-line -1)
1199               (gnus-run-hooks 'gnus-group-update-group-hook))))
1200         (when gnus-group-update-group-function
1201           (funcall gnus-group-update-group-function group))
1202         (gnus-group-set-mode-line)))
1203     (goto-char mark)
1204     (set-marker mark nil)
1205     (set-buffer buf)))
1206
1207 (defun gnus-group-set-mode-line ()
1208   "Update the mode line in the group buffer."
1209   (when (memq 'group gnus-updated-mode-lines)
1210     ;; Yes, we want to keep this mode line updated.
1211     (save-excursion
1212       (set-buffer gnus-group-buffer)
1213       (let* ((gformat (or gnus-group-mode-line-format-spec
1214                           (gnus-set-format 'group-mode)))
1215              (gnus-tmp-news-server (cadr gnus-select-method))
1216              (gnus-tmp-news-method (car gnus-select-method))
1217              (gnus-tmp-colon (if (equal gnus-tmp-news-server "") "" ":"))
1218              (max-len 60)
1219              gnus-tmp-header            ;Dummy binding for user-defined formats
1220              ;; Get the resulting string.
1221              (modified
1222               (and gnus-dribble-buffer
1223                    (buffer-name gnus-dribble-buffer)
1224                    (buffer-modified-p gnus-dribble-buffer)
1225                    (save-excursion
1226                      (set-buffer gnus-dribble-buffer)
1227                      (not (zerop (buffer-size))))))
1228              (mode-string (eval gformat)))
1229         ;; Say whether the dribble buffer has been modified.
1230         (setq mode-line-modified
1231               (if modified (car gnus-mode-line-modified)
1232                 (cdr gnus-mode-line-modified)))
1233         ;; If the line is too long, we chop it off.
1234         (when (> (length mode-string) max-len)
1235           (setq mode-string (substring mode-string 0 (- max-len 4))))
1236         (prog1
1237             (setq mode-line-buffer-identification
1238                   (gnus-mode-line-buffer-identification
1239                    (list mode-string)))
1240           (set-buffer-modified-p modified))))))
1241
1242 (defun gnus-group-group-name ()
1243   "Get the name of the newsgroup on the current line."
1244   (let ((group (get-text-property (gnus-point-at-bol) 'gnus-group)))
1245     (when group
1246       (symbol-name group))))
1247
1248 (defun gnus-group-group-level ()
1249   "Get the level of the newsgroup on the current line."
1250   (get-text-property (gnus-point-at-bol) 'gnus-level))
1251
1252 (defun gnus-group-group-indentation ()
1253   "Get the indentation of the newsgroup on the current line."
1254   (or (get-text-property (gnus-point-at-bol) 'gnus-indentation)
1255       (and gnus-group-indentation-function
1256            (funcall gnus-group-indentation-function))
1257       ""))
1258
1259 (defun gnus-group-group-unread ()
1260   "Get the number of unread articles of the newsgroup on the current line."
1261   (get-text-property (gnus-point-at-bol) 'gnus-unread))
1262
1263 (defun gnus-group-new-mail (group)
1264   (if (nnmail-new-mail-p (gnus-group-real-name group))
1265       gnus-new-mail-mark
1266     ? ))
1267
1268 (defun gnus-group-level (group)
1269   "Return the estimated level of GROUP."
1270   (or (gnus-info-level (gnus-get-info group))
1271       (and (member group gnus-zombie-list) gnus-level-zombie)
1272       gnus-level-killed))
1273
1274 (defun gnus-group-search-forward (&optional backward all level first-too)
1275   "Find the next newsgroup with unread articles.
1276 If BACKWARD is non-nil, find the previous newsgroup instead.
1277 If ALL is non-nil, just find any newsgroup.
1278 If LEVEL is non-nil, find group with level LEVEL, or higher if no such
1279 group exists.
1280 If FIRST-TOO, the current line is also eligible as a target."
1281   (let ((way (if backward -1 1))
1282         (low gnus-level-killed)
1283         (beg (point))
1284         pos found lev)
1285     (if (and backward (progn (beginning-of-line)) (bobp))
1286         nil
1287       (unless first-too
1288         (forward-line way))
1289       (while (and
1290               (not (eobp))
1291               (not (setq
1292                     found
1293                     (and
1294                      (get-text-property (point) 'gnus-group)
1295                      (or all
1296                          (and
1297                           (let ((unread
1298                                  (get-text-property (point) 'gnus-unread)))
1299                             (and (numberp unread) (> unread 0)))
1300                           (setq lev (get-text-property (point)
1301                                                        'gnus-level))
1302                           (<= lev gnus-level-subscribed)))
1303                      (or (not level)
1304                          (and (setq lev (get-text-property (point)
1305                                                            'gnus-level))
1306                               (or (= lev level)
1307                                   (and (< lev low)
1308                                        (< level lev)
1309                                        (progn
1310                                          (setq low lev)
1311                                          (setq pos (point))
1312                                          nil))))))))
1313               (zerop (forward-line way)))))
1314     (if found
1315         (progn (gnus-group-position-point) t)
1316       (goto-char (or pos beg))
1317       (and pos t))))
1318
1319 ;;; Gnus group mode commands
1320
1321 ;; Group marking.
1322
1323 (defun gnus-group-mark-group (n &optional unmark no-advance)
1324   "Mark the current group."
1325   (interactive "p")
1326   (let ((buffer-read-only nil)
1327         group)
1328     (while (and (> n 0)
1329                 (not (eobp)))
1330       (when (setq group (gnus-group-group-name))
1331         ;; Go to the mark position.
1332         (beginning-of-line)
1333         (forward-char (or (cdr (assq 'process gnus-group-mark-positions)) 2))
1334         (subst-char-in-region
1335          (point) (1+ (point)) (char-after)
1336          (if unmark
1337              (progn
1338                (setq gnus-group-marked (delete group gnus-group-marked))
1339                ? )
1340            (setq gnus-group-marked
1341                  (cons group (delete group gnus-group-marked)))
1342            gnus-process-mark)))
1343       (unless no-advance
1344         (gnus-group-next-group 1))
1345       (decf n))
1346     (gnus-summary-position-point)
1347     n))
1348
1349 (defun gnus-group-unmark-group (n)
1350   "Remove the mark from the current group."
1351   (interactive "p")
1352   (gnus-group-mark-group n 'unmark)
1353   (gnus-group-position-point))
1354
1355 (defun gnus-group-unmark-all-groups ()
1356   "Unmark all groups."
1357   (interactive)
1358   (let ((groups gnus-group-marked))
1359     (save-excursion
1360       (while groups
1361         (gnus-group-remove-mark (pop groups)))))
1362   (gnus-group-position-point))
1363
1364 (defun gnus-group-mark-region (unmark beg end)
1365   "Mark all groups between point and mark.
1366 If UNMARK, remove the mark instead."
1367   (interactive "P\nr")
1368   (let ((num (count-lines beg end)))
1369     (save-excursion
1370       (goto-char beg)
1371       (- num (gnus-group-mark-group num unmark)))))
1372
1373 (defun gnus-group-mark-buffer (&optional unmark)
1374   "Mark all groups in the buffer.
1375 If UNMARK, remove the mark instead."
1376   (interactive "P")
1377   (gnus-group-mark-region unmark (point-min) (point-max)))
1378
1379 (defun gnus-group-mark-regexp (regexp)
1380   "Mark all groups that match some regexp."
1381   (interactive "sMark (regexp): ")
1382   (let ((alist (cdr gnus-newsrc-alist))
1383         group)
1384     (while alist
1385       (when (string-match regexp (setq group (gnus-info-group (pop alist))))
1386         (gnus-group-set-mark group))))
1387   (gnus-group-position-point))
1388
1389 (defun gnus-group-remove-mark (group)
1390   "Remove the process mark from GROUP and move point there.
1391 Return nil if the group isn't displayed."
1392   (if (gnus-group-goto-group group)
1393       (save-excursion
1394         (gnus-group-mark-group 1 'unmark t)
1395         t)
1396     (setq gnus-group-marked
1397           (delete group gnus-group-marked))
1398     nil))
1399
1400 (defun gnus-group-set-mark (group)
1401   "Set the process mark on GROUP."
1402   (if (gnus-group-goto-group group)
1403       (save-excursion
1404         (gnus-group-mark-group 1 nil t))
1405     (setq gnus-group-marked (cons group (delete group gnus-group-marked)))))
1406
1407 (defun gnus-group-universal-argument (arg &optional groups func)
1408   "Perform any command on all groups according to the process/prefix convention."
1409   (interactive "P")
1410   (if (eq (setq func (or func
1411                          (key-binding
1412                           (read-key-sequence
1413                            (substitute-command-keys
1414                             "\\<gnus-group-mode-map>\\[gnus-group-universal-argument]")))))
1415           'undefined)
1416       (gnus-error 1 "Undefined key")
1417     (gnus-group-iterate arg
1418       (lambda (group)
1419         (command-execute func))))
1420   (gnus-group-position-point))
1421
1422 (defun gnus-group-process-prefix (n)
1423   "Return a list of groups to work on.
1424 Take into consideration N (the prefix) and the list of marked groups."
1425   (cond
1426    (n
1427     (setq n (prefix-numeric-value n))
1428     ;; There is a prefix, so we return a list of the N next
1429     ;; groups.
1430     (let ((way (if (< n 0) -1 1))
1431           (n (abs n))
1432           group groups)
1433       (save-excursion
1434         (while (> n 0)
1435           (if (setq group (gnus-group-group-name))
1436               (push group groups))
1437           (setq n (1- n))
1438           (gnus-group-next-group way)))
1439       (nreverse groups)))
1440    ((gnus-region-active-p)
1441     ;; Work on the region between point and mark.
1442     (let ((max (max (point) (mark)))
1443           groups)
1444       (save-excursion
1445         (goto-char (min (point) (mark)))
1446         (while
1447             (and
1448              (push (gnus-group-group-name) groups)
1449              (zerop (gnus-group-next-group 1))
1450              (< (point) max)))
1451         (nreverse groups))))
1452    (gnus-group-marked
1453     ;; No prefix, but a list of marked articles.
1454     (reverse gnus-group-marked))
1455    (t
1456     ;; Neither marked articles or a prefix, so we return the
1457     ;; current group.
1458     (let ((group (gnus-group-group-name)))
1459       (and group (list group))))))
1460
1461 ;;; !!!Surely gnus-group-iterate should be a macro instead?  I can't
1462 ;;; imagine why I went through these contortions...
1463 (eval-and-compile
1464   (let ((function (make-symbol "gnus-group-iterate-function"))
1465         (window (make-symbol "gnus-group-iterate-window"))
1466         (groups (make-symbol "gnus-group-iterate-groups"))
1467         (group (make-symbol "gnus-group-iterate-group")))
1468     (eval
1469      `(defun gnus-group-iterate (arg ,function)
1470         "Iterate FUNCTION over all process/prefixed groups.
1471 FUNCTION will be called with the group name as the paremeter
1472 and with point over the group in question."
1473         (let ((,groups (gnus-group-process-prefix arg))
1474               (,window (selected-window))
1475               ,group)
1476           (while (setq ,group (pop ,groups))
1477             (select-window ,window)
1478             (gnus-group-remove-mark ,group)
1479             (save-selected-window
1480               (save-excursion
1481                 (funcall ,function ,group)))))))))
1482
1483 (put 'gnus-group-iterate 'lisp-indent-function 1)
1484
1485 ;; Selecting groups.
1486
1487 (defun gnus-group-read-group (&optional all no-article group select-articles)
1488   "Read news in this newsgroup.
1489 If the prefix argument ALL is non-nil, already read articles become
1490 readable.  IF ALL is a number, fetch this number of articles.  If the
1491 optional argument NO-ARTICLE is non-nil, no article will be
1492 auto-selected upon group entry.  If GROUP is non-nil, fetch that
1493 group."
1494   (interactive "P")
1495   (let ((no-display (eq all 0))
1496         (group (or group (gnus-group-group-name)))
1497         number active marked entry)
1498     (when (eq all 0)
1499       (setq all nil))
1500     (unless group
1501       (error "No group on current line"))
1502     (setq marked (gnus-info-marks
1503                   (nth 2 (setq entry (gnus-gethash
1504                                       group gnus-newsrc-hashtb)))))
1505     ;; This group might be a dead group.  In that case we have to get
1506     ;; the number of unread articles from `gnus-active-hashtb'.
1507     (setq number
1508           (cond ((numberp all) all)
1509                 (entry (car entry))
1510                 ((setq active (gnus-active group))
1511                  (- (1+ (cdr active)) (car active)))))
1512     (gnus-summary-read-group
1513      group (or all (and (numberp number)
1514                         (zerop (+ number (gnus-range-length
1515                                           (cdr (assq 'tick marked)))
1516                                   (gnus-range-length
1517                                    (cdr (assq 'dormant marked)))))))
1518      no-article nil no-display nil select-articles)))
1519
1520 (defun gnus-group-select-group (&optional all)
1521   "Select this newsgroup.
1522 No article is selected automatically.
1523 If ALL is non-nil, already read articles become readable.
1524 If ALL is a number, fetch this number of articles."
1525   (interactive "P")
1526   (gnus-group-read-group all t))
1527
1528 (defun gnus-group-quick-select-group (&optional all)
1529   "Select the current group \"quickly\".
1530 This means that no highlighting or scoring will be performed.
1531 If ALL (the prefix argument) is 0, don't even generate the summary
1532 buffer.
1533
1534 This might be useful if you want to toggle threading
1535 before entering the group."
1536   (interactive "P")
1537   (require 'gnus-score)
1538   (let (gnus-visual
1539         gnus-score-find-score-files-function
1540         gnus-home-score-file
1541         gnus-apply-kill-hook
1542         gnus-summary-expunge-below)
1543     (gnus-group-read-group all t)))
1544
1545 (defun gnus-group-visible-select-group (&optional all)
1546   "Select the current group without hiding any articles."
1547   (interactive "P")
1548   (let ((gnus-inhibit-limiting t))
1549     (gnus-group-read-group all t)))
1550
1551 (defun gnus-group-select-group-ephemerally ()
1552   "Select the current group without doing any processing whatsoever.
1553 You will actually be entered into a group that's a copy of
1554 the current group; no changes you make while in this group will
1555 be permanent."
1556   (interactive)
1557   (require 'gnus-score)
1558   (let* (gnus-visual
1559          gnus-score-find-score-files-function gnus-apply-kill-hook
1560          gnus-summary-expunge-below gnus-show-threads gnus-suppress-duplicates
1561          gnus-summary-mode-hook gnus-select-group-hook
1562          (group (gnus-group-group-name))
1563          (method (gnus-find-method-for-group group)))
1564     (gnus-group-read-ephemeral-group
1565      (gnus-group-prefixed-name group method) method)))
1566
1567 ;;;###autoload
1568 (defun gnus-fetch-group (group)
1569   "Start Gnus if necessary and enter GROUP.
1570 Returns whether the fetching was successful or not."
1571   (interactive "sGroup name: ")
1572   (unless (get-buffer gnus-group-buffer)
1573     (gnus-no-server))
1574   (gnus-group-read-group nil nil group))
1575
1576 ;;;###autoload
1577 (defun gnus-fetch-group-other-frame (group)
1578   "Pop up a frame and enter GROUP."
1579   (interactive "P")
1580   (let ((window (get-buffer-window gnus-group-buffer)))
1581     (cond (window
1582            (select-frame (window-frame window)))
1583           ((= (length (frame-list)) 1)
1584            (select-frame (make-frame)))
1585           (t
1586            (other-frame 1))))
1587   (gnus-fetch-group group))
1588
1589 (defvar gnus-ephemeral-group-server 0)
1590
1591 ;; Enter a group that is not in the group buffer.  Non-nil is returned
1592 ;; if selection was successful.
1593 (defun gnus-group-read-ephemeral-group (group method &optional activate
1594                                               quit-config request-only
1595                                               select-articles)
1596   "Read GROUP from METHOD as an ephemeral group.
1597 If ACTIVATE, request the group first.
1598 If QUIT-CONFIG, use that window configuration when exiting from the
1599 ephemeral group.
1600 If REQUEST-ONLY, don't actually read the group; just request it.
1601 If SELECT-ARTICLES, only select those articles.
1602
1603 Return the name of the group is selection was successful."
1604   ;; Transform the select method into a unique server.
1605   (when (stringp method)
1606     (setq method (gnus-server-to-method method)))
1607   (setq method
1608         `(,(car method) ,(concat (cadr method) "-ephemeral")
1609           (,(intern (format "%s-address" (car method))) ,(cadr method))
1610           ,@(cddr method)))
1611   (let ((group (if (gnus-group-foreign-p group) group
1612                  (gnus-group-prefixed-name group method))))
1613     (gnus-sethash
1614      group
1615      `(-1 nil (,group
1616                ,gnus-level-default-subscribed nil nil ,method
1617                ((quit-config .
1618                              ,(if quit-config quit-config
1619                                 (cons gnus-summary-buffer
1620                                       gnus-current-window-configuration))))))
1621      gnus-newsrc-hashtb)
1622     (push method gnus-ephemeral-servers)
1623     (set-buffer gnus-group-buffer)
1624     (unless (gnus-check-server method)
1625       (error "Unable to contact server: %s" (gnus-status-message method)))
1626     (when activate
1627       (gnus-activate-group group 'scan)
1628       (unless (gnus-request-group group)
1629         (error "Couldn't request group: %s"
1630                (nnheader-get-report (car method)))))
1631     (if request-only
1632         group
1633       (condition-case ()
1634           (when (gnus-group-read-group t t group select-articles)
1635             group)
1636         ;;(error nil)
1637         (quit nil)))))
1638
1639 (defun gnus-group-jump-to-group (group)
1640   "Jump to newsgroup GROUP."
1641   (interactive
1642    (list (completing-read
1643           "Group: " gnus-active-hashtb nil
1644           (gnus-read-active-file-p)
1645           nil
1646           'gnus-group-history)))
1647
1648   (when (equal group "")
1649     (error "Empty group name"))
1650
1651   (unless (gnus-ephemeral-group-p group)
1652     ;; Either go to the line in the group buffer...
1653     (unless (gnus-group-goto-group group)
1654       ;; ... or insert the line.
1655       (gnus-group-update-group group)
1656       (gnus-group-goto-group group)))
1657   ;; Adjust cursor point.
1658   (gnus-group-position-point))
1659
1660 (defun gnus-group-goto-group (group &optional far)
1661   "Goto to newsgroup GROUP.
1662 If FAR, it is likely that the group is not on the current line."
1663   (when group
1664     (if far
1665         (gnus-goto-char
1666          (text-property-any
1667           (point-min) (point-max)
1668           'gnus-group (gnus-intern-safe group gnus-active-hashtb)))
1669       (beginning-of-line)
1670       (cond
1671        ;; It's quite likely that we are on the right line, so
1672        ;; we check the current line first.
1673        ((eq (get-text-property (point) 'gnus-group)
1674             (gnus-intern-safe group gnus-active-hashtb))
1675         (point))
1676        ;; Previous and next line are also likely, so we check them as well.
1677        ((save-excursion
1678           (forward-line -1)
1679           (eq (get-text-property (point) 'gnus-group)
1680               (gnus-intern-safe group gnus-active-hashtb)))
1681         (forward-line -1)
1682         (point))
1683        ((save-excursion
1684           (forward-line 1)
1685           (eq (get-text-property (point) 'gnus-group)
1686               (gnus-intern-safe group gnus-active-hashtb)))
1687         (forward-line 1)
1688         (point))
1689        (t
1690         ;; Search through the entire buffer.
1691         (gnus-goto-char
1692          (text-property-any
1693           (point-min) (point-max)
1694           'gnus-group (gnus-intern-safe group gnus-active-hashtb))))))))
1695
1696 (defun gnus-group-next-group (n &optional silent)
1697   "Go to next N'th newsgroup.
1698 If N is negative, search backward instead.
1699 Returns the difference between N and the number of skips actually
1700 done."
1701   (interactive "p")
1702   (gnus-group-next-unread-group n t nil silent))
1703
1704 (defun gnus-group-next-unread-group (n &optional all level silent)
1705   "Go to next N'th unread newsgroup.
1706 If N is negative, search backward instead.
1707 If ALL is non-nil, choose any newsgroup, unread or not.
1708 If LEVEL is non-nil, choose the next group with level LEVEL, or, if no
1709 such group can be found, the next group with a level higher than
1710 LEVEL.
1711 Returns the difference between N and the number of skips actually
1712 made."
1713   (interactive "p")
1714   (let ((backward (< n 0))
1715         (n (abs n)))
1716     (while (and (> n 0)
1717                 (gnus-group-search-forward
1718                  backward (or (not gnus-group-goto-unread) all) level))
1719       (setq n (1- n)))
1720     (when (and (/= 0 n)
1721                (not silent))
1722       (gnus-message 7 "No more%s newsgroups%s" (if all "" " unread")
1723                     (if level " on this level or higher" "")))
1724     n))
1725
1726 (defun gnus-group-prev-group (n)
1727   "Go to previous N'th newsgroup.
1728 Returns the difference between N and the number of skips actually
1729 done."
1730   (interactive "p")
1731   (gnus-group-next-unread-group (- n) t))
1732
1733 (defun gnus-group-prev-unread-group (n)
1734   "Go to previous N'th unread newsgroup.
1735 Returns the difference between N and the number of skips actually
1736 done."
1737   (interactive "p")
1738   (gnus-group-next-unread-group (- n)))
1739
1740 (defun gnus-group-next-unread-group-same-level (n)
1741   "Go to next N'th unread newsgroup on the same level.
1742 If N is negative, search backward instead.
1743 Returns the difference between N and the number of skips actually
1744 done."
1745   (interactive "p")
1746   (gnus-group-next-unread-group n t (gnus-group-group-level))
1747   (gnus-group-position-point))
1748
1749 (defun gnus-group-prev-unread-group-same-level (n)
1750   "Go to next N'th unread newsgroup on the same level.
1751 Returns the difference between N and the number of skips actually
1752 done."
1753   (interactive "p")
1754   (gnus-group-next-unread-group (- n) t (gnus-group-group-level))
1755   (gnus-group-position-point))
1756
1757 (defun gnus-group-best-unread-group (&optional exclude-group)
1758   "Go to the group with the highest level.
1759 If EXCLUDE-GROUP, do not go to that group."
1760   (interactive)
1761   (goto-char (point-min))
1762   (let ((best 100000)
1763         unread best-point)
1764     (while (not (eobp))
1765       (setq unread (get-text-property (point) 'gnus-unread))
1766       (when (and (numberp unread) (> unread 0))
1767         (when (and (get-text-property (point) 'gnus-level)
1768                    (< (get-text-property (point) 'gnus-level) best)
1769                    (or (not exclude-group)
1770                        (not (equal exclude-group (gnus-group-group-name)))))
1771           (setq best (get-text-property (point) 'gnus-level))
1772           (setq best-point (point))))
1773       (forward-line 1))
1774     (when best-point
1775       (goto-char best-point))
1776     (gnus-summary-position-point)
1777     (and best-point (gnus-group-group-name))))
1778
1779 (defun gnus-group-first-unread-group ()
1780   "Go to the first group with unread articles."
1781   (interactive)
1782   (prog1
1783       (let ((opoint (point))
1784             unread)
1785         (goto-char (point-min))
1786         (if (or (eq (setq unread (gnus-group-group-unread)) t) ; Not active.
1787                 (and (numberp unread)   ; Not a topic.
1788                      (not (zerop unread))) ; Has unread articles.
1789                 (zerop (gnus-group-next-unread-group 1))) ; Next unread group.
1790             (point)                     ; Success.
1791           (goto-char opoint)
1792           nil))                         ; Not success.
1793     (gnus-group-position-point)))
1794
1795 (defun gnus-group-enter-server-mode ()
1796   "Jump to the server buffer."
1797   (interactive)
1798   (gnus-enter-server-buffer))
1799
1800 (defun gnus-group-make-group (name &optional method address args)
1801   "Add a new newsgroup.
1802 The user will be prompted for a NAME, for a select METHOD, and an
1803 ADDRESS."
1804   (interactive
1805    (list
1806     (gnus-read-group "Group name: ")
1807     (gnus-read-method "From method: ")))
1808
1809   (when (stringp method)
1810     (setq method (or (gnus-server-to-method method) method)))
1811   (let* ((meth (when (and method
1812                           (not (gnus-server-equal method gnus-select-method)))
1813                  (if address (list (intern method) address)
1814                    method)))
1815          (nname (if method (gnus-group-prefixed-name name meth) name))
1816          backend info)
1817     (when (gnus-gethash nname gnus-newsrc-hashtb)
1818       (error "Group %s already exists" nname))
1819     ;; Subscribe to the new group.
1820     (gnus-group-change-level
1821      (setq info (list t nname gnus-level-default-subscribed nil nil meth))
1822      gnus-level-default-subscribed gnus-level-killed
1823      (and (gnus-group-group-name)
1824           (gnus-gethash (gnus-group-group-name)
1825                         gnus-newsrc-hashtb))
1826      t)
1827     ;; Make it active.
1828     (gnus-set-active nname (cons 1 0))
1829     (unless (gnus-ephemeral-group-p name)
1830       (gnus-dribble-enter
1831        (concat "(gnus-group-set-info '"
1832                (gnus-prin1-to-string (cdr info)) ")")))
1833     ;; Insert the line.
1834     (gnus-group-insert-group-line-info nname)
1835     (forward-line -1)
1836     (gnus-group-position-point)
1837
1838     ;; Load the backend and try to make the backend create
1839     ;; the group as well.
1840     (when (assoc (symbol-name (setq backend (car (gnus-server-get-method
1841                                                   nil meth))))
1842                  gnus-valid-select-methods)
1843       (require backend))
1844     (gnus-check-server meth)
1845     (when (gnus-check-backend-function 'request-create-group nname)
1846       (gnus-request-create-group nname nil args))
1847     t))
1848
1849 (defun gnus-group-delete-group (group &optional force)
1850   "Delete the current group.  Only meaningful with mail groups.
1851 If FORCE (the prefix) is non-nil, all the articles in the group will
1852 be deleted.  This is \"deleted\" as in \"removed forever from the face
1853 of the Earth\".  There is no undo.  The user will be prompted before
1854 doing the deletion."
1855   (interactive
1856    (list (gnus-group-group-name)
1857          current-prefix-arg))
1858   (unless group
1859     (error "No group to rename"))
1860   (unless (gnus-check-backend-function 'request-delete-group group)
1861     (error "This backend does not support group deletion"))
1862   (prog1
1863       (if (not (gnus-yes-or-no-p
1864                 (format
1865                  "Do you really want to delete %s%s? "
1866                  group (if force " and all its contents" ""))))
1867           ()                            ; Whew!
1868         (gnus-message 6 "Deleting group %s..." group)
1869         (if (not (gnus-request-delete-group group force))
1870             (gnus-error 3 "Couldn't delete group %s" group)
1871           (gnus-message 6 "Deleting group %s...done" group)
1872           (gnus-group-goto-group group)
1873           (gnus-group-kill-group 1 t)
1874           (gnus-sethash group nil gnus-active-hashtb)
1875           t))
1876     (gnus-group-position-point)))
1877
1878 (defun gnus-group-rename-group (group new-name)
1879   "Rename group from GROUP to NEW-NAME.
1880 When used interactively, GROUP is the group under point
1881 and NEW-NAME will be prompted for."
1882   (interactive
1883    (list
1884     (gnus-group-group-name)
1885     (progn
1886       (unless (gnus-check-backend-function
1887                'request-rename-group (gnus-group-group-name))
1888         (error "This backend does not support renaming groups"))
1889       (gnus-read-group "Rename group to: "
1890                        (gnus-group-real-name (gnus-group-group-name))))))
1891
1892   (unless (gnus-check-backend-function 'request-rename-group group)
1893     (error "This backend does not support renaming groups"))
1894   (unless group
1895     (error "No group to rename"))
1896   (when (equal (gnus-group-real-name group) new-name)
1897     (error "Can't rename to the same name"))
1898
1899   ;; We find the proper prefixed name.
1900   (setq new-name
1901         (if (gnus-group-native-p group)
1902             ;; Native group.
1903             new-name
1904           ;; Foreign group.
1905           (gnus-group-prefixed-name
1906            (gnus-group-real-name new-name)
1907            (gnus-info-method (gnus-get-info group)))))
1908
1909   (gnus-message 6 "Renaming group %s to %s..." group new-name)
1910   (prog1
1911       (if (not (gnus-request-rename-group group new-name))
1912           (gnus-error 3 "Couldn't rename group %s to %s" group new-name)
1913         ;; We rename the group internally by killing it...
1914         (gnus-group-goto-group group)
1915         (gnus-group-kill-group)
1916         ;; ... changing its name ...
1917         (setcar (cdar gnus-list-of-killed-groups) new-name)
1918         ;; ... and then yanking it.  Magic!
1919         (gnus-group-yank-group)
1920         (gnus-set-active new-name (gnus-active group))
1921         (gnus-message 6 "Renaming group %s to %s...done" group new-name)
1922         new-name)
1923     (setq gnus-killed-list (delete group gnus-killed-list))
1924     (gnus-set-active group nil)
1925     (gnus-dribble-touch)
1926     (gnus-group-position-point)))
1927
1928 (defun gnus-group-edit-group (group &optional part)
1929   "Edit the group on the current line."
1930   (interactive (list (gnus-group-group-name)))
1931   (let ((part (or part 'info))
1932         info)
1933     (unless group
1934       (error "No group on current line"))
1935     (unless (setq info (gnus-get-info group))
1936       (error "Killed group; can't be edited"))
1937     (ignore-errors
1938       (gnus-close-group group))
1939     (gnus-edit-form
1940      ;; Find the proper form to edit.
1941      (cond ((eq part 'method)
1942             (or (gnus-info-method info) "native"))
1943            ((eq part 'params)
1944             (gnus-info-params info))
1945            (t info))
1946      ;; The proper documentation.
1947      (format
1948       "Editing the %s for `%s'."
1949       (cond
1950        ((eq part 'method) "select method")
1951        ((eq part 'params) "group parameters")
1952        (t "group info"))
1953       group)
1954      `(lambda (form)
1955         (gnus-group-edit-group-done ',part ,group form)))))
1956
1957 (defun gnus-group-edit-group-method (group)
1958   "Edit the select method of GROUP."
1959   (interactive (list (gnus-group-group-name)))
1960   (gnus-group-edit-group group 'method))
1961
1962 (defun gnus-group-edit-group-parameters (group)
1963   "Edit the group parameters of GROUP."
1964   (interactive (list (gnus-group-group-name)))
1965   (gnus-group-edit-group group 'params))
1966
1967 (defun gnus-group-edit-group-done (part group form)
1968   "Update variables."
1969   (let* ((method (cond ((eq part 'info) (nth 4 form))
1970                        ((eq part 'method) form)
1971                        (t nil)))
1972          (info (cond ((eq part 'info) form)
1973                      ((eq part 'method) (gnus-get-info group))
1974                      (t nil)))
1975          (new-group (if info
1976                         (if (or (not method)
1977                                 (gnus-server-equal
1978                                  gnus-select-method method))
1979                             (gnus-group-real-name (car info))
1980                           (gnus-group-prefixed-name
1981                            (gnus-group-real-name (car info)) method))
1982                       nil)))
1983     (when (and new-group
1984                (not (equal new-group group)))
1985       (when (gnus-group-goto-group group)
1986         (gnus-group-kill-group 1))
1987       (gnus-activate-group new-group))
1988     ;; Set the info.
1989     (if (not (and info new-group))
1990         (gnus-group-set-info form (or new-group group) part)
1991       (setq info (gnus-copy-sequence info))
1992       (setcar info new-group)
1993       (unless (gnus-server-equal method "native")
1994         (unless (nthcdr 3 info)
1995           (nconc info (list nil nil)))
1996         (unless (nthcdr 4 info)
1997           (nconc info (list nil)))
1998         (gnus-info-set-method info method))
1999       (gnus-group-set-info info))
2000     (gnus-group-update-group (or new-group group))
2001     (gnus-group-position-point)))
2002
2003 (defun gnus-group-make-useful-group (group method)
2004   "Create one of the groups described in `gnus-useful-groups'."
2005   (interactive
2006    (let ((entry (assoc (completing-read "Create group: " gnus-useful-groups
2007                                         nil t)
2008                        gnus-useful-groups)))
2009      (list (cadr entry) (caddr entry))))
2010   (setq method (gnus-copy-sequence method))
2011   (let (entry)
2012     (while (setq entry (memq (assq 'eval method) method))
2013       (setcar entry (eval (cadar entry)))))
2014   (gnus-group-make-group group method))
2015
2016 (defun gnus-group-make-help-group ()
2017   "Create the Gnus documentation group."
2018   (interactive)
2019   (let ((name (gnus-group-prefixed-name "gnus-help" '(nndoc "gnus-help")))
2020         (file (nnheader-find-etc-directory "gnus-tut.txt" t)))
2021     (when (gnus-gethash name gnus-newsrc-hashtb)
2022       (error "Documentation group already exists"))
2023     (if (not file)
2024         (gnus-message 1 "Couldn't find doc group")
2025       (gnus-group-make-group
2026        (gnus-group-real-name name)
2027        (list 'nndoc "gnus-help"
2028              (list 'nndoc-address file)
2029              (list 'nndoc-article-type 'mbox)))))
2030   (gnus-group-position-point))
2031
2032 (defun gnus-group-make-doc-group (file type)
2033   "Create a group that uses a single file as the source."
2034   (interactive
2035    (list (read-file-name "File name: ")
2036          (and current-prefix-arg 'ask)))
2037   (when (eq type 'ask)
2038     (let ((err "")
2039           char found)
2040       (while (not found)
2041         (message
2042          "%sFile type (mbox, babyl, digest, forward, mmdf, guess) [mbdfag]: "
2043          err)
2044         (setq found (cond ((= (setq char (read-char)) ?m) 'mbox)
2045                           ((= char ?b) 'babyl)
2046                           ((= char ?d) 'digest)
2047                           ((= char ?f) 'forward)
2048                           ((= char ?a) 'mmfd)
2049                           ((= char ?g) 'guess)
2050                           (t (setq err (format "%c unknown. " char))
2051                              nil))))
2052       (setq type found)))
2053   (let* ((file (expand-file-name file))
2054          (name (gnus-generate-new-group-name
2055                 (gnus-group-prefixed-name
2056                  (file-name-nondirectory file) '(nndoc "")))))
2057     (gnus-group-make-group
2058      (gnus-group-real-name name)
2059      (list 'nndoc file
2060            (list 'nndoc-address file)
2061            (list 'nndoc-article-type (or type 'guess))))))
2062
2063 (defvar nnweb-type-definition)
2064 (defvar gnus-group-web-type-history nil)
2065 (defvar gnus-group-web-search-history nil)
2066 (defun gnus-group-make-web-group (&optional solid)
2067   "Create an ephemeral nnweb group.
2068 If SOLID (the prefix), create a solid group."
2069   (interactive "P")
2070   (require 'nnweb)
2071   (let* ((group
2072           (if solid (gnus-read-group "Group name: ")
2073             (message-unique-id)))
2074          (default-type (or (car gnus-group-web-type-history)
2075                            (symbol-name (caar nnweb-type-definition))))
2076          (type
2077           (gnus-string-or
2078            (completing-read
2079             (format "Search engine type (default %s): " default-type)
2080             (mapcar (lambda (elem) (list (symbol-name (car elem))))
2081                     nnweb-type-definition)
2082             nil t nil 'gnus-group-web-type-history)
2083            default-type))
2084          (search
2085           (read-string
2086            "Search string: "
2087            (cons (or (car gnus-group-web-search-history) "") 0)
2088            'gnus-group-web-search-history))
2089          (method
2090           `(nnweb ,group (nnweb-search ,search)
2091                   (nnweb-type ,(intern type))
2092                   (nnweb-ephemeral-p t))))
2093     (if solid
2094         (gnus-group-make-group group "nnweb" "" `(,(intern type) ,search))
2095       (gnus-group-read-ephemeral-group
2096        group method t
2097        (cons (current-buffer)
2098              (if (eq major-mode 'gnus-summary-mode) 'summary 'group))))))
2099
2100 (defun gnus-group-make-archive-group (&optional all)
2101   "Create the (ding) Gnus archive group of the most recent articles.
2102 Given a prefix, create a full group."
2103   (interactive "P")
2104   (let ((group (gnus-group-prefixed-name
2105                 (if all "ding.archives" "ding.recent") '(nndir ""))))
2106     (when (gnus-gethash group gnus-newsrc-hashtb)
2107       (error "Archive group already exists"))
2108     (gnus-group-make-group
2109      (gnus-group-real-name group)
2110      (list 'nndir (if all "hpc" "edu")
2111            (list 'nndir-directory
2112                  (if all gnus-group-archive-directory
2113                    gnus-group-recent-archive-directory))))
2114     (gnus-group-add-parameter group (cons 'to-address "ding@gnus.org"))))
2115
2116 (defun gnus-group-make-directory-group (dir)
2117   "Create an nndir group.
2118 The user will be prompted for a directory.  The contents of this
2119 directory will be used as a newsgroup.  The directory should contain
2120 mail messages or news articles in files that have numeric names."
2121   (interactive
2122    (list (read-file-name "Create group from directory: ")))
2123   (unless (file-exists-p dir)
2124     (error "No such directory"))
2125   (unless (file-directory-p dir)
2126     (error "Not a directory"))
2127   (let ((ext "")
2128         (i 0)
2129         group)
2130     (while (or (not group) (gnus-gethash group gnus-newsrc-hashtb))
2131       (setq group
2132             (gnus-group-prefixed-name
2133              (concat (file-name-as-directory (directory-file-name dir))
2134                      ext)
2135              '(nndir "")))
2136       (setq ext (format "<%d>" (setq i (1+ i)))))
2137     (gnus-group-make-group
2138      (gnus-group-real-name group)
2139      (list 'nndir (gnus-group-real-name group) (list 'nndir-directory dir)))))
2140
2141 (defun gnus-group-make-kiboze-group (group address scores)
2142   "Create an nnkiboze group.
2143 The user will be prompted for a name, a regexp to match groups, and
2144 score file entries for articles to include in the group."
2145   (interactive
2146    (list
2147     (read-string "nnkiboze group name: ")
2148     (read-string "Source groups (regexp): ")
2149     (let ((headers (mapcar (lambda (group) (list group))
2150                            '("subject" "from" "number" "date" "message-id"
2151                              "references" "chars" "lines" "xref"
2152                              "followup" "all" "body" "head")))
2153           scores header regexp regexps)
2154       (while (not (equal "" (setq header (completing-read
2155                                           "Match on header: " headers nil t))))
2156         (setq regexps nil)
2157         (while (not (equal "" (setq regexp (read-string
2158                                             (format "Match on %s (string): "
2159                                                     header)))))
2160           (push (list regexp nil nil 'r) regexps))
2161         (push (cons header regexps) scores))
2162       scores)))
2163   (gnus-group-make-group group "nnkiboze" address)
2164   (with-temp-file (gnus-score-file-name (concat "nnkiboze:" group))
2165     (let (emacs-lisp-mode-hook)
2166       (pp scores (current-buffer)))))
2167
2168 (defun gnus-group-add-to-virtual (n vgroup)
2169   "Add the current group to a virtual group."
2170   (interactive
2171    (list current-prefix-arg
2172          (completing-read "Add to virtual group: " gnus-newsrc-hashtb nil t
2173                           "nnvirtual:")))
2174   (unless (eq (car (gnus-find-method-for-group vgroup)) 'nnvirtual)
2175     (error "%s is not an nnvirtual group" vgroup))
2176   (gnus-close-group vgroup)
2177   (let* ((groups (gnus-group-process-prefix n))
2178          (method (gnus-info-method (gnus-get-info vgroup))))
2179     (setcar (cdr method)
2180             (concat
2181              (nth 1 method) "\\|"
2182              (mapconcat
2183               (lambda (s)
2184                 (gnus-group-remove-mark s)
2185                 (concat "\\(^" (regexp-quote s) "$\\)"))
2186               groups "\\|"))))
2187   (gnus-group-position-point))
2188
2189 (defun gnus-group-make-empty-virtual (group)
2190   "Create a new, fresh, empty virtual group."
2191   (interactive "sCreate new, empty virtual group: ")
2192   (let* ((method (list 'nnvirtual "^$"))
2193          (pgroup (gnus-group-prefixed-name group method)))
2194     ;; Check whether it exists already.
2195     (when (gnus-gethash pgroup gnus-newsrc-hashtb)
2196       (error "Group %s already exists" pgroup))
2197     ;; Subscribe the new group after the group on the current line.
2198     (gnus-subscribe-group pgroup (gnus-group-group-name) method)
2199     (gnus-group-update-group pgroup)
2200     (forward-line -1)
2201     (gnus-group-position-point)))
2202
2203 (defun gnus-group-enter-directory (dir)
2204   "Enter an ephemeral nneething group."
2205   (interactive "DDirectory to read: ")
2206   (let* ((method (list 'nneething dir '(nneething-read-only t)))
2207          (leaf (gnus-group-prefixed-name
2208                 (file-name-nondirectory (directory-file-name dir))
2209                 method))
2210          (name (gnus-generate-new-group-name leaf)))
2211     (unless (gnus-group-read-ephemeral-group
2212              name method t
2213              (cons (current-buffer)
2214                    (if (eq major-mode 'gnus-summary-mode)
2215                        'summary 'group)))
2216       (error "Couldn't enter %s" dir))))
2217
2218 ;; Group sorting commands
2219 ;; Suggested by Joe Hildebrand <hildjj@idaho.fuentez.com>.
2220
2221 (defun gnus-group-sort-groups (func &optional reverse)
2222   "Sort the group buffer according to FUNC.
2223 When used interactively, the sorting function used will be
2224 determined by the `gnus-group-sort-function' variable.
2225 If REVERSE (the prefix), reverse the sorting order."
2226   (interactive (list gnus-group-sort-function current-prefix-arg))
2227   (funcall gnus-group-sort-alist-function
2228            (gnus-make-sort-function func) reverse)
2229   (gnus-group-list-groups)
2230   (gnus-dribble-touch))
2231
2232 (defun gnus-group-sort-flat (func reverse)
2233   ;; We peel off the dummy group from the alist.
2234   (when func
2235     (when (equal (gnus-info-group (car gnus-newsrc-alist)) "dummy.group")
2236       (pop gnus-newsrc-alist))
2237     ;; Do the sorting.
2238     (setq gnus-newsrc-alist
2239           (sort gnus-newsrc-alist func))
2240     (when reverse
2241       (setq gnus-newsrc-alist (nreverse gnus-newsrc-alist)))
2242     ;; Regenerate the hash table.
2243     (gnus-make-hashtable-from-newsrc-alist)))
2244
2245 (defun gnus-group-sort-groups-by-alphabet (&optional reverse)
2246   "Sort the group buffer alphabetically by group name.
2247 If REVERSE, sort in reverse order."
2248   (interactive "P")
2249   (gnus-group-sort-groups 'gnus-group-sort-by-alphabet reverse))
2250
2251 (defun gnus-group-sort-groups-by-unread (&optional reverse)
2252   "Sort the group buffer by number of unread articles.
2253 If REVERSE, sort in reverse order."
2254   (interactive "P")
2255   (gnus-group-sort-groups 'gnus-group-sort-by-unread reverse))
2256
2257 (defun gnus-group-sort-groups-by-level (&optional reverse)
2258   "Sort the group buffer by group level.
2259 If REVERSE, sort in reverse order."
2260   (interactive "P")
2261   (gnus-group-sort-groups 'gnus-group-sort-by-level reverse))
2262
2263 (defun gnus-group-sort-groups-by-score (&optional reverse)
2264   "Sort the group buffer by group score.
2265 If REVERSE, sort in reverse order."
2266   (interactive "P")
2267   (gnus-group-sort-groups 'gnus-group-sort-by-score reverse))
2268
2269 (defun gnus-group-sort-groups-by-rank (&optional reverse)
2270   "Sort the group buffer by group rank.
2271 If REVERSE, sort in reverse order."
2272   (interactive "P")
2273   (gnus-group-sort-groups 'gnus-group-sort-by-rank reverse))
2274
2275 (defun gnus-group-sort-groups-by-method (&optional reverse)
2276   "Sort the group buffer alphabetically by backend name.
2277 If REVERSE, sort in reverse order."
2278   (interactive "P")
2279   (gnus-group-sort-groups 'gnus-group-sort-by-method reverse))
2280
2281 ;;; Selected group sorting.
2282
2283 (defun gnus-group-sort-selected-groups (n func &optional reverse)
2284   "Sort the process/prefixed groups."
2285   (interactive (list current-prefix-arg gnus-group-sort-function))
2286   (let ((groups (gnus-group-process-prefix n)))
2287     (funcall gnus-group-sort-selected-function
2288              groups (gnus-make-sort-function func) reverse)
2289     (gnus-group-list-groups)))
2290
2291 (defun gnus-group-sort-selected-flat (groups func reverse)
2292   (let (entries infos)
2293     ;; First find all the group entries for these groups.
2294     (while groups
2295       (push (nthcdr 2 (gnus-gethash (pop groups) gnus-newsrc-hashtb))
2296             entries))
2297     ;; Then sort the infos.
2298     (setq infos
2299           (sort
2300            (mapcar
2301             (lambda (entry) (car entry))
2302             (setq entries (nreverse entries)))
2303            func))
2304     (when reverse
2305       (setq infos (nreverse infos)))
2306     ;; Go through all the infos and replace the old entries
2307     ;; with the new infos.
2308     (while infos
2309       (setcar (car entries) (pop infos))
2310       (pop entries))
2311     ;; Update the hashtable.
2312     (gnus-make-hashtable-from-newsrc-alist)))
2313
2314 (defun gnus-group-sort-selected-groups-by-alphabet (&optional n reverse)
2315   "Sort the group buffer alphabetically by group name.
2316 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2317 sort in reverse order."
2318   (interactive (gnus-interactive "P\ny"))
2319   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-alphabet reverse))
2320
2321 (defun gnus-group-sort-selected-groups-by-unread (&optional n reverse)
2322   "Sort the group buffer by number of unread articles.
2323 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2324 sort in reverse order."
2325   (interactive (gnus-interactive "P\ny"))
2326   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-unread reverse))
2327
2328 (defun gnus-group-sort-selected-groups-by-level (&optional n reverse)
2329   "Sort the group buffer by group level.
2330 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2331 sort in reverse order."
2332   (interactive (gnus-interactive "P\ny"))
2333   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-level reverse))
2334
2335 (defun gnus-group-sort-selected-groups-by-score (&optional n reverse)
2336   "Sort the group buffer by group score.
2337 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2338 sort in reverse order."
2339   (interactive (gnus-interactive "P\ny"))
2340   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-score reverse))
2341
2342 (defun gnus-group-sort-selected-groups-by-rank (&optional n reverse)
2343   "Sort the group buffer by group rank.
2344 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2345 sort in reverse order."
2346   (interactive (gnus-interactive "P\ny"))
2347   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-rank reverse))
2348
2349 (defun gnus-group-sort-selected-groups-by-method (&optional n reverse)
2350   "Sort the group buffer alphabetically by backend name.
2351 Obeys the process/prefix convention.  If REVERSE (the symbolic prefix),
2352 sort in reverse order."
2353   (interactive (gnus-interactive "P\ny"))
2354   (gnus-group-sort-selected-groups n 'gnus-group-sort-by-method reverse))
2355
2356 ;;; Sorting predicates.
2357
2358 (defun gnus-group-sort-by-alphabet (info1 info2)
2359   "Sort alphabetically."
2360   (string< (gnus-info-group info1) (gnus-info-group info2)))
2361
2362 (defun gnus-group-sort-by-real-name (info1 info2)
2363   "Sort alphabetically on real (unprefixed) names."
2364   (string< (gnus-group-real-name (gnus-info-group info1))
2365            (gnus-group-real-name (gnus-info-group info2))))
2366
2367 (defun gnus-group-sort-by-unread (info1 info2)
2368   "Sort by number of unread articles."
2369   (let ((n1 (car (gnus-gethash (gnus-info-group info1) gnus-newsrc-hashtb)))
2370         (n2 (car (gnus-gethash (gnus-info-group info2) gnus-newsrc-hashtb))))
2371     (< (or (and (numberp n1) n1) 0)
2372        (or (and (numberp n2) n2) 0))))
2373
2374 (defun gnus-group-sort-by-level (info1 info2)
2375   "Sort by level."
2376   (< (gnus-info-level info1) (gnus-info-level info2)))
2377
2378 (defun gnus-group-sort-by-method (info1 info2)
2379   "Sort alphabetically by backend name."
2380   (string< (symbol-name (car (gnus-find-method-for-group
2381                               (gnus-info-group info1) info1)))
2382            (symbol-name (car (gnus-find-method-for-group
2383                               (gnus-info-group info2) info2)))))
2384
2385 (defun gnus-group-sort-by-score (info1 info2)
2386   "Sort by group score."
2387   (< (gnus-info-score info1) (gnus-info-score info2)))
2388
2389 (defun gnus-group-sort-by-rank (info1 info2)
2390   "Sort by level and score."
2391   (let ((level1 (gnus-info-level info1))
2392         (level2 (gnus-info-level info2)))
2393     (or (< level1 level2)
2394         (and (= level1 level2)
2395              (> (gnus-info-score info1) (gnus-info-score info2))))))
2396
2397 ;;; Clearing data
2398
2399 (defun gnus-group-clear-data (&optional arg)
2400   "Clear all marks and read ranges from the current group."
2401   (interactive "P")
2402   (gnus-group-iterate arg
2403     (lambda (group)
2404       (let (info)
2405         (gnus-info-clear-data (setq info (gnus-get-info group)))
2406         (gnus-get-unread-articles-in-group info (gnus-active group) t)
2407         (when (gnus-group-goto-group group)
2408           (gnus-group-update-group-line))))))
2409
2410 (defun gnus-group-clear-data-on-native-groups ()
2411   "Clear all marks and read ranges from all native groups."
2412   (interactive)
2413   (when (gnus-yes-or-no-p "Really clear all data from almost all groups? ")
2414     (let ((alist (cdr gnus-newsrc-alist))
2415           info)
2416       (while (setq info (pop alist))
2417         (when (gnus-group-native-p (gnus-info-group info))
2418           (gnus-info-clear-data info)))
2419       (gnus-get-unread-articles)
2420       (gnus-dribble-touch)
2421       (when (gnus-y-or-n-p
2422              "Move the cache away to avoid problems in the future? ")
2423         (call-interactively 'gnus-cache-move-cache)))))
2424
2425 (defun gnus-info-clear-data (info)
2426   "Clear all marks and read ranges from INFO."
2427   (let ((group (gnus-info-group info)))
2428     (gnus-undo-register
2429       `(progn
2430          (gnus-info-set-marks ',info ',(gnus-info-marks info) t)
2431          (gnus-info-set-read ',info ',(gnus-info-read info))
2432          (when (gnus-group-goto-group ,group)
2433            (gnus-group-update-group-line))))
2434     (gnus-info-set-read info nil)
2435     (when (gnus-info-marks info)
2436       (gnus-info-set-marks info nil))))
2437
2438 ;; Group catching up.
2439
2440 (defun gnus-group-catchup-current (&optional n all)
2441   "Mark all articles not marked as unread in current newsgroup as read.
2442 If prefix argument N is numeric, the next N newsgroups will be
2443 caught up.  If ALL is non-nil, marked articles will also be marked as
2444 read.  Cross references (Xref: header) of articles are ignored.
2445 The number of newsgroups that this function was unable to catch
2446 up is returned."
2447   (interactive "P")
2448   (let ((groups (gnus-group-process-prefix n))
2449         (ret 0)
2450         group)
2451     (unless groups (error "No groups selected"))
2452     (if (not
2453          (or (not gnus-interactive-catchup) ;Without confirmation?
2454              gnus-expert-user
2455              (gnus-y-or-n-p
2456               (format
2457                (if all
2458                    "Do you really want to mark all articles in %s as read? "
2459                  "Mark all unread articles in %s as read? ")
2460                (if (= (length groups) 1)
2461                    (car groups)
2462                  (format "these %d groups" (length groups)))))))
2463         n
2464       (while (setq group (pop groups))
2465         (gnus-group-remove-mark group)
2466         ;; Virtual groups have to be given special treatment.
2467         (let ((method (gnus-find-method-for-group group)))
2468           (when (eq 'nnvirtual (car method))
2469             (nnvirtual-catchup-group
2470              (gnus-group-real-name group) (nth 1 method) all)))
2471         (if (>= (gnus-info-level (gnus-get-info group))
2472                 gnus-level-zombie)
2473             (gnus-message 2 "Dead groups can't be caught up")
2474           (if (prog1
2475                   (gnus-group-goto-group group)
2476                 (gnus-group-catchup group all))
2477               (gnus-group-update-group-line)
2478             (setq ret (1+ ret)))))
2479       (gnus-group-next-unread-group 1)
2480       ret)))
2481
2482 (defun gnus-group-catchup-current-all (&optional n)
2483   "Mark all articles in current newsgroup as read.
2484 Cross references (Xref: header) of articles are ignored."
2485   (interactive "P")
2486   (gnus-group-catchup-current n 'all))
2487
2488 (defun gnus-group-catchup (group &optional all)
2489   "Mark all articles in GROUP as read.
2490 If ALL is non-nil, all articles are marked as read.
2491 The return value is the number of articles that were marked as read,
2492 or nil if no action could be taken."
2493   (let* ((entry (gnus-gethash group gnus-newsrc-hashtb))
2494          (num (car entry)))
2495     ;; Do the updating only if the newsgroup isn't killed.
2496     (if (not (numberp (car entry)))
2497         (gnus-message 1 "Can't catch up %s; non-active group" group)
2498       ;; Do auto-expirable marks if that's required.
2499       (when (gnus-group-auto-expirable-p group)
2500         (gnus-add-marked-articles
2501          group 'expire (gnus-list-of-unread-articles group))
2502         (when all
2503           (let ((marks (nth 3 (nth 2 entry))))
2504             (gnus-add-marked-articles
2505              group 'expire (gnus-uncompress-range (cdr (assq 'tick marks))))
2506             (gnus-add-marked-articles
2507              group 'expire (gnus-uncompress-range (cdr (assq 'tick marks)))))))
2508       (when entry
2509         (gnus-update-read-articles group nil)
2510         ;; Also nix out the lists of marks and dormants.
2511         (when all
2512           (gnus-add-marked-articles group 'tick nil nil 'force)
2513           (gnus-add-marked-articles group 'dormant nil nil 'force))
2514         (let ((gnus-newsgroup-name group))
2515           (gnus-run-hooks 'gnus-group-catchup-group-hook))
2516         num))))
2517
2518 (defun gnus-group-expire-articles (&optional n)
2519   "Expire all expirable articles in the current newsgroup."
2520   (interactive "P")
2521   (let ((groups (gnus-group-process-prefix n))
2522         group)
2523     (unless groups
2524       (error "No groups to expire"))
2525     (while (setq group (pop groups))
2526       (gnus-group-remove-mark group)
2527       (gnus-group-expire-articles-1 group)
2528       (gnus-dribble-touch)
2529       (gnus-group-position-point))))
2530
2531 (defun gnus-group-expire-articles-1 (group)
2532   (when (gnus-check-backend-function 'request-expire-articles group)
2533     (gnus-message 6 "Expiring articles in %s..." group)
2534     (let* ((info (gnus-get-info group))
2535            (expirable (if (gnus-group-total-expirable-p group)
2536                           (cons nil (gnus-list-of-read-articles group))
2537                         (assq 'expire (gnus-info-marks info))))
2538            (expiry-wait (gnus-group-find-parameter group 'expiry-wait)))
2539       (when expirable
2540         (setcdr
2541          expirable
2542          (gnus-compress-sequence
2543           (if expiry-wait
2544               ;; We set the expiry variables to the group
2545               ;; parameter.
2546               (let ((nnmail-expiry-wait-function nil)
2547                     (nnmail-expiry-wait expiry-wait))
2548                 (gnus-request-expire-articles
2549                  (gnus-uncompress-sequence (cdr expirable)) group))
2550             ;; Just expire using the normal expiry values.
2551             (gnus-request-expire-articles
2552              (gnus-uncompress-sequence (cdr expirable)) group))))
2553         (gnus-close-group group))
2554       (gnus-message 6 "Expiring articles in %s...done" group))))
2555
2556 (defun gnus-group-expire-all-groups ()
2557   "Expire all expirable articles in all newsgroups."
2558   (interactive)
2559   (save-excursion
2560     (gnus-message 5 "Expiring...")
2561     (let ((gnus-group-marked (mapcar (lambda (info) (gnus-info-group info))
2562                                      (cdr gnus-newsrc-alist))))
2563       (gnus-group-expire-articles nil)))
2564   (gnus-group-position-point)
2565   (gnus-message 5 "Expiring...done"))
2566
2567 (defun gnus-group-set-current-level (n level)
2568   "Set the level of the next N groups to LEVEL."
2569   (interactive
2570    (list
2571     current-prefix-arg
2572     (string-to-int
2573      (let ((s (read-string
2574                (format "Level (default %s): "
2575                        (or (gnus-group-group-level)
2576                            gnus-level-default-subscribed)))))
2577        (if (string-match "^\\s-*$" s)
2578            (int-to-string (or (gnus-group-group-level)
2579                               gnus-level-default-subscribed))
2580          s)))))
2581   (unless (and (>= level 1) (<= level gnus-level-killed))
2582     (error "Invalid level: %d" level))
2583   (let ((groups (gnus-group-process-prefix n))
2584         group)
2585     (while (setq group (pop groups))
2586       (gnus-group-remove-mark group)
2587       (gnus-message 6 "Changed level of %s from %d to %d"
2588                     group (or (gnus-group-group-level) gnus-level-killed)
2589                     level)
2590       (gnus-group-change-level
2591        group level (or (gnus-group-group-level) gnus-level-killed))
2592       (gnus-group-update-group-line)))
2593   (gnus-group-position-point))
2594
2595 (defun gnus-group-unsubscribe (&optional n)
2596   "Unsubscribe the current group."
2597   (interactive "P")
2598   (gnus-group-unsubscribe-current-group n 'unsubscribe))
2599
2600 (defun gnus-group-subscribe (&optional n)
2601   "Subscribe the current group."
2602   (interactive "P")
2603   (gnus-group-unsubscribe-current-group n 'subscribe))
2604
2605 (defun gnus-group-unsubscribe-current-group (&optional n do-sub)
2606   "Toggle subscription of the current group.
2607 If given numerical prefix, toggle the N next groups."
2608   (interactive "P")
2609   (let ((groups (gnus-group-process-prefix n))
2610         group)
2611     (while groups
2612       (setq group (car groups)
2613             groups (cdr groups))
2614       (gnus-group-remove-mark group)
2615       (gnus-group-unsubscribe-group
2616        group
2617        (cond
2618         ((eq do-sub 'unsubscribe)
2619          gnus-level-default-unsubscribed)
2620         ((eq do-sub 'subscribe)
2621          gnus-level-default-subscribed)
2622         ((<= (gnus-group-group-level) gnus-level-subscribed)
2623          gnus-level-default-unsubscribed)
2624         (t
2625          gnus-level-default-subscribed))
2626        t)
2627       (gnus-group-update-group-line))
2628     (gnus-group-next-group 1)))
2629
2630 (defun gnus-group-unsubscribe-group (group &optional level silent)
2631   "Toggle subscription to GROUP.
2632 Killed newsgroups are subscribed.  If SILENT, don't try to update the
2633 group line."
2634   (interactive
2635    (list (completing-read
2636           "Group: " gnus-active-hashtb nil
2637           (gnus-read-active-file-p)
2638           nil
2639           'gnus-group-history)))
2640   (let ((newsrc (gnus-gethash group gnus-newsrc-hashtb)))
2641     (cond
2642      ((string-match "^[ \t]*$" group)
2643       (error "Empty group name"))
2644      (newsrc
2645       ;; Toggle subscription flag.
2646       (gnus-group-change-level
2647        newsrc (if level level (if (<= (gnus-info-level (nth 2 newsrc))
2648                                       gnus-level-subscribed)
2649                                   (1+ gnus-level-subscribed)
2650                                 gnus-level-default-subscribed)))
2651       (unless silent
2652         (gnus-group-update-group group)))
2653      ((and (stringp group)
2654            (or (not (gnus-read-active-file-p))
2655                (gnus-active group)))
2656       ;; Add new newsgroup.
2657       (gnus-group-change-level
2658        group
2659        (if level level gnus-level-default-subscribed)
2660        (or (and (member group gnus-zombie-list)
2661                 gnus-level-zombie)
2662            gnus-level-killed)
2663        (when (gnus-group-group-name)
2664          (gnus-gethash (gnus-group-group-name) gnus-newsrc-hashtb)))
2665       (unless silent
2666         (gnus-group-update-group group)))
2667      (t (error "No such newsgroup: %s" group)))
2668     (gnus-group-position-point)))
2669
2670 (defun gnus-group-transpose-groups (n)
2671   "Move the current newsgroup up N places.
2672 If given a negative prefix, move down instead.  The difference between
2673 N and the number of steps taken is returned."
2674   (interactive "p")
2675   (unless (gnus-group-group-name)
2676     (error "No group on current line"))
2677   (gnus-group-kill-group 1)
2678   (prog1
2679       (forward-line (- n))
2680     (gnus-group-yank-group)
2681     (gnus-group-position-point)))
2682
2683 (defun gnus-group-kill-all-zombies (&optional dummy)
2684   "Kill all zombie newsgroups.
2685 The optional DUMMY should always be nil."
2686   (interactive (list (not (gnus-yes-or-no-p "Really kill all zombies? "))))
2687   (unless dummy
2688     (setq gnus-killed-list (nconc gnus-zombie-list gnus-killed-list))
2689     (setq gnus-zombie-list nil)
2690     (gnus-dribble-touch)
2691     (gnus-group-list-groups)))
2692
2693 (defun gnus-group-kill-region (begin end)
2694   "Kill newsgroups in current region (excluding current point).
2695 The killed newsgroups can be yanked by using \\[gnus-group-yank-group]."
2696   (interactive "r")
2697   (let ((lines
2698          ;; Count lines.
2699          (save-excursion
2700            (count-lines
2701             (progn
2702               (goto-char begin)
2703               (beginning-of-line)
2704               (point))
2705             (progn
2706               (goto-char end)
2707               (beginning-of-line)
2708               (point))))))
2709     (goto-char begin)
2710     (beginning-of-line)                 ;Important when LINES < 1
2711     (gnus-group-kill-group lines)))
2712
2713 (defun gnus-group-kill-group (&optional n discard)
2714   "Kill the next N groups.
2715 The killed newsgroups can be yanked by using \\[gnus-group-yank-group].
2716 However, only groups that were alive can be yanked; already killed
2717 groups or zombie groups can't be yanked.
2718 The return value is the name of the group that was killed, or a list
2719 of groups killed."
2720   (interactive "P")
2721   (let ((buffer-read-only nil)
2722         (groups (gnus-group-process-prefix n))
2723         group entry level out)
2724     (if (< (length groups) 10)
2725         ;; This is faster when there are few groups.
2726         (while groups
2727           (push (setq group (pop groups)) out)
2728           (gnus-group-remove-mark group)
2729           (setq level (gnus-group-group-level))
2730           (gnus-delete-line)
2731           (when (and (not discard)
2732                      (setq entry (gnus-gethash group gnus-newsrc-hashtb)))
2733             (gnus-undo-register
2734               `(progn
2735                  (gnus-group-goto-group ,(gnus-group-group-name))
2736                  (gnus-group-yank-group)))
2737             (push (cons (car entry) (nth 2 entry))
2738                   gnus-list-of-killed-groups))
2739           (gnus-group-change-level
2740            (if entry entry group) gnus-level-killed (if entry nil level))
2741           (message "Killed group %s" group))
2742       ;; If there are lots and lots of groups to be killed, we use
2743       ;; this thing instead.
2744       (let (entry)
2745         (setq groups (nreverse groups))
2746         (while groups
2747           (gnus-group-remove-mark (setq group (pop groups)))
2748           (gnus-delete-line)
2749           (push group gnus-killed-list)
2750           (setq gnus-newsrc-alist
2751                 (delq (assoc group gnus-newsrc-alist)
2752                       gnus-newsrc-alist))
2753           (when gnus-group-change-level-function
2754             (funcall gnus-group-change-level-function
2755                      group gnus-level-killed 3))
2756           (cond
2757            ((setq entry (gnus-gethash group gnus-newsrc-hashtb))
2758             (push (cons (car entry) (nth 2 entry))
2759                   gnus-list-of-killed-groups)
2760             (setcdr (cdr entry) (cdddr entry)))
2761            ((member group gnus-zombie-list)
2762             (setq gnus-zombie-list (delete group gnus-zombie-list))))
2763           ;; There may be more than one instance displayed.
2764           (while (gnus-group-goto-group group)
2765             (gnus-delete-line)))
2766         (gnus-make-hashtable-from-newsrc-alist)))
2767
2768     (gnus-group-position-point)
2769     (if (< (length out) 2) (car out) (nreverse out))))
2770
2771 (defun gnus-group-yank-group (&optional arg)
2772   "Yank the last newsgroups killed with \\[gnus-group-kill-group], inserting it before the current newsgroup.
2773 The numeric ARG specifies how many newsgroups are to be yanked.  The
2774 name of the newsgroup yanked is returned, or (if several groups are
2775 yanked) a list of yanked groups is returned."
2776   (interactive "p")
2777   (setq arg (or arg 1))
2778   (let (info group prev out)
2779     (while (>= (decf arg) 0)
2780       (when (not (setq info (pop gnus-list-of-killed-groups)))
2781         (error "No more newsgroups to yank"))
2782       (push (setq group (nth 1 info)) out)
2783       ;; Find which newsgroup to insert this one before - search
2784       ;; backward until something suitable is found.  If there are no
2785       ;; other newsgroups in this buffer, just make this newsgroup the
2786       ;; first newsgroup.
2787       (setq prev (gnus-group-group-name))
2788       (gnus-group-change-level
2789        info (gnus-info-level (cdr info)) gnus-level-killed
2790        (and prev (gnus-gethash prev gnus-newsrc-hashtb))
2791        t)
2792       (gnus-group-insert-group-line-info group)
2793       (gnus-undo-register
2794         `(when (gnus-group-goto-group ,group)
2795            (gnus-group-kill-group 1))))
2796     (forward-line -1)
2797     (gnus-group-position-point)
2798     (if (< (length out) 2) (car out) (nreverse out))))
2799
2800 (defun gnus-group-kill-level (level)
2801   "Kill all groups that is on a certain LEVEL."
2802   (interactive "nKill all groups on level: ")
2803   (cond
2804    ((= level gnus-level-zombie)
2805     (setq gnus-killed-list
2806           (nconc gnus-zombie-list gnus-killed-list))
2807     (setq gnus-zombie-list nil))
2808    ((and (< level gnus-level-zombie)
2809          (> level 0)
2810          (or gnus-expert-user
2811              (gnus-yes-or-no-p
2812               (format
2813                "Do you really want to kill all groups on level %d? "
2814                level))))
2815     (let* ((prev gnus-newsrc-alist)
2816            (alist (cdr prev)))
2817       (while alist
2818         (if (= (gnus-info-level (car alist)) level)
2819             (progn
2820               (push (gnus-info-group (car alist)) gnus-killed-list)
2821               (setcdr prev (cdr alist)))
2822           (setq prev alist))
2823         (setq alist (cdr alist)))
2824       (gnus-make-hashtable-from-newsrc-alist)
2825       (gnus-group-list-groups)))
2826    (t
2827     (error "Can't kill; invalid level: %d" level))))
2828
2829 (defun gnus-group-list-all-groups (&optional arg)
2830   "List all newsgroups with level ARG or lower.
2831 Default is gnus-level-unsubscribed, which lists all subscribed and most
2832 unsubscribed groups."
2833   (interactive "P")
2834   (gnus-group-list-groups (or arg gnus-level-unsubscribed) t))
2835
2836 ;; Redefine this to list ALL killed groups if prefix arg used.
2837 ;; Rewritten by engstrom@src.honeywell.com (Eric Engstrom).
2838 (defun gnus-group-list-killed (&optional arg)
2839   "List all killed newsgroups in the group buffer.
2840 If ARG is non-nil, list ALL killed groups known to Gnus.  This may
2841 entail asking the server for the groups."
2842   (interactive "P")
2843   ;; Find all possible killed newsgroups if arg.
2844   (when arg
2845     (gnus-get-killed-groups))
2846   (if (not gnus-killed-list)
2847       (gnus-message 6 "No killed groups")
2848     (let (gnus-group-list-mode)
2849       (funcall gnus-group-prepare-function
2850                gnus-level-killed t gnus-level-killed))
2851     (goto-char (point-min)))
2852   (gnus-group-position-point))
2853
2854 (defun gnus-group-list-zombies ()
2855   "List all zombie newsgroups in the group buffer."
2856   (interactive)
2857   (if (not gnus-zombie-list)
2858       (gnus-message 6 "No zombie groups")
2859     (let (gnus-group-list-mode)
2860       (funcall gnus-group-prepare-function
2861                gnus-level-zombie t gnus-level-zombie))
2862     (goto-char (point-min)))
2863   (gnus-group-position-point))
2864
2865 (defun gnus-group-list-active ()
2866   "List all groups that are available from the server(s)."
2867   (interactive)
2868   ;; First we make sure that we have really read the active file.
2869   (unless (gnus-read-active-file-p)
2870     (let ((gnus-read-active-file t))
2871       (gnus-read-active-file)))
2872   ;; Find all groups and sort them.
2873   (let ((groups
2874          (sort
2875           (let (list)
2876             (mapatoms
2877              (lambda (sym)
2878                (and (boundp sym)
2879                     (symbol-value sym)
2880                     (push (symbol-name sym) list)))
2881              gnus-active-hashtb)
2882             list)
2883           'string<))
2884         (buffer-read-only nil)
2885         group)
2886     (erase-buffer)
2887     (while groups
2888       (gnus-add-text-properties
2889        (point) (prog1 (1+ (point))
2890                  (insert "       *: "
2891                          (setq group (pop groups)) "\n"))
2892        (list 'gnus-group (gnus-intern-safe group gnus-active-hashtb)
2893              'gnus-unread t
2894              'gnus-level (inline (gnus-group-level group)))))
2895     (goto-char (point-min))))
2896
2897 (defun gnus-activate-all-groups (level)
2898   "Activate absolutely all groups."
2899   (interactive (list gnus-level-unsubscribed))
2900   (let ((gnus-activate-level level)
2901         (gnus-activate-foreign-newsgroups level))
2902     (gnus-group-get-new-news)))
2903
2904 (defun gnus-group-get-new-news (&optional arg)
2905   "Get newly arrived articles.
2906 If ARG is a number, it specifies which levels you are interested in
2907 re-scanning.  If ARG is non-nil and not a number, this will force
2908 \"hard\" re-reading of the active files from all servers."
2909   (interactive "P")
2910   (require 'nnmail)
2911   (let ((gnus-inhibit-demon t)
2912         ;; Binding this variable will inhibit multiple fetchings
2913         ;; of the same mail source.
2914         (nnmail-fetched-sources (list t)))
2915     (gnus-run-hooks 'gnus-get-new-news-hook)
2916
2917     ;; Read any slave files.
2918     (unless gnus-slave
2919       (gnus-master-read-slave-newsrc))
2920
2921     ;; We might read in new NoCeM messages here.
2922     (when (and gnus-use-nocem
2923                (null arg))
2924       (gnus-nocem-scan-groups))
2925     ;; If ARG is not a number, then we read the active file.
2926     (when (and arg (not (numberp arg)))
2927       (let ((gnus-read-active-file t))
2928         (gnus-read-active-file))
2929       (setq arg nil)
2930
2931       ;; If the user wants it, we scan for new groups.
2932       (when (eq gnus-check-new-newsgroups 'always)
2933         (gnus-find-new-newsgroups)))
2934
2935     (setq arg (gnus-group-default-level arg t))
2936     (if (and gnus-read-active-file (not arg))
2937         (progn
2938           (gnus-read-active-file)
2939           (gnus-get-unread-articles arg))
2940       (let ((gnus-read-active-file (if arg nil gnus-read-active-file)))
2941         (gnus-get-unread-articles arg)))
2942     (gnus-run-hooks 'gnus-after-getting-new-news-hook)
2943     (gnus-group-list-groups (and (numberp arg)
2944                                  (max (car gnus-group-list-mode) arg)))))
2945
2946 (defun gnus-group-get-new-news-this-group (&optional n dont-scan)
2947   "Check for newly arrived news in the current group (and the N-1 next groups).
2948 The difference between N and the number of newsgroup checked is returned.
2949 If N is negative, this group and the N-1 previous groups will be checked."
2950   (interactive "P")
2951   (let* ((groups (gnus-group-process-prefix n))
2952          (ret (if (numberp n) (- n (length groups)) 0))
2953          (beg (unless n
2954                 (point)))
2955          group method)
2956     (while (setq group (pop groups))
2957       (gnus-group-remove-mark group)
2958       ;; Bypass any previous denials from the server.
2959       (gnus-remove-denial (setq method (gnus-find-method-for-group group)))
2960       (if (gnus-activate-group group (if dont-scan nil 'scan))
2961           (progn
2962             (gnus-get-unread-articles-in-group
2963              (gnus-get-info group) (gnus-active group) t)
2964             (unless (gnus-virtual-group-p group)
2965               (gnus-close-group group))
2966             (when gnus-agent
2967               (gnus-agent-save-group-info
2968                method (gnus-group-real-name group) (gnus-active group)))
2969             (gnus-group-update-group group))
2970         (if (eq (gnus-server-status (gnus-find-method-for-group group))
2971                 'denied)
2972             (gnus-error 3 "Server denied access")
2973           (gnus-error 3 "%s error: %s" group (gnus-status-message group)))))
2974     (when beg
2975       (goto-char beg))
2976     (when gnus-goto-next-group-when-activating
2977       (gnus-group-next-unread-group 1 t))
2978     (gnus-summary-position-point)
2979     ret))
2980
2981 (defun gnus-group-fetch-faq (group &optional faq-dir)
2982   "Fetch the FAQ for the current group.
2983 If given a prefix argument, prompt for the FAQ dir
2984 to use."
2985   (interactive
2986    (list
2987     (gnus-group-group-name)
2988     (when current-prefix-arg
2989       (completing-read
2990        "Faq dir: " (and (listp gnus-group-faq-directory)
2991                         (mapcar (lambda (file) (list file))
2992                                 gnus-group-faq-directory))))))
2993   (unless group
2994     (error "No group name given"))
2995   (let ((dirs (or faq-dir gnus-group-faq-directory))
2996         dir found file)
2997     (unless (listp dirs)
2998       (setq dirs (list dirs)))
2999     (while (and (not found)
3000                 (setq dir (pop dirs)))
3001       (let ((name (gnus-group-real-name group)))
3002         (setq file (concat (file-name-as-directory dir) name)))
3003       (if (not (file-exists-p file))
3004           (gnus-message 1 "No such file: %s" file)
3005         (let ((enable-local-variables nil))
3006           (find-file file)
3007           (setq found t))))))
3008
3009 (defun gnus-group-describe-group (force &optional group)
3010   "Display a description of the current newsgroup."
3011   (interactive (list current-prefix-arg (gnus-group-group-name)))
3012   (let* ((method (gnus-find-method-for-group group))
3013          (mname (gnus-group-prefixed-name "" method))
3014          desc)
3015     (when (and force
3016                gnus-description-hashtb)
3017       (gnus-sethash mname nil gnus-description-hashtb))
3018     (unless group
3019       (error "No group name given"))
3020     (when (or (and gnus-description-hashtb
3021                    ;; We check whether this group's method has been
3022                    ;; queried for a description file.
3023                    (gnus-gethash mname gnus-description-hashtb))
3024               (setq desc (gnus-group-get-description group))
3025               (gnus-read-descriptions-file method))
3026       (gnus-message 1
3027                     (or desc (gnus-gethash group gnus-description-hashtb)
3028                         "No description available")))))
3029
3030 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3031 (defun gnus-group-describe-all-groups (&optional force)
3032   "Pop up a buffer with descriptions of all newsgroups."
3033   (interactive "P")
3034   (when force
3035     (setq gnus-description-hashtb nil))
3036   (when (not (or gnus-description-hashtb
3037                  (gnus-read-all-descriptions-files)))
3038     (error "Couldn't request descriptions file"))
3039   (let ((buffer-read-only nil)
3040         b)
3041     (erase-buffer)
3042     (mapatoms
3043      (lambda (group)
3044        (setq b (point))
3045        (insert (format "      *: %-20s %s\n" (symbol-name group)
3046                        (symbol-value group)))
3047        (gnus-add-text-properties
3048         b (1+ b) (list 'gnus-group group
3049                        'gnus-unread t 'gnus-marked nil
3050                        'gnus-level (1+ gnus-level-subscribed))))
3051      gnus-description-hashtb)
3052     (goto-char (point-min))
3053     (gnus-group-position-point)))
3054
3055 ;; Suggested by Daniel Quinlan <quinlan@best.com>.
3056 (defun gnus-group-apropos (regexp &optional search-description)
3057   "List all newsgroups that have names that match a regexp."
3058   (interactive "sGnus apropos (regexp): ")
3059   (let ((prev "")
3060         (obuf (current-buffer))
3061         groups des)
3062     ;; Go through all newsgroups that are known to Gnus.
3063     (mapatoms
3064      (lambda (group)
3065        (and (symbol-name group)
3066             (string-match regexp (symbol-name group))
3067             (symbol-value group)
3068             (push (symbol-name group) groups)))
3069      gnus-active-hashtb)
3070     ;; Also go through all descriptions that are known to Gnus.
3071     (when search-description
3072       (mapatoms
3073        (lambda (group)
3074          (and (string-match regexp (symbol-value group))
3075               (push (symbol-name group) groups)))
3076        gnus-description-hashtb))
3077     (if (not groups)
3078         (gnus-message 3 "No groups matched \"%s\"." regexp)
3079       ;; Print out all the groups.
3080       (save-excursion
3081         (pop-to-buffer "*Gnus Help*")
3082         (buffer-disable-undo)
3083         (erase-buffer)
3084         (setq groups (sort groups 'string<))
3085         (while groups
3086           ;; Groups may be entered twice into the list of groups.
3087           (when (not (string= (car groups) prev))
3088             (insert (setq prev (car groups)) "\n")
3089             (when (and gnus-description-hashtb
3090                        (setq des (gnus-gethash (car groups)
3091                                                gnus-description-hashtb)))
3092               (insert "  " des "\n")))
3093           (setq groups (cdr groups)))
3094         (goto-char (point-min))))
3095     (pop-to-buffer obuf)))
3096
3097 (defun gnus-group-description-apropos (regexp)
3098   "List all newsgroups that have names or descriptions that match a regexp."
3099   (interactive "sGnus description apropos (regexp): ")
3100   (when (not (or gnus-description-hashtb
3101                  (gnus-read-all-descriptions-files)))
3102     (error "Couldn't request descriptions file"))
3103   (gnus-group-apropos regexp t))
3104
3105 ;; Suggested by Per Abrahamsen <amanda@iesd.auc.dk>.
3106 (defun gnus-group-list-matching (level regexp &optional all lowest)
3107   "List all groups with unread articles that match REGEXP.
3108 If the prefix LEVEL is non-nil, it should be a number that says which
3109 level to cut off listing groups.
3110 If ALL, also list groups with no unread articles.
3111 If LOWEST, don't list groups with level lower than LOWEST.
3112
3113 This command may read the active file."
3114   (interactive "P\nsList newsgroups matching: ")
3115   ;; First make sure active file has been read.
3116   (when (and level
3117              (> (prefix-numeric-value level) gnus-level-killed))
3118     (gnus-get-killed-groups))
3119   (gnus-group-prepare-flat
3120    (or level gnus-level-subscribed) all (or lowest 1) regexp)
3121   (goto-char (point-min))
3122   (gnus-group-position-point))
3123
3124 (defun gnus-group-list-all-matching (level regexp &optional lowest)
3125   "List all groups that match REGEXP.
3126 If the prefix LEVEL is non-nil, it should be a number that says which
3127 level to cut off listing groups.
3128 If LOWEST, don't list groups with level lower than LOWEST."
3129   (interactive "P\nsList newsgroups matching: ")
3130   (when level
3131     (setq level (prefix-numeric-value level)))
3132   (gnus-group-list-matching (or level gnus-level-killed) regexp t lowest))
3133
3134 ;; Suggested by Jack Vinson <vinson@unagi.cis.upenn.edu>.
3135 (defun gnus-group-save-newsrc (&optional force)
3136   "Save the Gnus startup files.
3137 If FORCE, force saving whether it is necessary or not."
3138   (interactive "P")
3139   (gnus-save-newsrc-file force))
3140
3141 (defun gnus-group-restart (&optional arg)
3142   "Force Gnus to read the .newsrc file."
3143   (interactive "P")
3144   (when (gnus-yes-or-no-p
3145          (format "Are you sure you want to restart Gnus? "))
3146     (gnus-save-newsrc-file)
3147     (gnus-clear-system)
3148     (gnus)))
3149
3150 (defun gnus-group-read-init-file ()
3151   "Read the Gnus elisp init file."
3152   (interactive)
3153   (gnus-read-init-file)
3154   (gnus-message 5 "Read %s" gnus-init-file))
3155
3156 (defun gnus-group-check-bogus-groups (&optional silent)
3157   "Check bogus newsgroups.
3158 If given a prefix, don't ask for confirmation before removing a bogus
3159 group."
3160   (interactive "P")
3161   (gnus-check-bogus-newsgroups (and (not silent) (not gnus-expert-user)))
3162   (gnus-group-list-groups))
3163
3164 (defun gnus-group-find-new-groups (&optional arg)
3165   "Search for new groups and add them.
3166 Each new group will be treated with `gnus-subscribe-newsgroup-method.'
3167 With 1 C-u, use the `ask-server' method to query the server for new
3168 groups.
3169 With 2 C-u's, use most complete method possible to query the server
3170 for new groups, and subscribe the new groups as zombies."
3171   (interactive "p")
3172   (gnus-find-new-newsgroups (or arg 1))
3173   (gnus-group-list-groups))
3174
3175 (defun gnus-group-edit-global-kill (&optional article group)
3176   "Edit the global kill file.
3177 If GROUP, edit that local kill file instead."
3178   (interactive "P")
3179   (setq gnus-current-kill-article article)
3180   (gnus-kill-file-edit-file group)
3181   (gnus-message
3182    6
3183    (substitute-command-keys
3184     (format "Editing a %s kill file (Type \\[gnus-kill-file-exit] to exit)"
3185             (if group "local" "global")))))
3186
3187 (defun gnus-group-edit-local-kill (article group)
3188   "Edit a local kill file."
3189   (interactive (list nil (gnus-group-group-name)))
3190   (gnus-group-edit-global-kill article group))
3191
3192 (defun gnus-group-force-update ()
3193   "Update `.newsrc' file."
3194   (interactive)
3195   (gnus-save-newsrc-file))
3196
3197 (defun gnus-group-suspend ()
3198   "Suspend the current Gnus session.
3199 In fact, cleanup buffers except for group mode buffer.
3200 The hook gnus-suspend-gnus-hook is called before actually suspending."
3201   (interactive)
3202   (gnus-run-hooks 'gnus-suspend-gnus-hook)
3203   ;; Kill Gnus buffers except for group mode buffer.
3204   (let ((group-buf (get-buffer gnus-group-buffer)))
3205     (mapcar (lambda (buf)
3206               (unless (member buf (list group-buf gnus-dribble-buffer))
3207                 (kill-buffer buf)))
3208             (gnus-buffers))
3209     (gnus-kill-gnus-frames)
3210     (when group-buf
3211       (bury-buffer group-buf)
3212       (delete-windows-on group-buf t))))
3213
3214 (defun gnus-group-clear-dribble ()
3215   "Clear all information from the dribble buffer."
3216   (interactive)
3217   (gnus-dribble-clear)
3218   (gnus-message 7 "Cleared dribble buffer"))
3219
3220 (defun gnus-group-exit ()
3221   "Quit reading news after updating .newsrc.eld and .newsrc.
3222 The hook `gnus-exit-gnus-hook' is called before actually exiting."
3223   (interactive)
3224   (when
3225       (or noninteractive                ;For gnus-batch-kill
3226           (not gnus-interactive-exit)   ;Without confirmation
3227           gnus-expert-user
3228           (gnus-y-or-n-p "Are you sure you want to quit reading news? "))
3229     (gnus-run-hooks 'gnus-exit-gnus-hook)
3230     ;; Offer to save data from non-quitted summary buffers.
3231     (gnus-offer-save-summaries)
3232     ;; Save the newsrc file(s).
3233     (gnus-save-newsrc-file)
3234     ;; Kill-em-all.
3235     (gnus-close-backends)
3236     ;; Reset everything.
3237     (gnus-clear-system)
3238     ;; Allow the user to do things after cleaning up.
3239     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
3240
3241 (defun gnus-group-quit ()
3242   "Quit reading news without updating .newsrc.eld or .newsrc.
3243 The hook `gnus-exit-gnus-hook' is called before actually exiting."
3244   (interactive)
3245   (when (or noninteractive              ;For gnus-batch-kill
3246             (zerop (buffer-size))
3247             (not (gnus-server-opened gnus-select-method))
3248             gnus-expert-user
3249             (not gnus-current-startup-file)
3250             (gnus-yes-or-no-p
3251              (format "Quit reading news without saving %s? "
3252                      (file-name-nondirectory gnus-current-startup-file))))
3253     (gnus-run-hooks 'gnus-exit-gnus-hook)
3254     (gnus-configure-windows 'group t)
3255     (gnus-dribble-save)
3256     (gnus-close-backends)
3257     (gnus-clear-system)
3258     (gnus-kill-buffer gnus-group-buffer)
3259     ;; Allow the user to do things after cleaning up.
3260     (gnus-run-hooks 'gnus-after-exiting-gnus-hook)))
3261
3262 (defun gnus-group-describe-briefly ()
3263   "Give a one line description of the group mode commands."
3264   (interactive)
3265   (gnus-message 7 (substitute-command-keys "\\<gnus-group-mode-map>\\[gnus-group-read-group]:Select  \\[gnus-group-next-unread-group]:Forward  \\[gnus-group-prev-unread-group]:Backward  \\[gnus-group-exit]:Exit  \\[gnus-info-find-node]:Run Info  \\[gnus-group-describe-briefly]:This help")))
3266
3267 (defun gnus-group-browse-foreign-server (method)
3268   "Browse a foreign news server.
3269 If called interactively, this function will ask for a select method
3270  (nntp, nnspool, etc.) and a server address (eg. nntp.some.where).
3271 If not, METHOD should be a list where the first element is the method
3272 and the second element is the address."
3273   (interactive
3274    (list (let ((how (completing-read
3275                      "Which backend: "
3276                      (append gnus-valid-select-methods gnus-server-alist)
3277                      nil t (cons "nntp" 0) 'gnus-method-history)))
3278            ;; We either got a backend name or a virtual server name.
3279            ;; If the first, we also need an address.
3280            (if (assoc how gnus-valid-select-methods)
3281                (list (intern how)
3282                      ;; Suggested by mapjph@bath.ac.uk.
3283                      (completing-read
3284                       "Address: "
3285                       (mapcar (lambda (server) (list server))
3286                               gnus-secondary-servers)))
3287              ;; We got a server name.
3288              how))))
3289   (gnus-browse-foreign-server method))
3290
3291 (defun gnus-group-set-info (info &optional method-only-group part)
3292   (when info
3293     (let* ((entry (gnus-gethash
3294                    (or method-only-group (gnus-info-group info))
3295                    gnus-newsrc-hashtb))
3296            (part-info info)
3297            (info (if method-only-group (nth 2 entry) info))
3298            method)
3299       (when method-only-group
3300         (unless entry
3301           (error "Trying to change non-existent group %s" method-only-group))
3302         ;; We have received parts of the actual group info - either the
3303         ;; select method or the group parameters.        We first check
3304         ;; whether we have to extend the info, and if so, do that.
3305         (let ((len (length info))
3306               (total (if (eq part 'method) 5 6)))
3307           (when (< len total)
3308             (setcdr (nthcdr (1- len) info)
3309                     (make-list (- total len) nil)))
3310           ;; Then we enter the new info.
3311           (setcar (nthcdr (1- total) info) part-info)))
3312       (unless entry
3313         ;; This is a new group, so we just create it.
3314         (save-excursion
3315           (set-buffer gnus-group-buffer)
3316           (setq method (gnus-info-method info))
3317           (when (gnus-server-equal method "native")
3318             (setq method nil))
3319           (save-excursion
3320             (set-buffer gnus-group-buffer)
3321             (if method
3322                 ;; It's a foreign group...
3323                 (gnus-group-make-group
3324                  (gnus-group-real-name (gnus-info-group info))
3325                  (if (stringp method) method
3326                    (prin1-to-string (car method)))
3327                  (and (consp method)
3328                       (nth 1 (gnus-info-method info))))
3329               ;; It's a native group.
3330               (gnus-group-make-group (gnus-info-group info))))
3331           (gnus-message 6 "Note: New group created")
3332           (setq entry
3333                 (gnus-gethash (gnus-group-prefixed-name
3334                                (gnus-group-real-name (gnus-info-group info))
3335                                (or (gnus-info-method info) gnus-select-method))
3336                               gnus-newsrc-hashtb))))
3337       ;; Whether it was a new group or not, we now have the entry, so we
3338       ;; can do the update.
3339       (if entry
3340           (progn
3341             (setcar (nthcdr 2 entry) info)
3342             (when (and (not (eq (car entry) t))
3343                        (gnus-active (gnus-info-group info)))
3344               (setcar entry (length (gnus-list-of-unread-articles (car info))))))
3345         (error "No such group: %s" (gnus-info-group info))))))
3346
3347 (defun gnus-group-set-method-info (group select-method)
3348   (gnus-group-set-info select-method group 'method))
3349
3350 (defun gnus-group-set-params-info (group params)
3351   (gnus-group-set-info params group 'params))
3352
3353 (defun gnus-add-marked-articles (group type articles &optional info force)
3354   ;; Add ARTICLES of TYPE to the info of GROUP.
3355   ;; If INFO is non-nil, use that info.         If FORCE is non-nil, don't
3356   ;; add, but replace marked articles of TYPE with ARTICLES.
3357   (let ((info (or info (gnus-get-info group)))
3358         marked m)
3359     (or (not info)
3360         (and (not (setq marked (nthcdr 3 info)))
3361              (or (null articles)
3362                 (setcdr (nthcdr 2 info)
3363                         (list (list (cons type (gnus-compress-sequence
3364                                                 articles t)))))))
3365         (and (not (setq m (assq type (car marked))))
3366              (or (null articles)
3367                 (setcar marked
3368                         (cons (cons type (gnus-compress-sequence articles t) )
3369                               (car marked)))))
3370         (if force
3371             (if (null articles)
3372                (setcar (nthcdr 3 info)
3373                        (gnus-delete-alist type (car marked)))
3374              (setcdr m (gnus-compress-sequence articles t)))
3375           (setcdr m (gnus-compress-sequence
3376                      (sort (nconc (gnus-uncompress-range (cdr m))
3377                                   (copy-sequence articles)) '<) t))))))
3378
3379 ;;;
3380 ;;; Group timestamps
3381 ;;;
3382
3383 (defun gnus-group-set-timestamp ()
3384   "Change the timestamp of the current group to the current time.
3385 This function can be used in hooks like `gnus-select-group-hook'
3386 or `gnus-group-catchup-group-hook'."
3387   (when gnus-newsgroup-name
3388     (let ((time (current-time)))
3389       (setcdr (cdr time) nil)
3390       (gnus-group-set-parameter gnus-newsgroup-name 'timestamp time))))
3391
3392 (defsubst gnus-group-timestamp (group)
3393   "Return the timestamp for GROUP."
3394   (gnus-group-get-parameter group 'timestamp t))
3395
3396 (defun gnus-group-timestamp-delta (group)
3397   "Return the offset in seconds from the timestamp for GROUP to the current time, as a floating point number."
3398   (let* ((time (or (gnus-group-timestamp group)
3399                   (list 0 0)))
3400          (delta (subtract-time (current-time) time)))
3401     (+ (* (nth 0 delta) 65536.0)
3402        (nth 1 delta))))
3403
3404 (defun gnus-group-timestamp-string (group)
3405   "Return a string of the timestamp for GROUP."
3406   (let ((time (gnus-group-timestamp group)))
3407     (if (not time)
3408         ""
3409       (gnus-time-iso8601 time))))
3410
3411 (provide 'gnus-group)
3412
3413 ;;; gnus-group.el ends here