* sb-asahi.el: Follow the page renewal.
[elisp/wanderlust.git] / elmo / sb-bbdb-ml.el
1 ;;; sb-bbdb-ml.el --- shimbun backend for bbdb-ml
2
3 ;; Author: TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp>
4 ;;         Akihiro Arisawa    <ari@atesoft.advantest.co.jp>
5 ;;         Yuuichi Teranishi <teranisi@gohome.org>
6
7 ;; Keywords: news
8
9 ;;; Copyright:
10
11 ;; This program 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 ;; This program 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 this program; if not, you can either send email to this
23 ;; program's maintainer or write to: The Free Software Foundation,
24 ;; Inc.; 59 Temple Place, Suite 330; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;; Original code was nnshimbun.el written by
29 ;; TSUCHIYA Masatoshi <tsuchiya@pine.kuee.kyoto-u.ac.jp>.
30
31 ;;; Code:
32
33 (require 'shimbun)
34 (require 'sb-fml)
35
36 (luna-define-class shimbun-bbdb-ml (shimbun-fml) ())
37
38 (defvar shimbun-bbdb-ml-url "http://www.rc.tutrp.tut.ac.jp/bbdb-ml/")
39 (defvar shimbun-bbdb-ml-groups '("bbdb-ml"))
40 (defvar shimbun-bbdb-ml-coding-system (static-if (boundp 'MULE)
41                                           '*iso-2022-jp* 'iso-2022-jp))
42
43 (provide 'sb-bbdb-ml)
44
45 ;;; sb-bbdb-ml.el ends here