*** empty log message ***
[gnus] / lisp / gnus-topic.el
1 ;;; gnus-topic.el --- a folding minor mode for Gnus group buffers
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
3
4 ;; Author: Ilja Weis <kult@uni-paderborn.de>
5 ;;      Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'gnus-load)
30 (require 'gnus-group)
31 (require 'gnus-start)
32 (require 'gnus)
33
34 (defvar gnus-topic-mode nil
35   "Minor mode for Gnus group buffers.")
36
37 (defvar gnus-topic-mode-hook nil
38   "Hook run in topic mode buffers.")
39
40 (defvar gnus-topic-line-format "%i[ %(%{%n%}%) -- %A ]%v\n"
41   "Format of topic lines.
42 It works along the same lines as a normal formatting string,
43 with some simple extensions.
44
45 %i  Indentation based on topic level.
46 %n  Topic name.
47 %v  Nothing if the topic is visible, \"...\" otherwise.
48 %g  Number of groups in the topic.
49 %a  Number of unread articles in the groups in the topic.
50 %A  Number of unread articles in the groups in the topic and its subtopics.
51 ")
52
53 (defvar gnus-topic-indent-level 2
54   "*How much each subtopic should be indented.")
55
56 (defvar gnus-topic-display-empty-topics t
57   "*If non-nil, display the topic lines even of topics that have no unread articles.")
58
59 ;; Internal variables.
60
61 (defvar gnus-topic-active-topology nil)
62 (defvar gnus-topic-active-alist nil)
63
64 (defvar gnus-topology-checked-p nil
65   "Whether the topology has been checked in this session.")
66
67 (defvar gnus-topic-killed-topics nil)
68 (defvar gnus-topic-inhibit-change-level nil)
69 (defvar gnus-topic-tallied-groups nil)
70
71 (defconst gnus-topic-line-format-alist
72   `((?n name ?s)
73     (?v visible ?s)
74     (?i indentation ?s)
75     (?g number-of-groups ?d)
76     (?a (gnus-topic-articles-in-topic entries) ?d)
77     (?A total-number-of-articles ?d)
78     (?l level ?d)))
79
80 (defvar gnus-topic-line-format-spec nil)
81
82 ;;; Utility functions
83
84 (defun gnus-group-topic-name ()
85   "The name of the topic on the current line."
86   (let ((topic (get-text-property (gnus-point-at-bol) 'gnus-topic)))
87     (and topic (symbol-name topic))))
88
89 (defun gnus-group-topic-level ()
90   "The level of the topic on the current line."
91   (get-text-property (gnus-point-at-bol) 'gnus-topic-level))
92
93 (defun gnus-group-topic-unread ()
94   "The number of unread articles in topic on the current line."
95   (get-text-property (gnus-point-at-bol) 'gnus-topic-unread))
96
97 (defun gnus-topic-unread (topic)
98   "Return the number of unread articles in TOPIC."
99   (or (save-excursion
100         (and (gnus-topic-goto-topic topic)
101              (gnus-group-topic-unread)))
102       0))
103
104 (defun gnus-group-topic-p ()
105   "Return non-nil if the current line is a topic."
106   (gnus-group-topic-name))
107
108 (defun gnus-topic-visible-p ()
109   "Return non-nil if the current topic is visible."
110   (get-text-property (gnus-point-at-bol) 'gnus-topic-visible))
111
112 (defun gnus-topic-articles-in-topic (entries)
113   (let ((total 0)
114         number)
115     (while entries
116       (when (numberp (setq number (car (pop entries))))
117         (incf total number)))
118     total))
119
120 (defun gnus-group-topic (group)
121   "Return the topic GROUP is a member of."
122   (let ((alist gnus-topic-alist)
123         out)
124     (while alist
125       (when (member group (cdar alist))
126         (setq out (caar alist)
127               alist nil))
128       (setq alist (cdr alist)))
129     out))
130
131 (defun gnus-group-parent-topic (group)
132   "Return the topic GROUP is member of by looking at the group buffer."
133   (save-excursion
134     (set-buffer gnus-group-buffer)
135     (if (gnus-group-goto-group group)
136         (gnus-current-topic)
137       (gnus-group-topic group))))
138
139 (defun gnus-topic-goto-topic (topic)
140   "Go to TOPIC."
141   (when topic
142     (gnus-goto-char (text-property-any (point-min) (point-max)
143                                        'gnus-topic (intern topic)))))
144
145 (defun gnus-current-topic ()
146   "Return the name of the current topic."
147   (let ((result
148          (or (get-text-property (point) 'gnus-topic)
149              (save-excursion
150                (and (gnus-goto-char (previous-single-property-change
151                                      (point) 'gnus-topic))
152                     (get-text-property (max (1- (point)) (point-min))
153                                        'gnus-topic))))))
154     (when result
155       (symbol-name result))))
156
157 (defun gnus-current-topics ()
158   "Return a list of all current topics, lowest in hierarchy first."
159   (let ((topic (gnus-current-topic))
160         topics)
161     (while topic
162       (push topic topics)
163       (setq topic (gnus-topic-parent-topic topic)))
164     (nreverse topics)))
165
166 (defun gnus-group-active-topic-p ()
167   "Say whether the current topic comes from the active topics."
168   (save-excursion
169     (beginning-of-line)
170     (get-text-property (point) 'gnus-active)))
171
172 (defun gnus-topic-find-groups (topic &optional level all)
173   "Return entries for all visible groups in TOPIC."
174   (let ((groups (cdr (assoc topic gnus-topic-alist)))
175         info clevel unread group lowest params visible-groups entry active)
176     (setq lowest (or lowest 1))
177     (setq level (or level 7))
178     ;; We go through the newsrc to look for matches.
179     (while groups
180       (setq entry (gnus-gethash (setq group (pop groups)) gnus-newsrc-hashtb)
181             info (nth 2 entry)
182             params (gnus-info-params info)
183             active (gnus-active group)
184             unread (or (car entry)
185                        (and (not (equal group "dummy.group"))
186                             active
187                             (- (1+ (cdr active)) (car active))))
188             clevel (or (gnus-info-level info)
189                        (if (member group gnus-zombie-list) 8 9)))
190       (and 
191        unread                           ; nil means that the group is dead.
192        (<= clevel level) 
193        (>= clevel lowest)               ; Is inside the level we want.
194        (or all
195            (if (eq unread t)
196                gnus-group-list-inactive-groups
197              (> unread 0))
198            (and gnus-list-groups-with-ticked-articles
199                 (cdr (assq 'tick (gnus-info-marks info))))
200                                         ; Has right readedness.
201            ;; Check for permanent visibility.
202            (and gnus-permanently-visible-groups
203                 (string-match gnus-permanently-visible-groups group))
204            (memq 'visible params)
205            (cdr (assq 'visible params)))
206        ;; Add this group to the list of visible groups.
207        (push (or entry group) visible-groups)))
208     (nreverse visible-groups)))
209
210 (defun gnus-topic-previous-topic (topic)
211   "Return the previous topic on the same level as TOPIC."
212   (let ((top (cddr (gnus-topic-find-topology
213                     (gnus-topic-parent-topic topic)))))
214     (unless (equal topic (caaar top))
215       (while (and top (not (equal (caaadr top) topic)))
216         (setq top (cdr top)))
217       (caaar top))))
218
219 (defun gnus-topic-parent-topic (topic &optional topology)
220   "Return the parent of TOPIC."
221   (unless topology
222     (setq topology gnus-topic-topology))
223   (let ((parent (car (pop topology)))
224         result found)
225     (while (and topology
226                 (not (setq found (equal (caaar topology) topic)))
227                 (not (setq result (gnus-topic-parent-topic topic 
228                                                            (car topology)))))
229       (setq topology (cdr topology)))
230     (or result (and found parent))))
231
232 (defun gnus-topic-next-topic (topic &optional previous)
233   "Return the next sibling of TOPIC."
234   (let ((parentt (cddr (gnus-topic-find-topology 
235                         (gnus-topic-parent-topic topic))))
236         prev)
237     (while (and parentt
238                 (not (equal (caaar parentt) topic)))
239       (setq prev (caaar parentt)
240             parentt (cdr parentt)))
241     (if previous
242         prev
243       (caaadr parentt))))
244
245 (defun gnus-topic-find-topology (topic &optional topology level remove)
246   "Return the topology of TOPIC."
247   (unless topology
248     (setq topology gnus-topic-topology)
249     (setq level 0))
250   (let ((top topology)
251         result)
252     (if (equal (caar topology) topic)
253         (progn
254           (when remove
255             (delq topology remove))
256           (cons level topology))
257       (setq topology (cdr topology))
258       (while (and topology
259                   (not (setq result (gnus-topic-find-topology
260                                      topic (car topology) (1+ level)
261                                      (and remove top)))))
262         (setq topology (cdr topology)))
263       result)))
264
265 (defvar gnus-tmp-topics nil)
266 (defun gnus-topic-list (&optional topology)
267   "Return a list of all topics in the topology."
268   (unless topology
269     (setq topology gnus-topic-topology 
270           gnus-tmp-topics nil))
271   (push (caar topology) gnus-tmp-topics)
272   (mapcar 'gnus-topic-list (cdr topology))
273   gnus-tmp-topics)
274
275 ;;; Topic parameter jazz
276
277 (defun gnus-topic-parameters (topic)
278   "Return the parameters for TOPIC."
279   (let ((top (gnus-topic-find-topology topic)))
280     (unless top
281       (error "No such topic: %s" topic))
282     (nth 3 (cadr top))))
283
284 (defun gnus-topic-set-parameters (topic parameters)
285   "Set the topic parameters of TOPIC to PARAMETERS."
286   (let ((top (gnus-topic-find-topology topic)))
287     (unless top
288       (error "No such topic: %s" topic))
289     ;; We may have to extend if there is no parameters here
290     ;; to begin with.
291     (unless (nthcdr 2 (cadr top))
292       (nconc (cadr top) (list nil)))
293     (unless (nthcdr 3 (cadr top))
294       (nconc (cadr top) (list nil)))
295     (setcar (nthcdr 3 (cadr top)) parameters)))
296
297 (defun gnus-group-topic-parameters (group)
298   "Compute the group parameters for GROUP taking into account inheritance from topics."
299   (let ((params-list (list (gnus-group-get-parameter group)))
300         topics params param out)
301     (save-excursion
302       (gnus-group-goto-group group)
303       (setq topics (gnus-current-topics))
304       (while topics
305         (push (gnus-topic-parameters (pop topics)) params-list))
306       ;; We probably have lots of nil elements here, so
307       ;; we remove them.  Probably faster than doing this "properly".
308       (setq params-list (delq nil params-list))
309       ;; Now we have all the parameters, so we go through them
310       ;; and do inheritance in the obvious way.
311       (while (setq params (pop params-list))
312         (while (setq param (pop params))
313           (when (atom param)
314             (setq param (cons param t)))
315           ;; Override any old versions of this param.
316           (setq out (delq (assq (car param) out) out))
317           (push param out)))
318       ;; Return the resulting parameter list.
319       out)))
320
321 ;;; General utility functions
322
323 (defun gnus-topic-enter-dribble ()
324   (gnus-dribble-enter
325    (format "(setq gnus-topic-topology '%S)" gnus-topic-topology)))
326
327 ;;; Generating group buffers
328
329 (defun gnus-group-prepare-topics (level &optional all lowest regexp list-topic topic-level)
330   "List all newsgroups with unread articles of level LEVEL or lower, and
331 use the `gnus-group-topics' to sort the groups.
332 If ALL is non-nil, list groups that have no unread articles.
333 If LOWEST is non-nil, list all newsgroups of level LOWEST or higher."
334   (set-buffer gnus-group-buffer)
335   (let ((buffer-read-only nil)
336         (lowest (or lowest 1)))
337
338     (setq gnus-topic-tallied-groups nil)
339
340     (when (or (not gnus-topic-alist)
341               (not gnus-topology-checked-p))
342       (gnus-topic-check-topology))
343
344     (unless list-topic 
345       (erase-buffer))
346     
347     ;; List dead groups?
348     (when (and (>= level gnus-level-zombie) (<= lowest gnus-level-zombie))
349       (gnus-group-prepare-flat-list-dead 
350        (setq gnus-zombie-list (sort gnus-zombie-list 'string<)) 
351        gnus-level-zombie ?Z
352        regexp))
353     
354     (when (and (>= level gnus-level-killed) (<= lowest gnus-level-killed))
355       (gnus-group-prepare-flat-list-dead 
356        (setq gnus-killed-list (sort gnus-killed-list 'string<))
357        gnus-level-killed ?K
358        regexp))
359
360     ;; Use topics.
361     (when (< lowest gnus-level-zombie)
362       (if list-topic
363           (let ((top (gnus-topic-find-topology list-topic)))
364             (gnus-topic-prepare-topic (cdr top) (car top)
365                                       (or topic-level level) all))
366         (gnus-topic-prepare-topic gnus-topic-topology 0
367                                   (or topic-level level) all))))
368
369   (gnus-group-set-mode-line)
370   (setq gnus-group-list-mode (cons level all))
371   (run-hooks 'gnus-group-prepare-hook))
372
373 (defun gnus-topic-prepare-topic (topicl level &optional list-level all silent)
374   "Insert TOPIC into the group buffer.
375 If SILENT, don't insert anything.  Return the number of unread
376 articles in the topic and its subtopics."
377   (let* ((type (pop topicl))
378          (entries (gnus-topic-find-groups (car type) list-level all))
379          (visiblep (and (eq (nth 1 type) 'visible) (not silent)))
380          (gnus-group-indentation 
381           (make-string (* gnus-topic-indent-level level) ? ))
382          (beg (progn (beginning-of-line) (point)))
383          (topicl (reverse topicl))
384          (all-entries entries)
385          (unread 0)
386          (topic (car type))
387          info entry end active)
388     ;; Insert any sub-topics.
389     (while topicl
390       (incf unread
391             (gnus-topic-prepare-topic 
392              (pop topicl) (1+ level) list-level all
393              (not visiblep))))
394     (setq end (point))
395     (goto-char beg)
396     ;; Insert all the groups that belong in this topic.
397     (while (setq entry (pop entries))
398       (when visiblep 
399         (if (stringp entry)
400             ;; Dead groups.
401             (gnus-group-insert-group-line
402              entry (if (member entry gnus-zombie-list) 8 9)
403              nil (- (1+ (cdr (setq active (gnus-active entry))))
404                     (car active)) nil)
405           ;; Living groups.
406           (when (setq info (nth 2 entry))
407             (gnus-group-insert-group-line 
408              (gnus-info-group info)
409              (gnus-info-level info) (gnus-info-marks info) 
410              (car entry) (gnus-info-method info)))))
411       (when (and (listp entry)
412                  (numberp (car entry))
413                  (not (member (gnus-info-group (setq info (nth 2 entry)))
414                               gnus-topic-tallied-groups)))
415         (push (gnus-info-group info) gnus-topic-tallied-groups)
416         (incf unread (car entry))))
417     (goto-char beg)
418     ;; Insert the topic line.
419     (when (and (not silent)
420                (or gnus-topic-display-empty-topics
421                    (not (zerop unread))))
422       (gnus-extent-start-open (point))
423       (gnus-topic-insert-topic-line 
424        (car type) visiblep
425        (not (eq (nth 2 type) 'hidden))
426        level all-entries unread))
427     (goto-char end)
428     unread))
429
430 (defun gnus-topic-remove-topic (&optional insert total-remove hide in-level)
431   "Remove the current topic."
432   (let ((topic (gnus-group-topic-name))
433         (level (gnus-group-topic-level))
434         (beg (progn (beginning-of-line) (point)))
435         buffer-read-only)
436     (when topic
437       (while (and (zerop (forward-line 1))
438                   (> (or (gnus-group-topic-level) (1+ level)) level)))
439       (delete-region beg (point))
440       (setcar (cdadr (gnus-topic-find-topology topic))
441               (if insert 'visible 'invisible))
442       (when hide
443         (setcdr (cdadr (gnus-topic-find-topology topic))
444                 (list hide)))
445       (unless total-remove
446         (gnus-topic-insert-topic topic in-level)))))
447
448 (defun gnus-topic-insert-topic (topic &optional level)
449   "Insert TOPIC."
450   (gnus-group-prepare-topics 
451    (car gnus-group-list-mode) (cdr gnus-group-list-mode)
452    nil nil topic level))
453   
454 (defun gnus-topic-fold (&optional insert)
455   "Remove/insert the current topic."
456   (let ((topic (gnus-group-topic-name))) 
457     (when topic
458       (save-excursion
459         (if (not (gnus-group-active-topic-p))
460             (gnus-topic-remove-topic
461              (or insert (not (gnus-topic-visible-p))))
462           (let ((gnus-topic-topology gnus-topic-active-topology)
463                 (gnus-topic-alist gnus-topic-active-alist)
464                 (gnus-group-list-mode (cons 5 t)))
465             (gnus-topic-remove-topic
466              (or insert (not (gnus-topic-visible-p))) nil nil 9)))))))
467
468 (defun gnus-topic-insert-topic-line (name visiblep shownp level entries 
469                                           &optional unread)
470   (let* ((visible (if visiblep "" "..."))
471          (indentation (make-string (* gnus-topic-indent-level level) ? ))
472          (total-number-of-articles unread)
473          (number-of-groups (length entries))
474          (active-topic (eq gnus-topic-alist gnus-topic-active-alist)))
475     (beginning-of-line)
476     ;; Insert the text.
477     (gnus-add-text-properties 
478      (point)
479      (prog1 (1+ (point)) 
480        (eval gnus-topic-line-format-spec)
481        (gnus-topic-remove-excess-properties)1)
482      (list 'gnus-topic (intern name)
483            'gnus-topic-level level
484            'gnus-topic-unread unread
485            'gnus-active active-topic
486            'gnus-topic-visible visiblep))))
487
488 (defun gnus-topic-update-topics-containing-group (group)
489   "Update all topics that have GROUP as a member."
490   (when (and (eq major-mode 'gnus-group-mode)
491              gnus-topic-mode)
492     (save-excursion
493       (let ((alist gnus-topic-alist))
494         ;; This is probably not entirely correct.  If a topic
495         ;; isn't shown, then it's not updated.  But the updating
496         ;; should be performed in any case, since the topic's
497         ;; parent should be updated.  Pfft.
498         (while alist
499           (when (and (member group (cdar alist))
500                      (gnus-topic-goto-topic (caar alist)))
501             (gnus-topic-update-topic-line (caar alist)))
502           (pop alist))))))
503
504 (defun gnus-topic-update-topic ()
505   "Update all parent topics to the current group."
506   (when (and (eq major-mode 'gnus-group-mode)
507              gnus-topic-mode)
508     (let ((group (gnus-group-group-name))
509           (buffer-read-only nil))
510       (when (and group 
511                  (gnus-get-info group)
512                  (gnus-topic-goto-topic (gnus-current-topic)))
513         (gnus-topic-update-topic-line (gnus-group-topic-name))
514         (gnus-group-goto-group group)
515         (gnus-group-position-point)))))
516
517 (defun gnus-topic-goto-missing-group (group) 
518   "Place point where GROUP is supposed to be inserted."
519   (let* ((topic (gnus-group-topic group))
520          (groups (cdr (assoc topic gnus-topic-alist)))
521          (g (cdr (member group groups)))
522          (unfound t))
523     ;; Try to jump to a visible group.
524     (while (and g (not (gnus-group-goto-group (car g) t)))
525       (pop g))
526     ;; It wasn't visible, so we try to see where to insert it.
527     (when (not g)
528       (setq g (cdr (member group (reverse groups))))
529       (while (and g unfound)
530         (when (gnus-group-goto-group (pop g) t)
531           (forward-line 1)
532           (setq unfound nil)))
533       (when unfound
534         (gnus-topic-goto-topic topic)
535         (forward-line 1)))))
536
537 (defun gnus-topic-update-topic-line (topic-name &optional reads)
538   (let* ((top (gnus-topic-find-topology topic-name))
539          (type (cadr top))
540          (children (cddr top))
541          (entries (gnus-topic-find-groups 
542                    (car type) (car gnus-group-list-mode)
543                    (cdr gnus-group-list-mode)))
544          (parent (gnus-topic-parent-topic topic-name))
545          (all-entries entries)
546          (unread 0)
547          old-unread entry)
548     (when (gnus-topic-goto-topic (car type))
549       ;; Tally all the groups that belong in this topic.
550       (if reads
551           (setq unread (- (gnus-group-topic-unread) reads))
552         (while children
553           (incf unread (gnus-topic-unread (caar (pop children)))))
554         (while (setq entry (pop entries))
555           (when (numberp (car entry))
556             (incf unread (car entry)))))
557       (setq old-unread (gnus-group-topic-unread))
558       ;; Insert the topic line.
559       (gnus-topic-insert-topic-line 
560        (car type) (gnus-topic-visible-p)
561        (not (eq (nth 2 type) 'hidden))
562        (gnus-group-topic-level) all-entries unread)
563       (gnus-delete-line))
564     (when parent
565       (forward-line -1)
566       (gnus-topic-update-topic-line
567        parent (- old-unread (gnus-group-topic-unread))))
568     unread))
569
570 (defun gnus-topic-group-indentation ()
571   (make-string 
572    (* gnus-topic-indent-level
573       (or (save-excursion
574             (forward-line -1)
575             (gnus-topic-goto-topic (gnus-current-topic))
576             (gnus-group-topic-level)) 0)) ? ))
577
578 ;;; Initialization
579
580 (gnus-add-shutdown 'gnus-topic-close 'gnus)
581
582 (defun gnus-topic-close ()
583   (setq gnus-topic-active-topology nil
584         gnus-topic-active-alist nil
585         gnus-topic-killed-topics nil
586         gnus-topic-tallied-groups nil
587         gnus-topology-checked-p nil))
588
589 (defun gnus-topic-check-topology ()  
590   ;; The first time we set the topology to whatever we have
591   ;; gotten here, which can be rather random.
592   (unless gnus-topic-alist
593     (gnus-topic-init-alist))
594
595   (setq gnus-topology-checked-p t)
596   ;; Go through the topic alist and make sure that all topics
597   ;; are in the topic topology.
598   (let ((topics (gnus-topic-list))
599         (alist gnus-topic-alist)
600         changed)
601     (while alist
602       (unless (member (caar alist) topics)
603         (nconc gnus-topic-topology
604                (list (list (list (caar alist) 'visible))))
605         (setq changed t))
606       (setq alist (cdr alist)))
607     (when changed
608       (gnus-topic-enter-dribble))
609     ;; Conversely, go through the topology and make sure that all
610     ;; topologies have alists.
611     (while topics
612       (unless (assoc (car topics) gnus-topic-alist)
613         (push (list (car topics)) gnus-topic-alist))
614       (pop topics)))
615   ;; Go through all living groups and make sure that
616   ;; they belong to some topic.
617   (let* ((tgroups (apply 'append (mapcar (lambda (entry) (cdr entry))
618                                          gnus-topic-alist)))
619          (entry (assoc (caar gnus-topic-topology) gnus-topic-alist))
620          (newsrc gnus-newsrc-alist)
621          group)
622     (while newsrc
623       (unless (member (setq group (gnus-info-group (pop newsrc))) tgroups)
624         (setcdr entry (cons group (cdr entry))))))
625   ;; Go through all topics and make sure they contain only living groups.
626   (let ((alist gnus-topic-alist)
627         topic)
628     (while (setq topic (pop alist))
629       (while (cdr topic)
630         (if (gnus-gethash (cadr topic) gnus-newsrc-hashtb)
631             (setq topic (cdr topic))
632           (setcdr topic (cddr topic)))))))
633
634 (defun gnus-topic-init-alist ()
635   "Initialize the topic structures."
636   (setq gnus-topic-topology
637         (cons (list "Gnus" 'visible)
638               (mapcar (lambda (topic)
639                         (list (list (car topic) 'visible)))
640                       '(("misc")))))
641   (setq gnus-topic-alist
642         (list (cons "misc"
643                     (mapcar (lambda (info) (gnus-info-group info))
644                             (cdr gnus-newsrc-alist)))
645               (list "Gnus")))
646   (gnus-topic-enter-dribble))
647
648 ;;; Maintenance
649
650 (defun gnus-topic-clean-alist ()
651   "Remove bogus groups from the topic alist."
652   (let ((topic-alist gnus-topic-alist)
653         result topic)
654     (unless gnus-killed-hashtb
655       (gnus-make-hashtable-from-killed))
656     (while (setq topic (pop topic-alist))
657       (let ((topic-name (pop topic))
658             group filtered-topic)
659         (while (setq group (pop topic))
660           (if (and (or (gnus-gethash group gnus-active-hashtb)
661                        (gnus-info-method (gnus-get-info group)))
662                    (not (gnus-gethash group gnus-killed-hashtb)))
663               (push group filtered-topic)))
664         (push (cons topic-name (nreverse filtered-topic)) result)))
665     (setq gnus-topic-alist (nreverse result))))
666
667 (defun gnus-topic-change-level (group level oldlevel)
668   "Run when changing levels to enter/remove groups from topics."
669   (save-excursion
670     (set-buffer gnus-group-buffer)
671     (when (and gnus-topic-mode 
672                gnus-topic-alist
673                (not gnus-topic-inhibit-change-level))
674       ;; Remove the group from the topics.
675       (when (and (< oldlevel gnus-level-zombie)
676                  (>= level gnus-level-zombie))
677         (let (alist)
678           (forward-line -1)
679           (when (setq alist (assoc (gnus-current-topic) gnus-topic-alist))
680             (setcdr alist (gnus-delete-first group (cdr alist))))))
681       ;; If the group is subscribed.  then we enter it into the topics.
682       (when (and (< level gnus-level-zombie)
683                  (>= oldlevel gnus-level-zombie))
684         (let* ((prev (gnus-group-group-name))
685                (gnus-topic-inhibit-change-level t)
686                (gnus-group-indentation
687                 (make-string 
688                  (* gnus-topic-indent-level
689                     (or (save-excursion
690                           (gnus-topic-goto-topic (gnus-current-topic))
691                           (gnus-group-topic-level)) 0)) ? ))
692                (yanked (list group))
693                alist talist end)
694           ;; Then we enter the yanked groups into the topics they belong
695           ;; to. 
696           (when (setq alist (assoc (save-excursion
697                                      (forward-line -1)
698                                      (or
699                                       (gnus-current-topic)
700                                       (caar gnus-topic-topology)))
701                                    gnus-topic-alist))
702             (setq talist alist)
703             (when (stringp yanked)
704               (setq yanked (list yanked)))
705             (if (not prev)
706                 (nconc alist yanked)
707               (if (not (cdr alist))
708                   (setcdr alist (nconc yanked (cdr alist)))
709                 (while (and (not end) (cdr alist))
710                   (when (equal (cadr alist) prev)
711                     (setcdr alist (nconc yanked (cdr alist)))
712                     (setq end t))
713                   (setq alist (cdr alist)))
714                 (unless end
715                   (nconc talist yanked))))))
716         (gnus-topic-update-topic)))))
717
718 (defun gnus-topic-goto-next-group (group props)
719   "Go to group or the next group after group."
720   (if (null group)
721       (gnus-topic-goto-topic (symbol-name (cadr (memq 'gnus-topic props))))
722     (if (gnus-group-goto-group group)
723         t
724       ;; The group is no longer visible.
725       (let* ((list (assoc (gnus-group-topic group) gnus-topic-alist))
726              (after (cdr (member group (cdr list)))))
727         ;; First try to put point on a group after the current one.
728         (while (and after
729                     (not (gnus-group-goto-group (car after))))
730           (setq after (cdr after)))
731         ;; Then try to put point on a group before point.
732         (unless after
733           (setq after (cdr (member group (reverse (cdr list)))))
734           (while (and after 
735                       (not (gnus-group-goto-group (car after))))
736             (setq after (cdr after))))
737         ;; Finally, just put point on the topic.
738         (unless after
739           (gnus-topic-goto-topic (car list))
740           (setq after nil))
741         t))))
742
743 ;;; Topic-active functions
744
745 (defun gnus-topic-grok-active (&optional force)
746   "Parse all active groups and create topic structures for them."
747   ;; First we make sure that we have really read the active file. 
748   (when (or force
749             (not gnus-topic-active-alist))
750     (let (groups)
751       ;; Get a list of all groups available.
752       (mapatoms (lambda (g) (when (symbol-value g)
753                               (push (symbol-name g) groups)))
754                 gnus-active-hashtb)
755       (setq groups (sort groups 'string<))
756       ;; Init the variables.
757       (setq gnus-topic-active-topology (list (list "" 'visible)))
758       (setq gnus-topic-active-alist nil)
759       ;; Descend the top-level hierarchy.
760       (gnus-topic-grok-active-1 gnus-topic-active-topology groups)
761       ;; Set the top-level topic names to something nice.
762       (setcar (car gnus-topic-active-topology) "Gnus active")
763       (setcar (car gnus-topic-active-alist) "Gnus active"))))
764
765 (defun gnus-topic-grok-active-1 (topology groups)
766   (let* ((name (caar topology))
767          (prefix (concat "^" (regexp-quote name)))
768          tgroups ntopology group)
769     (while (and groups
770                 (string-match prefix (setq group (car groups))))
771       (if (not (string-match "\\." group (match-end 0)))
772           ;; There are no further hierarchies here, so we just
773           ;; enter this group into the list belonging to this
774           ;; topic.
775           (push (pop groups) tgroups)
776         ;; New sub-hierarchy, so we add it to the topology.
777         (nconc topology (list (setq ntopology 
778                                     (list (list (substring 
779                                                  group 0 (match-end 0))
780                                                 'invisible)))))
781         ;; Descend the hierarchy.
782         (setq groups (gnus-topic-grok-active-1 ntopology groups))))
783     ;; We remove the trailing "." from the topic name.
784     (setq name
785           (if (string-match "\\.$" name)
786               (substring name 0 (match-beginning 0))
787             name))
788     ;; Add this topic and its groups to the topic alist.
789     (push (cons name (nreverse tgroups)) gnus-topic-active-alist)
790     (setcar (car topology) name)
791     ;; We return the rest of the groups that didn't belong
792     ;; to this topic.
793     groups))
794
795 ;;; Topic mode, commands and keymap.
796
797 (defvar gnus-topic-mode-map nil)
798 (defvar gnus-group-topic-map nil)
799
800 (unless gnus-topic-mode-map
801   (setq gnus-topic-mode-map (make-sparse-keymap))
802
803   ;; Override certain group mode keys.
804   (gnus-define-keys gnus-topic-mode-map
805     "=" gnus-topic-select-group
806     "\r" gnus-topic-select-group
807     " " gnus-topic-read-group
808     "\C-k" gnus-topic-kill-group
809     "\C-y" gnus-topic-yank-group
810     "\M-g" gnus-topic-get-new-news-this-topic
811     "AT" gnus-topic-list-active
812     "Gp" gnus-topic-edit-parameters
813     gnus-mouse-2 gnus-mouse-pick-topic)
814
815   ;; Define a new submap.
816   (gnus-define-keys (gnus-group-topic-map "T" gnus-group-mode-map)
817     "#" gnus-topic-mark-topic
818     "\M-#" gnus-topic-unmark-topic
819     "n" gnus-topic-create-topic
820     "m" gnus-topic-move-group
821     "D" gnus-topic-remove-group
822     "c" gnus-topic-copy-group
823     "h" gnus-topic-hide-topic
824     "s" gnus-topic-show-topic
825     "M" gnus-topic-move-matching
826     "C" gnus-topic-copy-matching
827     "\C-i" gnus-topic-indent
828     [tab] gnus-topic-indent
829     "r" gnus-topic-rename
830     "\177" gnus-topic-delete)
831
832   (gnus-define-keys (gnus-topic-sort-map "S" gnus-group-topic-map)
833     "s" gnus-topic-sort-groups
834     "a" gnus-topic-sort-groups-by-alphabet
835     "u" gnus-topic-sort-groups-by-unread
836     "l" gnus-topic-sort-groups-by-level
837     "v" gnus-topic-sort-groups-by-score
838     "r" gnus-topic-sort-groups-by-rank
839     "m" gnus-topic-sort-groups-by-method))
840
841 (defun gnus-topic-make-menu-bar ()
842   (unless (boundp 'gnus-topic-menu)
843     (easy-menu-define
844      gnus-topic-menu gnus-topic-mode-map ""
845      '("Topics"
846        ["Toggle topics" gnus-topic-mode t]
847        ("Groups"
848         ["Copy" gnus-topic-copy-group t]
849         ["Move" gnus-topic-move-group t]
850         ["Remove" gnus-topic-remove-group t]
851         ["Copy matching" gnus-topic-copy-matching t]
852         ["Move matching" gnus-topic-move-matching t])
853        ("Topics"
854         ["Show" gnus-topic-show-topic t]
855         ["Hide" gnus-topic-hide-topic t]
856         ["Delete" gnus-topic-delete t]
857         ["Rename" gnus-topic-rename t]
858         ["Create" gnus-topic-create-topic t]
859         ["Mark" gnus-topic-mark-topic t]
860         ["Indent" gnus-topic-indent t])
861        ["List active" gnus-topic-list-active t]))))
862
863 (defun gnus-topic-mode (&optional arg redisplay)
864   "Minor mode for topicsifying Gnus group buffers."
865   (interactive (list current-prefix-arg t))
866   (when (eq major-mode 'gnus-group-mode)
867     (make-local-variable 'gnus-topic-mode)
868     (setq gnus-topic-mode 
869           (if (null arg) (not gnus-topic-mode)
870             (> (prefix-numeric-value arg) 0)))
871     ;; Infest Gnus with topics.
872     (when gnus-topic-mode
873       (when (and menu-bar-mode
874                  (gnus-visual-p 'topic-menu 'menu))
875         (gnus-topic-make-menu-bar))
876       (setq gnus-topic-line-format-spec 
877             (gnus-parse-format gnus-topic-line-format 
878                                gnus-topic-line-format-alist t))
879       (unless (assq 'gnus-topic-mode minor-mode-alist)
880         (push '(gnus-topic-mode " Topic") minor-mode-alist))
881       (unless (assq 'gnus-topic-mode minor-mode-map-alist)
882         (push (cons 'gnus-topic-mode gnus-topic-mode-map)
883               minor-mode-map-alist))
884       (add-hook 'gnus-summary-exit-hook 'gnus-topic-update-topic)
885       (add-hook 'gnus-group-catchup-group-hook 'gnus-topic-update-topic)
886       (set (make-local-variable 'gnus-group-prepare-function)
887            'gnus-group-prepare-topics)
888       (set (make-local-variable 'gnus-group-get-parameter-function)
889            'gnus-group-topic-parameters)
890       (set (make-local-variable 'gnus-group-goto-next-group-function)
891            'gnus-topic-goto-next-group)
892       (set (make-local-variable 'gnus-group-indentation-function)
893            'gnus-topic-group-indentation)
894       (set (make-local-variable 'gnus-group-update-group-function)
895            'gnus-topic-update-topics-containing-group)
896       (set (make-local-variable 'gnus-group-sort-alist-function)
897            'gnus-group-sort-topic)
898       (setq gnus-group-change-level-function 'gnus-topic-change-level)
899       (setq gnus-goto-missing-group-function 'gnus-topic-goto-missing-group)
900       (gnus-make-local-hook 'gnus-check-bogus-groups-hook)
901       (add-hook 'gnus-check-bogus-groups-hook 'gnus-topic-clean-alist)
902       (setq gnus-topology-checked-p nil)
903       ;; We check the topology.
904       (when gnus-newsrc-alist
905         (gnus-topic-check-topology))
906       (run-hooks 'gnus-topic-mode-hook))
907     ;; Remove topic infestation.
908     (unless gnus-topic-mode
909       (remove-hook 'gnus-summary-exit-hook 'gnus-topic-update-topic)
910       (remove-hook 'gnus-group-change-level-function 
911                    'gnus-topic-change-level)
912       (remove-hook 'gnus-check-bogus-groups-hook 'gnus-topic-clean-alist)
913       (setq gnus-group-prepare-function 'gnus-group-prepare-flat))
914     (when redisplay
915       (gnus-group-list-groups))))
916     
917 (defun gnus-topic-select-group (&optional all)
918   "Select this newsgroup.
919 No article is selected automatically.
920 If ALL is non-nil, already read articles become readable.
921 If ALL is a number, fetch this number of articles.
922
923 If performed over a topic line, toggle folding the topic."
924   (interactive "P")
925   (if (gnus-group-topic-p)
926       (let ((gnus-group-list-mode 
927              (if all (cons (if (numberp all) all 7) t) gnus-group-list-mode)))
928         (gnus-topic-fold all))
929     (gnus-group-select-group all)))
930
931 (defun gnus-mouse-pick-topic (e)
932   "Select the group or topic under the mouse pointer."
933   (interactive "e")
934   (mouse-set-point e)
935   (gnus-topic-read-group nil))
936
937 (defun gnus-topic-read-group (&optional all no-article group)
938   "Read news in this newsgroup.
939 If the prefix argument ALL is non-nil, already read articles become
940 readable.  IF ALL is a number, fetch this number of articles.  If the
941 optional argument NO-ARTICLE is non-nil, no article will be
942 auto-selected upon group entry.  If GROUP is non-nil, fetch that
943 group.
944
945 If performed over a topic line, toggle folding the topic."
946   (interactive "P")
947   (if (gnus-group-topic-p)
948       (let ((gnus-group-list-mode 
949              (if all (cons (if (numberp all) all 7) t) gnus-group-list-mode)))
950         (gnus-topic-fold all))
951     (gnus-group-read-group all no-article group)))
952
953 (defun gnus-topic-create-topic (topic parent &optional previous full-topic)
954   (interactive 
955    (list
956     (read-string "New topic: ")
957     (gnus-current-topic)))
958   ;; Check whether this topic already exists.
959   (when (gnus-topic-find-topology topic)
960     (error "Topic already exists"))
961   (unless parent
962     (setq parent (caar gnus-topic-topology)))
963   (let ((top (cdr (gnus-topic-find-topology parent)))
964         (full-topic (or full-topic `((,topic visible)))))
965     (unless top
966       (error "No such parent topic: %s" parent))
967     (if previous
968         (progn
969           (while (and (cdr top)
970                       (not (equal (caaadr top) previous)))
971             (setq top (cdr top)))
972           (setcdr top (cons full-topic (cdr top))))
973       (nconc top (list full-topic)))
974     (unless (assoc topic gnus-topic-alist)
975       (push (list topic) gnus-topic-alist)))
976   (gnus-topic-enter-dribble)
977   (gnus-group-list-groups)
978   (gnus-topic-goto-topic topic))
979
980 (defun gnus-topic-move-group (n topic &optional copyp)
981   "Move the next N groups to TOPIC.
982 If COPYP, copy the groups instead."
983   (interactive
984    (list current-prefix-arg
985          (completing-read "Move to topic: " gnus-topic-alist nil t)))
986   (let ((groups (gnus-group-process-prefix n))
987         (topicl (assoc topic gnus-topic-alist))
988         (start-group (progn (forward-line 1) (gnus-group-group-name)))
989         (start-topic (gnus-group-topic-name))
990         entry)
991     (mapcar 
992      (lambda (g) 
993        (gnus-group-remove-mark g)
994        (when (and
995               (setq entry (assoc (gnus-current-topic) gnus-topic-alist))
996               (not copyp))
997          (setcdr entry (gnus-delete-first g (cdr entry))))
998        (nconc topicl (list g)))
999      groups)
1000     (gnus-topic-enter-dribble)
1001     (if start-group
1002         (gnus-group-goto-group start-group)
1003       (gnus-topic-goto-topic start-topic))
1004     (gnus-group-list-groups)))
1005
1006 (defun gnus-topic-remove-group ()
1007   "Remove the current group from the topic."
1008   (interactive)
1009   (let ((topicl (assoc (gnus-current-topic) gnus-topic-alist))
1010         (group (gnus-group-group-name))
1011         (buffer-read-only nil))
1012     (when (and topicl group)
1013       (gnus-delete-line)
1014       (gnus-delete-first group topicl))
1015     (gnus-topic-update-topic)
1016     (gnus-group-position-point)))
1017
1018 (defun gnus-topic-copy-group (n topic)
1019   "Copy the current group to a topic."
1020   (interactive
1021    (list current-prefix-arg
1022          (completing-read "Copy to topic: " gnus-topic-alist nil t)))
1023   (gnus-topic-move-group n topic t))
1024
1025 (defun gnus-topic-kill-group (&optional n discard)
1026   "Kill the next N groups."
1027   (interactive "P")
1028   (if (gnus-group-topic-p)
1029       (let ((topic (gnus-group-topic-name)))
1030         (gnus-topic-remove-topic nil t)
1031         (push (gnus-topic-find-topology topic nil nil gnus-topic-topology)
1032               gnus-topic-killed-topics))
1033     (gnus-group-kill-group n discard)
1034     (gnus-topic-update-topic)))
1035   
1036 (defun gnus-topic-yank-group (&optional arg)
1037   "Yank the last topic."
1038   (interactive "p")
1039   (if gnus-topic-killed-topics
1040       (let ((previous 
1041              (or (gnus-group-topic-name)
1042                  (gnus-topic-next-topic (gnus-current-topic))))
1043             (item (cdr (pop gnus-topic-killed-topics))))
1044         (gnus-topic-create-topic
1045          (caar item) (gnus-topic-parent-topic previous) previous
1046          item)
1047         (gnus-topic-goto-topic (caar item)))
1048     (let* ((prev (gnus-group-group-name))
1049            (gnus-topic-inhibit-change-level t)
1050            (gnus-group-indentation
1051             (make-string 
1052              (* gnus-topic-indent-level
1053                 (or (save-excursion
1054                       (gnus-topic-goto-topic (gnus-current-topic))
1055                       (gnus-group-topic-level)) 0)) ? ))
1056            yanked alist)
1057       ;; We first yank the groups the normal way...
1058       (setq yanked (gnus-group-yank-group arg))
1059       ;; Then we enter the yanked groups into the topics they belong
1060       ;; to. 
1061       (setq alist (assoc (save-excursion
1062                            (forward-line -1)
1063                            (gnus-current-topic))
1064                          gnus-topic-alist))
1065       (when (stringp yanked)
1066         (setq yanked (list yanked)))
1067       (if (not prev)
1068           (nconc alist yanked)
1069         (if (not (cdr alist))
1070             (setcdr alist (nconc yanked (cdr alist)))
1071           (while (cdr alist)
1072             (when (equal (cadr alist) prev)
1073               (setcdr alist (nconc yanked (cdr alist)))
1074               (setq alist nil))
1075             (setq alist (cdr alist))))))
1076     (gnus-topic-update-topic)))
1077
1078 (defun gnus-topic-hide-topic ()
1079   "Hide the current topic."
1080   (interactive)
1081   (when (gnus-current-topic)
1082     (gnus-topic-goto-topic (gnus-current-topic))
1083     (gnus-topic-remove-topic nil nil 'hidden)))
1084
1085 (defun gnus-topic-show-topic ()
1086   "Show the hidden topic."
1087   (interactive)
1088   (when (gnus-group-topic-p)
1089     (gnus-topic-remove-topic t nil 'shown)))
1090
1091 (defun gnus-topic-mark-topic (topic &optional unmark)
1092   "Mark all groups in the topic with the process mark."
1093   (interactive (list (gnus-current-topic)))
1094   (save-excursion
1095     (let ((groups (gnus-topic-find-groups topic 9 t)))
1096       (while groups
1097         (funcall (if unmark 'gnus-group-remove-mark 'gnus-group-set-mark)
1098                  (gnus-info-group (nth 2 (pop groups))))))))
1099
1100 (defun gnus-topic-unmark-topic (topic &optional unmark)
1101   "Remove the process mark from all groups in the topic."
1102   (interactive (list (gnus-current-topic)))
1103   (gnus-topic-mark-topic topic t))
1104
1105 (defun gnus-topic-get-new-news-this-topic (&optional n)
1106   "Check for new news in the current topic."
1107   (interactive "P")
1108   (if (not (gnus-group-topic-p))
1109       (gnus-group-get-new-news-this-group n)
1110     (gnus-topic-mark-topic (gnus-group-topic-name))
1111     (gnus-group-get-new-news-this-group)))
1112
1113 (defun gnus-topic-move-matching (regexp topic &optional copyp)
1114   "Move all groups that match REGEXP to some topic."
1115   (interactive
1116    (let (topic)
1117      (nreverse
1118       (list
1119        (setq topic (completing-read "Move to topic: " gnus-topic-alist nil t))
1120        (read-string (format "Move to %s (regexp): " topic))))))
1121   (gnus-group-mark-regexp regexp)
1122   (gnus-topic-move-group nil topic copyp))
1123
1124 (defun gnus-topic-copy-matching (regexp topic &optional copyp)
1125   "Copy all groups that match REGEXP to some topic."
1126   (interactive
1127    (let (topic)
1128      (nreverse
1129       (list
1130        (setq topic (completing-read "Copy to topic: " gnus-topic-alist nil t))
1131        (read-string (format "Copy to %s (regexp): " topic))))))
1132   (gnus-topic-move-matching regexp topic t))
1133
1134 (defun gnus-topic-delete (topic)
1135   "Delete a topic."
1136   (interactive (list (gnus-group-topic-name)))
1137   (unless topic
1138     (error "No topic to be deleted"))
1139   (let ((entry (assoc topic gnus-topic-alist))
1140         (buffer-read-only nil))
1141     (when (cdr entry)
1142       (error "Topic not empty"))
1143     ;; Delete if visible.
1144     (when (gnus-topic-goto-topic topic)
1145       (gnus-delete-line))
1146     ;; Remove from alist.
1147     (setq gnus-topic-alist (delq entry gnus-topic-alist))
1148     ;; Remove from topology.
1149     (gnus-topic-find-topology topic nil nil 'delete)))
1150
1151 (defun gnus-topic-rename (old-name new-name)
1152   "Rename a topic."
1153   (interactive
1154    (let ((topic (gnus-current-topic)))
1155      (list topic
1156            (read-string (format "Rename %s to: " topic)))))
1157   (let ((top (gnus-topic-find-topology old-name))
1158         (entry (assoc old-name gnus-topic-alist)))
1159     (when top
1160       (setcar (cadr top) new-name))
1161     (when entry 
1162       (setcar entry new-name))
1163     (forward-line -1)
1164     (gnus-group-list-groups)))
1165
1166 (defun gnus-topic-indent (&optional unindent)
1167   "Indent a topic -- make it a sub-topic of the previous topic.
1168 If UNINDENT, remove an indentation."
1169   (interactive "P")
1170   (if unindent
1171       (gnus-topic-unindent)
1172     (let* ((topic (gnus-current-topic))
1173            (parent (gnus-topic-previous-topic topic)))
1174       (unless parent
1175         (error "Nothing to indent %s into" topic))
1176       (when topic
1177         (gnus-topic-goto-topic topic)
1178         (gnus-topic-kill-group)
1179         (gnus-topic-create-topic
1180          topic parent nil (cdr (pop gnus-topic-killed-topics)))
1181         (or (gnus-topic-goto-topic topic)
1182             (gnus-topic-goto-topic parent))))))
1183
1184 (defun gnus-topic-unindent ()
1185   "Unindent a topic."
1186   (interactive)
1187   (let* ((topic (gnus-current-topic))
1188          (parent (gnus-topic-parent-topic topic))
1189          (grandparent (gnus-topic-parent-topic parent)))
1190     (unless grandparent
1191       (error "Nothing to indent %s into" topic))
1192     (when topic
1193       (gnus-topic-goto-topic topic)
1194       (gnus-topic-kill-group)
1195       (gnus-topic-create-topic
1196        topic grandparent (gnus-topic-next-topic parent)
1197        (cdr (pop gnus-topic-killed-topics)))
1198       (gnus-topic-goto-topic topic))))
1199
1200 (defun gnus-topic-list-active (&optional force)
1201   "List all groups that Gnus knows about in a topicsified fashion.
1202 If FORCE, always re-read the active file."
1203   (interactive "P")
1204   (when force
1205     (gnus-get-killed-groups))
1206   (gnus-topic-grok-active force)
1207   (let ((gnus-topic-topology gnus-topic-active-topology)
1208         (gnus-topic-alist gnus-topic-active-alist)
1209         gnus-killed-list gnus-zombie-list)
1210     (gnus-group-list-groups 9 nil 1)))
1211
1212 ;;; Topic sorting functions
1213
1214 (defun gnus-topic-edit-parameters (group)
1215   "Edit the group parameters of GROUP.
1216 If performed on a topic, edit the topic parameters instead."
1217   (interactive (list (gnus-group-group-name)))
1218   (if group
1219       (gnus-group-edit-group-parameters group)
1220     (if (not (gnus-group-topic-p))
1221         (error "Nothing to edit on the current line.")
1222       (let ((topic (gnus-group-topic-name)))
1223         (gnus-edit-form
1224          (gnus-topic-parameters topic)
1225          "Editing the topic parameters."
1226          `(lambda (form)
1227             (gnus-topic-set-parameters ,topic form)))))))
1228
1229 (defun gnus-group-sort-topic (func reverse)
1230   "Sort groups in the topics according to FUNC and REVERSE."
1231   (let ((alist gnus-topic-alist))
1232     (while alist
1233       (gnus-topic-sort-topic (pop alist) func reverse))))
1234
1235 (defun gnus-topic-sort-topic (topic func reverse)
1236   ;; Each topic only lists the name of the group, while
1237   ;; the sort predicates expect group infos as inputs.
1238   ;; So we first transform the group names into infos,
1239   ;; then sort, and then transform back into group names.
1240   (setcdr
1241    topic
1242    (mapcar
1243     (lambda (info) (gnus-info-group info))
1244     (sort
1245      (mapcar
1246       (lambda (group) (gnus-get-info group))
1247       (cdr topic))
1248      func)))
1249   ;; Do the reversal, if necessary.
1250   (when reverse
1251     (setcdr topic (nreverse (cdr topic)))))
1252
1253 (defun gnus-topic-sort-groups (func &optional reverse)
1254   "Sort the current topic according to FUNC.
1255 If REVERSE, reverse the sorting order."
1256   (interactive (list gnus-group-sort-function current-prefix-arg))
1257   (let ((topic (assoc (gnus-current-topic) gnus-topic-alist)))
1258     (gnus-topic-sort-topic
1259      topic (gnus-make-sort-function func) reverse)
1260     (gnus-group-list-groups)))
1261
1262 (defun gnus-topic-sort-groups-by-alphabet (&optional reverse)
1263   "Sort the current topic alphabetically by group name.
1264 If REVERSE, sort in reverse order."
1265   (interactive "P")
1266   (gnus-topic-sort-groups 'gnus-group-sort-by-alphabet reverse))
1267
1268 (defun gnus-topic-sort-groups-by-unread (&optional reverse)
1269   "Sort the current topic by number of unread articles.
1270 If REVERSE, sort in reverse order."
1271   (interactive "P")
1272   (gnus-topic-sort-groups 'gnus-group-sort-by-unread reverse))
1273
1274 (defun gnus-topic-sort-groups-by-level (&optional reverse)
1275   "Sort the current topic by group level.
1276 If REVERSE, sort in reverse order."
1277   (interactive "P")
1278   (gnus-topic-sort-groups 'gnus-group-sort-by-level reverse))
1279
1280 (defun gnus-topic-sort-groups-by-score (&optional reverse)
1281   "Sort the current topic by group score.
1282 If REVERSE, sort in reverse order."
1283   (interactive "P")
1284   (gnus-topic-sort-groups 'gnus-group-sort-by-score reverse))
1285
1286 (defun gnus-topic-sort-groups-by-rank (&optional reverse)
1287   "Sort the current topic by group rank.
1288 If REVERSE, sort in reverse order."
1289   (interactive "P")
1290   (gnus-topic-sort-groups 'gnus-group-sort-by-rank reverse))
1291
1292 (defun gnus-topic-sort-groups-by-method (&optional reverse)
1293   "Sort the current topic alphabetically by backend name.
1294 If REVERSE, sort in reverse order."
1295   (interactive "P")
1296   (gnus-topic-sort-groups 'gnus-group-sort-by-method reverse))
1297
1298 (provide 'gnus-topic)
1299
1300 ;;; gnus-topic.el ends here