From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/26501 Path: main.gmane.org!not-for-mail From: "Robin S. Socha" Newsgroups: gmane.emacs.gnus.general Subject: Re: Articles enhancings Date: 09 Nov 1999 15:40:37 +0100 Organization: Usenet Death Squad Sender: owner-ding@hpc.uh.edu Message-ID: References: <19991109103727.C727@sre-4-139.urbanet.ch> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035163698 19735 80.91.224.250 (21 Oct 2002 01:28:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:28:18 +0000 (UTC) Cc: ding@gnus.org Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id JAA17739 for ; Tue, 9 Nov 1999 09:43:12 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id IAB32723; Tue, 9 Nov 1999 08:43:09 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 09 Nov 1999 08:43:28 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id IAA28981 for ; Tue, 9 Nov 1999 08:43:12 -0600 (CST) Original-Received: from kens.com (kens.com [129.250.30.40]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id JAA17727 for ; Tue, 9 Nov 1999 09:42:41 -0500 (EST) Original-Received: from socha.net (IDENT:root@next3.rhrz.uni-bonn.de [131.220.224.32]) by kens.com (8.9.3/8.9.3-mod-for-majordomo) with ESMTP id JAA08488; Tue, 9 Nov 1999 09:42:40 -0500 (EST) Original-Received: (from robin@localhost) by socha.net (8.9.3/8.9.3) id PAA25281; Tue, 9 Nov 1999 15:40:37 +0100 Original-To: Pieter Wenk X-URL: X-Face: #Z}0zkbqU,m`+S)^0R[.23L-o>U{UQ|(DvIqu^Bjw:po_g9;4JnT9tbn;QX$ga/LYS In-Reply-To: Pieter Wenk's message of "Tue, 9 Nov 1999 10:37:27 +0100" Original-Lines: 56 User-Agent: Gnus/5.070098 (Pterodactyl Gnus v0.98) XEmacs/21.1 (Bryce Canyon) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:26501 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:26501 * Pieter Wenk writes: > What I should like to obtain is: > -Different colors in relation to the texts ie. "authors" (setq ;; Highlight cited text gnus-treat-highlight-citation 'last ;; Highlight the signature gnus-treat-highlight-signature 'last) > -Clicking on an url, should fire automatically Netscape. > What would be the workable entry in .gnus for this effect ? :*======================= ;:* make netscape use a new window when clicking a URL ; by Karl Kleinpaste (setq browse-url-new-window-p t) (defun karl-browse (a) "Wrapper, for new window use." (browse-url-netscape a t)) (setq browse-url-browser-function (function karl-browse)) > Wearing glasses for reading, I would realy find it a nice thing, that: > -Certain header-texts -Quotes > would have a slightly larger font. Were can I change this ? ;:*====================== ;:* describe-face-at-point, a function to find out which face is which (defun describe-face-at-point () "Return face used at point." (interactive) (hyper-describe-face (get-char-property (point) 'face))) And then do something like: (FAQ) Q3.2.2: How do I set the text, menu and modeline fonts? or M-x customize RET faces RET > X-Face How to install. Is there an already compiled version available? ;;*------------ ;;* displaying XFaces (needs 48x48 xbm (use eg xv) and compface (from ;;* the aux dir of ftp.xemacs.org - cf. man compface (defun xface-insert () (nnheader-temp-write nil (insert-file-contents "~/.xface") (buffer-string))) (require 'message) (setq message-required-news-headers (nconc message-required-news-headers (list '(X-Face . xface-insert)))) (setq message-required-mail-headers (nconc message-required-mail-headers (list '(X-Face . xface-insert)))) -- Robin S. Socha