Mercurial > emacs
annotate lisp/gnus/gnus-move.el @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | 118761d47324 |
children | 5f1ab3dd344d |
rev | line source |
---|---|
17493 | 1 ;;; gnus-move.el --- commands for moving Gnus from one server to another |
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc. | |
3 | |
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no> | |
5 ;; Keywords: news | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
12 ;; any later version. | |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
23 | |
24 ;;; Commentary: | |
25 | |
26 ;;; Code: | |
27 | |
19634
118761d47324
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
28 (eval-when-compile (require 'cl)) |
118761d47324
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
29 |
17493 | 30 (require 'gnus) |
31 (require 'gnus-start) | |
32 (require 'gnus-int) | |
33 (require 'gnus-range) | |
34 | |
35 ;;; | |
36 ;;; Moving by comparing Message-ID's. | |
37 ;;; | |
38 | |
39 ;;;###autoload | |
40 (defun gnus-change-server (from-server to-server) | |
41 "Move from FROM-SERVER to TO-SERVER. | |
42 Update the .newsrc.eld file to reflect the change of nntp server." | |
43 (interactive | |
44 (list gnus-select-method (gnus-read-method "Move to method: "))) | |
45 | |
46 ;; First start Gnus. | |
47 (let ((gnus-activate-level 0) | |
48 (nnmail-spool-file nil)) | |
49 (gnus)) | |
50 | |
51 (save-excursion | |
52 ;; Go through all groups and translate. | |
53 (let ((newsrc gnus-newsrc-alist) | |
54 (nntp-nov-gap nil) | |
55 info) | |
56 (while (setq info (pop newsrc)) | |
57 (when (gnus-group-native-p (gnus-info-group info)) | |
58 (gnus-move-group-to-server info from-server to-server)))))) | |
59 | |
60 (defun gnus-move-group-to-server (info from-server to-server) | |
61 "Move group INFO from FROM-SERVER to TO-SERVER." | |
62 (let ((group (gnus-info-group info)) | |
63 to-active hashtb type mark marks | |
64 to-article to-reads to-marks article) | |
65 (gnus-message 7 "Translating %s..." group) | |
66 (when (gnus-request-group group nil to-server) | |
67 (setq to-active (gnus-parse-active) | |
68 hashtb (gnus-make-hashtable 1024)) | |
69 ;; Fetch the headers from the `to-server'. | |
70 (when (and to-active | |
71 (setq type (gnus-retrieve-headers | |
72 (gnus-uncompress-range to-active) | |
73 group to-server))) | |
74 ;; Convert HEAD headers. I don't care. | |
75 (when (eq type 'headers) | |
76 (nnvirtual-convert-headers)) | |
77 ;; Create a mapping from Message-ID to article number. | |
78 (set-buffer nntp-server-buffer) | |
79 (goto-char (point-min)) | |
80 (while (looking-at | |
81 "^[0-9]+\t[^\t]*\t[^\t]*\t[^\t]*\t\\([^\t]*\\)\t") | |
82 (gnus-sethash | |
83 (buffer-substring (match-beginning 1) (match-end 1)) | |
84 (read (current-buffer)) | |
85 hashtb) | |
86 (forward-line 1)) | |
87 ;; Then we read the headers from the `from-server'. | |
88 (when (and (gnus-request-group group nil from-server) | |
89 (gnus-active group) | |
90 (setq type (gnus-retrieve-headers | |
91 (gnus-uncompress-range | |
92 (gnus-active group)) | |
93 group from-server))) | |
94 ;; Make it easier to map marks. | |
95 (let ((mark-lists (gnus-info-marks info)) | |
96 ms type m) | |
97 (while mark-lists | |
98 (setq type (caar mark-lists) | |
99 ms (gnus-uncompress-range (cdr (pop mark-lists)))) | |
100 (while ms | |
101 (if (setq m (assq (car ms) marks)) | |
102 (setcdr m (cons type (cdr m))) | |
103 (push (list (car ms) type) marks)) | |
104 (pop ms)))) | |
105 ;; Convert. | |
106 (when (eq type 'headers) | |
107 (nnvirtual-convert-headers)) | |
108 ;; Go through the headers and map away. | |
109 (set-buffer nntp-server-buffer) | |
110 (goto-char (point-min)) | |
111 (while (looking-at | |
112 "^[0-9]+\t[^\t]*\t[^\t]*\t[^\t]*\t\\([^\t]*\\)\t") | |
113 (setq to-article | |
114 (gnus-gethash | |
115 (buffer-substring (match-beginning 1) (match-end 1)) | |
116 hashtb)) | |
117 ;; Add this article to the list of read articles. | |
118 (push to-article to-reads) | |
119 ;; See if there are any marks and then add them. | |
120 (when (setq mark (assq (read (current-buffer)) marks)) | |
121 (setq marks (delq mark marks)) | |
122 (setcar mark to-article) | |
123 (push mark to-marks)) | |
124 (forward-line 1)) | |
125 ;; Now we know what the read articles are and what the | |
126 ;; article marks are. We transform the information | |
127 ;; into the Gnus info format. | |
128 (setq to-reads | |
129 (gnus-range-add | |
130 (gnus-compress-sequence (sort to-reads '<) t) | |
131 (cons 1 (1- (car to-active))))) | |
132 (gnus-info-set-read info to-reads) | |
133 ;; Do the marks. I'm sure y'all understand what's | |
134 ;; going on down below, so I won't bother with any | |
135 ;; further comments. <duck> | |
136 (let ((mlists gnus-article-mark-lists) | |
137 lists ms a) | |
138 (while mlists | |
139 (push (list (cdr (pop mlists))) lists)) | |
140 (while (setq ms (pop marks)) | |
141 (setq article (pop ms)) | |
142 (while ms | |
143 (setcdr (setq a (assq (pop ms) lists)) | |
144 (cons article (cdr a))))) | |
145 (setq a lists) | |
146 (while a | |
147 (setcdr (car a) (gnus-compress-sequence (sort (cdar a) '<))) | |
148 (pop a)) | |
149 (gnus-info-set-marks info lists t))))) | |
150 (gnus-message 7 "Translating %s...done" group))) | |
151 | |
152 (defun gnus-group-move-group-to-server (info from-server to-server) | |
153 "Move the group on the current line from FROM-SERVER to TO-SERVER." | |
154 (interactive | |
155 (let ((info (gnus-get-info (gnus-group-group-name)))) | |
156 (list info (gnus-find-method-for-group (gnus-info-group info)) | |
157 (gnus-read-method (format "Move group %s to method: " | |
158 (gnus-info-group info)))))) | |
159 (save-excursion | |
160 (gnus-move-group-to-server info from-server to-server) | |
161 ;; We have to update the group info to point use the right server. | |
162 (gnus-info-set-method info to-server t) | |
163 ;; We also have to change the name of the group and stuff. | |
164 (let* ((group (gnus-info-group info)) | |
165 (new-name (gnus-group-prefixed-name | |
166 (gnus-group-real-name group) to-server))) | |
167 (gnus-info-set-group info new-name) | |
168 (gnus-sethash new-name (gnus-gethash group gnus-newsrc-hashtb) | |
169 gnus-newsrc-hashtb) | |
170 (gnus-sethash group nil gnus-newsrc-hashtb)))) | |
171 | |
172 (provide 'gnus-move) | |
173 | |
174 ;;; gnus-move.el ends here |