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