From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58676 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnus issues Date: Fri, 01 Oct 2004 11:14:56 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1096622208 16263 80.91.229.6 (1 Oct 2004 09:16:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 1 Oct 2004 09:16:48 +0000 (UTC) Original-X-From: ding-owner+M7214@lists.math.uh.edu Fri Oct 01 11:16:33 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13] ident=mail) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CDJWi-0005Rl-00 for ; Fri, 01 Oct 2004 11:16:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1CDJVt-0005Hb-00; Fri, 01 Oct 2004 04:15:41 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1CDJVg-0005HT-00 for ding@lists.math.uh.edu; Fri, 01 Oct 2004 04:15:28 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1CDJVf-000693-EP for ding@lists.math.uh.edu; Fri, 01 Oct 2004 04:15:27 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.229.2]) by justine.libertine.org (Postfix) with ESMTP id 3DE223A0027 for ; Fri, 1 Oct 2004 04:15:23 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CDJVa-0001ie-00 for ; Fri, 01 Oct 2004 11:15:22 +0200 Original-Received: from c494102a.s-bi.bostream.se ([217.215.27.65]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 01 Oct 2004 11:15:22 +0200 Original-Received: from jas by c494102a.s-bi.bostream.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 01 Oct 2004 11:15:22 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 36 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: c494102a.s-bi.bostream.se User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:tWnJRLmthqvCw3+mkQ4CUr+TVvs= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58676 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58676 Steve Youngs writes: > * Simon Josefsson writes: > > > I've removed acroread, and added gpdf (GNOME PDF Viewer), in Gnus > > CVS > > Just curious as to why you chose gpdf instead of xpdf? I would have > thought the latter was still more common (says he who doesn't have > gpdf). xpdf was already present. Below are all pdf entries. Btw, would it make things more reliable if the test predicate also include a (excutable-find "xpdf") etc? Perhaps the code already do that test elsewhere, though. ("pdf" (viewer . "gv -safer %s") (type . "application/pdf") (test . window-system) ("print" . ,(concat "pdf2ps %s - | " mailcap-print-command))) ("pdf" (viewer . "gpdf %s") (type . "application/pdf") ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) (test . (eq window-system 'x))) ("pdf" (viewer . "xpdf %s") (type . "application/pdf") ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) (test . (eq window-system 'x))) ("pdf" (viewer . ,(concat "pdftotext %s -")) (type . "application/pdf") ("print" . ,(concat "pdftops %s - | " mailcap-print-command)) ("copiousoutput"))