File: sb-fau.el

package info (click to toggle)
w3m-el 1.4.538%2B0.20141022-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,416 kB
  • ctags: 3,724
  • sloc: lisp: 44,834; sh: 486; makefile: 404
file content (94 lines) | stat: -rw-r--r-- 3,094 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
;;; sb-fau.el --- Freie ArbeiterInnen Union shimbun backend

;; Copyright (C) 2005, 2006, 2007 David Hansen

;; Author: David Hansen <david.hansen@physik.fu-berlin.de>
;; Keywords: news

;; This file is a part of shimbun.

;; This is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.

;;; Commentary:

;;; Code:

(require 'shimbun)
(require 'sb-rss)

(luna-define-class shimbun-fau (shimbun-rss) ())

(defvar shimbun-fau-url
  "http://www.fau.org/faurss.rdf")
(defvar shimbun-fau-groups '("news"))
(defvar shimbun-fau-from-address  "www@fau.org")
(defvar shimbun-fau-x-face-alist
  '(("default" .
     "X-Face: 5Nxj%|<|TGh94(OzpKK*3XE{c=jFM9F7Mngs2BJva%Cs2jH>DThKw\
\[h'n|GAMyNEJ~*y%59xj5d31q4(xg_<tOrJ_\"NaXys5yh~3P_u\\]VOC!3:N+O,>=>O+w}\
<l-KjY3.MV#@*}26P^'2$E_8<6'}rz:0,6K")))

(defvar shimbun-fau-content-start "<hr\\s-+size=\"1\">")
(defvar shimbun-fau-content-end "<hr\\s-+size=\"1\">\\s-*
<p>\\s-*")

(defvar shimbun-fau-coding-system
  (or (shimbun-find-coding-system 'windows-1252)
      (shimbun-find-coding-system 'iso-8859-1))
  "Coding system used to decode article contents.")

(luna-define-method shimbun-index-url ((shimbun shimbun-fau))
  shimbun-fau-url)

(luna-define-method shimbun-get-headers :around ((shimbun shimbun-fau)
						 &optional range)
  (mapcar
   (lambda (header)
     (shimbun-header-set-xref
      header (concat (shimbun-header-xref header) "/print.html"))
     header)
   (luna-call-next-method)))

(luna-define-method shimbun-article ((shimbun shimbun-fau) header
				     &optional outbuf)
  (when (shimbun-current-group-internal shimbun)
    (with-current-buffer (or outbuf (current-buffer))
      (w3m-insert-string
       (or (with-temp-buffer
	     (if (shimbun-coding-system-internal shimbun)
		 (progn
		   (shimbun-fetch-url shimbun
				      (shimbun-article-url shimbun header)
				      nil t
				      (shimbun-article-base-url shimbun
								header))
		   (set-buffer-multibyte t)
		   (decode-coding-region
		    (point-min) (point-max)
		    (shimbun-coding-system-internal shimbun)))
	       (shimbun-fetch-url shimbun
				  (shimbun-article-url shimbun header)
				  nil nil
				  (shimbun-article-base-url shimbun header)))
	     (shimbun-message shimbun "shimbun: Make contents...")
	     (goto-char (point-min))
	     (prog1 (shimbun-make-contents shimbun header)
	       (shimbun-message shimbun "shimbun: Make contents...done")))
	   "")))))

(provide 'sb-fau)

;;; sb-fau.el ends here