[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
shimbun sb-welt-de.el (was: [PATCH] sb-rss.el and ISO 8601 date)
TSUCHIYA Masatoshi <tsuchiya@namazu.org> writes:
>>> On Sun, 13 Jun 2004 03:05:30 +0200
>>> seltenreich@gmx.de (Andreas Seltenreich) said as follows:
>> while hacking on a shimbun backend I stumbled over a site[1] whose
>> rss date format didn't get parsed properly by sb-rss.el:
>> [1] http://www.welt.de/z/newsticker/ticker_welt.xml
>
> I am looking forward to your next contribution.
Ok, with the new sb-rss.el it seems to work flawlessly. However, I'm
doing some editing in shimbun-clear-contents and am not sure if this
is ok concerning portability (only tested it with Emacs 21).
Attached is sb-welt-de.el
Thanks
Andreas
;;; sb-welt-de.el --- shimbun backend for <http://www.welt.de>
;; Copyright (C) 2004 Andreas Seltenreich <seltenreich@gmx.de>
;; Author: Andreas Seltenreich <seltenreich@gmx.de>
;; Keywords: news, shimbun
;; Created: June 13, 2004
;; This program 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 program 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 this program; if not, you can either send email to this
;; program's maintainer or write to: The Free Software Foundation,
;; Inc.; 59 Temple Place, Suite 330; Boston, MA 02111-1307, USA.
;;; Commentary:
;; General national and international news in german. The items seem
;; directly forwarded from news agencies, so expect rather high
;; traffic.
;; Note: you'll need CVS emacs-w3m from Mo Jun 14 00:18:08 CEST 2004
;; or later for the date to work correctly
;;; Code:
(require 'shimbun)
(require 'sb-rss)
(luna-define-class shimbun-welt-de (shimbun-rss) ())
(defvar shimbun-welt-de-groups '("news"))
(defvar shimbun-welt-de-url "http://www.welt.de/z/newsticker/ticker_welt.xml")
(defvar shimbun-welt-de-content-start "</b></p>")
(defvar shimbun-welt-de-content-end "<noscript>")
(luna-define-method shimbun-groups ((shimbun shimbun-welt-de))
shimbun-welt-de-groups)
(luna-define-method shimbun-rss-build-message-id
((shimbun shimbun-welt-de) url date)
(unless (string-match "\\?nid=\\([0-9]+\\)" url)
(error "Cannot find message-id"))
(format "<%s@shimbun-welt-de>" (match-string 1 url)))
;; Kill Javascript
(luna-define-method shimbun-clear-contents
:before ((shimbun shimbun-welt-de) headers)
(let ((case-fold-search t)
javascript-image)
(goto-char (point-min))
(if (re-search-forward
"<img src=\"\\([^\"]+?\\)_thumbnail.jpg" nil t)
(setq javascript-image (match-string-no-properties 1)))
(shimbun-remove-tags "<table" "</table>")
(when javascript-image
(goto-char (point-min))
(re-search-forward shimbun-welt-de-content-start)
(insert (concat "<img src=\"" javascript-image
"_onlineBild.jpg\">")))))
(luna-define-method shimbun-groups ((shimbun shimbun-welt-de))
shimbun-welt-de-groups)
(luna-define-method shimbun-index-url ((shimbun shimbun-welt-de))
shimbun-welt-de-url)
(provide 'sb-welt-de)
;;; sb-welt-de.el ends here