1 ;;; gnus-topic.el --- a folding minor mode for Gnus group buffers
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Ilja Weis <kult@uni-paderborn.de>
7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org>
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
31 (eval-when-compile (require 'cl
))
38 (defgroup gnus-topic nil
42 (defvar gnus-topic-mode nil
43 "Minor mode for Gnus group buffers.")
45 (defcustom gnus-topic-mode-hook nil
46 "Hook run in topic mode buffers."
50 (when (featurep 'xemacs
)
51 (add-hook 'gnus-topic-mode-hook
'gnus-xmas-topic-menu-add
))
53 (defcustom gnus-topic-line-format
"%i[ %(%{%n%}%) -- %A ]%v\n"
54 "Format of topic lines.
55 It works along the same lines as a normal formatting string,
56 with some simple extensions.
58 %i Indentation based on topic level.
60 %v Nothing if the topic is visible, \"...\" otherwise.
61 %g Number of groups in the topic.
62 %a Number of unread articles in the groups in the topic.
63 %A Number of unread articles in the groups in the topic and its subtopics.
65 General format specifiers can also be used.
66 See Info node `(gnus)Formatting Variables'."
67 :link
'(custom-manual "(gnus)Formatting Variables")
71 (defcustom gnus-topic-indent-level
2
72 "*How much each subtopic should be indented."
76 (defcustom gnus-topic-display-empty-topics t
77 "*If non-nil, display the topic lines even of topics that have no unread articles."
81 ;; Internal variables.
83 (defvar gnus-topic-active-topology nil
)
84 (defvar gnus-topic-active-alist nil
)
85 (defvar gnus-topic-unreads nil
)
87 (defvar gnus-topology-checked-p nil
88 "Whether the topology has been checked in this session.")
90 (defvar gnus-topic-killed-topics nil
)
91 (defvar gnus-topic-inhibit-change-level nil
)
93 (defconst gnus-topic-line-format-alist
97 (?g number-of-groups ?d
)
98 (?a
(gnus-topic-articles-in-topic entries
) ?d
)
99 (?A total-number-of-articles ?d
)
102 (defvar gnus-topic-line-format-spec nil
)
104 ;;; Utility functions
106 (defun gnus-group-topic-name ()
107 "The name of the topic on the current line."
108 (let ((topic (get-text-property (point-at-bol) 'gnus-topic
)))
109 (and topic
(symbol-name topic
))))
111 (defun gnus-group-topic-level ()
112 "The level of the topic on the current line."
113 (get-text-property (point-at-bol) 'gnus-topic-level
))
115 (defun gnus-group-topic-unread ()
116 "The number of unread articles in topic on the current line."
117 (get-text-property (point-at-bol) 'gnus-topic-unread
))
119 (defun gnus-topic-unread (topic)
120 "Return the number of unread articles in TOPIC."
121 (or (cdr (assoc topic gnus-topic-unreads
))
124 (defun gnus-group-topic-p ()
125 "Return non-nil if the current line is a topic."
126 (gnus-group-topic-name))
128 (defun gnus-topic-visible-p ()
129 "Return non-nil if the current topic is visible."
130 (get-text-property (point-at-bol) 'gnus-topic-visible
))
132 (defun gnus-topic-articles-in-topic (entries)
136 (when (numberp (setq number
(car (pop entries
))))
137 (incf total number
)))
140 (defun gnus-group-topic (group)
141 "Return the topic GROUP is a member of."
142 (let ((alist gnus-topic-alist
)
145 (when (member group
(cdar alist
))
146 (setq out
(caar alist
)
148 (setq alist
(cdr alist
)))
151 (defun gnus-group-parent-topic (group)
152 "Return the topic GROUP is member of by looking at the group buffer."
154 (set-buffer gnus-group-buffer
)
155 (if (gnus-group-goto-group group
)
157 (gnus-group-topic group
))))
159 (defun gnus-topic-goto-topic (topic)
161 (gnus-goto-char (text-property-any (point-min) (point-max)
162 'gnus-topic
(intern topic
)))))
164 (defun gnus-topic-jump-to-topic (topic)
167 (list (completing-read "Go to topic: "
168 (mapcar 'list
(gnus-topic-list))
170 (let ((buffer-read-only nil
))
171 (dolist (topic (gnus-current-topics topic
))
172 (unless (gnus-topic-goto-topic topic
)
173 (gnus-topic-goto-missing-topic topic
)
174 (gnus-topic-display-missing-topic topic
))))
175 (gnus-topic-goto-topic topic
))
177 (defun gnus-current-topic ()
178 "Return the name of the current topic."
180 (or (get-text-property (point) 'gnus-topic
)
182 (and (gnus-goto-char (previous-single-property-change
183 (point) 'gnus-topic
))
184 (get-text-property (max (1- (point)) (point-min))
187 (symbol-name result
))))
189 (defun gnus-current-topics (&optional topic
)
190 "Return a list of all current topics, lowest in hierarchy first.
191 If TOPIC, start with that topic."
192 (let ((topic (or topic
(gnus-current-topic)))
196 (setq topic
(gnus-topic-parent-topic topic
)))
199 (defun gnus-group-active-topic-p ()
200 "Say whether the current topic comes from the active topics."
201 (get-text-property (point-at-bol) 'gnus-active
))
203 (defun gnus-topic-find-groups (topic &optional level all lowest recursive
)
204 "Return entries for all visible groups in TOPIC.
205 If RECURSIVE is t, return groups in its subtopics too."
206 (let ((groups (cdr (assoc topic gnus-topic-alist
)))
207 info clevel unread group params visible-groups entry active
)
208 (setq lowest
(or lowest
1))
209 (setq level
(or level gnus-level-unsubscribed
))
210 ;; We go through the newsrc to look for matches.
212 (when (setq group
(pop groups
))
213 (setq entry
(gnus-group-entry group
)
215 params
(gnus-info-params info
)
216 active
(gnus-active group
)
217 unread
(or (car entry
)
218 (and (not (equal group
"dummy.group"))
220 (- (1+ (cdr active
)) (car active
))))
221 clevel
(or (gnus-info-level info
)
222 (if (member group gnus-zombie-list
)
223 gnus-level-zombie gnus-level-killed
))))
225 info
; nil means that the group is dead.
227 (>= clevel lowest
) ; Is inside the level we want.
229 (if (or (eq unread t
)
231 gnus-group-list-inactive-groups
233 (and gnus-list-groups-with-ticked-articles
234 (cdr (assq 'tick
(gnus-info-marks info
))))
235 ;; Has right readedness.
236 ;; Check for permanent visibility.
237 (and gnus-permanently-visible-groups
238 (string-match gnus-permanently-visible-groups group
))
239 (memq 'visible params
)
240 (cdr (assq 'visible params
)))
241 ;; Add this group to the list of visible groups.
242 (push (or entry group
) visible-groups
)))
243 (setq visible-groups
(nreverse visible-groups
))
246 (setq recursive
(cdr (gnus-topic-find-topology topic
))))
247 (dolist (topic-topology (cdr recursive
))
249 (nconc visible-groups
250 (gnus-topic-find-groups
251 (caar topic-topology
)
252 level all lowest topic-topology
)))))
255 (defun gnus-topic-goto-previous-topic (n)
256 "Go to the N'th previous topic."
258 (gnus-topic-goto-next-topic (- n
)))
260 (defun gnus-topic-goto-next-topic (n)
261 "Go to the N'th next topic."
263 (let ((backward (< n
0))
265 (topic (gnus-current-topic)))
269 (gnus-topic-previous-topic topic
)
270 (gnus-topic-next-topic topic
))))
271 (gnus-topic-goto-topic topic
)
274 (gnus-message 7 "No more topics"))
277 (defun gnus-topic-previous-topic (topic)
278 "Return the previous topic on the same level as TOPIC."
279 (let ((top (cddr (gnus-topic-find-topology
280 (gnus-topic-parent-topic topic
)))))
281 (unless (equal topic
(caaar top
))
282 (while (and top
(not (equal (caaadr top
) topic
)))
283 (setq top
(cdr top
)))
286 (defun gnus-topic-parent-topic (topic &optional topology
)
287 "Return the parent of TOPIC."
289 (setq topology gnus-topic-topology
))
290 (let ((parent (car (pop topology
)))
293 (not (setq found
(equal (caaar topology
) topic
)))
294 (not (setq result
(gnus-topic-parent-topic
295 topic
(car topology
)))))
296 (setq topology
(cdr topology
)))
297 (or result
(and found parent
))))
299 (defun gnus-topic-next-topic (topic &optional previous
)
300 "Return the next sibling of TOPIC."
301 (let ((parentt (cddr (gnus-topic-find-topology
302 (gnus-topic-parent-topic topic
))))
305 (not (equal (caaar parentt
) topic
)))
306 (setq prev
(caaar parentt
)
307 parentt
(cdr parentt
)))
312 (defun gnus-topic-forward-topic (num)
313 "Go to the next topic on the same level as the current one."
314 (let* ((topic (gnus-current-topic))
315 (way (if (< num
0) 'gnus-topic-previous-topic
316 'gnus-topic-next-topic
))
318 (while (and (not (zerop num
))
319 (setq topic
(funcall way topic
)))
320 (when (gnus-topic-goto-topic topic
)
323 (goto-char (point-max)))
326 (defun gnus-topic-find-topology (topic &optional topology level remove
)
327 "Return the topology of TOPIC."
329 (setq topology gnus-topic-topology
)
333 (if (equal (caar topology
) topic
)
336 (delq topology remove
))
337 (cons level topology
))
338 (setq topology
(cdr topology
))
340 (not (setq result
(gnus-topic-find-topology
341 topic
(car topology
) (1+ level
)
343 (setq topology
(cdr topology
)))
346 (defvar gnus-tmp-topics nil
)
347 (defun gnus-topic-list (&optional topology
)
348 "Return a list of all topics in the topology."
350 (setq topology gnus-topic-topology
351 gnus-tmp-topics nil
))
352 (push (caar topology
) gnus-tmp-topics
)
353 (mapc 'gnus-topic-list
(cdr topology
))
356 ;;; Topic parameter jazz
358 (defun gnus-topic-parameters (topic)
359 "Return the parameters for TOPIC."
360 (let ((top (gnus-topic-find-topology topic
)))
362 (nth 3 (cadr top
)))))
364 (defun gnus-topic-set-parameters (topic parameters
)
365 "Set the topic parameters of TOPIC to PARAMETERS."
366 (let ((top (gnus-topic-find-topology topic
)))
368 (error "No such topic: %s" topic
))
369 ;; We may have to extend if there is no parameters here
371 (unless (nthcdr 2 (cadr top
))
372 (nconc (cadr top
) (list nil
)))
373 (unless (nthcdr 3 (cadr top
))
374 (nconc (cadr top
) (list nil
)))
375 (setcar (nthcdr 3 (cadr top
)) parameters
)
377 (format "(gnus-topic-set-parameters %S '%S)" topic parameters
))))
379 (defun gnus-group-topic-parameters (group)
380 "Compute the group parameters for GROUP in topic mode.
381 Possibly inherit parameters from topics above GROUP."
382 (let ((params-list (copy-sequence (gnus-group-get-parameter group
))))
384 (gnus-topic-hierarchical-parameters
385 ;; First we try to go to the group within the group buffer and find the
386 ;; topic for the group that way. This hopefully copes well with groups
387 ;; that are in more than one topic. Failing that (i.e. when the group
388 ;; isn't visible in the group buffer) we find a topic for the group via
390 (or (and (gnus-group-goto-group group
)
391 (gnus-current-topic))
392 (gnus-group-topic group
))
395 (defun gnus-topic-hierarchical-parameters (topic &optional group-params-list
)
396 "Compute the topic parameters for TOPIC.
397 Possibly inherit parameters from topics above TOPIC.
398 If optional argument GROUP-PARAMS-LIST is non-nil, use it as the basis for
401 ;; We probably have lots of nil elements here, so we remove them.
402 ;; Probably faster than doing this "properly".
403 (delq nil
(cons group-params-list
404 (mapcar 'gnus-topic-parameters
405 (gnus-current-topics topic
)))))
407 ;; Now we have all the parameters, so we go through them
408 ;; and do inheritance in the obvious way.
410 (while (setq params
(pop params-list
))
411 (while (setq param
(pop params
))
413 (setq param
(cons param t
)))
414 (cond ((eq (car param
) 'posting-style
)
415 (let ((param (cdr param
))
417 (while (setq elt
(pop param
))
418 (unless (assoc (car elt
) posting-style
)
419 (push elt posting-style
)))))
421 (unless (assq (car param
) out
)
422 (push param out
))))))
423 (and posting-style
(push (cons 'posting-style posting-style
) out
)))
424 ;; Return the resulting parameter list.
427 ;;; General utility functions
429 (defun gnus-topic-enter-dribble ()
431 (format "(setq gnus-topic-topology '%S)" gnus-topic-topology
)))
433 ;;; Generating group buffers
435 (defun gnus-group-prepare-topics (level &optional predicate lowest
436 regexp list-topic topic-level
)
437 "List all newsgroups with unread articles of level LEVEL or lower.
438 Use the `gnus-group-topics' to sort the groups.
439 If PREDICTE is a function, list groups that the function returns non-nil;
440 if it is t, list groups that have no unread articles.
441 If LOWEST is non-nil, list all newsgroups of level LOWEST or higher."
442 (set-buffer gnus-group-buffer
)
443 (let ((buffer-read-only nil
)
444 (lowest (or lowest
1))
446 (and gnus-group-listed-groups
447 (copy-sequence gnus-group-listed-groups
))))
449 (gnus-update-format-specifications nil
'topic
)
451 (when (or (not gnus-topic-alist
)
452 (not gnus-topology-checked-p
))
453 (gnus-topic-check-topology))
459 (when (or gnus-group-listed-groups
460 (and (>= level gnus-level-zombie
)
461 (<= lowest gnus-level-zombie
)))
462 (gnus-group-prepare-flat-list-dead
463 (setq gnus-zombie-list
(sort gnus-zombie-list
'string
<))
467 (when (or gnus-group-listed-groups
468 (and (>= level gnus-level-killed
)
469 (<= lowest gnus-level-killed
)))
470 (gnus-group-prepare-flat-list-dead
471 (setq gnus-killed-list
(sort gnus-killed-list
'string
<))
472 gnus-level-killed ?K regexp
)
474 (unless gnus-killed-hashtb
475 (gnus-make-hashtable-from-killed))
476 (gnus-group-prepare-flat-list-dead
477 (gnus-remove-if (lambda (group)
478 (or (gnus-group-entry group
)
479 (gnus-gethash group gnus-killed-hashtb
)))
481 gnus-level-killed ?K regexp
)))
485 (when (or (< lowest gnus-level-zombie
)
486 gnus-group-listed-groups
)
488 (let ((top (gnus-topic-find-topology list-topic
)))
489 (gnus-topic-prepare-topic (cdr top
) (car top
)
490 (or topic-level level
) predicate
492 (gnus-topic-prepare-topic gnus-topic-topology
0
493 (or topic-level level
) predicate
495 (gnus-group-set-mode-line)
496 (setq gnus-group-list-mode
(cons level predicate
))
497 (gnus-run-hooks 'gnus-group-prepare-hook
))))
499 (defun gnus-topic-prepare-topic (topicl level
&optional list-level
502 "Insert TOPIC into the group buffer.
503 If SILENT, don't insert anything. Return the number of unread
504 articles in the topic and its subtopics."
505 (let* ((type (pop topicl
))
506 (entries (gnus-topic-find-groups
508 (if gnus-group-listed-groups
511 (or predicate gnus-group-listed-groups
513 (gnus-topic-hierarchical-parameters
515 (if gnus-group-listed-groups
0 lowest
)))
516 (visiblep (and (eq (nth 1 type
) 'visible
) (not silent
)))
517 (gnus-group-indentation
518 (make-string (* gnus-topic-indent-level level
) ?
))
519 (beg (progn (beginning-of-line) (point)))
520 (topicl (reverse topicl
))
521 (all-entries entries
)
522 (point-max (point-max))
525 info entry end active tick
)
526 ;; Insert any sub-topics.
529 (gnus-topic-prepare-topic
530 (pop topicl
) (1+ level
) list-level predicate
531 (not visiblep
) lowest regexp
)))
534 ;; Insert all the groups that belong in this topic.
535 (while (setq entry
(pop entries
))
536 (when (if (stringp entry
)
537 (gnus-group-prepare-logic
540 (or (not gnus-group-listed-groups
)
541 (if (< list-level gnus-level-zombie
) nil
543 (if (member entry gnus-zombie-list
)
544 gnus-level-zombie gnus-level-killed
)))
545 (and (<= entry-level list-level
)
546 (>= entry-level lowest
)))))
549 (string-match regexp entry
))
551 (funcall regexp entry
))
554 (setq info
(nth 2 entry
))
555 (gnus-group-prepare-logic
556 (gnus-info-group info
)
557 (and (or (not gnus-group-listed-groups
)
558 (let ((entry-level (gnus-info-level info
)))
559 (and (<= entry-level list-level
)
560 (>= entry-level lowest
))))
561 (or (not (functionp predicate
))
562 (funcall predicate info
))
563 (or (not (stringp regexp
))
564 (string-match regexp
(gnus-info-group info
))))))
568 (gnus-group-insert-group-line
569 entry
(if (member entry gnus-zombie-list
)
570 gnus-level-zombie gnus-level-killed
)
571 nil
(- (1+ (cdr (setq active
(gnus-active entry
))))
575 (when (setq info
(nth 2 entry
))
576 (gnus-group-insert-group-line
577 (gnus-info-group info
)
578 (gnus-info-level info
) (gnus-info-marks info
)
579 (car entry
) (gnus-info-method info
)))))
580 (when (and (listp entry
)
581 (numberp (car entry
)))
582 (incf unread
(car entry
)))
586 ;; Insert the topic line.
587 (when (and (not silent
)
588 (or gnus-topic-display-empty-topics
;We want empty topics
589 (not (zerop unread
)) ;Non-empty
590 tick
;Ticked articles
591 (/= point-max
(point-max)))) ;Unactivated groups
592 (gnus-extent-start-open (point))
593 (gnus-topic-insert-topic-line
595 (not (eq (nth 2 type
) 'hidden
))
596 level all-entries unread
))
597 (gnus-topic-update-unreads (car type
) unread
)
598 (when gnus-group-update-tool-bar
599 (gnus-put-text-property beg end
'point-entered
600 'gnus-tool-bar-update
)
601 (gnus-put-text-property beg end
'point-left
602 'gnus-tool-bar-update
))
606 (defun gnus-topic-remove-topic (&optional insert total-remove hide in-level
)
607 "Remove the current topic."
608 (let ((topic (gnus-group-topic-name))
609 (level (gnus-group-topic-level))
610 (beg (progn (beginning-of-line) (point)))
613 (while (and (zerop (forward-line 1))
614 (> (or (gnus-group-topic-level) (1+ level
)) level
)))
615 (delete-region beg
(point))
616 ;; Do the change in this rather odd manner because it has been
617 ;; reported that some topics share parts of some lists, for some
618 ;; reason. I have been unable to determine why this is the
619 ;; case, but this hack seems to take care of things.
620 (let ((data (cadr (gnus-topic-find-topology topic
))))
622 (list (if insert
'visible
'invisible
)
626 (setq gnus-topic-alist
627 (delq (assoc topic gnus-topic-alist
) gnus-topic-alist
))
628 (gnus-topic-insert-topic topic in-level
)))))
630 (defun gnus-topic-insert-topic (topic &optional level
)
632 (gnus-group-prepare-topics
633 (car gnus-group-list-mode
) (cdr gnus-group-list-mode
)
634 nil nil topic level
))
636 (defun gnus-topic-fold (&optional insert topic
)
637 "Remove/insert the current topic."
638 (let ((topic (or topic
(gnus-group-topic-name))))
641 (if (not (gnus-group-active-topic-p))
642 (gnus-topic-remove-topic
643 (or insert
(not (gnus-topic-visible-p))))
644 (let ((gnus-topic-topology gnus-topic-active-topology
)
645 (gnus-topic-alist gnus-topic-active-alist
)
646 (gnus-group-list-mode (cons 5 t
)))
647 (gnus-topic-remove-topic
648 (or insert
(not (gnus-topic-visible-p))) nil nil
9)
649 (gnus-topic-enter-dribble)))))))
651 (defun gnus-topic-insert-topic-line (name visiblep shownp level entries
653 (let* ((visible (if visiblep
"" "..."))
654 (indentation (make-string (* gnus-topic-indent-level level
) ?
))
655 (total-number-of-articles unread
)
656 (number-of-groups (length entries
))
657 (active-topic (eq gnus-topic-alist gnus-topic-active-alist
))
659 (gnus-topic-update-unreads name unread
)
663 (gnus-add-text-properties
666 (eval gnus-topic-line-format-spec
))
667 (list 'gnus-topic
(intern name
)
668 'gnus-topic-level level
669 'gnus-topic-unread unread
670 'gnus-active active-topic
671 'gnus-topic-visible visiblep
)))))
673 (defun gnus-topic-update-unreads (topic unreads
)
674 (setq gnus-topic-unreads
(delq (assoc topic gnus-topic-unreads
)
676 (push (cons topic unreads
) gnus-topic-unreads
))
678 (defun gnus-topic-update-topics-containing-group (group)
679 "Update all topics that have GROUP as a member."
680 (when (and (eq major-mode
'gnus-group-mode
)
683 (let ((alist gnus-topic-alist
))
684 ;; This is probably not entirely correct. If a topic
685 ;; isn't shown, then it's not updated. But the updating
686 ;; should be performed in any case, since the topic's
687 ;; parent should be updated. Pfft.
689 (when (and (member group
(cdar alist
))
690 (gnus-topic-goto-topic (caar alist
)))
691 (gnus-topic-update-topic-line (caar alist
)))
694 (defun gnus-topic-update-topic ()
695 "Update all parent topics to the current group."
696 (when (and (eq major-mode
'gnus-group-mode
)
698 (let ((group (gnus-group-group-name))
700 (buffer-read-only nil
))
702 (gnus-get-info group
)
703 (gnus-topic-goto-topic (gnus-current-topic)))
704 (gnus-topic-update-topic-line (gnus-group-topic-name))
707 (gnus-group-position-point)))))
709 (defun gnus-topic-goto-missing-group (group)
710 "Place point where GROUP is supposed to be inserted."
711 (let* ((topic (gnus-group-topic group
))
712 (groups (cdr (assoc topic gnus-topic-alist
)))
713 (g (cdr (member group groups
)))
716 ;; Try to jump to a visible group.
718 (not (gnus-group-goto-group (car g
) t
)))
720 ;; It wasn't visible, so we try to see where to insert it.
722 (setq g
(cdr (member group
(reverse groups
))))
723 (while (and g unfound
)
724 (when (gnus-group-goto-group (pop g
) t
)
729 (not (gnus-topic-goto-missing-topic topic
)))
730 (gnus-topic-display-missing-topic topic
)))))
732 (defun gnus-topic-display-missing-topic (topic)
733 "Insert topic lines recursively for missing topics."
734 (let ((parent (gnus-topic-find-topology
735 (gnus-topic-parent-topic topic
))))
737 (not (gnus-topic-goto-missing-topic (caadr parent
))))
738 (gnus-topic-display-missing-topic (caadr parent
))))
739 (gnus-topic-goto-missing-topic topic
)
740 ;; Skip past all groups in the topic we're in.
741 (while (gnus-group-group-name)
743 (let* ((top (gnus-topic-find-topology topic
))
744 (children (cddr top
))
747 (entries (gnus-topic-find-groups
748 (car type
) (car gnus-group-list-mode
)
749 (cdr gnus-group-list-mode
)))
752 (incf unread
(gnus-topic-unread (caar (pop children
)))))
753 (while (setq entry
(pop entries
))
754 (when (numberp (car entry
))
755 (incf unread
(car entry
))))
756 (gnus-topic-insert-topic-line
757 topic t t
(car (gnus-topic-find-topology topic
)) nil unread
)))
759 (defun gnus-topic-goto-missing-topic (topic)
760 (if (gnus-topic-goto-topic topic
)
762 ;; Topic not displayed.
763 (let* ((top (gnus-topic-find-topology
764 (gnus-topic-parent-topic topic
)))
765 (tp (reverse (cddr top
))))
767 (gnus-topic-insert-topic-line
768 topic t t
(car (gnus-topic-find-topology topic
)) nil
0)
769 (while (not (equal (caaar tp
) topic
))
773 (not (gnus-topic-goto-topic (caaar tp
))))
776 (gnus-topic-forward-topic 1)
777 (gnus-topic-goto-missing-topic (caadr top
)))))
780 (defun gnus-topic-update-topic-line (topic-name &optional reads
)
781 (let* ((top (gnus-topic-find-topology topic-name
))
783 (children (cddr top
))
784 (entries (gnus-topic-find-groups
785 (car type
) (car gnus-group-list-mode
)
786 (cdr gnus-group-list-mode
)))
787 (parent (gnus-topic-parent-topic topic-name
))
788 (all-entries entries
)
790 old-unread entry new-unread
)
791 (when (gnus-topic-goto-topic (car type
))
792 ;; Tally all the groups that belong in this topic.
794 (setq unread
(- (gnus-group-topic-unread) reads
))
796 (incf unread
(gnus-topic-unread (caar (pop children
)))))
797 (while (setq entry
(pop entries
))
798 (when (numberp (car entry
))
799 (incf unread
(car entry
)))))
800 (setq old-unread
(gnus-group-topic-unread))
801 ;; Insert the topic line.
802 (gnus-topic-insert-topic-line
803 (car type
) (gnus-topic-visible-p)
804 (not (eq (nth 2 type
) 'hidden
))
805 (gnus-group-topic-level) all-entries unread
)
808 (setq new-unread
(gnus-group-topic-unread)))
811 (gnus-topic-update-topic-line
813 (- (or old-unread
0) (or new-unread
0))))
816 (defun gnus-topic-group-indentation ()
818 (* gnus-topic-indent-level
821 (gnus-topic-goto-topic (gnus-current-topic))
822 (gnus-group-topic-level))
828 (gnus-add-shutdown 'gnus-topic-close
'gnus
)
830 (defun gnus-topic-close ()
831 (setq gnus-topic-active-topology nil
832 gnus-topic-active-alist nil
833 gnus-topic-killed-topics nil
834 gnus-topology-checked-p nil
))
836 (defun gnus-topic-check-topology ()
837 ;; The first time we set the topology to whatever we have
838 ;; gotten here, which can be rather random.
839 (unless gnus-topic-alist
840 (gnus-topic-init-alist))
842 (setq gnus-topology-checked-p t
)
843 ;; Go through the topic alist and make sure that all topics
844 ;; are in the topic topology.
845 (let ((topics (gnus-topic-list))
846 (alist gnus-topic-alist
)
849 (unless (member (caar alist
) topics
)
850 (nconc gnus-topic-topology
851 (list (list (list (caar alist
) 'visible
))))
853 (setq alist
(cdr alist
)))
855 (gnus-topic-enter-dribble))
856 ;; Conversely, go through the topology and make sure that all
857 ;; topologies have alists.
859 (unless (assoc (car topics
) gnus-topic-alist
)
860 (push (list (car topics
)) gnus-topic-alist
))
862 ;; Go through all living groups and make sure that
863 ;; they belong to some topic.
864 (let* ((tgroups (apply 'append
(mapcar 'cdr gnus-topic-alist
)))
865 (entry (last (assoc (caar gnus-topic-topology
) gnus-topic-alist
)))
866 (newsrc (cdr gnus-newsrc-alist
))
869 (unless (member (setq group
(gnus-info-group (pop newsrc
))) tgroups
)
870 (setcdr entry
(list group
))
871 (setq entry
(cdr entry
)))))
872 ;; Go through all topics and make sure they contain only living groups.
873 (let ((alist gnus-topic-alist
)
875 (while (setq topic
(pop alist
))
877 (if (and (cadr topic
)
878 (gnus-group-entry (cadr topic
)))
879 (setq topic
(cdr topic
))
880 (setcdr topic
(cddr topic
)))))))
882 (defun gnus-topic-init-alist ()
883 "Initialize the topic structures."
884 (setq gnus-topic-topology
885 (cons (list "Gnus" 'visible
)
886 (mapcar (lambda (topic)
887 (list (list (car topic
) 'visible
)))
889 (setq gnus-topic-alist
891 (mapcar (lambda (info) (gnus-info-group info
))
892 (cdr gnus-newsrc-alist
)))
894 (gnus-topic-enter-dribble))
898 (defun gnus-topic-clean-alist ()
899 "Remove bogus groups from the topic alist."
900 (let ((topic-alist gnus-topic-alist
)
902 (unless gnus-killed-hashtb
903 (gnus-make-hashtable-from-killed))
904 (while (setq topic
(pop topic-alist
))
905 (let ((topic-name (pop topic
))
906 group filtered-topic
)
907 (while (setq group
(pop topic
))
908 (when (and (or (gnus-active group
)
909 (gnus-info-method (gnus-get-info group
)))
910 (not (gnus-gethash group gnus-killed-hashtb
)))
911 (push group filtered-topic
)))
912 (push (cons topic-name
(nreverse filtered-topic
)) result
)))
913 (setq gnus-topic-alist
(nreverse result
))))
915 (defun gnus-topic-change-level (group level oldlevel
&optional previous
)
916 "Run when changing levels to enter/remove groups from topics."
918 (set-buffer gnus-group-buffer
)
919 (let ((buffer-read-only nil
))
920 (unless gnus-topic-inhibit-change-level
921 (gnus-group-goto-group (or (car (nth 2 previous
)) group
))
922 (when (and gnus-topic-mode
924 (not gnus-topic-inhibit-change-level
))
925 ;; Remove the group from the topics.
926 (if (and (< oldlevel gnus-level-zombie
)
927 (>= level gnus-level-zombie
))
928 (let ((alist gnus-topic-alist
))
929 (while (gnus-group-goto-group group
)
932 (when (member group
(car alist
))
933 (setcdr (car alist
) (delete group
(cdar alist
))))
935 ;; If the group is subscribed we enter it into the topics.
936 (when (and (< level gnus-level-zombie
)
937 (>= oldlevel gnus-level-zombie
))
938 (let* ((prev (gnus-group-group-name))
939 (gnus-topic-inhibit-change-level t
)
940 (gnus-group-indentation
942 (* gnus-topic-indent-level
944 (gnus-topic-goto-topic (gnus-current-topic))
945 (gnus-group-topic-level))
948 (yanked (list group
))
950 ;; Then we enter the yanked groups into the topics
952 (when (setq alist
(assoc (save-excursion
956 (caar gnus-topic-topology
)))
959 (when (stringp yanked
)
960 (setq yanked
(list yanked
)))
963 (if (not (cdr alist
))
964 (setcdr alist
(nconc yanked
(cdr alist
)))
965 (while (and (not end
) (cdr alist
))
966 (when (equal (cadr alist
) prev
)
967 (setcdr alist
(nconc yanked
(cdr alist
)))
969 (setq alist
(cdr alist
)))
971 (nconc talist yanked
))))))
972 (gnus-topic-update-topic))))))))
974 (defun gnus-topic-goto-next-group (group props
)
975 "Go to group or the next group after group."
977 (if (not (memq 'gnus-topic props
))
978 (goto-char (point-max))
979 (gnus-topic-goto-topic (symbol-name (cadr (memq 'gnus-topic props
)))))
980 (if (gnus-group-goto-group group
)
982 ;; The group is no longer visible.
983 (let* ((list (assoc (gnus-group-topic group
) gnus-topic-alist
))
984 (after (cdr (member group
(cdr list
)))))
985 ;; First try to put point on a group after the current one.
987 (not (gnus-group-goto-group (car after
))))
988 (setq after
(cdr after
)))
989 ;; Then try to put point on a group before point.
991 (setq after
(cdr (member group
(reverse (cdr list
)))))
993 (not (gnus-group-goto-group (car after
))))
994 (setq after
(cdr after
))))
995 ;; Finally, just put point on the topic.
997 (goto-char (point-min))
999 (gnus-topic-goto-topic (car list
))
1003 ;;; Topic-active functions
1005 (defun gnus-topic-grok-active (&optional force
)
1006 "Parse all active groups and create topic structures for them."
1007 ;; First we make sure that we have really read the active file.
1009 (not gnus-topic-active-alist
))
1011 ;; Get a list of all groups available.
1012 (mapatoms (lambda (g) (when (symbol-value g
)
1013 (push (symbol-name g
) groups
)))
1015 (setq groups
(sort groups
'string
<))
1016 ;; Init the variables.
1017 (setq gnus-topic-active-topology
(list (list "" 'visible
)))
1018 (setq gnus-topic-active-alist nil
)
1019 ;; Descend the top-level hierarchy.
1020 (gnus-topic-grok-active-1 gnus-topic-active-topology groups
)
1021 ;; Set the top-level topic names to something nice.
1022 (setcar (car gnus-topic-active-topology
) "Gnus active")
1023 (setcar (car gnus-topic-active-alist
) "Gnus active"))))
1025 (defun gnus-topic-grok-active-1 (topology groups
)
1026 (let* ((name (caar topology
))
1027 (prefix (concat "^" (regexp-quote name
)))
1028 tgroups ntopology group
)
1030 (string-match prefix
(setq group
(car groups
))))
1031 (if (not (string-match "\\." group
(match-end 0)))
1032 ;; There are no further hierarchies here, so we just
1033 ;; enter this group into the list belonging to this
1035 (push (pop groups
) tgroups
)
1036 ;; New sub-hierarchy, so we add it to the topology.
1037 (nconc topology
(list (setq ntopology
1038 (list (list (substring
1039 group
0 (match-end 0))
1041 ;; Descend the hierarchy.
1042 (setq groups
(gnus-topic-grok-active-1 ntopology groups
))))
1043 ;; We remove the trailing "." from the topic name.
1045 (if (string-match "\\.$" name
)
1046 (substring name
0 (match-beginning 0))
1048 ;; Add this topic and its groups to the topic alist.
1049 (push (cons name
(nreverse tgroups
)) gnus-topic-active-alist
)
1050 (setcar (car topology
) name
)
1051 ;; We return the rest of the groups that didn't belong
1055 ;;; Topic mode, commands and keymap.
1057 (defvar gnus-topic-mode-map nil
)
1058 (defvar gnus-group-topic-map nil
)
1060 (unless gnus-topic-mode-map
1061 (setq gnus-topic-mode-map
(make-sparse-keymap))
1063 ;; Override certain group mode keys.
1064 (gnus-define-keys gnus-topic-mode-map
1065 "=" gnus-topic-select-group
1066 "\r" gnus-topic-select-group
1067 " " gnus-topic-read-group
1068 "\C-c\C-x" gnus-topic-expire-articles
1069 "c" gnus-topic-catchup-articles
1070 "\C-k" gnus-topic-kill-group
1071 "\C-y" gnus-topic-yank-group
1072 "\M-g" gnus-topic-get-new-news-this-topic
1073 "AT" gnus-topic-list-active
1074 "Gp" gnus-topic-edit-parameters
1075 "#" gnus-topic-mark-topic
1076 "\M-#" gnus-topic-unmark-topic
1077 [tab] gnus-topic-indent
1078 [(meta tab)] gnus-topic-unindent
1079 "\C-i" gnus-topic-indent
1080 "\M-\C-i" gnus-topic-unindent
1081 gnus-mouse-2 gnus-mouse-pick-topic)
1083 ;; Define a new submap.
1084 (gnus-define-keys (gnus-group-topic-map "T" gnus-group-mode-map)
1085 "#" gnus-topic-mark-topic
1086 "\M-#" gnus-topic-unmark-topic
1087 "n" gnus-topic-create-topic
1088 "m" gnus-topic-move-group
1089 "D" gnus-topic-remove-group
1090 "c" gnus-topic-copy-group
1091 "h" gnus-topic-hide-topic
1092 "s" gnus-topic-show-topic
1093 "j" gnus-topic-jump-to-topic
1094 "M" gnus-topic-move-matching
1095 "C" gnus-topic-copy-matching
1096 "\M-p" gnus-topic-goto-previous-topic
1097 "\M-n" gnus-topic-goto-next-topic
1098 "\C-i" gnus-topic-indent
1099 [tab] gnus-topic-indent
1100 "r" gnus-topic-rename
1101 "\177" gnus-topic-delete
1102 [delete] gnus-topic-delete
1103 "H" gnus-topic-toggle-display-empty-topics)
1105 (gnus-define-keys (gnus-topic-sort-map "S" gnus-group-topic-map)
1106 "s" gnus-topic-sort-groups
1107 "a" gnus-topic-sort-groups-by-alphabet
1108 "u" gnus-topic-sort-groups-by-unread
1109 "l" gnus-topic-sort-groups-by-level
1110 "e" gnus-topic-sort-groups-by-server
1111 "v" gnus-topic-sort-groups-by-score
1112 "r" gnus-topic-sort-groups-by-rank
1113 "m" gnus-topic-sort-groups-by-method))
1115 (defun gnus-topic-make-menu-bar ()
1116 (unless (boundp 'gnus-topic-menu)
1118 gnus-topic-menu gnus-topic-mode-map ""
1120 ["Toggle topics" gnus-topic-mode t]
1122 ["Copy..." gnus-topic-copy-group t]
1123 ["Move..." gnus-topic-move-group t]
1124 ["Remove" gnus-topic-remove-group t]
1125 ["Copy matching..." gnus-topic-copy-matching t]
1126 ["Move matching..." gnus-topic-move-matching t])
1128 ["Goto..." gnus-topic-jump-to-topic t]
1129 ["Show" gnus-topic-show-topic t]
1130 ["Hide" gnus-topic-hide-topic t]
1131 ["Delete" gnus-topic-delete t]
1132 ["Rename..." gnus-topic-rename t]
1133 ["Create..." gnus-topic-create-topic t]
1134 ["Mark" gnus-topic-mark-topic t]
1135 ["Indent" gnus-topic-indent t]
1136 ["Sort" gnus-topic-sort-topics t]
1137 ["Previous topic" gnus-topic-goto-previous-topic t]
1138 ["Next topic" gnus-topic-goto-next-topic t]
1139 ["Toggle hide empty" gnus-topic-toggle-display-empty-topics t]
1140 ["Edit parameters" gnus-topic-edit-parameters t])
1141 ["List active" gnus-topic-list-active t]))))
1143 (defun gnus-topic-mode (&optional arg redisplay)
1144 "Minor mode for topicsifying Gnus group buffers."
1145 (interactive (list current-prefix-arg t))
1146 (when (eq major-mode 'gnus-group-mode)
1147 (make-local-variable 'gnus-topic-mode)
1148 (setq gnus-topic-mode
1149 (if (null arg) (not gnus-topic-mode)
1150 (> (prefix-numeric-value arg) 0)))
1151 ;; Infest Gnus with topics.
1152 (if (not gnus-topic-mode)
1153 (setq gnus-goto-missing-group-function nil)
1154 (when (gnus-visual-p 'topic-menu 'menu)
1155 (gnus-topic-make-menu-bar))
1156 (gnus-set-format 'topic t)
1157 (add-minor-mode 'gnus-topic-mode " Topic" gnus-topic-mode-map)
1158 (add-hook 'gnus-group-catchup-group-hook 'gnus-topic-update-topic)
1159 (set (make-local-variable 'gnus-group-prepare-function)
1160 'gnus-group-prepare-topics)
1161 (set (make-local-variable 'gnus-group-get-parameter-function)
1162 'gnus-group-topic-parameters)
1163 (set (make-local-variable 'gnus-group-goto-next-group-function)
1164 'gnus-topic-goto-next-group)
1165 (set (make-local-variable 'gnus-group-indentation-function)
1166 'gnus-topic-group-indentation)
1167 (set (make-local-variable 'gnus-group-update-group-function)
1168 'gnus-topic-update-topics-containing-group)
1169 (set (make-local-variable 'gnus-group-sort-alist-function)
1170 'gnus-group-sort-topic)
1171 (setq gnus-group-change-level-function 'gnus-topic-change-level)
1172 (setq gnus-goto-missing-group-function 'gnus-topic-goto-missing-group)
1173 (gnus-make-local-hook 'gnus-check-bogus-groups-hook)
1174 (add-hook 'gnus-check-bogus-groups-hook 'gnus-topic-clean-alist
1176 (setq gnus-topology-checked-p nil)
1177 ;; We check the topology.
1178 (when gnus-newsrc-alist
1179 (gnus-topic-check-topology))
1180 (gnus-run-hooks 'gnus-topic-mode-hook))
1181 ;; Remove topic infestation.
1182 (unless gnus-topic-mode
1183 (remove-hook 'gnus-summary-exit-hook 'gnus-topic-update-topic)
1184 (setq gnus-group-change-level-function nil)
1185 (remove-hook 'gnus-check-bogus-groups-hook 'gnus-topic-clean-alist)
1186 (setq gnus-group-prepare-function 'gnus-group-prepare-flat)
1187 (setq gnus-group-sort-alist-function 'gnus-group-sort-flat))
1189 (gnus-group-list-groups))))
1191 (defun gnus-topic-select-group (&optional all)
1192 "Select this newsgroup.
1193 No article is selected automatically.
1194 If the group is opened, just switch the summary buffer.
1195 If ALL is non-nil, already read articles become readable.
1196 If ALL is a number, fetch this number of articles.
1198 If performed over a topic line, toggle folding the topic."
1200 (when (and (eobp) (not (gnus-group-group-name)))
1202 (if (gnus-group-topic-p)
1203 (let ((gnus-group-list-mode
1204 (if all (cons (if (numberp all) all 7) t) gnus-group-list-mode)))
1205 (gnus-topic-fold all)
1206 (gnus-dribble-touch))
1207 (gnus-group-select-group all)))
1209 (defun gnus-mouse-pick-topic (e)
1210 "Select the group or topic under the mouse pointer."
1213 (gnus-topic-read-group nil))
1215 (defun gnus-topic-expire-articles (topic)
1216 "Expire articles in this topic or group."
1217 (interactive (list (gnus-group-topic-name)))
1219 (call-interactively 'gnus-group-expire-articles)
1221 (gnus-message 5 "Expiring groups in %s..." topic)
1222 (let ((gnus-group-marked
1223 (mapcar (lambda (entry) (car (nth 2 entry)))
1224 (gnus-topic-find-groups topic gnus-level-killed t
1226 (gnus-group-expire-articles nil))
1227 (gnus-message 5 "Expiring groups in %s...done" topic))))
1229 (defun gnus-topic-catchup-articles (topic)
1230 "Catchup this topic or group.
1231 Also see `gnus-group-catchup'."
1232 (interactive (list (gnus-group-topic-name)))
1234 (call-interactively 'gnus-group-catchup-current)
1237 (mapcar (lambda (entry) (car (nth 2 entry)))
1238 (gnus-topic-find-groups topic gnus-level-killed t
1240 (buffer-read-only nil)
1241 (gnus-group-marked groups))
1242 (gnus-group-catchup-current)
1243 (mapcar 'gnus-topic-update-topics-containing-group groups)))))
1245 (defun gnus-topic-read-group (&optional all no-article group)
1246 "Read news in this newsgroup.
1247 If the prefix argument ALL is non-nil, already read articles become
1248 readable. IF ALL is a number, fetch this number of articles. If the
1249 optional argument NO-ARTICLE is non-nil, no article will be
1250 auto-selected upon group entry. If GROUP is non-nil, fetch that
1253 If performed over a topic line, toggle folding the topic."
1255 (if (gnus-group-topic-p)
1256 (let ((gnus-group-list-mode
1257 (if all (cons (if (numberp all) all 7) t) gnus-group-list-mode)))
1258 (gnus-topic-fold all))
1259 (gnus-group-read-group all no-article group)))
1261 (defun gnus-topic-create-topic (topic parent &optional previous full-topic)
1262 "Create a new TOPIC under PARENT.
1263 When used interactively, PARENT will be the topic under point."
1266 (read-string "New topic: ")
1267 (gnus-current-topic)))
1268 ;; Check whether this topic already exists.
1269 (when (gnus-topic-find-topology topic)
1270 (error "Topic already exists"))
1272 (setq parent (caar gnus-topic-topology)))
1273 (let ((top (cdr (gnus-topic-find-topology parent)))
1274 (full-topic (or full-topic (list (list topic 'visible nil nil)))))
1276 (error "No such parent topic: %s" parent))
1279 (while (and (cdr top)
1280 (not (equal (caaadr top) previous)))
1281 (setq top (cdr top)))
1282 (setcdr top (cons full-topic (cdr top))))
1283 (nconc top (list full-topic)))
1284 (unless (assoc topic gnus-topic-alist)
1285 (push (list topic) gnus-topic-alist)))
1286 (gnus-topic-enter-dribble)
1287 (gnus-group-list-groups)
1288 (gnus-topic-goto-topic topic))
1291 ;; 1. When the marked groups are overlapped with the process
1292 ;; region, the behavior of move or remove is not right.
1293 ;; 2. Can't process on several marked groups with a same name,
1294 ;; because gnus-group-marked only keeps one copy.
1296 (defun gnus-topic-move-group (n topic &optional copyp)
1297 "Move the next N groups to TOPIC.
1298 If COPYP, copy the groups instead."
1300 (list current-prefix-arg
1301 (gnus-completing-read "Move to topic" gnus-topic-alist nil t
1302 'gnus-topic-history)))
1303 (let ((use-marked (and (not n) (not (gnus-region-active-p))
1304 gnus-group-marked t))
1305 (groups (gnus-group-process-prefix n))
1306 (topicl (assoc topic gnus-topic-alist))
1307 (start-topic (gnus-group-topic-name))
1308 (start-group (progn (forward-line 1) (gnus-group-group-name)))
1310 (if (and (not groups) (not copyp) start-topic)
1311 (gnus-topic-move start-topic topic)
1313 (gnus-group-remove-mark g use-marked)
1315 (setq entry (assoc (gnus-current-topic) gnus-topic-alist))
1317 (setcdr entry (gnus-delete-first g (cdr entry))))
1318 (nconc topicl (list g)))
1319 (gnus-topic-enter-dribble)
1321 (gnus-group-goto-group start-group)
1322 (gnus-topic-goto-topic start-topic))
1323 (gnus-group-list-groups))))
1325 (defun gnus-topic-remove-group (&optional n)
1326 "Remove the current group from the topic."
1328 (let ((use-marked (and (not n) (not (gnus-region-active-p))
1329 gnus-group-marked t))
1330 (groups (gnus-group-process-prefix n)))
1333 (gnus-group-remove-mark group use-marked)
1334 (let ((topicl (assoc (gnus-current-topic) gnus-topic-alist))
1335 (buffer-read-only nil))
1336 (when (and topicl group)
1338 (gnus-delete-first group topicl))
1339 (gnus-topic-update-topic)))
1341 (gnus-topic-enter-dribble)
1342 (gnus-group-position-point)))
1344 (defun gnus-topic-copy-group (n topic)
1345 "Copy the current group to a topic."
1347 (list current-prefix-arg
1348 (completing-read "Copy to topic: " gnus-topic-alist nil t)))
1349 (gnus-topic-move-group n topic t))
1351 (defun gnus-topic-kill-group (&optional n discard)
1352 "Kill the next N groups."
1354 (if (gnus-group-topic-p)
1355 (let ((topic (gnus-group-topic-name)))
1357 (gnus-topic-find-topology topic)
1358 (assoc topic gnus-topic-alist))
1359 gnus-topic-killed-topics)
1360 (gnus-topic-remove-topic nil t)
1361 (gnus-topic-find-topology topic nil nil gnus-topic-topology)
1362 (gnus-topic-enter-dribble))
1363 (gnus-group-kill-group n discard)
1364 (if (not (gnus-group-topic-p))
1365 (gnus-topic-update-topic)
1366 ;; Move up one line so that we update the right topic.
1368 (gnus-topic-update-topic)
1371 (defun gnus-topic-yank-group (&optional arg)
1372 "Yank the last topic."
1374 (if gnus-topic-killed-topics
1376 (or (gnus-group-topic-name)
1377 (gnus-topic-next-topic (gnus-current-topic))))
1378 (data (pop gnus-topic-killed-topics))
1381 (push alist gnus-topic-alist)
1382 (gnus-topic-create-topic
1383 (caar item) (gnus-topic-parent-topic previous) previous
1385 (gnus-topic-enter-dribble)
1386 (gnus-topic-goto-topic (caar item)))
1387 (let* ((prev (gnus-group-group-name))
1388 (gnus-topic-inhibit-change-level t)
1389 (gnus-group-indentation
1391 (* gnus-topic-indent-level
1393 (gnus-topic-goto-topic (gnus-current-topic))
1394 (gnus-group-topic-level))
1398 ;; We first yank the groups the normal way...
1399 (setq yanked (gnus-group-yank-group arg))
1400 ;; Then we enter the yanked groups into the topics they belong
1402 (setq alist (assoc (save-excursion
1404 (gnus-current-topic))
1406 (when (stringp yanked)
1407 (setq yanked (list yanked)))
1409 (nconc alist yanked)
1410 (if (not (cdr alist))
1411 (setcdr alist (nconc yanked (cdr alist)))
1413 (when (equal (cadr alist) prev)
1414 (setcdr alist (nconc yanked (cdr alist)))
1416 (setq alist (cdr alist))))))
1417 (gnus-topic-update-topic)))
1419 (defun gnus-topic-hide-topic (&optional permanent)
1420 "Hide the current topic.
1421 If PERMANENT, make it stay hidden in subsequent sessions as well."
1423 (when (gnus-current-topic)
1424 (gnus-topic-goto-topic (gnus-current-topic))
1428 (gnus-topic-find-topology (gnus-current-topic))))
1430 (gnus-topic-remove-topic nil nil)))
1432 (defun gnus-topic-show-topic (&optional permanent)
1433 "Show the hidden topic.
1434 If PERMANENT, make it stay shown in subsequent sessions as well."
1436 (when (gnus-group-topic-p)
1438 (gnus-topic-remove-topic t nil)
1440 (gnus-topic-find-topology
1441 (completing-read "Show topic: " gnus-topic-alist nil t))))
1442 (setcar (cddr (cadr topic)) nil)
1443 (setcar (cdr (cadr topic)) 'visible)
1444 (gnus-group-list-groups)))))
1446 (defun gnus-topic-mark-topic (topic &optional unmark non-recursive)
1447 "Mark all groups in the TOPIC with the process mark.
1448 If NON-RECURSIVE (which is the prefix) is t, don't mark its subtopics."
1449 (interactive (list (gnus-group-topic-name)
1451 (and current-prefix-arg t)))
1453 (call-interactively 'gnus-group-mark-group)
1455 (let ((groups (gnus-topic-find-groups topic gnus-level-killed t nil
1456 (not non-recursive))))
1458 (funcall (if unmark 'gnus-group-remove-mark 'gnus-group-set-mark)
1459 (gnus-info-group (nth 2 (pop groups)))))))))
1461 (defun gnus-topic-unmark-topic (topic &optional dummy non-recursive)
1462 "Remove the process mark from all groups in the TOPIC.
1463 If NON-RECURSIVE (which is the prefix) is t, don't unmark its subtopics."
1464 (interactive (list (gnus-group-topic-name)
1466 (and current-prefix-arg t)))
1468 (call-interactively 'gnus-group-unmark-group)
1469 (gnus-topic-mark-topic topic t non-recursive)))
1471 (defun gnus-topic-get-new-news-this-topic (&optional n)
1472 "Check for new news in the current topic."
1474 (if (not (gnus-group-topic-p))
1475 (gnus-group-get-new-news-this-group n)
1476 (let* ((topic (gnus-group-topic-name))
1477 (data (cadr (gnus-topic-find-topology topic))))
1479 (gnus-topic-mark-topic topic nil (and n t))
1480 (gnus-group-get-new-news-this-group))
1481 (gnus-topic-remove-topic (eq 'visible (cadr data))))))
1483 (defun gnus-topic-move-matching (regexp topic &optional copyp)
1484 "Move all groups that match REGEXP to some topic."
1489 (setq topic (completing-read "Move to topic: " gnus-topic-alist nil t))
1490 (read-string (format "Move to %s (regexp): " topic))))))
1491 (gnus-group-mark-regexp regexp)
1492 (gnus-topic-move-group nil topic copyp))
1494 (defun gnus-topic-copy-matching (regexp topic &optional copyp)
1495 "Copy all groups that match REGEXP to some topic."
1500 (setq topic (completing-read "Copy to topic: " gnus-topic-alist nil t))
1501 (read-string (format "Copy to %s (regexp): " topic))))))
1502 (gnus-topic-move-matching regexp topic t))
1504 (defun gnus-topic-delete (topic)
1506 (interactive (list (gnus-group-topic-name)))
1508 (error "No topic to be deleted"))
1509 (let ((entry (assoc topic gnus-topic-alist))
1510 (buffer-read-only nil))
1512 (error "Topic not empty"))
1513 ;; Delete if visible.
1514 (when (gnus-topic-goto-topic topic)
1516 ;; Remove from alist.
1517 (setq gnus-topic-alist (delq entry gnus-topic-alist))
1518 ;; Remove from topology.
1519 (gnus-topic-find-topology topic nil nil 'delete)
1520 (gnus-dribble-touch)))
1522 (defun gnus-topic-rename (old-name new-name)
1525 (let ((topic (gnus-current-topic)))
1527 (read-string (format "Rename %s to: " topic) topic))))
1528 ;; Check whether the new name exists.
1529 (when (gnus-topic-find-topology new-name)
1530 (error "Topic '%s' already exists" new-name))
1531 ;; "nil" is an invalid name, for reasons I'd rather not go
1532 ;; into here. Trust me.
1533 (when (equal new-name "nil")
1534 (error "Invalid name: %s" nil))
1536 (let ((top (gnus-topic-find-topology old-name))
1537 (entry (assoc old-name gnus-topic-alist)))
1539 (setcar (cadr top) new-name))
1541 (setcar entry new-name))
1543 (gnus-dribble-touch)
1544 (gnus-group-list-groups)
1547 (defun gnus-topic-indent (&optional unindent)
1548 "Indent a topic -- make it a sub-topic of the previous topic.
1549 If UNINDENT, remove an indentation."
1552 (gnus-topic-unindent)
1553 (let* ((topic (gnus-current-topic))
1554 (parent (gnus-topic-previous-topic topic))
1555 (buffer-read-only nil))
1557 (error "Nothing to indent %s into" topic))
1559 (gnus-topic-goto-topic topic)
1560 (gnus-topic-kill-group)
1561 (push (cdar gnus-topic-killed-topics) gnus-topic-alist)
1562 (gnus-topic-create-topic
1563 topic parent nil (cdar (car gnus-topic-killed-topics)))
1564 (pop gnus-topic-killed-topics)
1565 (or (gnus-topic-goto-topic topic)
1566 (gnus-topic-goto-topic parent))))))
1568 (defun gnus-topic-unindent ()
1571 (let* ((topic (gnus-current-topic))
1572 (parent (gnus-topic-parent-topic topic))
1573 (grandparent (gnus-topic-parent-topic parent)))
1575 (error "Nothing to indent %s into" topic))
1577 (gnus-topic-goto-topic topic)
1578 (gnus-topic-kill-group)
1579 (push (cdar gnus-topic-killed-topics) gnus-topic-alist)
1580 (gnus-topic-create-topic
1581 topic grandparent (gnus-topic-next-topic parent)
1582 (cdar (car gnus-topic-killed-topics)))
1583 (pop gnus-topic-killed-topics)
1584 (gnus-topic-goto-topic topic))))
1586 (defun gnus-topic-list-active (&optional force)
1587 "List all groups that Gnus knows about in a topicsified fashion.
1588 If FORCE, always re-read the active file."
1591 (gnus-get-killed-groups))
1592 (gnus-topic-grok-active force)
1593 (let ((gnus-topic-topology gnus-topic-active-topology)
1594 (gnus-topic-alist gnus-topic-active-alist)
1595 gnus-killed-list gnus-zombie-list)
1596 (gnus-group-list-groups gnus-level-killed nil 1)))
1598 (defun gnus-topic-toggle-display-empty-topics ()
1599 "Show/hide topics that have no unread articles."
1601 (setq gnus-topic-display-empty-topics
1602 (not gnus-topic-display-empty-topics))
1603 (gnus-group-list-groups)
1604 (message "%s empty topics"
1605 (if gnus-topic-display-empty-topics
1606 "Showing" "Hiding")))
1608 ;;; Topic sorting functions
1610 (defun gnus-topic-edit-parameters (group)
1611 "Edit the group parameters of GROUP.
1612 If performed on a topic, edit the topic parameters instead."
1613 (interactive (list (gnus-group-group-name)))
1615 (gnus-group-edit-group-parameters group)
1616 (if (not (gnus-group-topic-p))
1617 (error "Nothing to edit on the current line")
1618 (let ((topic (gnus-group-topic-name)))
1620 (gnus-topic-parameters topic)
1621 (format "Editing the topic parameters for `%s'."
1624 (gnus-topic-set-parameters ,topic form)))))))
1626 (defun gnus-group-sort-topic (func reverse)
1627 "Sort groups in the topics according to FUNC and REVERSE."
1628 (let ((alist gnus-topic-alist))
1630 ;; !!!Sometimes nil elements sneak into the alist,
1631 ;; for some reason or other.
1632 (setcar alist (delq nil (car alist)))
1633 (setcar alist (delete "dummy.group" (car alist)))
1634 (gnus-topic-sort-topic (pop alist) func reverse))))
1636 (defun gnus-topic-sort-topic (topic func reverse)
1637 ;; Each topic only lists the name of the group, while
1638 ;; the sort predicates expect group infos as inputs.
1639 ;; So we first transform the group names into infos,
1640 ;; then sort, and then transform back into group names.
1644 (lambda (info) (gnus-info-group info))
1647 (lambda (group) (gnus-get-info group))
1650 ;; Do the reversal, if necessary.
1652 (setcdr topic (nreverse (cdr topic)))))
1654 (defun gnus-topic-sort-groups (func &optional reverse)
1655 "Sort the current topic according to FUNC.
1656 If REVERSE, reverse the sorting order."
1657 (interactive (list gnus-group-sort-function current-prefix-arg))
1658 (let ((topic (assoc (gnus-current-topic) gnus-topic-alist)))
1659 (gnus-topic-sort-topic
1660 topic (gnus-make-sort-function func) reverse)
1661 (gnus-group-list-groups)))
1663 (defun gnus-topic-sort-groups-by-alphabet (&optional reverse)
1664 "Sort the current topic alphabetically by group name.
1665 If REVERSE, sort in reverse order."
1667 (gnus-topic-sort-groups 'gnus-group-sort-by-alphabet reverse))
1669 (defun gnus-topic-sort-groups-by-unread (&optional reverse)
1670 "Sort the current topic by number of unread articles.
1671 If REVERSE, sort in reverse order."
1673 (gnus-topic-sort-groups 'gnus-group-sort-by-unread reverse))
1675 (defun gnus-topic-sort-groups-by-level (&optional reverse)
1676 "Sort the current topic by group level.
1677 If REVERSE, sort in reverse order."
1679 (gnus-topic-sort-groups 'gnus-group-sort-by-level reverse))
1681 (defun gnus-topic-sort-groups-by-score (&optional reverse)
1682 "Sort the current topic by group score.
1683 If REVERSE, sort in reverse order."
1685 (gnus-topic-sort-groups 'gnus-group-sort-by-score reverse))
1687 (defun gnus-topic-sort-groups-by-rank (&optional reverse)
1688 "Sort the current topic by group rank.
1689 If REVERSE, sort in reverse order."
1691 (gnus-topic-sort-groups 'gnus-group-sort-by-rank reverse))
1693 (defun gnus-topic-sort-groups-by-method (&optional reverse)
1694 "Sort the current topic alphabetically by backend name.
1695 If REVERSE, sort in reverse order."
1697 (gnus-topic-sort-groups 'gnus-group-sort-by-method reverse))
1699 (defun gnus-topic-sort-groups-by-server (&optional reverse)
1700 "Sort the current topic alphabetically by server name.
1701 If REVERSE, sort in reverse order."
1703 (gnus-topic-sort-groups 'gnus-group-sort-by-server reverse))
1705 (defun gnus-topic-sort-topics-1 (top reverse)
1708 (mapcar (gnus-byte-compile
1710 (gnus-topic-sort-topics-1 top ,reverse)))
1713 (string-lessp (caar t1) (caar t2)))))))
1714 (setcdr top (if reverse (reverse subtop) subtop))))
1717 (defun gnus-topic-sort-topics (&optional topic reverse)
1718 "Sort topics in TOPIC alphabetically by topic name.
1719 If REVERSE, reverse the sorting order."
1721 (list (completing-read "Sort topics in : " gnus-topic-alist nil t
1722 (gnus-current-topic))
1723 current-prefix-arg))
1724 (let ((topic-topology (or (and topic (cdr (gnus-topic-find-topology topic)))
1725 gnus-topic-topology)))
1726 (gnus-topic-sort-topics-1 topic-topology reverse)
1727 (gnus-topic-enter-dribble)
1728 (gnus-group-list-groups)
1729 (gnus-topic-goto-topic topic)))
1731 (defun gnus-topic-move (current to)
1732 "Move the CURRENT topic to TO."
1735 (gnus-group-topic-name)
1736 (completing-read "Move to topic: " gnus-topic-alist nil t)))
1737 (unless (and current to)
1738 (error "Can't find topic"))
1739 (let ((current-top (cdr (gnus-topic-find-topology current)))
1740 (to-top (cdr (gnus-topic-find-topology to))))
1742 (error "Can't find topic `%s'" current))
1744 (error "Can't find topic `%s'" to))
1745 (if (gnus-topic-find-topology to current-top 0);; Don't care the level
1746 (error "Can't move `%s' to its sub-level" current))
1747 (gnus-topic-find-topology current nil nil 'delete)
1748 (setcdr (last to-top) (list current-top))
1749 (gnus-topic-enter-dribble)
1750 (gnus-group-list-groups)
1751 (gnus-topic-goto-topic current)))
1753 (defun gnus-subscribe-topics (newsgroup)
1755 (let (match gnus-group-change-level-function)
1756 (dolist (topic (gnus-topic-list))
1757 (when (and (setq match (cdr (assq 'subscribe
1758 (gnus-topic-parameters topic))))
1759 (string-match match newsgroup))
1760 ;; Just subscribe the group.
1761 (gnus-subscribe-alphabetically newsgroup)
1762 ;; Add the group to the topic.
1763 (nconc (assoc topic gnus-topic-alist) (list newsgroup))
1764 ;; if this topic specifies a default level, use it
1765 (let ((subscribe-level (cdr (assq 'subscribe-level
1766 (gnus-topic-parameters topic)))))
1767 (when subscribe-level
1768 (gnus-group-change-level newsgroup subscribe-level
1769 gnus-level-default-subscribed)))
1773 (provide 'gnus-topic)
1775 ;;; arch-tag: bf176856-f30c-40f0-ae77-e41529a1134c
1776 ;;; gnus-topic.el ends here