1;;; sb-yomiuri-html.el --- shimbun backend for yomiuri online (HTML version)
2
3;; Copyright (C) 2001, 2002, 2003, 2005 Yuuichi Teranishi <teranisi@gohome.org>
4
5;; Author: Yuuichi Teranishi <teranisi@gohome.org>,
6;;         Katsumi Yamaoka   <yamaoka@jpl.org>
7;; Keywords: news
8
9;; This file is a part of shimbun.
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; see the file COPYING.  If not, write to
23;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
25
26;;; Commentary:
27
28;; This module is now semi-obsolete.  You can use sb-yomiuri.el to read
29;; html articles by putting the following line in your init file.
30;;
31;;(setq shimbun-yomiuri-prefer-text-plain nil)
32
33;;; Code:
34
35(require 'sb-yomiuri)
36
37(luna-define-class shimbun-yomiuri-html (shimbun-yomiuri) ())
38
39(defconst shimbun-yomiuri-html-prefer-text-plain nil
40  "Non-nil means prefer text/plain articles rather than html articles.")
41
42(provide 'sb-yomiuri-html)
43
44;;; sb-yomiuri-html.el ends here
45