Mercurial > emacs
annotate lisp/gnus/nnlistserv.el @ 68462:94d7d70879d2
Minor cleaups.
(Screen): Clean up the intro paragraphs.
(Mode Line): Lots of rewriting. Handle frame-name better.
eol-mnemonic-... vars moved out.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 29 Jan 2006 17:04:09 +0000 |
parents | fafd692d1e40 |
children | 1077b8039c32 2d92f5c9d6ae |
rev | line source |
---|---|
24358 | 1 ;;; nnlistserv.el --- retrieving articles via web mailing list archives |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
2 |
64754
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 2004, |
fafd692d1e40
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
24358 | 5 |
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> | |
7 ;; Keywords: news, mail | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
24358 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
30 (eval-when-compile (require 'cl)) | |
31 | |
32 (require 'nnoo) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
33 (require 'mm-url) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
34 (require 'nnweb) |
24358 | 35 |
36 (nnoo-declare nnlistserv | |
37 nnweb) | |
38 | |
39 (defvoo nnlistserv-directory (nnheader-concat gnus-directory "nnlistserv/") | |
40 "Where nnlistserv will save its files." | |
41 nnweb-directory) | |
42 | |
43 (defvoo nnlistserv-name 'kk | |
44 "What search engine type is being used." | |
45 nnweb-type) | |
46 | |
47 (defvoo nnlistserv-type-definition | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
48 '((kk |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
49 (article . nnlistserv-kk-wash-article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
50 (map . nnlistserv-kk-create-mapping) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
51 (search . nnlistserv-kk-search) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
52 (address . "http://www.itk.ntnu.no/ansatte/Andresen_Trond/kk-f/%s/") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
53 (pages "fra160396" "fra160796" "fra061196" "fra160197" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
54 "fra090997" "fra040797" "fra130397" "nye") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
55 (index . "date.html") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
56 (identifier . nnlistserv-kk-identity))) |
24358 | 57 "Type-definition alist." |
58 nnweb-type-definition) | |
59 | |
60 (defvoo nnlistserv-search nil | |
61 "Search string to feed to DejaNews." | |
62 nnweb-search) | |
63 | |
64 (defvoo nnlistserv-ephemeral-p nil | |
65 "Whether this nnlistserv server is ephemeral." | |
66 nnweb-ephemeral-p) | |
67 | |
68 ;;; Internal variables | |
69 | |
70 ;;; Interface functions | |
71 | |
72 (nnoo-define-basics nnlistserv) | |
73 | |
74 (nnoo-import nnlistserv | |
75 (nnweb)) | |
76 | |
77 ;;; Internal functions | |
78 | |
79 ;;; | |
80 ;;; KK functions. | |
81 ;;; | |
82 | |
83 (defun nnlistserv-kk-create-mapping () | |
47935
70d7c96ed22f
(nnlistserv-kk-create-mapping): Fix typo.
Juanma Barranquero <lekktu@gmail.com>
parents:
33924
diff
changeset
|
84 "Perform the search and create a number-to-url alist." |
24358 | 85 (save-excursion |
86 (set-buffer nnweb-buffer) | |
87 (let ((case-fold-search t) | |
88 (active (or (cadr (assoc nnweb-group nnweb-group-alist)) | |
89 (cons 1 0))) | |
90 (pages (nnweb-definition 'pages)) | |
91 map url page subject from ) | |
92 (while (setq page (pop pages)) | |
93 (erase-buffer) | |
94 (when (funcall (nnweb-definition 'search) page) | |
95 ;; Go through all the article hits on this page. | |
96 (goto-char (point-min)) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
97 (mm-url-decode-entities) |
24358 | 98 (goto-char (point-min)) |
99 (while (re-search-forward "^<li> *<a href=\"\\([^\"]+\\)\"><b>\\([^\\>]+\\)</b></a> *<[^>]+><i>\\([^>]+\\)<" nil t) | |
100 (setq url (match-string 1) | |
101 subject (match-string 2) | |
102 from (match-string 3)) | |
103 (setq url (concat (format (nnweb-definition 'address) page) url)) | |
104 (unless (nnweb-get-hashtb url) | |
105 (push | |
106 (list | |
107 (incf (cdr active)) | |
108 (make-full-mail-header | |
109 (cdr active) subject from "" | |
110 (concat "<" (nnweb-identifier url) "@kk>") | |
111 nil 0 0 url)) | |
112 map) | |
113 (nnweb-set-hashtb (cadar map) (car map)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
114 (nnheader-message 5 "%s %s %s" (cdr active) (point) pages))))) |
24358 | 115 ;; Return the articles in the right order. |
116 (setq nnweb-articles | |
117 (sort (nconc nnweb-articles map) 'car-less-than-car))))) | |
118 | |
119 (defun nnlistserv-kk-wash-article () | |
120 (let ((case-fold-search t) | |
121 (headers '(sent name email subject id)) | |
122 sent name email subject id) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
123 (mm-url-decode-entities) |
24358 | 124 (while headers |
125 (goto-char (point-min)) | |
53875
cb0bc8ce8e5a
(nnlistserv-kk-wash-article): Fix paren nesting.
Andreas Schwab <schwab@suse.de>
parents:
52401
diff
changeset
|
126 (re-search-forward (format "<!-- %s=\"\\([^\"]+\\)" (car headers)) nil t) |
24358 | 127 (set (pop headers) (match-string 1))) |
128 (goto-char (point-min)) | |
129 (search-forward "<!-- body" nil t) | |
130 (delete-region (point-min) (progn (forward-line 1) (point))) | |
131 (goto-char (point-max)) | |
132 (search-backward "<!-- body" nil t) | |
133 (delete-region (point-max) (progn (beginning-of-line) (point))) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
134 (mm-url-remove-markup) |
24358 | 135 (goto-char (point-min)) |
136 (insert (format "From: %s <%s>\n" name email) | |
137 (format "Subject: %s\n" subject) | |
138 (format "Message-ID: %s\n" id) | |
139 (format "Date: %s\n\n" sent)))) | |
140 | |
141 (defun nnlistserv-kk-search (search) | |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
53875
diff
changeset
|
142 (mm-url-insert |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24577
diff
changeset
|
143 (concat (format (nnweb-definition 'address) search) |
24358 | 144 (nnweb-definition 'index))) |
145 t) | |
146 | |
147 (defun nnlistserv-kk-identity (url) | |
148 "Return an unique identifier based on URL." | |
149 url) | |
150 | |
151 (provide 'nnlistserv) | |
152 | |
52401 | 153 ;;; arch-tag: 7705176f-d332-4a5e-a520-d0d319445617 |
24358 | 154 ;;; nnlistserv.el ends here |